Vector3D.Add 方法

定義

Vector3D 結構加入至 Point3D 結構,或加入至另一個 Vector3D 結構。

多載

Add(Vector3D, Point3D)

依指定的 Point3D 結構平移指定的 Vector3D 結構,並傳回結果做為 Point3D 結構。

Add(Vector3D, Vector3D)

將兩個 Vector3D 結構相加,並傳回結果做為 Vector3D 結構。

Add(Vector3D, Point3D)

依指定的 Point3D 結構平移指定的 Vector3D 結構,並傳回結果做為 Point3D 結構。

C#
public static System.Windows.Media.Media3D.Point3D Add (System.Windows.Media.Media3D.Vector3D vector, System.Windows.Media.Media3D.Point3D point);

參數

vector
Vector3D

Vector3D 結構,用來平移指定的 Point3D 結構。

point
Point3D

要平移的 Point3D 結構。

傳回

Point3D

point 轉換 vector 的結果。

範例

下列範例示範如何使用 Add 方法來依 Vector3D 結構轉譯 Point3D 結構。

C#
// Translates a Point3D by a Vector3D using the static Add method.  
// Returns a Point3D.

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

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

另請參閱

適用於

.NET Framework 4.8 和其他版本
產品 版本
.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
Windows Desktop 3.0, 3.1, 5, 6, 7

Add(Vector3D, Vector3D)

將兩個 Vector3D 結構相加,並傳回結果做為 Vector3D 結構。

C#
public static System.Windows.Media.Media3D.Vector3D Add (System.Windows.Media.Media3D.Vector3D vector1, System.Windows.Media.Media3D.Vector3D vector2);

參數

vector1
Vector3D

要加的第一個 Vector3D 結構。

vector2
Vector3D

要加的第二個 Vector3D 結構。

傳回

Vector3D

vector1vector2 的總和。

範例

下列範例示範如何新增兩 Vector3D 個結構。

C#
// Adds a Vector3D to a Vector3D using the overloaded + operator.  
// Returns a Vector3D.

Vector3D vector1 = new Vector3D(20, 30, 40);
Vector3D vector2 = new Vector3D(45, 70, 80);
Vector3D vectorResult = new Vector3D();

vectorResult = vector1 + vector2;
// vectorResult is equal to (65, 100, 120)

另請參閱

適用於

.NET Framework 4.8 和其他版本
產品 版本
.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
Windows Desktop 3.0, 3.1, 5, 6, 7