0
votes
2answers
71 views
Find a point between two point
I two concentric circles on the screen and I want the circle on the inside to move around while the user drags their finger around the outside of the larger circle. This means that …
51
votes
9answers
1k views
Combined area of overlapping circles
I recently came across a problem where I had four circles (midpoints and radius) and had to calculate the area of the union of these circles.
Example image:
For two circles it' …
1
vote
5answers
84 views
Good starting book to learn fractal programming
what is a good book to learn fractal programming? I am a programmer, I am looking at a book that will be more algorithmic than mathematical (at least not in the beginning chapters …
1
vote
3answers
108 views
How to make sure if a polynomial curve is monotonic under interval [a,b]?
Hi, guys,
If I got a polynomial curve, and I want to find all monotonic curve segments and corresponding intervals by programming.
What's the best way to do this...
I want to avo …
0
votes
3answers
19 views
Triangulated Irregular Networks from qhull
Hi,
I wanted to create TINs from 3D points (about 7 million in every file) using qhull.
can anyone suggest a place where i could probably see how to do this? thanks!
-2
votes
2answers
138 views
Mathematics 2D Line Equation [closed]
Hi All,
In 2D plane, I have 2 line segments line1 (x1, y1) (x2, y2), and line2 (a1 b1) (a2 b2). Is it possible to find out the relation between these two lines and then use that r …
6
votes
4answers
221 views
Given a set of points, how do I find the two points that are farthest from each other?
I could compute the distance between each point and take the largest but that doesn't sound like a very efficient way to do it when there are a large (> 1000) number of points.
N …
0
votes
2answers
34 views
Ellipse geometry bound points
Hi
Is there a automatic way to get all the points of an ellipse stroke, without the filling points.
Thanks in advanced
4
votes
4answers
124 views
Rotation matrix that minimizes distance
Let's say I have two points in 3D space (a and b) and a fixed axis/unit vector called n.
I want to create a rotation matrix that minimizes the euclidan distance between point a (u …
0
votes
4answers
111 views
Line Equation with angle
How can I find equation of a line or draw a line, given a starting point, length of line and angle of line (relative to x-axis)?
4
votes
3answers
140 views
How to find largest triangle in convex hull aside from brute force search
Given a convex polygon, how do I find the 3 points that define a triangle with the greatest area.
Related: Is it true that the circumcircle of that triangle would also define th …
0
votes
2answers
67 views
Calculate lat/lng of corners of ground overlay from kml-file
I need to find the corners in lat/lng of a ground overlay given in a kml-file either in php or javascript.
I.e. for a specific example I need to get from:
<LatLonBox>
…
4
votes
1answer
76 views
(all the) directions perpendicular to hyperplane through p data points
Hi people,
I have a simple question:
given p points (non-collinear) in R^p i find the hyperplane passing by these points (to help clarify i type everything in R):
p<-2
x<- …
1
vote
4answers
140 views
What’s the most efficient way to detect triangle-triangle intersections ?
How can I tell whether two triangles intersect in 2D Euclidean space? (i.e. classic 2D geometry) given the (X,Y) coordinates of each vertex in each triangle.
5
votes
4answers
113 views
How to map a point onto a warped grid
Say you have a collection of points with coordinates on a Cartesian coordinate system.
You want to plot another point, and you know its coordinates in the same Cartesian coordin …
