For issues relating to the creation and rendering of polygons in graphical user interfaces.
138
votes
16answers
48k views
Point in Polygon aka hit test
What's your best, most elegant 2D "point inside polygon" or Polygon.contains(p:Point) algorithm?
Edit: There may be different answers for floats vs integers.
Primary goal is speed.
26
votes
7answers
24k views
A simple algorithm for polygon intersection
I'm looking for a very simple algorithm for computing the polygon intersection/clipping.
That is, given polygons P, Q, I wish to find polygon T which is contained in P and in Q, and I wish T to be ...
52
votes
8answers
15k 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): ...
35
votes
7answers
14k 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 ...
12
votes
5answers
10k views
C# Point in polygon
I'm trying to determine if a point is inside a polygon. the Polygon is defined by an array of Point objects. I can easily figure out if the point is inside the bounded box of the polygon, but I'm not ...
19
votes
9answers
9k views
How to intersect two polygons?
This seems non-trivial (it gets asked quite a lot on various forums), but I absolutely need this as a building block for a more complex algorithm.
Input: 2 polygons (A and B) in 2D, given as a list ...
7
votes
2answers
7k views
google maps v3: check if point exists in polygon
Hi I am looking to find a way of checking if a point exists inside a polygon in google maps v3 (javascript). I've searched everywhere and the only solutions I have found so far have been to do with ...
2
votes
2answers
980 views
Adding a point to polygon
I've created a class that extends the awt.Polygon class. I'm trying to write a method that given the PathIterator of the polygon and a Point representing a vertex, adds the point at the appropriate ...
11
votes
3answers
7k views
See if lat / long falls within a polygon using mysql
I have the created the table below
CREATE TABLE geom (g GEOMETRY);
and have inserted many rows, example below:
INSERT INTO geom (g)
VALUES(PolygonFromText('POLYGON((
9.190586853 45.464518970,
...
7
votes
5answers
13k views
How do determine if a polygon is complex/convex/nonconvex?
From the man page for XFillPolygon
· If shape is Complex, the path may
self-intersect. Note that con‐
tiguous coincident points in the path are not treated as self-
...
27
votes
11answers
8k views
Random points inside a Polygon
I have a 4 side convex Polygon defined by 4 points in 2D, and I want to be able to generate random points inside it.
If it really simplifies the problem, I can limit the polygon to a parallelogram, ...
7
votes
4answers
4k views
Polygon enclosing a set of points
I have a set S of points (2D : defined by x and y) and I want to find P, the smallest (meaning : with the smallest number of points) polygon enclosing all the points of the set, P being an ordered ...
5
votes
3answers
3k views
SciPy Create 2D Polygon Mask
I need to create a numpy 2D array which represents a binary mask of a polygon, using standard Python packages.
input: polygon vertices, image dimensions
output: binary mask of polygon (numpy 2D ...
4
votes
3answers
2k views
Get polygons close to a lat,long in MySQL
does anyone know of a way to fetch all polgons in a MySQL db within a given distance from a point. The actual distance is not that important since it's calculated for each found polygon later, but it ...
3
votes
2answers
801 views
Displaying a polygon with gmaps4rails
Ruby noob here. Trying to display a list of points as a polygon on a google map using the gmaps4rails gem (awesome gem by the way). Any suggestions based on code sample below would be much ...
10
votes
4answers
2k 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
5answers
2k views
Expand fill of convex polygon
I have a convex polygon P1 of N points. This polygon could be any shape or proportion (as long as it is still convex).
I need to compute another polygon P2 using the original polygons geometry, but ...
7
votes
4answers
10k views
How to get the center of a polygon in google maps v3?
It doesn't need to be 100% correct, it can be the center of the bounding rectangle.
7
votes
4answers
3k views
Finding an axis-aligned rectangle inside a polygon
I am looking for a good algorithm to find an axis-aligned rectangle inside a (not necessarily convex) polygon. A maximal rectangle would be nice, but is not necessary - any algorithm that can find a ...
3
votes
1answer
5k views
Center of gravity of a polygon
I am trying to write a php function that will calculate the center of gravity of a polygon.
I've looked at the other similar questions but I can't seem to find a solution to this.
My problem is that ...
14
votes
2answers
2k 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 ...
8
votes
7answers
8k views
Algorithm to merge adjacent rectangles into polygon
I guess that my problem is related to "convex hull", but no the same. All shapes in the drawing are rectangles with same width and height. Many are adjacent to each other. I want to combine those ...
6
votes
3answers
3k views
Check if polygon is inside a polygon
Yesterday I was looking to check if a point was inside a polygon and found this great script: https://github.com/tparkin/Google-Maps-Point-in-Polygon
But today at work I was told that our client ...
6
votes
5answers
6k views
Drag (move) a polygon using Google Maps v3
The Google Maps API for a Polygon does not offer a drag method.
What would be an efficient way of implementing such a feature (i.e., sufficiently optimised so that it would not kill a four year old ...
5
votes
7answers
10k views
How to test if a point is inside of a convex polygon in 2D integer coordinates?
The polygon is given as a list of Vector2I objects (2 dimensional, integer coordinates). How can i test if a given point is inside? All implementations i found on the web fail for some trivial ...
7
votes
5answers
2k views
Reduce number of points in line
I'm searching for algorithms to reduce the LOD of polylines, lines (looped or not) of nodes.
In simple words, I want to take hi-resolution coastline data and be able to reduce its LOD hundred- or ...
5
votes
5answers
5k 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.
poly2mask sets ...
3
votes
6answers
4k views
How to represent a polygon with hole(s)?
It's usually popular to work with polygons with their vertices sorted CW or CCW in vectors(2*1 or 1*2 matrices). However, how to state polygons with holes in vectors?
I'm going to apply various ...
2
votes
1answer
450 views
library for representing 3D polyhedra
Are there any libraries that provide 3D polyhedra, and support calculating the intersection of two polyhedra?
If it makes a difference, the polyhedra I want to model do not have 'holes' in them.
The ...
3
votes
2answers
2k views
How can I create a filled polygon from unordered edge data in MATLAB?
I want to create a polygon using edge data (X,Y coordinates of each point of edge) that is unordered, and I want to fill that polygon with some color.
Any suggestions how I can accomplish this?
3
votes
2answers
713 views
Determining if a point is on a road
If I have a polyline that describes a road and I know the road width at all parts, is there an algorithm I can use to determine if a point is on the road? I'm not entirely sure how to do this since ...
0
votes
1answer
805 views
different coloured polygon overlays
is it possible to create different coloured polygons on a map view using the following method?
-(MKOverlayView *)mapView:(MKMapView *)mapView viewForOverlay:(id )overlay{
say if i had 2 polygons ...
8
votes
4answers
8k views
Java- Intersection point of a Polygon and Line
Is there any function that will give me the intersection point of a Polygon and Line2D ?
I have a Polygon and a line segment that I know intersect I want the actual value of the intersection point ...
3
votes
3answers
3k views
Rendering SVG polygons in Raphael Javascript library
As far as I know, there is currently no way to display SVG polygons in the Raphael Javascript library. I'm building an application that needs to read in SVGs and them display them in Raphael, ...
2
votes
2answers
220 views
geom_polygon with multiple hole
I refer to the answer for this question and have additional question.
I have modify the code as below:
library(ggplot2)
ids <- letters[1:2]
# IDs and values to use for fill colour
values <- ...
2
votes
4answers
3k views
How to determine if a point is inside a 2D convex polygon?
I have a convex polygon (typically just a rotated square), and I know all of 4 points. How do I determine if a given point (yellow/green) is inside the polygon?
EDIT: For this particular project, ...
2
votes
3answers
669 views
Diagonal of polygon is inside or outside?
I have three consecutive points of polygon, say p1,p2,p3. Now I wanted to know whether the orthogonal between p1 and p3 is inside the polygon or outside the polygon.
I am doing it by taking three ...
1
vote
1answer
98 views
Extruding multiple polygons with multiple holes and texturing the combined shape
This question is related to this question. The answer shows very nice way to extrude polygons that have holes (see the excellent live example). The main learning of the answer was that paths in ...
1
vote
1answer
205 views
Chrome: Bug with SVG polygon animation?
I created recently a hangman SVG graphic with animations, you can find it here:
http://ykg-clan.de/svg/test/hangman_old.svg
This works perfectly in Firefox - but in Chrome, the polygons and ...
1
vote
2answers
670 views
Box2d custom polygon and sprites mis-matching
I am using the Physics Editor for creating the Polygon in Box2d. It generates the Polygon and works fine in the non-retina display but doesn't work in the retina display..... I have attached the ...
1
vote
3answers
883 views
Sort point list into polygon
I have a set of points. This set of points do define a (non convex) polygon but its not ordered.
Since it's not ordered I cannot just draw from point to point to draw its border. How can I sort it ...
1
vote
4answers
4k views
Calculating Area of Irregular Polygon in C#
I've managed to write a 'for dummies' how to calculate the area of irregular polygon in C#, but I need it to be dynamic for any amount of verticies.
Can someone please help?
Class:
public class ...
0
votes
1answer
858 views
Cutting a multipoint ploygon out of Bitmap and placing it on transparency
I have a bitmap out of which I'm cutting out a multipi point polygon. I'm curious what the correct process is for taking the pixels within the arbitrary shape and copying them onto a new bitmap where ...
0
votes
1answer
816 views
OpenGL drawing a Hexigon with vertices
Im trying to make a basic shape ( Hexigon ) to start and learn some basics about OpenGL on the Android platform and i have a little problem.
I have successfully made a pointy Hexagon, but when i ...
8
votes
5answers
7k views
Calculate coordinates of a regular polygon's vertices
I am writing a program in which I need to draw polygons of an arbitrary number of sides, each one being translated by a given formula which changes dynamically. There is some rather interesting ...
9
votes
3answers
4k views
Find Point in polygon PHP
i have a typical question with the Geometric datatype of mysql, polygon.
I have the polygon data, in the form of an array of latitudes and longitudes, ex:
[["x":37.628134, "y":-77.458334],
...
7
votes
3answers
3k views
Google Maps v3 - Delete vertex on Polygon
Google Maps has the Drawing library to draw Polylines and Polygons and other things.
Example of this functionality here: ...
18
votes
2answers
3k 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 ...
16
votes
14answers
5k views
What is the quickest way to find the shortest cartesian distance between two polygons
I have 1 red polygon say and 50 randomly placed blue polygons - they are situated in geographical 2D space. What is the quickest/speediest algorithim to find the the shortest distance between a red ...
12
votes
2answers
3k views
Maximum circle inside a non-convex polygon
How can I find the maximum circle that can fit inside a concave polygon? A brute force algorithm is ok as long as it can handle polygons with ~50 vertices in real-time.
Edit:
I found out how to ...


