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

learn more… | top users | synonyms

0
votes
1answer
29 views

How to get parcel or zipcode boundaries for display in map?

I want to add a boundary to a specified parcel of land so that it stands out in the map with a colored outline/border. In google maps, this is done using the polygon functionality if you know that ...
0
votes
0answers
11 views

How can I reset style on a polygon?

I can not get the style to reset on a leaflet polygon. The setStyle works just fine on hover, however resetting it when I stop hovering is not working. I'm getting Uncaught TypeError: Object [object ...
0
votes
0answers
21 views

How to insert a point into a polygon in a correct position

I have two polygons, let's say like these ones: The original vertices are ordered counterclockwise. I find the intersections by iterating: foreach sideQ in Q foreach sideP in P ...
0
votes
1answer
36 views

Create waypoints on a polygon with JS

This is more a mathematical than a JS problem, but I hope you can help me. I'm trying to create waypoints around a polygon. It should be able to walk on a line. I need to observe the following cases ...
1
vote
1answer
17 views

What's vertex shading?

I am a beginner in polygon based computer graphics. Whatever I read I always come across the term vertex shading. What is it? As far as I know vertices are the points where two edges of the polygon ...
0
votes
0answers
19 views

export data from a figure plotted using 'fill' command

my function plots a graph using 'fill' command which takes vertical and horizontal coordinates from two corresponding matrices X and Y. It also fills the polygons with values from matrix ex and my ...
-1
votes
0answers
19 views

How can I find the collision points of two Polygons in slick2d?

I'm making a top down ship game in slick2d. I'm trying to make collision physic for the ships with polygons. if(ship.polygon.intersects(ship2.polygon)){ } How can I find the collision ...
-3
votes
0answers
13 views

Google maps isLocationOnEdge [closed]

Hy! I read this Site , but i dont know how to use it. somebody write an example to me? Thanks!
1
vote
0answers
21 views

GoogleMaps API V3 Polygon dblclick auto-complete

I have created a plotting system using the GoogleMaps Javascript API V3, which allows users to draw out and save polygons. I have received a number of complaints concerning the autocompletion of ...
0
votes
2answers
49 views

Python: checking if point is inside a polygon

I have a class describing a Point (has 2 coordinates x and y) and a class describing a Polygon which has a list of Points which correspond to corners (self.corners) I need to check if a Point is in a ...
1
vote
1answer
19 views

Calculating Path (Polygon) of Path with Stroke - Javascript or Pseudocode

So I have an array of points (x, y) that form a path. I need to calculate the points of a surrounding polygon. Essentially CGPathCreateCopyByStrokingPath if you're familiar with iOS. Unfortunately, ...
0
votes
0answers
12 views

Get polygons / indices in Away3D

How to get an object's polygon positions or indices' positions? I can get vertex data which is Vector. but I still don't know which vertices make polygons. I need that for ray intersection check to ...
0
votes
1answer
31 views

Matplotlib.pyplot.contourf: lines, or gaps between polygons?

I'm trying to plot a filled contour plot, but the edge of each polygon is white. I've tried turning them of with linewidth=0, linewidths=0,edgecolor=None and a few others. I'm beginning to think it ...
-2
votes
1answer
37 views

Calculating the Perimeter of a Polygon [closed]

I have a list of coordinates (points) consisting of a Double X and Double Y for each. How can I determine the perimeter (border) of these points so I can turn them into a Polygon? I have tried the ...
0
votes
1answer
31 views

Solr 4 Spatial Search polygon vs polygon search with distance parameter

Is there a way to search for a polygon in X distance to indexed polygons? I already have indexed polygons and multipolygons in SOLR 4.2.1 index with a field type <fieldType name="location_rpt" ...
0
votes
0answers
8 views

How to find overlap between two convex hulls,along with the overlap area

I have two boundaries of two planar polygons , say,B1 and B2 of polygons P1 and P2(with m and n points in Boundaries B1 and B2). I want to find out if the Polygons overlap or not.If they overlap,then ...
2
votes
2answers
938 views

