Esempio n. 1
0
 public void process(Ray3 worldRay, Vector3 boxLocation)
 {
     if (enabled)
     {
         axisBox.setCenter(boxLocation + centerOffset);
         selected = axisBox.testIntersection(ref worldRay);
     }
 }
Esempio n. 2
0
 public bool checkBoundingBoxCollision(ref Ray3 spaceRay)
 {
     boundingBox.setCenter(movable.ToolTranslation + boundingBox.getExtents());
     return(boundingBox.testIntersection(spaceRay));
 }
Esempio n. 3
0
 internal bool checkBoundingBoxCollision(ref Ray3 spaceRay)
 {
     boundingBox.setCenter(movable.ToolTranslation);
     return(boundingBox.testIntersection(spaceRay));
 }