intersectsRay method
dynamic
intersectsRay(
- dynamic ray
- Performs a ray/OBB intersection test. Returns either true or false if
- there is a intersection or not.
Implementation
intersectsRay(ray) {
return this.intersectRay(ray, v1) != null;
}