BEPUutilities2.BoundingSphere.BoundingSphere C# (CSharp) Method

BoundingSphere() public method

Constructs a new bounding sphere.
public BoundingSphere ( Vector3 center, float radius ) : System
center Vector3 Location of the center of the sphere.
radius float Radius of the sphere.
return System
        public BoundingSphere(Vector3 center, float radius)
        {
            this.Center = center;
            this.Radius = radius;
        }
BoundingSphere