Drawing holes in polygons with KML in Google Maps or Earth doesn't work. Somebody has an idea?

This is my kml file : <?xml version="1.0" encoding="UTF-8"?> <kml xmlns="http://www.opengis.net/kml/2.2"> <Placemark> <name>Pentagon</name> <Polygon> ...
2
votes
0answers
34 views

Google Maps Custom Polygon with image as background and hover effect

Is it possible to create a webapp using Google Maps API V3 that uses custom images for countries or regions, that change on mouseover and mouseclick? I have looked at google.maps.GroundOverlay and ...
0
votes
0answers
51 views

CSV with Polygons import into Google Maps Engine Lite

I don't know how to format a CSV with polygons so Google Maps Engine understands and imports it. What is the standard ? Btw: I'm trying to do that because I want my coordinates to be hidden and not ...
6
votes
5answers
2k 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 ...
0
votes
0answers
36 views

OpenGL Polygon Rendering inconsistency

I am using opengl simple commands for demonstration purpose in my project. Well, my project is similar to mesh a rectangle region into a set of small convex polygons. First, I tried to render the ...
0
votes
0answers
29 views

Only way to get sharp lighting in Unity?

I'm creating a mesh via a script in Unity, and I'm trying to get a sharp lighting effect on each face. Think old 1980s graphics. I've found two ways, labelled 1 and 2 in my (awful) diagram below. 1 ...
2
votes
1answer
75 views

Best-fit algorithm to fit a set of lines onto a polygon

I have two sets of lines, set A and B. The start and end points of all the lines in these two sets are known and I want to find the rotation and translation that best fits set B onto set A. There is ...
0
votes
1answer
31 views

Google maps api3 - Hide/show polygon on zoom change

I have a test page at http://www.choptankelectric.coop/outages/google/visibility_test.html where I want to show a polygon on loading the page but remove it when the visitor reaches zoom level > 13. I ...
1
vote
1answer
68 views

Distance of point feature to nearest polygon in R

I working on a project at the moment, where I have a point feature -- the point feature includes a 142 points -- and multiple polygon (around 10). I want to calculate the distance between every single ...
1
vote
2answers
81 views

Points inside Polygon (excluding boundaries)

I am currently finding the co-ordinates inside a particular shape with 12 vertices. (3,7) (5,7) ####### # # # X # (3,5)# #(5,5) ...
0
votes
0answers
34 views

Effective rectangle of a concave polygon using PCA and moment of inertias

A long an narrow curved polygon(representing a path for a vehicle) is to be recursively divided such that the centroid of sub division is inside that.The approach suggest by Hak-Tae Lee,Thomas F. ...
2
votes
3answers
721 views

Simplified concave-hulls

Problem: Given: n points that are strongly correlated to a 3d k-sided non-convex polygon, where n >> k Find: the best fit concave-hull that matches the original geometry of the points Attempted ...
0
votes
0answers
31 views

Simple solution to creating minimal polygons/quads from a base layout?

I am currently trying to render a background of a base (city, hometown) from a tiled grid. One thing we know and can assume true is that everything in the town or base is exactly square. They are ...
7
votes
1answer
138 views

Split weakly-simple-polygon to true simple polygon or polygons

I want to divide weakly-simple polygons into simple polygons. Background The use case is to simplify polygons that are Simplified (Unioned) using Javascript Clipper. Javascript Clipper's as well as ...
5
votes
1answer
74 views

Setting an image as the colour of a polygon

I borrowed this code from statmethods[dot]net. The result is a coloured area under a normal distribution. mean=100; sd=15 lb=80; ub=120 x <- seq(-4,4,length=100)*sd + mean hx <- ...
1
vote
0answers
77 views

Create polygon with Google maps, Open Layers and KML file

