Struct Vec4i
4-Tuple of int (System.Int32)
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 Vec4i : IVec<Vec4i, int>, IVec
Constructors
|
Improve this Doc
View Source
Vec4i(Int32, Int32, Int32, Int32)
Declaration
public Vec4i(int item0, int item1, int item2, int item3)
Parameters
Type |
Name |
Description |
System.Int32 |
item0 |
|
System.Int32 |
item1 |
|
System.Int32 |
item2 |
|
System.Int32 |
item3 |
|
Fields
|
Improve this Doc
View Source
Item0
The value of the first component of this object.
Declaration
Field Value
Type |
Description |
System.Int32 |
|
|
Improve this Doc
View Source
Item1
The value of the second component of this object.
Declaration
Field Value
Type |
Description |
System.Int32 |
|
|
Improve this Doc
View Source
Item2
The value of the third component of this object.
Declaration
Field Value
Type |
Description |
System.Int32 |
|
|
Improve this Doc
View Source
Item3
The value of the fourth component of this object.
Declaration
Field Value
Type |
Description |
System.Int32 |
|
Properties
|
Improve this Doc
View Source
Item[Int32]
Declaration
public int this[int i] { readonly get; set; }
Parameters
Type |
Name |
Description |
System.Int32 |
i |
|
Property Value
Type |
Description |
System.Int32 |
|
Methods
|
Improve this Doc
View Source
Add(Vec4i)
Declaration
public readonly Vec4i Add(Vec4i other)
Parameters
Type |
Name |
Description |
Vec4i |
other |
|
Returns
|
Improve this Doc
View Source
Deconstruct(out Int32, out Int32, out Int32, out Int32)
Declaration
public readonly void Deconstruct(out int item0, out int item1, out int item2, out int item3)
Parameters
Type |
Name |
Description |
System.Int32 |
item0 |
|
System.Int32 |
item1 |
|
System.Int32 |
item2 |
|
System.Int32 |
item3 |
|
|
Improve this Doc
View Source
Divide(Double)
Declaration
public readonly Vec4i Divide(double alpha)
Parameters
Type |
Name |
Description |
System.Double |
alpha |
|
Returns
|
Improve this Doc
View Source
Equals(Vec4i)
Declaration
public readonly bool Equals(Vec4i other)
Parameters
Type |
Name |
Description |
Vec4i |
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 Vec4i Multiply(double alpha)
Parameters
Type |
Name |
Description |
System.Double |
alpha |
|
Returns
|
Improve this Doc
View Source
Subtract(Vec4i)
Declaration
public readonly Vec4i Subtract(Vec4i other)
Parameters
Type |
Name |
Description |
Vec4i |
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
ToVec4d()
Declaration
Returns
|
Improve this Doc
View Source
ToVec4f()
Declaration
Returns
Operators
|
Improve this Doc
View Source
Addition(Vec4i, Vec4i)
Declaration
public static Vec4i operator +(Vec4i a, Vec4i b)
Parameters
Returns
|
Improve this Doc
View Source
Division(Vec4i, Double)
Declaration
public static Vec4i operator /(Vec4i a, double alpha)
Parameters
Type |
Name |
Description |
Vec4i |
a |
|
System.Double |
alpha |
|
Returns
|
Improve this Doc
View Source
Equality(Vec4i, Vec4i)
Declaration
public static bool operator ==(Vec4i a, Vec4i b)
Parameters
Returns
Type |
Description |
System.Boolean |
|
|
Improve this Doc
View Source
Inequality(Vec4i, Vec4i)
Declaration
public static bool operator !=(Vec4i a, Vec4i b)
Parameters
Returns
Type |
Description |
System.Boolean |
|
|
Improve this Doc
View Source
Multiply(Vec4i, Double)
Declaration
public static Vec4i operator *(Vec4i a, double alpha)
Parameters
Type |
Name |
Description |
Vec4i |
a |
|
System.Double |
alpha |
|
Returns
|
Improve this Doc
View Source
Subtraction(Vec4i, Vec4i)
Declaration
public static Vec4i operator -(Vec4i a, Vec4i b)
Parameters
Returns
Implements
IEquatable<>