Vector4
The Vector4 class represents a four-dimensional vector.
Definition
Namespace: com.dynamsoft.core.basic_structures
Assembly: DynamsoftCaptureVisionBundle.aar
class Vector4
Attributes & Methods
| Attributes | Type | Description |
|---|---|---|
value |
int[4] | The components value of a four-dimensional vector. |
| Methods | Description |
|---|---|
Vector4 |
The constructor. |
Vector4(v1,v2,v3,v4) |
Constructs a Vector4 from 4 integer values. |
value
The components value of a four-dimensional vector.
public int[] value = new int[4];
Vector4
The constructor.
Vector4();
Vector4(v1,v2,v3,v4)
Constructs a Vector4 from 4 integer values.
Vector4(int v1, int v2, int v3, int v4)