Tagged Questions

9
votes
4answers
218 views

Locate triangle containing arbitrary point in Delaunay-triangulated surface

I'm looking to do a linear interpolation of a irregularly sampled function z(x,y) based on a Delaunay triangulation. Say I have a hill for which I have obtained a Delaunay triangulation: I know ...
7
votes
3answers
389 views

Algorithm to convert vertices of a triangular strip to polygon

I have an array with vertices representing a triangular strip. I need to convert it into polygon. There are many solution to do the reverse, but I failed to find one for the above problem. Or it ...
7
votes
3answers
834 views

Efficient Packing Algorithm for Regular Polygons

I'm looking for a packing algorithm which will reduce a regular polygon into rectangles and right triangles. The algorithm should attempt to use as few such shapes as possible and should be relatively ...
7
votes
4answers
563 views

Meshing of Point Clouds from a 3Dlaser scanner

Is there any package/software which can do Meshing of Point Clouds in real time? What is the data structure used to represent 3D Point Clouds ?
5
votes
2answers
144 views

Algorithm for completing a partial triangulation (Constrained Triangulation)

Given a set of points in a plane and an incomplete triangulation of the convex hull of the points (only some edges are given), I'm looking for an algorithm to complete the triangulation (the initial ...
4
votes
1answer
218 views

3-D Shape detection from triangulation mesh

I'm looking for any algorithm or source code which can find whole or partial simple 3-D shapes (sphere, cylinder, cone, etc) in a 3-D triangulation mesh. I've found several papers on algorithms ...
4
votes
4answers
1k views

3D triangulation algorithm

Does anybody know what triangulation algorithm Maya uses? Lacking that, what would be the most probable algoritms to try? I tried a few simple off the top of my head (shortest/longest resulting edges, ...
2
votes
1answer
59 views

Polygon triangulation into triangle strips for OpenGL ES

I am looking for a fast polygon triangulation algorithm that can triangulate not very complex 2D concave polygons (without holes) into triangle strips ready to be sent to OpenGL ES for drawing using ...
2
votes
2answers
70 views

Triangulation of multiple 2d sections

I have multiple 2d polygons built up from points in y and z direction, each of these "faces" are located at a cordinate x. I want to show this as a solid model and therefor need to triangulate the ...
2
votes
3answers
249 views

Triangulation algorithm

I've decided to create a simple demo, dividing a polygon into triangle set. Here what i've got so far: A sequential vertex list is given (P1) forming polygon edges (polygon is not convex in most ...
1
vote
2answers
373 views

Simple 2d polygon triangulation

Trying to triangulate a set of simple 2d polygons, I've come up with this algorithm: 1) For each vertex in the polygon, compute the angle between the two linked edges 2) Sort vertices by decreasing ...
1
vote
1answer
424 views

Localising a receiver using trilateration of base station signal strengths?

I have a system with a number of base station beacons, each broadcasting an infinitely fast signal describing their position on a 2D Cartesian plane. The signal strength begins with a [unitless] power ...
1
vote
2answers
280 views

Determining The Coordinates Of A Point Based On Its Known Difference From Three Other Points

I have the coordinates of three points on a plane. Let's call them X1,Y1, X2,Y2, X3 Y3. I need to calculate X4,Y4 but all I know is: X1,Y1 is 350 units in distance from X4,Y4 X2,Y2 is 200 units in ...
1
vote
1answer
443 views

constructing the contour of a 2d figure(in particular a triangulation)

How would I go about constructing the contour of 2d figure which is formed of only triangles and it can have holes and the external contour can be concave/convex and the holes can also be ...
0
votes
1answer
83 views

Triangulating a set of voxels

I haven't done much research on this yet, but i'm just asking around in case this has been done before. Here's my problem: I have a set of cubes of an arbitrary height, width and depth. These are ...