Triangulation is either using angular measurements along a baseline to find the location of points, or splitting a polygon into triangles so that it can be rendered by a graphics library.
Questions tagged [triangulation]
831 questions
-1
votes
1 answer
Find third point with circumcenter and two points of a triangle
How to calculate the third point of the isosceles triangle using JAVA, given its two points and the circumcenter. There will be two solutions for this, and it is sufficient for me if I get the shortest one from the points A and B.

Anand
- 693
- 1
- 8
- 26
-1
votes
1 answer
Triangulation library works with firefox but not in Chrome?
I am doing a triangulation by using the library Poly2Tri.
My code:
var swctx = new poly2tri.SweepContext(contour);
swctx.triangulate();
var triangles = swctx.getTriangles();
for (var w = 0; w < triangles.length; w++) {
pts_tri =…

Moehre
- 151
- 1
- 4
- 17
-1
votes
2 answers
Get connected points (edges) from a d-dimensional Delaunay Triangulation in CGAL
I have a set of points. I want to calculate the Delaunay Triangulation of them using CGAL and then get the neighbors back.
Input:
p1, p2, p3, p4, ...
Output:
p1-p2, p1-p4, ....
I found answers to this problem for 2 or 3 dimensions. However I need…

Simon Hanna
- 1
- 1
-1
votes
1 answer
what does the output of 3D delaunay triangulation represent?
I want to know what does the ConnectivityList in Delaunay triangulation in Matlab represent? Why does it have 4 columns?

ala
- 1
- 1
-1
votes
1 answer
creating a non uniform distribution of points in 3D
I am trying to have a non-uniform and uniform distribution of points in 3D. Is there any way I can do so automatically? Do I use some sort of meshing software. I want it return a file stating the positions of the various points. Can some one help me…

computationally_curious
- 71
- 1
- 1
- 5
-1
votes
2 answers
Understanding Delaunay triangulation
I am having trouble finding simple and complete explanations for algorithms on how to construct a Delaunay Triangulation given a set of points. Could anyone explain to me or redirect me to some resources that explain in a simple manner an…

Dan Brenner
- 880
- 10
- 23
-1
votes
1 answer
how to find distance/length/size of an object using bluetooth device?
Possible Duplicate:
How to Measure distance and height of an object using Android?
how to detect an object and calculate distance of an object using radio waves of bluetooth device using android please give me some idea .without using sensor…

user1594615
- 11
- 1
-1
votes
1 answer
How to flip the edge of two connected triangles?
let's say I have two triangles with one shared edge. How can I flip the triangle order so that the two single points make up the new common edge?
Thanks

user1543946
- 43
- 5
-2
votes
2 answers
get adjacent and opposite of an triangle with hypotenuse and an angle
I'm trying to create a program that calculates the adjacent and opposite of a triangle using the hypotenuse and the angle between the hypotenuse and the adjacent with python

Kevin
- 13
- 5
-2
votes
2 answers
How to find the value of x and y using the given mathematical expression
How can I transform the given mathematical expression in python to find x & y value?
(x-x2)**2 + (y-y2)**2 = d1**2 ====> 1
(x-x3)**2 + (y-y3)**2 = d3**2 ====> 2
By subtracting one from…

Mahamutha M
- 1,235
- 1
- 8
- 24
-2
votes
1 answer
Code to triangulate a set of 2d points
I am trying to create a triangulated mesh from 100,000 2d data points and export to an obj. Any suggestions about code to do this? I have created my own Delaunay triangulation algorithm but it takes 45 minutes to run on a Xeon X5650.

Richard Klassen
- 273
- 2
- 12
-2
votes
1 answer
How to connect xyz points to a triangular polygon
We have developed an xyz grid of floatpoints and we want to connect 3 points that are next to eachother to a triangular polygon. The Problem is that we get the wrong points to connect to a 3D mesh. How do you find the right ones?

Nicolas
- 19
- 1
-2
votes
1 answer
Delaunay triangulation in C++ from lua
I'm trying to implement a simple Delaunay Triangulation, from the lua file in the zip archive to C++.
Here's the original lua file
#include "delaunay.h"
#include
#include
#include
std::vector…

bl4ckb0ne
- 1,097
- 2
- 15
- 30
-2
votes
1 answer
Fortran expected a right parenthesis in expression at (1) - Derived types in a subroutine
I get the error
"Fortran expected a right parenthesis in expression at (1)"
when specifying a component of a declared type in a subroutine. The (1) appears underneath the second % in the assignment from a, b, c in the subroutine. What am I doing…

Steve
- 109
- 4
-2
votes
1 answer
Formula for triangulation (3 references + distances)
I am trying to implement a function that will give me the GEO location (Lat,Long) given 3 GEO reference points and radius away from each point.
The signature for the function I'm looking for is:
public static GeoLocation Triangle(GeoLocation pos1,…

z0mbi3
- 336
- 4
- 14