HelixToolkit.Wpf.BoundingSphere.Contains C# (CSharp) Method

Contains() public method

Determines if the specified point is inside the sphere.
public Contains ( System.Windows.Media.Media3D.Point3D point ) : bool
point System.Windows.Media.Media3D.Point3D /// The point. ///
return bool
        public bool Contains(Point3D point)
        {
            return point.DistanceToSquared(this.center) < this.radius * this.radius;
        }