Description:

Initializes a new instance of a vector, using its three components.

Syntax:
public Vector3d(
double x,
double y,
double z
)
Parameters:
  • x
  • Type: double
  • The X (first) component.
  • y
  • Type: double
  • The Y (second) component.
  • z
  • Type: double
  • The Z (third) component.
Available since:
5.0

Description:

Initializes a new instance of a vector, copying the three components from the three coordinates of a point.

Syntax:
public Vector3d(
Point3d point
)
Parameters:
  • point
  • Type: Point3d
  • The point to copy from.
Available since:
5.0

Description:

Initializes a new instance of a vector, copying the three components from a vector.

Syntax:
public Vector3d(
Vector3d vector
)
Parameters:
  • vector
  • Type: Vector3d
  • A double-precision vector.
Available since:
5.0

Description:

Initializes a new instance of a vector, copying the three components from a single-precision vector.

Syntax:
public Vector3d(
Vector3f vector
)
Parameters:
  • vector
  • Type: Vector3f
  • A single-precision vector.
Available since:
5.0

Vector3d constructor

Class:  Rhino.Geometry.Vector3d

Nothing found