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

            return(this);
        }
예제 #2
0
 public Vector3 SetFromSpherical(Spherical s)
 {
     return(this.SetFromSphericalCoords(s.radius, s.phi, s.theta));
 }