The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
1answer
274 views

Splitting a rectangular image to polygons to simulate Breaking glass

I am working on some C# code in which I would like to take a 2D rectangle and split it to smaller 2D polygons. I would like the effect to look like the rectangle was made of glass and it was hit with ...
5
votes
2answers
735 views

Check if Polygon is Self-Intersecting

I have a System.Windows.Shapes.Polygon object, whose layout is determined completely by a series of Points. I need to determine if this Polygon is self intersecting; i.e., if any of the sides of the ...
4
votes
1answer
94 views

Given collection of points and polygons, determine which point lies in which polygon (or not)

My question is almost similar to this. But in my case, the polygons are not necessarily touching/overlapping each other. They are present all over the space. I have a big set of such polygons. ...
4
votes
2answers
211 views

numpy.poly1d , root-finding optimization, shifting polynom on x-axis

it is commonly an easy task to build an n-th order polynomial and find the roots with numpy: import numpy f = numpy.poly1d([1,2,3]) print numpy.roots(f) array([-1.+1.41421356j, -1.-1.41421356j]) ...
4
votes
3answers
207 views

“snapping” polygons together

I have a set of polygons representing administrative districts. The districts were digitized by hand, and there are small spaces between polygons where the polygons should be touching. There are ...
4
votes
1answer
448 views

Cut polygons using contour line beneath the polygon layers

I would like to cut a polygon layer, according to the elevation, into two parts (upper and lower part). The polygon might convex or concave, and the position to cut might vary from each other. The ...
4
votes
1answer
587 views

How to calculate the normal of points on a 3D cubic Bézier curve given normals for its start and end points?

I'm trying to render a "3D ribbon" using a single 3D cubic Bézier curve to describe it (the width of the ribbon is some constant). The first and last control points have a normal vector associated ...
4
votes
1answer
294 views

CUDA efficient polygons fill algorithm

I need efficient fill algorithm to fill closed polygons (like ex. Scanline fill), which I can run on CUDA. Have you got any suggestions? Thanks in advance for any replays!
4
votes
5answers
11k views

google maps API v3 - how to draw dynamic polygons/polylines?

I have 4 days of experience with Google Maps Javascript API and i find their documentation and information sharing confusing at best. Does anyone have experience or knowledge on how to draw ...
4
votes
4answers
582 views

Given a large set of vertices in a non-convex polygon, how can i find the edges?

I have a set of vertices(called A) and I want to find all the border vertices such that this border vertices set is an outline of the shape. Many of the vertices in A are redundant because they are ...
4
votes
1answer
2k views

Good algorithm for drawing solid 2-dimensional polygons?

