Beispiel #1
0
 @Override
 public List<Spatial> getVisualSpatials() {
   List<Spatial> spatials = new ArrayList<Spatial>();
   spatials.add(getChild("pathBoxGeometry"));
   return spatials;
 }
Beispiel #2
0
 public List<Geometry> getBoundingVolumes() {
   List<Geometry> boundingVolumes = new ArrayList<Geometry>();
   Geometry boundingVolume = (Geometry) getChild("pathBoxGeometry");
   boundingVolumes.add(boundingVolume);
   return boundingVolumes;
 }