Package org.mt4j.components.visibleComponents.shapes.mesh

Examples of org.mt4j.components.visibleComponents.shapes.mesh.MTCube


            getCanvas().addChild(roundRect);
           
        MTEllipse ellipse = new MTEllipse(getMTApplication(), new Vector3D(100,100,0), 160, 80);
        getCanvas().addChild(ellipse);
       
        MTCube cube = new MTCube(getMTApplication(), 150);
        getCanvas().addChild(cube);
       
        MTSphere sphere = new MTSphere(getMTApplication(), "sphere", 30,30, 130);
        getCanvas().addChild(sphere);
       
View Full Code Here

TOP

Related Classes of org.mt4j.components.visibleComponents.shapes.mesh.MTCube

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.