Tagged Questions
The triangle-generation tag has no wiki summary.
6
votes
2answers
199 views
Create 2d triangles from 2d points
I have to make 2d triangles from a list of 2d points with a condition: length of any edge can't be longer than a predefined constant.
Something like this:
Do you know any algorithm that can do ...
3
votes
3answers
569 views
Android-Java: Constructing a triangle based on Coordinates on a map and your bearing
Thanks,
EDIT///
Converting the outcome to radians gives me a lat of 5.6xxxxxxxxxxxxxx .I have a feeling this bug has something to do with conversions but its not THAT simple.
The equation is ...
2
votes
3answers
1k views
How do I extract a 2D slice from 3D geometry from plane intersection?
Recently our team was facing the task to build the 2D slice between a plane and some set of 3D geometry (set of triangles). Google hasn't been as helpful as we have wanted it to be, so we turn our ...
1
vote
1answer
92 views
Are there any polygon triangulation tools for Android OpenGL ES?
I am trying to build my new android game. I went through the tutorials of opengl es 1.1 and many web sites about opengl es 1.1. I got to know that the rendering in opengl es is only by point, line and ...
1
vote
2answers
281 views
General Polygon Clipper: Triangulate without additional vertices
I am using GPC to break up polygons into triangles. However, GPC is very obviously creating additional vertices while generating triangles. Is there a way to avoid this?
0
votes
1answer
464 views
XNA C# getting 12 trangle faces of a cube , given (MIN,MAX) of BoundingBox
Is there a eazy way or c# class to get 12 triangles of a cube
where, only (MIN,MAX) coordinates are known for the BoundingBox cube
i want to use PrimitiveType.TriangleList for rendering face of ...