Show / Hide Table of Contents

Struct Vec6i

6-Tuple of int (System.Int32)

Implements
IVec<Vec6i, System.Int32>
IVec
IEquatable<Vec6i>
Inherited Members
System.Object.Equals(System.Object, System.Object)
System.Object.GetType()
System.Object.ReferenceEquals(System.Object, System.Object)
Namespace: OpenCvSharp
Assembly: OpenCvSharp.dll
Syntax
public struct Vec6i : IVec<Vec6i, int>, IVec

Constructors

| Improve this Doc View Source

Vec6i(Int32, Int32, Int32, Int32, Int32, Int32)

Initializer

Declaration
public Vec6i(int item0, int item1, int item2, int item3, int item4, int item5)
Parameters
Type Name Description
System.Int32 item0
System.Int32 item1
System.Int32 item2
System.Int32 item3
System.Int32 item4
System.Int32 item5

Fields

| Improve this Doc View Source

Item0

The value of the first component of this object.

Declaration
public int Item0
Field Value
Type Description
System.Int32
| Improve this Doc View Source

Item1

The value of the second component of this object.

Declaration
public int Item1
Field Value
Type Description
System.Int32
| Improve this Doc View Source

Item2

The value of the third component of this object.

Declaration
public int Item2
Field Value
Type Description
System.Int32
| Improve this Doc View Source

Item3

The value of the fourth component of this object.

Declaration
public int Item3
Field Value
Type Description
System.Int32
| Improve this Doc View Source

Item4

The value of the fourth component of this object.

Declaration
public int Item4
Field Value
Type Description
System.Int32
| Improve this Doc View Source

Item5

The value of the sixth component of this object.

Declaration
public int Item5
Field Value
Type Description
System.Int32

Properties

| Improve this Doc View Source

Item[Int32]

Indexer

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(Vec6i)

this + other

Declaration
public readonly Vec6i Add(Vec6i other)
Parameters
Type Name Description
Vec6i other
Returns
Type Description
Vec6i
| Improve this Doc View Source

Deconstruct(out Int32, out Int32, out Int32, out Int32, out Int32, out Int32)

Deconstructing a Vector

Declaration
public readonly void Deconstruct(out int item0, out int item1, out int item2, out int item3, out int item4, out int item5)
Parameters
Type Name Description
System.Int32 item0
System.Int32 item1
System.Int32 item2
System.Int32 item3
System.Int32 item4
System.Int32 item5
| Improve this Doc View Source

Divide(Double)

this / alpha

Declaration
public readonly Vec6i Divide(double alpha)
Parameters
Type Name Description
System.Double alpha
Returns
Type Description
Vec6i
| Improve this Doc View Source

Equals(Vec6i)

Declaration
public readonly bool Equals(Vec6i other)
Parameters
Type Name Description
Vec6i 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)

this * alpha

Declaration
public readonly Vec6i Multiply(double alpha)
Parameters
Type Name Description
System.Double alpha
Returns
Type Description
Vec6i
| Improve this Doc View Source

Subtract(Vec6i)

this - other

Declaration
public readonly Vec6i Subtract(Vec6i other)
Parameters
Type Name Description
Vec6i other
Returns
Type Description
Vec6i
| 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
public Vec6d ToVec6d()
Returns
Type Description
Vec6d
| Improve this Doc View Source

ToVec6f()

Declaration
public Vec6f ToVec6f()
Returns
Type Description
Vec6f

Operators

| Improve this Doc View Source

Addition(Vec6i, Vec6i)

Declaration
public static Vec6i operator +(Vec6i a, Vec6i b)
Parameters
Type Name Description
Vec6i a
Vec6i b
Returns
Type Description
Vec6i
| Improve this Doc View Source

Division(Vec6i, Double)

Declaration
public static Vec6i operator /(Vec6i a, double alpha)
Parameters
Type Name Description
Vec6i a
System.Double alpha
Returns
Type Description
Vec6i
| Improve this Doc View Source

Equality(Vec6i, Vec6i)

Declaration
public static bool operator ==(Vec6i a, Vec6i b)
Parameters
Type Name Description
Vec6i a
Vec6i b
Returns
Type Description
System.Boolean
| Improve this Doc View Source

Inequality(Vec6i, Vec6i)

Declaration
public static bool operator !=(Vec6i a, Vec6i b)
Parameters
Type Name Description
Vec6i a
Vec6i b
Returns
Type Description
System.Boolean
| Improve this Doc View Source

Multiply(Vec6i, Double)

Declaration
public static Vec6i operator *(Vec6i a, double alpha)
Parameters
Type Name Description
Vec6i a
System.Double alpha
Returns
Type Description
Vec6i
| Improve this Doc View Source

Subtraction(Vec6i, Vec6i)

Declaration
public static Vec6i operator -(Vec6i a, Vec6i b)
Parameters
Type Name Description
Vec6i a
Vec6i b
Returns
Type Description
Vec6i

Implements

IVec<TSelf, TElem>
IVec
IEquatable<>
  • Improve this Doc
  • View Source
In This Article
Back to top Generated by DocFX