Vector.Negate メソッド

定義

このベクターを否定します。 ベクターの大きさはこれまでと変わりませんが、方向は逆になります。

public:
 void Negate();
public void Negate ();
member this.Negate : unit -> unit
Public Sub Negate ()

次の例は、このメソッドを使用してベクターを否定する方法を示しています。

private Vector negateExample()
{
    Vector vectorResult = new Vector(20, 30);

    // Make the direction of the Vector opposite but
    // leave the vector magnitude the same.
    // vectorResult is equal to (-20, -30)
    vectorResult.Negate();

    return vectorResult;
}

適用対象

こちらもご覧ください