Set() публичный Метод

public Set ( Rot other ) : Rot
other Rot
Результат Rot
Пример #1
0
 /// <summary>
 /// Set this to equal another transform.
 /// </summary>
 public Transform Set(Transform xf)
 {
     P.Set(xf.P);
     Q.Set(xf.Q);
     return(this);
 }