What is the simplest (and easiest, although that's subjective) algorithm for drawing solid (as in a single, solid color--no texture mapping) 2D polygons in memory? What is the most efficient method? ...
3
votes
3answers
127 views

Union of many (more than two) polygons without holes

Im creating union of polygons without holes. Input polygons are without holes and also output one should be. I already have working algorithm for finding it for two polygons. But in case of more than ...
3
votes
7answers
883 views

How can a convex polygon be broken down into right triangles aligned on the X- and Y- axes?

Given a convex polygon represented by a set of vertices (we can assume they're in counter-clockwise order), how can this polygon be broken down into a set of right triangles whose legs are aligned ...
2
votes
4answers
77 views

Finding nearby triangles using the 3D pipeline?

Say you have a mesh. Consider one of the triangles. Say you want to know which triangles are nearby that triangle. In fact: Does OpenGL (or some other aspect of the 3D pipeline) "know" this ...
2
votes
1answer
107 views

Coordinate Reference System of Raster & Polygons in R

I have several polygons & I like to extract mean values from several raster layers within these polygons. When I added those to ArcMap I realized that the projections of the two data types do not ...
2
votes
1answer
264 views

How to draw 2D irregular curved shapes in OpenGL

I've tried for the past 3 hours to figure out how to use Bezier curve formula, glMap1f and glEvalCoord1f to create a curved shape. (i basically want to create the right of kirby). However, I've ...
2
votes
1answer
149 views

checking intersection of many (small) polygons against one (large) polygon by filling with rectangles?

I have a 2D computational geometry / GIS problem that I think should be common and I'm hoping to find some existing code/library to use. The problem is to check which subset of a big set (thousands) ...
2
votes
1answer
670 views

OpenGL Smooth Polygon

I am trying to make this a smooth polygon using OpenGL, but it is not doing anything. Can someone please explain what I am doing wrong? glColor4ub(r, g, b, a); glEnable(GL_POLYGON_SMOOTH); ...
1
vote
0answers
30 views

Gmaps4rails Polygon not displaying [closed]

Possible Duplicate: Displaying a polygon with gmaps4rails Hi I am too a noob in gmap4rails and ruby. I have been successful in generating markers with my model but is unable to generate ...
1
vote
3answers
69 views

Alternative to using Image-Maps on complex polygons

I have to create a pretty complex map which is divided in pieces, which themselves are each pretty complex polygonal structures. These are given to me as transparent PNGs. Obviously i can't just use ...
1
vote
2answers
163 views

Python: produce PDF files, draw polygons with rounded corners

What's the right tool for the job if I want to write a Python script that produces vector graphics in PDF format? In particular, I need to draw filled polygons with rounded corners (i.e., plane ...
1
vote
0answers
106 views

gIntersects TopologyException in rgeos R

I have a shapefile that represents ecoregions of the world. I am trying to determine which ecoregions are intersected by the distributions of my species of interest. I am using the latest version of R ...
1
vote
0answers
78 views

Reshaping One Polygon Around Another

I don't think this is a duplicate question - at least I hope not. I have two polygons A and B. B may be entirely inside A or may partly intersect with it. The requirement is to redraw polygon A so ...
1
vote
2answers
129 views

find the min distances from one polygon to other polygons in a layer?

I tried to figure out how to find the min distances from one polygon to other polygons in a layer (a layer consists of many polygons) of ArcGIS. More specific, I was wondering if it is possible to run ...
1
vote
3answers
306 views

Intersection between 3D flat polygons

How to find intersections between two (or more) 3D planar polygons (for the simplest case they are all convex)? Seeking algorithms able to provide the intersection line if there is any. Note the ...
1
vote
3answers
296 views

how to “sort” polygons 3d?

I am still working on my "javascript 3d engine" (link inside stackoverflow). at First, all my polygons were faces of cubes, so sorting them by average Z was working fine. but now I've "evolved" and I ...
1
vote
1answer
2k views

How do i Add and Remove polygons on a Google Map (version 3)?

I'm trying to show and remove polygons onto a google map - using v3 of the API. In my javascript, i've already got an MVCArray of some custom Lat-Longs. What I'm stuck trying to figure out is how to ...
1
vote
2answers
430 views

Calculating the perpendicular plane to a triangle in 3D space

This is somewhat hard to describe, so bare with me. Essentially I have a triangle in 3D space defined by its 3 vertices, p0, p1, and p2. I wish to calculate a plane in this 3D space which lies along ...
1
vote
3answers
994 views

How to calculate the area of multiple overlapping right-angled polygons?

I am looking for a way to calculate the common areas covered by multiple overlapping polygons. The polygons are all right-angled, if that helps makes things easier. So for example: BBBBB ...
1
vote
5answers
1k views

SQL Server 2005 Point In Polygon

I have a polygon structure in an sql2005 db as described below. CREATE TABLE [dbo].[Polygons]( [PolygonID] [int] IDENTITY(1,1) NOT NULL, [PolygonName] [varchar](255) NOT NULL, ...
1
vote
5answers
806 views

3D rendering - What is this problem called?

hopefully a sensible question this time... See in the picture how the top half has the textures looking ok, but then the bottom half (after it rotated a little more)the texture is breaking up, and ...
0
votes
1answer
30 views
+100

BingMap get polygons in view

I have map with 30-50 polygons on it. There are like 4000 points in every polygon but they are hidden at beginning. I want to disply the point only when zoom is <=6 but not all of the point but ...
0
votes
0answers
80 views

A robust “hit test” for polygons

We have a set of polygons, and a point we can assume is in one of the polygons. I'd need a solid algorithm that tells me which of the polygon the point is in. I've tried some things, but the floating ...
0
votes
1answer
281 views

Accessing Coordinates in a nested geojson file to draw polygons with Google Maps API v3

I am having a real pain of trying to draw multiple polygons from a geojson file. Below I have pasted a sample of the geojson file and the javascript used to access it. It seems the main problem I am ...
0
votes
0answers
36 views

Smooth transitions between two intersecting polygons (interesting problem)

I have an interesting problem that I've been trying to solve for a while. There is no "right" solution to this, as there is no strict criteria for success. What I want to accomplish is a smooth ...
0
votes
1answer
191 views

overlapping polygons in html5 canvas

I'm trying to render simple 3d shapes (in this particular case, a cube) in a html5 canvas. Translating 3d points to a 2d plane was easy enough, so I went ahead and starting coloring the polygons. They ...
0
votes
1answer
146 views

google map district api - polygon usage

I want to use this map with "İlçeleri Göster" selected (top of map): ...
0
votes
0answers
89 views

Anyone know any free to use 3D models of large cities (millions of polygons)? [closed]

I need to get a free to use model of some large city or something similar for a research project on occlusion culling and shadow mapping. I looked over the internet and I only found the UNC ...
0
votes
2answers
865 views

Drawing custom polygons in Box2D

I'm making a Flash game, and I've encountered a really weird problem while trying to draw a polygonal shape in Box2D. Here's the code I use: var fixtureDefs:Array = new Array(); ... var ...
0
votes
1answer
132 views

KML polygon colouring and mouse clicks

I'm working with http://workfoldr.com.s118234.gridserver.com/gmaps/ and in the KML file (found @ http://workfoldr.com.s118234.gridserver.com/gmaps/file.kmz) it's clearly stated that there is supposed ...
0
votes
0answers
84 views

How To Restyle the Appearance of a Polygon Point?

So I have a polygon drawn on a surface. For the sake of argument, assume its a triangle or something. What I would like is to have the "points" of the polygon (i.e., the triangle angles) stand out a ...
0
votes
0answers
152 views

Determine if a set of points is a polygon [closed]

Given a set of points in 2D the resulting polygon can be convex, concave or 'not a polygon'. The definition that I am using for 'not a polygon' is that the line connecting two points crosses another ...
0
votes
1answer
355 views

create polygon filled up with dots

Am using the below code to create polygon. i just want to fill this polygon surface with black dots, how i can do that, then i want to convert this polygon to bitmap or in memory stream, how to do ...
0
votes
1answer
309 views

Is Geo-fencing with polygons and dynamic objects available on android?

I can't find any documentation on geo fencing, specifically geo-fencing with polygons and dynamic objects. Is this functionality available? Thanks in advance.
0
votes
0answers
139 views

Transform shape built of contour splines to simple polygons

I've dumped glyphs from truetype file so I can play with them. They have shape contours that consist from quadratic bezier curves and lines. I want to output triangles for such shapes so I can ...
0
votes
1answer
1k views

Adding a polygon directly in Geodjango/PostGIS

I'm messing around with Geodjango, and I just want to add a simple polygon field to a database and then run a point-in-polygon on it to to make sure everything is working okay. Here's my code in ...