Table of Contents

Struct Vec4d

Namespace
OpenCvSharp
Assembly
OpenCvSharp.dll

4-Tuple of double (System.Double)

public struct Vec4d : IEquatable<Vec4d>
Implements
Inherited Members

Constructors

Vec4d(double, double, double, double)

Initializer

Fields

Item0

The value of the first component of this object.

Item1

The value of the second component of this object.

Item2

The value of the third component of this object.

Item3

The value of the fourth component of this object.

Properties

this[int]

Indexer

Methods

Add(Vec4d)

this + other

AsSpan()

Returns a Span<T> over the 4 elements of this vector.

Deconstruct(out double, out double, out double, out double)

Deconstructing a Vector

Divide(double)

this / alpha

Equals(Vec4d)

Indicates whether the current object is equal to another object of the same type.

Equals(object?)

Indicates whether this instance and a specified object are equal.

GetHashCode()

Returns the hash code for this instance.

Multiply(double)

this * alpha

Subtract(Vec4d)

this - other

ToString()

Returns the fully qualified type name of this instance.

Operators

operator +(Vec4d, Vec4d)
operator /(Vec4d, double)
operator ==(Vec4d, Vec4d)
operator !=(Vec4d, Vec4d)
operator *(Vec4d, double)
operator -(Vec4d, Vec4d)
operator -(Vec4d)