Tagged Questions

0
votes
1answer
81 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 …
1
vote
3answers
222 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 …
3
votes
7answers
335 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 …
1
vote
4answers
262 views

SQL Server 2005 Point In Polygon

Hello, 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
388 views

3D rendering - What is this problem called?

Hello stackers. 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 …
2
votes
2answers
497 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? …