Пример #1
0
 public bool checkBoundingBoxCollision(ref Ray3 spaceRay)
 {
     boundingBox.setCenter(movable.ToolTranslation + boundingBox.getExtents());
     return(boundingBox.testIntersection(spaceRay));
 }