menu
three_dart package
documentation
three3d/math/sphere.dart
Sphere
containsPoint method
containsPoint method
dark_mode
light_mode
containsPoint
method
bool
containsPoint
(
Vector3
point
)
Implementation
bool containsPoint(Vector3 point) { return (point.distanceToSquared(center) <= (radius * radius)); }
three_dart package
documentation
three3d/math/sphere
Sphere
containsPoint method
Sphere class