Package com.sun.j3d.utils.scenegraph.io.retained

Examples of com.sun.j3d.utils.scenegraph.io.retained.SymbolTableData


/* 214 */     Enumeration e = this.universe.getAllLocales();
/* 215 */     for (int i = 0; i < this.localeBGs.size(); i++) {
/* 216 */       Locale locale = (Locale)e.nextElement();
/* 217 */       int[] bgs = (int[])this.localeBGs.get(i);
/* 218 */       for (int j = 0; j < bgs.length; j++) {
/* 219 */         SymbolTableData symbol = this.control.getSymbolTable().getBranchGraphRoot(bgs[j]);
/* 220 */         locale.addBranchGraph((BranchGroup)symbol.j3dNode);
/*     */       }
/*     */     }
/*     */
/* 224 */     if (this.viewerAvatar != null) {
View Full Code Here


/*     */     try
/*     */     {
/* 261 */       for (int i = 0; i < this.localeBGs.size(); i++) {
/* 262 */         int[] bgs = (int[])this.localeBGs.get(i);
/* 263 */         for (int j = 0; j < bgs.length; j++) {
/* 264 */           SymbolTableData symbol = this.control.getSymbolTable().getBranchGraphRoot(bgs[j]);
/* 265 */           ((BranchGroup)symbol.j3dNode).detach();
/*     */         }
/*     */       }
/*     */     } catch (CapabilityNotSetException e) {
/* 269 */       throw new CapabilityNotSetException("Locale BranchGraphs MUST have ALLOW_DETACH capability set");
View Full Code Here

/*     */
/* 281 */     for (int i = 0; i < this.localeBGs.size(); i++) {
/* 282 */       Locale locale = (Locale)e.nextElement();
/* 283 */       int[] bgs = (int[])this.localeBGs.get(i);
/* 284 */       for (int j = 0; j < bgs.length; j++) {
/* 285 */         SymbolTableData symbol = this.control.getSymbolTable().getBranchGraphRoot(bgs[j]);
/* 286 */         locale.addBranchGraph((BranchGroup)symbol.j3dNode);
/*     */       }
/*     */     }
/*     */   }
View Full Code Here

/*    */   SymbolTableData symbolTableData;
/*    */
/*    */   public NullSceneGraphObjectState(SymbolTableData symbol, Controller control)
/*    */   {
/* 66 */     super(null, control);
/* 67 */     this.symbolTableData = new SymbolTableData(-1, null, this, -1);
/*    */   }
View Full Code Here

TOP

Related Classes of com.sun.j3d.utils.scenegraph.io.retained.SymbolTableData

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.