I'm trying to make timelined google maps using OpenLayers Timeline open source JavaScript library. (stackoverflow don't allow me to put 3 links, so just google "openlayers-timeline") my KML file ...
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 ...
139
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.
0
votes
3answers
71 views

Point in convex polygon

I'm trying to make a function that will return True if the given (x,y) point is inside a convex polygon. I'm trying to make it without numpy or any similar imports, just pure python code. I've ...
0
votes
1answer
340 views

How to fill a box2d-qml polygon with a color?

I have box2d and qml working together nice. I am generating a polygon like this Polygon{ vertices: [ Qt.point(6, 22), Qt.point(10, 64), ...
-2
votes
0answers
33 views

Tetris game in WPF, using polygons only [closed]

I want to build a Tetris Game in WPF. Now, i don't to use labels or text boxes, I want to use polygons to create the tetris blocks. How can I do this? I mean, how can I check that the polygons I add ...
2
votes
1answer
1k views

Divide self intersecting polygon (C Code)

I want to divide a self-intersecting polygon into simple polygons. I have the edges and the intersection points saved in a data structure (a connected list). So here is an example. I have a connected ...
0
votes
1answer
61 views

Autocomplete polygons while drawing with drawingManager using the Google Maps API v3

I have a basic Google Map, with a drawingManager, like this: var mapOptions = { center: centroid, zoom: 14, scrollwheel: false, mapTypeId: google.maps.MapTypeId.HYBRID, ...
0
votes
0answers
39 views

Google Earth Plugin polygon KML 3D display possibility

My goal is one rarely achieved yet on the interweb- yet seems simple enough! Specifically, I wish to display vectors(shaded polygons) draped on the GE landscape, which depict property boundaries, ...
-1
votes
1answer
57 views

Matplotlib Concentration plot can not show up [Python 2.7 (with Eclipse) ]

I would like to ask for help. Please for help me with my code in Python 2.7. I want plotting concentration of gas release. Two weeks ago I started with Python, I did not see it before, I have basic ...
3
votes
3answers
2k views

distance from point within a polygon to polygon edge

I am working with a huge area, 7 states of forest and nonforest using the NLCD data. Within some of the forested areas is a plot (this is my master's thesis I am working on). I have stumped everyone I ...
0
votes
1answer
48 views

Multiple polygons in Google maps

Is there any way to id multiple polygons in Google maps v3? Also, can you track when a polygon changes size? I wasn't clear about how to do that from the Google Maps API guide. I want to set up a ...
1
vote
1answer
63 views

Counting polygons in shapefile

So I have multiple species ranges which look like the following (colored blue for example) This one runs east to west across Africa: I can get the total area by using gArea in the rgeos package. ...
2
votes
1answer
279 views

Three.js polygon triangulation fails in pseudo duplicate points

In three.js there is a function triangulateShape(). Now I encountered a failure to triangulate polygons that are simplified using Javascript Clipper. Simplifying in Clipper is done using Unioning. ...
2
votes
4answers
1k views

Calculate area out of geo-coordinates on non-convex polygons

I would like to calculate the area of a polygon that I get from a GPS track. So basically I store the position of the device/user after a period of time, let's say 5 seconds. Out of this track ...
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 ...
3
votes
2answers
620 views

How to calculate the area of polygon overlap in R?

Does anyone know how to calculate the area in common between 2 or more polygons in R? I would like to have the output of such a calculation be the coordinates of a new polygon for that area of ...
2
votes
1answer
137 views

Simplify Polygon - Clipper Library Angus Johnson

I'm trying to simplify a complex polygon drawn on Google maps (API v3 Javascript). My goal is to receive an array of simple polygons. The problem is that some of the figures I draw could be analyzed ...
1
vote
1answer
94 views

Boost polygon library Boolean function computation time

Have anyone used the Boolean function of Boost polygon library? Boost polygon library It says that the algorithm is O(nlogn) in time complexity, n = #points I input 200000 random generated polygons ...

1 2 3 4 5 21