Tagged Questions
A convex polygon is a simple polygon whose interior is a convex set. In a convex polygon ,every internal angle is less than or equal to 180 degrees and every line segment between two vertices remains inside or on the boundary of the polygon.
6
votes
2answers
331 views
Polygon Partioning vs Triangulation
Hey so I recently asked this question about how to cut down a concave polygon to convex ones, and i was suggested to do Triangulation or Polygon Partioning.
The library i'm using (SFML\Box2D) only ...
6
votes
2answers
123 views
Algorithm to find if a set of point describes a convex enveloppe
I Would like to check if a set of N points describe a convex polygon or not
I was wondering if there is a good algorithm for that ?
Here is some approaches I thought of:
1.Convex Hull algorithm :
...
5
votes
4answers
635 views
Is there an simple algorithm for calculating maximum inscribed circle into a convex polygon?
I found some solutions, but they're too messy.
4
votes
4answers
176 views
largest prefix of array of vertices that forms a convex polygon
Related to: Polygon Decomposition - Removing Concave Points to Form Convex Polygons
I am looking for an algorithm to do the following:
The input is an array of 2D points (P0…PN-1). The length N of ...
2
votes
4answers
387 views
Polygon Decomposition - Removing Concave Points to Form Convex Polygons
I would like to deconstruct the following polygon shown in blue removing all of the points from the polygon that cause concavity.
Currently, what I have been attempting to do is:
Take each point ...
2
votes
1answer
416 views
Java2D: Fill a convex rounded polygon (QuadCurves)
If I have a QuadCurve like this (+ = node):
+ +
\ ./
+--⁻⁻
And I fill it in Java 2D the result is something like this: (x = colored)
+xxxxxxxxx+
\xxxxxx./
+--⁻⁻
But I want ...
1
vote
2answers
236 views
Convex polygon algorithm in Cuda?
I am searching for an algorithm to find a convex polygon to contain all the random points using Cuda. Is there anyone know a very efficient algorithm that I can adapt?
1
vote
2answers
203 views
Generate Graph of Connected Convex Polygons
I'm trying to take a dense graph of points such as this, and turn it into a graph of connected convex polygons. The polygons should be as large and as simple as possible while staying connected. The ...
1
vote
2answers
138 views
can vertices coincide in convex polygons?
I am new to openGL and I am reading the redbook. Now, as an exercise I want to manually draw a sphere. For that I am dividing the sphere into slices and stacks, and thus I get multiple rectangles, but ...
1
vote
1answer
81 views
Smooth a convex polygonal shape so that it becomes as large as possible while retaining diameter
Given a convex polygon, I am trying to grow its shape (as in "maximal area") while preserving its diameter. The diameter is defined as the length of the longest segment that can be placed within the ...
0
votes
0answers
29 views
Grid/mesh generation algorithm
I need some suggestions how to efficiently generate a 2D grid/mesh from convex polygons where convex polygons should have sides from (3, n) -> triangles, quadrilaterals, ...
Grid/mesh would be used ...
0
votes
1answer
117 views
Convex Hull reading XY co-ords in Python
I need to come up with a convex hull algorithm to read through a bunch of X , Y co-ordinates and outline the image..
i'm coding in python
Any ideas?
0
votes
3answers
1k views
Fastest horizontal line <-> convex polygon intersection algorithm?
I need to solve a relatively simple thing -- I've got n-vertices convex 2D polygon and a horizontal (!) line with some 'y' coordinate. I need only one thing: to check if the polygon is crossed with ...