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

Sphere() public method

Creates an arbitrary spehere.
public Sphere ( Vector3 center, Real radius ) : System
center Vector3 Center point of the sphere.
radius Real Radius of the sphere.
return System
		public Sphere( Vector3 center, Real radius )
		{
			this.center = center;
			this.radius = radius;
		}

Same methods

Sphere::Sphere ( ) : System