Struct Vec6f
6-Tuple of float (System.Single)
Inherited Members
System.Object.Equals(System.Object, System.Object)
System.Object.GetType()
System.Object.ReferenceEquals(System.Object, System.Object)
Assembly: OpenCvSharp.dll
Syntax
public struct Vec6f : IVec<Vec6f, float>, IVec
Constructors
|
Improve this Doc
View Source
Vec6f(Single, Single, Single, Single, Single, Single)
Declaration
public Vec6f(float item0, float item1, float item2, float item3, float item4, float item5)
Parameters
Type |
Name |
Description |
System.Single |
item0 |
|
System.Single |
item1 |
|
System.Single |
item2 |
|
System.Single |
item3 |
|
System.Single |
item4 |
|
System.Single |
item5 |
|
Fields
|
Improve this Doc
View Source
Item0
The value of the first component of this object.
Declaration
Field Value
Type |
Description |
System.Single |
|
|
Improve this Doc
View Source
Item1
The value of the second component of this object.
Declaration
Field Value
Type |
Description |
System.Single |
|
|
Improve this Doc
View Source
Item2
The value of the third component of this object.
Declaration
Field Value
Type |
Description |
System.Single |
|
|
Improve this Doc
View Source
Item3
The value of the fourth component of this object.
Declaration
Field Value
Type |
Description |
System.Single |
|
|
Improve this Doc
View Source
Item4
The value of the fifth component of this object.
Declaration
Field Value
Type |
Description |
System.Single |
|
|
Improve this Doc
View Source
Item5
The value of the sixth component of this object.
Declaration
Field Value
Type |
Description |
System.Single |
|
Properties
|
Improve this Doc
View Source
Item[Int32]
Declaration
public float this[int i] { readonly get; set; }
Parameters
Type |
Name |
Description |
System.Int32 |
i |
|
Property Value
Type |
Description |
System.Single |
|
Methods
|
Improve this Doc
View Source
Add(Vec6f)
Declaration
public readonly Vec6f Add(Vec6f other)
Parameters
Type |
Name |
Description |
Vec6f |
other |
|
Returns
|
Improve this Doc
View Source
Deconstruct(out Single, out Single, out Single, out Single, out Single, out Single)
Declaration
public readonly void Deconstruct(out float item0, out float item1, out float item2, out float item3, out float item4, out float item5)
Parameters
Type |
Name |
Description |
System.Single |
item0 |
|
System.Single |
item1 |
|
System.Single |
item2 |
|
System.Single |
item3 |
|
System.Single |
item4 |
|
System.Single |
item5 |
|
|
Improve this Doc
View Source
Divide(Double)
Declaration
public readonly Vec6f Divide(double alpha)
Parameters
Type |
Name |
Description |
System.Double |
alpha |
|
Returns
|
Improve this Doc
View Source
Equals(Vec6f)
Declaration
public readonly bool Equals(Vec6f other)
Parameters
Type |
Name |
Description |
Vec6f |
other |
|
Returns
Type |
Description |
System.Boolean |
|
|
Improve this Doc
View Source
Equals(Object)
Declaration
public override readonly bool Equals(object obj)
Parameters
Type |
Name |
Description |
System.Object |
obj |
|
Returns
Type |
Description |
System.Boolean |
|
Overrides
System.ValueType.Equals(System.Object)
|
Improve this Doc
View Source
GetHashCode()
Declaration
public override readonly int GetHashCode()
Returns
Type |
Description |
System.Int32 |
|
Overrides
System.ValueType.GetHashCode()
|
Improve this Doc
View Source
Multiply(Double)
Declaration
public readonly Vec6f Multiply(double alpha)
Parameters
Type |
Name |
Description |
System.Double |
alpha |
|
Returns
|
Improve this Doc
View Source
Subtract(Vec6f)
Declaration
public readonly Vec6f Subtract(Vec6f other)
Parameters
Type |
Name |
Description |
Vec6f |
other |
|
Returns
|
Improve this Doc
View Source
ToString()
Declaration
public override readonly string ToString()
Returns
Type |
Description |
System.String |
|
Overrides
System.ValueType.ToString()
|
Improve this Doc
View Source
ToVec6d()
Declaration
Returns
|
Improve this Doc
View Source
ToVec6i()
Declaration
Returns
Operators
|
Improve this Doc
View Source
Addition(Vec6f, Vec6f)
Declaration
public static Vec6f operator +(Vec6f a, Vec6f b)
Parameters
Returns
|
Improve this Doc
View Source
Division(Vec6f, Double)
Declaration
public static Vec6f operator /(Vec6f a, double alpha)
Parameters
Type |
Name |
Description |
Vec6f |
a |
|
System.Double |
alpha |
|
Returns
|
Improve this Doc
View Source
Equality(Vec6f, Vec6f)
Declaration
public static bool operator ==(Vec6f a, Vec6f b)
Parameters
Returns
Type |
Description |
System.Boolean |
|
|
Improve this Doc
View Source
Inequality(Vec6f, Vec6f)
Declaration
public static bool operator !=(Vec6f a, Vec6f b)
Parameters
Returns
Type |
Description |
System.Boolean |
|
|
Improve this Doc
View Source
Multiply(Vec6f, Double)
Declaration
public static Vec6f operator *(Vec6f a, double alpha)
Parameters
Type |
Name |
Description |
Vec6f |
a |
|
System.Double |
alpha |
|
Returns
|
Improve this Doc
View Source
Subtraction(Vec6f, Vec6f)
Declaration
public static Vec6f operator -(Vec6f a, Vec6f b)
Parameters
Returns
Implements
IEquatable<>