1
vote
1answer
57 views
Bounding ellipse
I have been given an assignement for a graphics module, one part of which is to calculate the minimum bounding ellipse of a set of arbitrary shapes. The ellipse doesn't have to be …
1
vote
3answers
45 views
Angles to decimal conversion
Hi,
I'm trying to understand some flash animation, and am having difficulty working out the following. Can anyone help?
I want to convert a degree range of 0 to 90, to a value b …
1
vote
2answers
37 views
Line Segments from a point
I have a point p, and 2 line segments in a 2D plane. Point p is a location of view from where camera is looking towards the line segments. I want to check if line segment 1 is part …
0
votes
3answers
73 views
Line segment in a triangle
Hi All,
How can we check if a line segment falls partially or fully inside a triangle?
Cheers.
0
votes
2answers
128 views
ax + by = c given two points P and Q [closed]
How do I arrive at the equation of a line in standard form given two points?
I found an answer here which says that the equation of a line joining P(px, py) and Q(qx, qy) is given …
1
vote
2answers
47 views
Solving for optimal alignment of 3d polygonal mesh
I'm trying to implement a geometry templating engine. One of the parts is taking a prototypical polygonal mesh and aligning an instantiation with some points in the larger object. …
51
votes
9answers
2k 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' …
4
votes
4answers
139 views
Find the corners of a polygon represented by a region mask
BW = poly2mask(x, y, m, n) computes a
binary region of interest (ROI) mask,
BW, from an ROI polygon, represented
by the vectors x and y. The size of BW
is m-by-n.
…
0
votes
1answer
30 views
Radial plotting algorithm
Hi there,
I have to write an algorithm in AS3.0 that plots the location of points radially. I'd like to input a radius and an angle at which the point should be placed. Obviously …
1
vote
2answers
53 views
Delete holes in a Polygon
I have a polygon determined by an Array of Points.
This polygon is crossing itself making some holes in the polygon itself.
My questions is: How can I omit this holes and just ge …
0
votes
2answers
14 views
Can basic Geometry ever come useful to a Beginner to Intermediate skilled Java coder?
Just Curious. I'm currently foraying into the world of Java coding, and, was wondering weather Geometry can come useful in the kind of programming a Beginner to Intermediate Skill …
0
votes
2answers
92 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 …
2
votes
3answers
86 views
Given a vector of Lat/Lon pairs, how can I create a vector so that the distance between points is less than or equal to some constant?
Suppose I have an array of coordinates, representing a route. I want to decompose this route so that it contains a point, say every 5 miles. How can I do that?
struct Location
{
…
1
vote
1answer
48 views
Insert a point into a finite 2D region with maximum distance to existing points.
I have a set of 2D points inside a finite 2D region of space (let's say a world-aligned rectangle to keep things simple for now). What would be an exceedingly efficient way to inse …
0
votes
2answers
102 views
How to calculate the 3D line segment of two rectangles?
I am looking for a fast way to calculate the line segment of two given rectangles in 3D. For instance, each 3D rectangle is defined by its four vertices.
A solution in any reasona …
