getNormalFromSurfacePoint method
Returns the normal for a given point on this bounding sphere's surface.
Implementation
Vector3 getNormalFromSurfacePoint(Vector3 point, Vector3 result ) {
return result.subVectors( point, center ).normalize();
}
Returns the normal for a given point on this bounding sphere's surface.
Vector3 getNormalFromSurfacePoint(Vector3 point, Vector3 result ) {
return result.subVectors( point, center ).normalize();
}