Package com.xith3d.scenegraph

Examples of com.xith3d.scenegraph.View


    if(peerWindow!=null){
        peerWindow.setLocation(x, y);
    }
    canvas=new Canvas3D();
    canvas.set3DPeer(canvasPeer);
    view = new View();
   
    view.addCanvas3D(canvas);

    if(peerComponent!=null){
      peerComponent.addMouseListener(this);
View Full Code Here


    protected transient View3DShape shape = null;
    protected transient ViewTransformator transformator;

    public SynopticViewNodeXith3d(ActiveNode parent) {
        super(parent);
        view = new View();
        ((SceneNodeXith3D)parent).getUniverse().addView(view);
        ((SceneNode)parent).addListener(this);
        transformator = new ViewTransformator();
    }
View Full Code Here

TOP

Related Classes of com.xith3d.scenegraph.View

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.