Tagged Questions

For issues relating to the creation and rendering of polygons in graphical user interfaces.

learn more… | top users | synonyms

70
votes
10answers
22k 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.
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): ...
19
votes
11answers
5k 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, ...
15
votes
14answers
4k 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 ...
14
votes
2answers
564 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
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
7answers
10k 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 ...
12
votes
2answers
271 views

How can some LatLng be used to place markers on a Google map, but not to draw a Polygon?

Roughly a week ago, I ran into a problem: on a custom google-powered map, my Polygons would not show up, while Markers for the same coordinates are totally ok. Despite my efforts with the Google Maps ...
10
votes
2answers
984 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 ...
9
votes
3answers
264 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
4answers
259 views

Packing arbitrary polygons within an arbitrary boundary

I was wondering if anybody could point me to the best algorithm/heuristic which will fit my particular polygon packing problem. I am given a single polygon as a boundary (convex or concave may also ...
9
votes
2answers
361 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
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 ...
9
votes
9answers
5k 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 ...
8
votes
5answers
1k views

Looking for a fast polygon rendering algorithm

I am working with a Microchip dsPIC33FJ128GP802. It's a small DSP-based microcontroller, and it doesn't have much power (40 million instructions per second). I'm looking for a way to render a convex ...
8
votes
1answer
2k views

Does XNA have a Polygon, like Rectangle?

I'm making a game where there is only a certain space the player can move around. I want to represent this space with a polygon of some sort. The main question I would ask of it is whether it contains ...
7
votes
3answers
151 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
3answers
389 views

Algorithm to convert vertices of a triangular strip to polygon

I have an array with vertices representing a triangular strip. I need to convert it into polygon. There are many solution to do the reverse, but I failed to find one for the above problem. Or it ...
7
votes
11answers
1k views

What is the fastest way to find the center of an irregularly shaped polygon?

I need to find a point that is a visual center of an irregularly shaped polygon. By visual center, I mean a point that appears to be in the center of a large area of the polygon visually. The ...
7
votes
2answers
1k views

Minimize Polygon Vertices

What is a good algorithm for reducing the number of vertices in a polygon without changing the way it looks very much? Input: A polygon, represented as a list of points, with way too many verticies: ...
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
230 views

Simple way to calculate point of intersection between two polygons in C#

I've got two polygons defined as a list of Vectors, I've managed to write routines to transform and intersect these two polygons (seen below Frame 1). Using line-intersection I can figure out whether ...
6
votes
1answer
207 views

Check if a polygon is symmetric

Given a polygon (not necessary convex) in the Cartesian coordinate, i wonder if there are any way to check the symmetricalness of that polygon? I can think of an O(N) solution: using rotating ...
6
votes
4answers
2k 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 ...
6
votes
4answers
3k 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 ...
6
votes
5answers
769 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 ...
6
votes
3answers
3k 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, ...
6
votes
1answer
2k views

how to sketch a polygon in a matrix or binary image in order to use image processing functions?

I'm developing a matlab program in which I uses polygons(concave or convex). I need to use image processing functions like imdilate or imerode and etc on the polygons. To this end, I should convert my ...
6
votes
3answers
2k views

How do you draw transparent polygons with Python?

I'm using PIL (Python Imaging Library). I'd like to draw transparent polygons. It seems that specifying a fill color that includes alpha level does not work. Are their workarounds? If it can't be ...
6
votes
3answers
1k views

Algorithm for unique find edges from polygon mesh

I'm looking for a good algorithm that can give me the unique edges from a set of polygon data. In this case, the polygons are defined by two arrays. One array is the number of points per polygon, and ...
5
votes
1answer
89 views

Polygon Triangle Count Optimization

Recently I wrote myself an Ear Clipping Triangulator as personal research. After visualizing some of the results, I can't help but feel that the object could be reproduced with fewer than n-2 ...
5
votes
1answer
113 views

Determine Polygon with specified property

I am creating a graphics project in which I have to find at some point of time that if there exists a point x inside the polygon such that if I join this point to all vertices of this polygon then all ...
5
votes
2answers
110 views

Can one use polygon() or equivalent in lattice and ggplot2 plots?

Is it possible to annotate lattice (or ggplot2) figures with elements created with polygon() (or elements created with a similar function) from the graphics library? I'm not too familiar with either ...
5
votes
2answers
211 views

Finding common outline of multiple polygons

Im trying to find an algorithm for drawing a common outline between multiple polygons. What I mean is like on this picture: We have two rectangles (In my case they will not be rectangles, but ...
5
votes
2answers
187 views

Flood filling of 3-dimensional polygon

here is a problem for you ;) I have a 3-dimensional array filled with 1s and 0s. The 1s represent 3 dimensional complex polygons ( not simple polygons ). Only the boundaries of the polygons have the ...
5
votes
2answers
196 views

How do I minimise the maximum aspect ratio of two subpolygons?

I'd like to cut a convex polygon into two with a given ratio of areas using a straight line, such that the larger aspect ratio of the two subpolygons is minimised. My approach at the moment involves ...
5
votes
6answers
416 views

Java library for creating straight skeleton?

I have as an input a 2D polygon with holes, and I need to find it's straight skeleton, like in the picture: Maybe there is a good Java library for it? And if not, can you point me to the good ...
5
votes
5answers
444 views

Distance between two convex polygons in 3D

I have two convex polygons in 3D. They are both flat on different planes, so they're a pair of faces. What's the simplest way to calculate the closest distance between these two polygons? Edit: The ...
5
votes
1answer
947 views

OpenGL/JOGL: Multiple triangle fans in a vertex array

I'm working on making some moderately simple shapes with vertex arrays, and I'm making some good headway, but now I want to draw 2 (or more) triangle fan objects. Is there any way to only make one ...
5
votes
1answer
449 views

How To Slice a Simple Polygon with a Line

I have a simple polygon (convex or concave, but no holes) that I need to slice into parts with a line segment. I'm not sure how to actually determine how many polygons result after the slice, or how ...
5
votes
5answers
698 views

How to do correct polygon rotation? ( in C# though it applies to anything )

Hi I'm using this C# code to rotate polygons in my app - they do rotate but also get skewed along the way which is not what i want to happen. All the polygons are rectangles with four corners defined ...
5
votes
2answers
3k 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. Thank you in advance
5
votes
4answers
371 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
2answers
1k views

Breaking a concave polygon into convex ones

I'm using a game physics library (Box2D) which only supports convex polygon shapes. However, I'd like the level builder to be able to just specify concave polygons without having to worry about that. ...
5
votes
3answers
1k views

How to sort points in a Google maps polygon so that lines do not cross?

I am trying to make a map where a user can outline any shape they would like. But I am running into an issue where users can select points that will make the lines of the polygon cross and exclude ...
5
votes
2answers
1k views

Draw a self intersecting polygon on the HTML Canvas

I'm looking for a way to draw a self intersecting polygon with holes, I'm using the HTML Canvas element. So given 5 points, I want to draw the red one below. This question is essentially the ...
5
votes
4answers
5k 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 ...
4
votes
1answer
221 views

Drawing a concave polygon in OpenGL

I have a concave polygon I need to draw in OpenGL. The polygon is defined as a list of points which form its exterior ring, and a list of lists-of-points that define its interior rings (exclusion ...
4
votes
2answers
91 views

OpenGL - Not Draw Completely Occluded Polygons?

Let's say we have a set of polygons, can change the camera view angle and can translate the camera in the 3D environment. From certain view angles some of these polygons are completely occluded by one ...
4
votes
1answer
194 views

Draw edges of a polygon with OpenGL shaders

I was wondering if it was possible to draw the edges of a rendered polygon with a specific color using a fragment shader, as in this example picture: Or should I just render those separately?

1 2 3 4 5 10