Package org.pollux3d.menu

Examples of org.pollux3d.menu.Ring


    app.start();
  }

  @Override
  public void simpleInitApp() {
    Ring r = new Ring(3f, 0.5f);
    r.setPointSize(10f);
    r.setStatic();
    Geometry g = new Geometry("geo_ring", r);
    Material mat = new Material(assetManager, "Common/MatDefs/Misc/SolidColor.j3md");
    mat.setColor("Color", ColorRGBA.Blue);
    mat.getAdditionalRenderState().setFaceCullMode(FaceCullMode.Off);
    g.setMaterial(mat);
View Full Code Here

TOP

Related Classes of org.pollux3d.menu.Ring

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.