Beispiel #1
0
 public void buildGraph() {
   ((Light) node)
       .setInfluencingBoundingLeaf(
           (BoundingLeaf) control.getSymbolTable().getJ3dNode(boundingLeaf));
   for (int i = 0; i < scope.length; i++) {
     ((Light) node).addScope((Group) control.getSymbolTable().getJ3dNode(scope[i]));
   }
   super.buildGraph(); // Must be last call in method
 }