Examples of tesselate()


Examples of org.mt4j.util.opengl.GluTrianglulator.tesselate()

    int segments = 10;
    List<Vertex[]> bezierContours = ToolsGeometry.createVertexArrFromBezierVertexArrays(contours, segments);
   
    //Triangulate bezier contours
    GluTrianglulator triangulator = new GluTrianglulator(pApplet);
    List<Vertex> tris = triangulator.tesselate(bezierContours);
    //Set new geometry info with triangulated vertices
    super.setGeometryInfo(new GeometryInfo(pApplet, tris.toArray(new Vertex[tris.size()])));
    //Set Mesh outlines
    this.setOutlineContours(bezierContours);
    //Delete triangulator (C++ object)
View Full Code Here

Examples of org.mt4j.util.opengl.GluTrianglulator.tesselate()

 
  public void setVertices(List<Vertex[]> contours, int windingRule) {
    this.setOutlineContours(contours);
   
    GluTrianglulator triangulator = new GluTrianglulator(getRenderer());
    List<Vertex> tris = triangulator.tesselate(contours, windingRule);
    triangulator.deleteTess();
   
    super.setVertices(tris.toArray(new Vertex[tris.size()]));
  }
 
View Full Code Here

Examples of org.mt4j.util.opengl.GluTrianglulator.tesselate()

    List<Vertex[]> contours = new ArrayList<Vertex[]>();
    contours.add(vertices);
    this.setOutlineContours(contours);
   
    GluTrianglulator triangulator = new GluTrianglulator(getRenderer());
    Vertex[] tris = triangulator.tesselate(vertices);
    triangulator.deleteTess();
   
    super.setVertices(tris);
  }
 
View Full Code Here

Examples of org.mt4j.util.opengl.GluTrianglulator.tesselate()

      //Performance hit! but prevents object from sticking to another sometimes
//      theBody.setBullet(true);
    }else{
      System.out.println("-> Ear clipping had an ERROR - trying again by triangulating shape for b2d with GLU-Triangulator");
      GluTrianglulator triangulator = new GluTrianglulator(applet);
      List<Vertex> physicsTris = triangulator.tesselate(physicsVertices, GLU.GLU_TESS_WINDING_NONZERO);
      Vertex[] triangulatedBodyVerts = physicsTris.toArray(new Vertex[physicsTris.size()]);
      //System.out.println("GLU tris created: " + triangulatedBodyVerts.length);

      //Cap the max triangles - dont use anymore triangles for the physics body..
      int cap = 400;
View Full Code Here

Examples of org.mt4j.util.opengl.GluTrianglulator.tesselate()

      //Performance hit! but prevents object from sticking to another sometimes
//      theBody.setBullet(true);
    }else{
      System.out.println("-> Ear clipping had an ERROR - trying again by triangulating shape for b2d with GLU-Triangulator");
      GluTrianglulator triangulator = new GluTrianglulator(this.getRenderer());
      List<Vertex> physicsTris = triangulator.tesselate(bodyVerts, GLU.GLU_TESS_WINDING_NONZERO);
      Vertex[] triangulatedBodyVerts = physicsTris.toArray(new Vertex[physicsTris.size()]);
      //System.out.println("GLU tris created: " + triangulatedBodyVerts.length);

      //Cap the max triangles - dont use anymore triangles for the physics body..
      int cap = 400;
View Full Code Here

Examples of org.mt4j.util.opengl.GluTrianglulator.tesselate()

   
    GluTrianglulator triangulator = new GluTrianglulator(pa);
   
//    MTTriangleMesh mesh = triangulator.toTriangleMesh(bezierContours, windingRule);
   
    triangulator.tesselate(bezierContours, windingRule);
    List<Vertex> tris = triangulator.getTriList();
    Vertex[] verts = tris.toArray(new Vertex[tris.size()]);
    GeometryInfo geom = new GeometryInfo(pa, verts);
   
//    MTTriangleMesh mesh = new MTTriangleMesh(pa, geom);
View Full Code Here

Examples of org.mt4j.util.opengl.GluTrianglulator.tesselate()

 
  public static List<Vertex> triangulateGLU(MTApplication app, List<Vertex> vertices){
    System.err.println("Trying glu triangulation..");
    GluTrianglulator triangulator = new GluTrianglulator(app);
    Vertex[] vertexArray = vertices.toArray(new Vertex[vertices.size()]);
    List<Vertex> triVerts = triangulator.tesselate(vertexArray, GLU.GLU_TESS_WINDING_NONZERO);
    return triVerts;
  }
 
 
  public static float scaleDown(float distance, float physicsScale){
View Full Code Here

Examples of org.mt4j.util.opengl.GluTrianglulator.tesselate()

    Vertex.scaleVectorArray(vertices, Vector3D.ZERO_VECTOR, 1f/worldScale, 1f/worldScale, 1);
   
    position.scaleLocal(1f/worldScale); //FIXME REALLY?
   
      GluTrianglulator triangulator = new GluTrianglulator(applet);
    List<Vertex> physicsTris = triangulator.tesselate(vertices, GLU.GLU_TESS_WINDING_NONZERO);
    Vertex[] triangulatedBodyVerts = physicsTris.toArray(new Vertex[physicsTris.size()]);
    triangulator.deleteTess();
    //Set the triangulated vertices as the polygons (mesh's) vertices
    this.setGeometryInfo(new GeometryInfo(applet, triangulatedBodyVerts));
   
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.