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