public Spherical Copy(Spherical other) { this.radius = other.radius; this.phi = other.phi; this.theta = other.theta; return(this); }
public Vector3 SetFromSpherical(Spherical s) { return(this.SetFromSphericalCoords(s.radius, s.phi, s.theta)); }