Vector.Negate メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
このベクターを否定します。 ベクターの大きさはこれまでと変わりませんが、方向は逆になります。
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;
}