Glare.Sphere3d.Sphere3d C# (CSharp) Method

Sphere3d() public method

Initialise a sphere centred at origin.
public Sphere3d ( Double radius ) : System
radius Double The radius of the .
return System
        public Sphere3d(Double radius)
        {
            Position = Vector3d.Zero;
            Radius = radius;
        }

Same methods

Sphere3d::Sphere3d ( Vector3d position, Double radius ) : System
Sphere3d