示例#1
0
 /** Performs a ray collision test and returns the results as a list of PhysicsRayTestResults */
 public List rayTest(Vector3f from, Vector3f to) {
   List results = new LinkedList();
   rayTest(from, to, results);
   return (List<PhysicsRayTestResult>) results;
 }