Package com.sun.j3d.utils.universe

Examples of com.sun.j3d.utils.universe.ConfiguredUniverse


/*     */   }
/*     */
/*     */   public void readObject(DataInput in, Canvas3D canvas) throws IOException {
/* 118 */     int mtgSize = in.readInt();
/* 119 */     if (canvas != null)
/* 120 */       this.universe = new ConfiguredUniverse(canvas, mtgSize);
/*     */     else {
/* 122 */       this.universe = new ConfiguredUniverse(ConfiguredUniverse.getConfigURL(), mtgSize);
/*     */     }
/* 124 */     MultiTransformGroup mtg = this.universe.getViewingPlatform().getMultiTransformGroup();
/*     */
/* 127 */     Matrix4d matrix = new Matrix4d();
/* 128 */     for (int i = 0; i < mtgSize; i++) {
View Full Code Here

TOP

Related Classes of com.sun.j3d.utils.universe.ConfiguredUniverse

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.