Vector(Double, Double) コンストラクター

定義

Vector 構造体の新しいインスタンスを初期化します。

public:
 Vector(double x, double y);
public Vector (double x, double y);
new System.Windows.Vector : double * double -> System.Windows.Vector
Public Sub New (x As Double, y As Double)

パラメーター

x
Double

新しい XVector オフセット。

y
Double

新しい YVector オフセット。

次の例は、2 つのベクトルを作成し、それらを追加する方法を示しています。

private Vector addTwoVectorsExample()
{
    // Create two Vector structures.
    Vector vector1 = new Vector(20, 30);
    Vector vector2 = new Vector(45, 70);
    Vector vectorResult = new Vector();

    // Add the vectors together. 
    // vectorResult is equal to (65, 100).
    vectorResult = Vector.Add(vector1, vector2);

    return vectorResult;
}

適用対象