Vector3D(Double, Double, Double) Constructor

Definition

Initializes a new instance of the Vector3D structure.

public Vector3D (double x, double y, double z);

Parameters

x
Double

The new Vector3D structure's X value.

y
Double

The new Vector3D structure's Y value.

z
Double

The new Vector3D structure's Z value.

Examples

// Translates a Point3D by a Vector3D using the overloaded + operator.  
// Returns a Point3D.

Vector3D vector1 = new Vector3D(20, 30, 40);
Point3D point1 = new Point3D(10, 5, 1);
Point3D pointResult = new Point3D();

pointResult = point1 + vector1;
// vectorResult is equal to (30, 35, 41)

Applies to

제품 버전
.NET Framework 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9