⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 appearancemixed.java

📁 java 3d编程的一些例子源代码
💻 JAVA
📖 第 1 页 / 共 2 页
字号:
		// Set up the polygon attributes		PolygonAttributes pa = new PolygonAttributes();		pa.setPolygonMode(pa.POLYGON_LINE);		pa.setCullFace(pa.CULL_NONE);		app.setPolygonAttributes(pa);		break;	    }	// Unlit points	case 2:	    {		// Set up the coloring properties		Color3f objColor = new Color3f(0.2f, 0.2f, 1.0f);		ColoringAttributes ca = new ColoringAttributes();		ca.setColor(objColor);		app.setColoringAttributes(ca);		// Set up the polygon attributes		PolygonAttributes pa = new PolygonAttributes();		pa.setPolygonMode(pa.POLYGON_POINT);		pa.setCullFace(pa.CULL_NONE);		app.setPolygonAttributes(pa);		// Set up point attributes		PointAttributes pta = new PointAttributes();		pta.setPointSize(5.0f);		app.setPointAttributes(pta);		break;	    }	// Lit solid	case 3:	    {		// Set up the material properties		Color3f objColor = new Color3f(0.8f, 0.0f, 0.0f);		app.setMaterial(new Material(objColor, black, objColor,					     white, 80.0f));		break;	    }	// Texture mapped, lit solid	case 4:	    {		// Set up the texture map		TextureLoader tex = new TextureLoader(texImage, this);		app.setTexture(tex.getTexture()); 		TextureAttributes texAttr = new TextureAttributes(); 		texAttr.setTextureMode(TextureAttributes.MODULATE); 		app.setTextureAttributes(texAttr); 		// Set up the material properties		app.setMaterial(new Material(white, black, white, black, 1.0f));		break;	    }	// Transparent, lit solid	case 5:	    {		// Set up the transparency properties		TransparencyAttributes ta = new TransparencyAttributes();		ta.setTransparencyMode(ta.BLENDED);		ta.setTransparency(0.6f);		app.setTransparencyAttributes(ta);		// Set up the polygon attributes		PolygonAttributes pa = new PolygonAttributes();		pa.setCullFace(pa.CULL_NONE);		app.setPolygonAttributes(pa);		// Set up the material properties		Color3f objColor = new Color3f(0.7f, 0.8f, 1.0f);		app.setMaterial(new Material(objColor, black, objColor,					     black, 1.0f));		break;	    }	// Lit solid, no specular	case 6:	    {		// Set up the material properties		Color3f objColor = new Color3f(0.8f, 0.0f, 0.0f);		app.setMaterial(new Material(objColor, black, objColor,					     black, 80.0f));		break;	    }	// Lit solid, specular only	case 7:	    {		// Set up the material properties		Color3f objColor = new Color3f(0.8f, 0.0f, 0.0f);		app.setMaterial(new Material(black, black, black,					     white, 80.0f));		break;	    }	// Another lit solid with a different color	case 8:	    {		// Set up the material properties		Color3f objColor = new Color3f(0.8f, 0.8f, 0.0f);		app.setMaterial(new Material(objColor, black, objColor,					     white, 80.0f));		break;	    }	default:	    {		ColoringAttributes ca = new ColoringAttributes();		ca.setColor(new Color3f(0.0f, 1.0f, 0.0f));		app.setColoringAttributes(ca);	    }	}	return app;    }    private Group createObject(Appearance app, double scale,			       double xpos, double ypos) {	// Create a transform group node to scale and position the object.	Transform3D t = new Transform3D();	t.set(scale, new Vector3d(xpos, ypos, 0.0));	TransformGroup objTrans = new TransformGroup(t);	// Create a second transform group node and initialize it to the	// identity.  Enable the TRANSFORM_WRITE capability so that	// our behavior code can modify it at runtime.	TransformGroup spinTg = new TransformGroup();	spinTg.setCapability(TransformGroup.ALLOW_TRANSFORM_WRITE);	// Create a simple shape leaf node and set the appearance	Shape3D shape = new Tetrahedron();	shape.setAppearance(app);	// add it to the scene graph.	spinTg.addChild(shape);	// Create a new Behavior object that will perform the desired	// operation on the specified transform object and add it into	// the scene graph.	Transform3D yAxis = new Transform3D();	Alpha rotationAlpha = new Alpha(-1, Alpha.INCREASING_ENABLE,					0, 0,					5000, 0, 0,					0, 0, 0);	RotationInterpolator rotator =	    new RotationInterpolator(rotationAlpha, spinTg, yAxis,				     0.0f, (float) Math.PI*2.0f);	BoundingSphere bounds =	    new BoundingSphere(new Point3d(0.0,0.0,0.0), 100.0);	rotator.setSchedulingBounds(bounds);	// Add the behavior and the transform group to the object	objTrans.addChild(rotator);	objTrans.addChild(spinTg);	return objTrans;    }    private Canvas3D createUniverse() {	// Get the preferred graphics configuration for the default screen	GraphicsConfiguration config =	    SimpleUniverse.getPreferredConfiguration();	// Create a MyCanvas3D using the preferred configuration        MyCanvas3D c = new MyCanvas3D(config);	// Create simple universe with view branch	univ = new SimpleUniverse(c);	// This will move the ViewPlatform back a bit so the	// objects in the scene can be viewed.	univ.getViewingPlatform().setNominalViewingTransform();	// Ensure at least 5 msec per frame (i.e., < 200Hz)	univ.getViewer().getView().setMinimumFrameCycleTime(5);	return c;    }    /**     * Creates new form AppearanceMixed     */    public AppearanceMixed() {        if (bgImage == null) {            // the path to the image for an applet            bgImage = Resources.getResource("resources/images/bg.jpg");            if (bgImage == null) {                System.err.println("resources/images/bg.jpg not found");                System.exit(1);            }        }		if (texImage == null) {            // the path to the image for an applet            texImage = Resources.getResource("resources/images/stone.jpg");            if (texImage == null) {                System.err.println("resources/images/stone.jpg not found");                System.exit(1);            }        }	// Initialize the GUI components	initComponents();	// Create Canvas3D and SimpleUniverse; add canvas to drawing panel	Canvas3D c = createUniverse();	drawingPanel.add(c, java.awt.BorderLayout.CENTER);	// Create the content branch and add it to the universe	scene = createSceneGraph();	univ.addBranchGraph(scene);    }    // ----------------------------------------------------------------        /** This method is called from within the constructor to     * initialize the form.     * WARNING: Do NOT modify this code. The content of this method is     * always regenerated by the Form Editor.     */    // <editor-fold defaultstate="collapsed" desc=" Generated Code ">//GEN-BEGIN:initComponents    private void initComponents() {        drawingPanel = new javax.swing.JPanel();        setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);        setTitle("AppearanceMixed");        drawingPanel.setLayout(new java.awt.BorderLayout());        drawingPanel.setPreferredSize(new java.awt.Dimension(700, 700));        getContentPane().add(drawingPanel, java.awt.BorderLayout.CENTER);        pack();    }// </editor-fold>//GEN-END:initComponents        /**     * @param args the command line arguments     */    public static void main(String args[]) {        java.awt.EventQueue.invokeLater(new Runnable() {            public void run() {                new AppearanceMixed().setVisible(true);            }        });    }        // Variables declaration - do not modify//GEN-BEGIN:variables    private javax.swing.JPanel drawingPanel;    // End of variables declaration//GEN-END:variables    }

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -