Package com.sun.j3d.utils.geometry

Examples of com.sun.j3d.utils.geometry.Cone


/* 110 */     super.buildGraph();
/*     */   }
/*     */
/*     */   public SceneGraphObject createNode(Class j3dClass)
/*     */   {
/* 116 */     Cone cone = (Cone)createNode(j3dClass, new Class[] { Float.TYPE, Float.TYPE, Integer.TYPE, Integer.TYPE, Integer.TYPE, Appearance.class }, new Object[] { new Float(this.radius), new Float(this.height), new Integer(this.primflags), new Integer(this.xdivision), new Integer(this.ydivision), null });
/*     */
/* 131 */     return cone;
/*     */   }
View Full Code Here


/*     */
/* 131 */     return cone;
/*     */   }
/*     */
/*     */   protected SceneGraphObject createNode() {
/* 135 */     return new Cone(this.radius, this.height, this.primflags, this.xdivision, this.ydivision, null);
/*     */   }
View Full Code Here

TOP

Related Classes of com.sun.j3d.utils.geometry.Cone

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.