Axiom.Math.Sphere.Sphere C# (CSharp) Method

Sphere() public method

Creates a unit sphere centered at the origin.
public Sphere ( ) : System
return System
		public Sphere()
		{
			radius = 1.0f;
			center = Vector3.Zero;
		}

Same methods

Sphere::Sphere ( Vector3 center, Real radius ) : System