Package com.sun.j3d.utils.scenegraph.io.state.javax.media.j3d

Examples of com.sun.j3d.utils.scenegraph.io.state.javax.media.j3d.SceneGraphObjectState


/*     */       }
/*     */
/* 212 */       this.symbolTable.setBranchGraphRoot(symbol, filePointer);
/*     */
/* 214 */       this.symbolTable.startUnsavedNodeComponentFrame();
/* 215 */       SceneGraphObjectState state = createState(bg, symbol);
/*     */       try
/*     */       {
/* 218 */         writeObject(this.raf, state);
/* 219 */         writeNodeComponents(this.raf);
/*     */       } catch (IOException e) {
View Full Code Here


/*     */
/*     */   protected void readNodeComponents(DataInput in)
/*     */     throws IOException
/*     */   {
/* 371 */     int count = in.readInt();
/*     */     SceneGraphObjectState nodeComponent;
/* 373 */     for (int i = 0; i < count; i++) {
/* 374 */       int nodeID = in.readInt();
/* 375 */       long nextNC = in.readLong();
/* 376 */       if (this.symbolTable.isLoaded(nodeID))
/*     */       {
View Full Code Here

TOP

Related Classes of com.sun.j3d.utils.scenegraph.io.state.javax.media.j3d.SceneGraphObjectState

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.