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;
}