Tagged Questions
is a branch of computer science devoted to the study of algorithms which can be stated in terms of geometry.
33
votes
1answer
646 views
Bentley-Ottmann Algorithm in Haskell?
So I've been writing a computational geometry library in Haskell because I couldn't find one on Hackage, and I figured it would be fun to do anyway. However, I've been stuck for nearly a week on one ...
24
votes
9answers
7k views
An algorithm for inflating/deflating (offsetting, buffering) polygons
UPDATE: the math term for what I'm looking for is actually inward/outward polygon offseting. +1 to balint for pointing this out. The alternative naming is polygon buffering.
UPDATE 2 (02.11.2011): ...
17
votes
9answers
915 views
Dividing a plane of points into two equal halves
Given a 2 dimensional plane in which there are n points. I need to generate the equation of a line that divides the plane such that there are n/2 points on one side and n/2 points on the other. (by ...
16
votes
3answers
372 views
Triangle partitioning
This was a problem in the 2010 Pacific ACM-ICPC contest. The gist of it is trying to find a way to partition a set of points inside a triangle into three subtriangles such that each partition contains ...
14
votes
6answers
558 views
Choose the closest k points from given n points
You are given a set U of n points on the plane and you can compute distance between any pair of points in constant time. Choose a subset of U called C such that C has exactly k points in it and the ...
14
votes
2answers
566 views
Simplified (or smooth) polygons that contain the original detailed polygon
I have a detailed 2D polygon (representing a geographic area) that is defined by a very large set of vertices. I'm looking for an algorithm that will simplify and smooth the polygon, (reducing the ...
14
votes
4answers
826 views
The minimum perimeter convex hull of a subset of a point set
Given n points on the plane. No 3 are collinear.
Given the number k.
Find the subset of k points, such that the convex hull of the k points has minimum perimeter out of any convex hull of a subset ...
14
votes
5answers
5k views
How to determine if a list of polygon points are in clockwise order?
Having a list of points, how do I find if they are in clockwise order?
For example:
point[0] = (5,0)
point[1] = (6,4)
point[2] = (4,5)
point[3] = (1,5)
point[4] = (1,0)
would say that it is ...
13
votes
3answers
970 views
Fill arbitrary 2D shape with given set of rectangles
I have a set of rectangles and arbitrary shape in 2D space. The shape is not necessary a polygon (it may be a circle), and rectangles have different widths and heights. The task is to approximate the ...
12
votes
3answers
293 views
Closest distance between two points(disjoint set)
This problem is a kind of closest pair between two disjoint set.
Upperside picture is expressed this problem. there is two kind of disjoint set, blue dots in -x plane, red dots in +x plane.
I want ...
12
votes
5answers
356 views
How to find upper envelopes of intersected lines in O(nlogn)?
Disclaimer: Yes, this is a homework and I am thinking about it for a couple of days but couldn't find a way to go.
So there are n straight lines (y= ax + b) and I want to find upper envelopes of them ...
12
votes
9answers
9k views
latitude/longitude find nearest latitude/longitude - complex sql or complex calculation!
this is little hard one. i have latitude and longitude and i want to pull the record from the database, which has nearest latitude and longitude by the distance, if that distance gets longer then ...
11
votes
4answers
304 views
Area of rectangle-rectangle intersection
Below are 2 rectangles. Given the coordinates of the rectangle vertices - (x1, y1)...(x8, y8), how can the area of the overlapping region (white in the figure below) be caclulated?
Note that:
...
10
votes
2answers
1k views
Finding near neighbors
I need to find "near" neighbors among a set of points.
There are 10 points in the above image. Red lines are edges from the Delaunay Triangulation, black stars mark the mid-lines of the edges, blue ...
10
votes
3answers
420 views
How can I test if a point lies within a 3d shape with its surface defined by a point cloud?
I have a collection of points which describe the surface of a shape that should be roughly spherical, and I need a method with which to determine if any other given point lies within this shape. I've ...
10
votes
5answers
2k views
Algorithm to compute a Voronoi diagram on a sphere?
I'm looking for a simple (if exists) algorithm to find the Voronoi diagram for a set of points on the surface of a sphere. Source code would be great. I'm a Delphi man (yes, I know...), but I eat ...
9
votes
10answers
457 views
find overlapping rectangles algorithm
let's say I have a huge set of non-overlapping rectangle with integer coordinates, who are fixed once and for all
I have another rectangle A with integer coordinates whose coordinates are moving (but ...
9
votes
3answers
197 views
Convert polygons into mesh
I have a lot of polygons. Ideally, all the polygons must not overlap one other, but they can be located adjacent to one another.
But practically, I would have to allow for slight polygon overlap ( ...
9
votes
3answers
265 views
Calculate Voronoi around polygon
I need to generate a Voronoi diagram around a concave (non-convex) inside polygon. I have looked for methods online, but I haven't been able to figure out how to do this. Basically, I generate the ...
9
votes
3answers
719 views
Sort points in clockwise order?
Given an array of x,y points, how do I sort the points of this array in clockwise order (around their overall average center point)? My goal is to pass the points to a line-creation function to end up ...
9
votes
4answers
262 views
3d intersections of triangles algorithm - Displaying the topmost plane
I am trying to calculate the top most intersection of an arbitrary number of planes, with no joy! I am using actionscript, but just need find an algorithm that i can implement.
Problem:
consider 3 ...
9
votes
2answers
363 views
polygon union without holes
Im looking for some fairly easy (I know polygon union is NOT an easy operation but maybe someone could point me in the right direction with a relativly easy one) algorithm on merging two intersecting ...
9
votes
5answers
266 views
Generate Non-Degenerate Point Set in 2D - C++
I want to create a large set of random point cloud in 2D plane that are non-degenerate (no 3 points in a straight line in the whole set). I have a naive solution which generates a random float pair ...
9
votes
6answers
985 views
Get the Area of a 3D surface
I have a 3D surface, (think about the xy plane). The plane can be slanted. (think about a slope road).
Given a list of 3D coordinates that define the surface( Point3D1, Point3D2, Point3D3, and so ...
9
votes
4answers
1k views
Generate new polygons from a cut polygon (2D)
I'm stuck with this little problem and my algorithm to solve this doesn't hold for all cases. Does anybody has an idea how to solve this?
Here's an example polygon:
Formal description
We have a ...
8
votes
4answers
165 views
Closest Point on a Map
I am making a program where you can click on a map to see a "close-up view" of the area around it, such as on Google Maps.
When a user clicks on the map, it gets the X and Y coordinate of where they ...
8
votes
6answers
196 views
Is there an efficient algorithm to generate random points in general position in the plane?
I need to generate n random points in general position in the plane, i.e. no three points can lie on a same line. Points should have coordinates that are integers and lie inside a fixed square m x m. ...
8
votes
8answers
1k views
how to determine whether a point lies inside a rectangle? [closed]
Possible Duplicate:
Finding whether a point lies inside a rectangle or not
There is an interview question that is, "How to determine whether a point lies inside a rectangle"
Note that the ...
8
votes
3answers
1k views
Find if a point is inside a convex hull for a set of points without computing the hull itself
What is the simplest way to test if a point P is inside a convex hull formed by a set of points X? I'd like an algorithm that works in a high-dimensional space (say, up to 40 dimensions) that doesn't ...
8
votes
2answers
237 views
Finding if Path2D self-intersects
I need to find if Path2D intersects itself. For now, I do it by simply extracting an array of lines from path, and finding if any of these intersect. But it has O(n^2) complexity, and so it is very ...
8
votes
2answers
165 views
What is the best way to efficiently calculate which points are close to a given lat/long using MySQL?
I'm trying to design a MySQL schema that can store a list of users with an associated latitude and longitude.
I would then, for a given user, like to build a query which can return the nearest 50 ...
8
votes
9answers
725 views
How to find a random point in a quadrangle?
I have to be able to set a random location for a waypoint for a flight sim. The maths challenge is straightforward:
"To find a single random location within a quadrangle, where there's an equal ...
8
votes
4answers
850 views
Points, Lines, and Polygons on Spheres with C/C++
My application is to represent shapes on the Earth's (using a sphere is sufficient) surface. Those can be points, lines, and polygons. Coordinates should be defined by using degrees or radians (just ...
7
votes
3answers
152 views
Algorithm to generate random 2D polygon
I'm not sure how to approach this problem. I'm not sure how complex a task it is. My aim is to have an algorithm that generates any polygon. My only requirement is that the polygon is not complex ...
7
votes
2answers
150 views
Circle-Polygon intersections
A Computational Geometry problem:
The point P0 is chosen randomly on an edge (e.g.,EB) of a polygon (e.g.,BCDE), to find possible points (i.e., P1,P2,P3,...) on other edges based on the given distance ...
7
votes
3answers
199 views
Detecting if angle is more than 180 degrees
I'm working on a problem that the professor assigned, and I'm having a problem looking for a way to detect if the angle between 3 points is more than 180 degrees, e.g:
I want to detect if alpha is ...
7
votes
8answers
189 views
Choose rectangles with maximal intersection area
In this problem r is a fixed positive integer. You are given N rectangles, all the same size, in the plane. The sides are either vertical or horizontal. We assume the area of the intersection of all N ...
7
votes
6answers
143 views
Generating points in area with at least X gap length in-between
I am trying to come up with a method for generating X amount of random points in a given area (in my case a square). The one thing that makes this such an issue is that each point has to be at least Y ...
7
votes
6answers
294 views
Intersection of N rectangles
I'm looking for an algorithm to solve this problem:
Given N rectangle on the Cartesian coordinate, find out if the intersection of those rectangles is empty or not. Each rectangle can lie in any ...
7
votes
7answers
772 views
optimal algorithm if line intersects convex polygon
I would like to know if there is faster algorithm then O(n) for detecting if line intersects a convex polygon. I know the algorithm when you check every edge of the polygon if it intersects with the ...
7
votes
1answer
294 views
Adaptive implicit surface polygonization
I've been using one of the older implicit surface algorithms, due to Bloomenthal, as found here, basically the tetrahedral-based algorithm. This works fairly well, but has a shortcoming. Since it ...
7
votes
7answers
2k views
Shortest distance between points algorithm
Given a set of points on a plane, find the shortest line segment formed by any two of these points.
How can I do that? The trivial way is obviously to calculate each distance, but I need another ...
6
votes
3answers
151 views
Find the Closest intersection point in plan
I was asked following question in interview recently:
Let suppose you have, following grid on Cartesian coordinate system ( Quadrant I).
o - x - x - x - o
| | | | |
x - x - x - o - x
| | ...
6
votes
5answers
132 views
Getting closest point on grid to point
I have a one dimensional gird. its spacing is a floating point. I have a point with floating point coordinate as well. I need to find its distance to the closest grid point.
For example:
...
6
votes
3answers
197 views
Intersection points of line bisector with rectangle
I've been trying to wrap my head around this the whole day...
Basically, I have the coordinates of two points that will always be inside a rectangle.
I also know the position of the corners of the ...
6
votes
2answers
170 views
Polygon Clipping: Only “viewable” area
In the image below you see in (1) a triangle and a circle. Given a dedicated point X in that triangle I want clip away everything that is not visible from this point. There's no problem with removing ...
6
votes
5answers
309 views
Triangle fit inside another triangle
Given the lengths of the sides of 2 triangles. Determine if the second triangle can fit inside the first triangle?
For more detailed info read the full problem statement below:
...
6
votes
4answers
266 views
Finding center of a set of points to sort them clockwise?
I want to sort a vector of points in clockwise order to form a polygon but I need the proper center to do so. I have tried the averages method, but a few of the points did not sort correctly at all. ...
6
votes
3answers
272 views
efficient algorithm to find nearest point in a graph that does not have a known equation
I'm asking this questions out of curiostity, since my quick and dirty implementation seems to be good enough. However I'm curious what a better implementation would be.
I have a graph of real world ...
6
votes
2answers
158 views
How can I find all rectangles that bound regions in a bitmap?
I have a problem: I need an algorithm for my tile engine.
I have an 2d-array which stores my un-walkable tiles.
Now I want to implement a light engine, but this engine need shadow-hulls.
So I need ...