예제 #1
0
        public Cylindrical Copy(Cylindrical other)
        {
            this.radius = other.radius;
            this.theta  = other.theta;
            this.y      = other.y;

            return(this);
        }
예제 #2
0
 public Vector3 SetFromCylindrical(Cylindrical c)
 {
     return(this.SetFromCylindricalCoords(c.radius, c.theta, c.y));
 }