Vector3d Constructors

Definition

Overloads

Vector3d(Vector2d)

Constructs a new instance from the given Vector2d.

Vector3d(Vector3d)

Constructs a new instance from the given Vector3d.

Vector3d(Vector4d)

Constructs a new instance from the given Vector4d.

Vector3d(Double)
Vector3d(Double, Double, Double)

Constructs a new Vector3.

Vector3d(Vector2d)

Constructs a new instance from the given Vector2d.

public Vector3d (OpenTK.Vector2d v);
new OpenTK.Vector3d : OpenTK.Vector2d -> OpenTK.Vector3d

Parameters

v
Vector2d

The Vector2d to copy components from.

Applies to

Vector3d(Vector3d)

Constructs a new instance from the given Vector3d.

public Vector3d (OpenTK.Vector3d v);
new OpenTK.Vector3d : OpenTK.Vector3d -> OpenTK.Vector3d

Parameters

v
Vector3d

The Vector3d to copy components from.

Applies to

Vector3d(Vector4d)

Constructs a new instance from the given Vector4d.

public Vector3d (OpenTK.Vector4d v);
new OpenTK.Vector3d : OpenTK.Vector4d -> OpenTK.Vector3d

Parameters

v
Vector4d

The Vector4d to copy components from.

Applies to

Vector3d(Double)

public Vector3d (double value);
new OpenTK.Vector3d : double -> OpenTK.Vector3d

Parameters

value
Double

Applies to

Vector3d(Double, Double, Double)

Constructs a new Vector3.

public Vector3d (double x, double y, double z);
new OpenTK.Vector3d : double * double * double -> OpenTK.Vector3d

Parameters

x
Double

The x component of the Vector3.

y
Double

The y component of the Vector3.

z
Double

The z component of the Vector3.

Applies to