Package com.xith3d.scenegraph

Examples of com.xith3d.scenegraph.Switch


    protected Switch sw;
   
    public SwitchNodeXith3D(ActiveNode parent) {
        super(parent);
        sw = new Switch(Switch.CHILD_MASK, status);
        sw.setName(name);
        sw.setUserData(this);
        sw.setPickable(true);
        ((Group)parent.get3DObject()).addChild(sw);
    }
View Full Code Here

TOP

Related Classes of com.xith3d.scenegraph.Switch

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.