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

learn more… | top users | synonyms

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 ...
0
votes
4answers
187 views

Drawing a solid polygon in memory (not on the screen)

I need to draw a solid polygon in memory (into a 2D array) and 'fill' the polygon with numeric values (say '3'). I wish to do this in C#. I'm getting the solid polygons from Shapefiles using ...
0
votes
0answers
104 views

Split Spatial Polygon/line into smaller Polygons/line by geohash or another gridded system

Is anyone aware of any logic or algorithm that would allow me to split a single polygon or single line into multiple polygons/lines based on a geohash (32) or possibly another similar type gridding ...
1
vote
1answer
479 views

How to track event changes to a polygon with Google Maps API

I'm currently building a 'search an area' feature for a site we're working on. A bit like the one on Rightmove. I've got everything up and running except the ability to track event changes to a ...
1
vote
1answer
161 views

Test polygons overlap in Google Maps

In my project I have a map with a lot of polygons drawed. Each polygon is represented as a MVCArray. The user can draw a new polygon on the map in this way: If the user click on the map, there ...
0
votes
4answers
184 views

How to make an existing polygon move in java?

Hey dudes and dudettes. High-school Comp Sci student reporting in. Right now we're doing some work with plotting and polygons, and one of the challenges is to make it move across the screen in a ...
1
vote
1answer
162 views

FillPolygon with holes

I want to create a "fill" that fills the inside of a polygon, created using a point list, but be able to remove its holes. My old code: Private Sub DrawSomething(ByVal points as List(of Point), _ ...
0
votes
0answers
70 views

PHP: Draw a polygon around a set of coordinates

I have an array of coordinates, actually little rectangles that are the bounding boxes for individual characters of text (but that's not important). I need to get the coordinates for a polygon which ...
0
votes
0answers
66 views

How to add corrent edit polygon to Google map?

I did adding the polygon to Google MAP. Polygon added. Changing also correct. But after the change does not work listeners. function addZone() { var triangle = new google.maps.Polygon({ ...
0
votes
0answers
40 views

Polygon edge blurring

Is it possible to blur or perform other operations that consist of running a mask/kernel over only the edges of a given polygon within an image? I have given this quiet a lot of thought, however am ...
0
votes
1answer
260 views

Removing BufferedImage pixel values and or setting them transparent

I have been working with the polygon class and trying to set the pixel values inside of the polygon to transparent or remove them all together if this is possible, however I have hit a bit of a wall ...
1
vote
1answer
64 views

Rendering polygons with a VBO seems to lose some vertices

I'm trying to render a set of polygons, i have a set of points and im not doing any triangularization. If i render my VBO with GL_LINE_LOOP mode, the lines went whit the right vertices, but when i ...
1
vote
0answers
262 views

Is there a way to create a complex polygon shape from any image in CSS for use in regions property?

I'm trying to find a way to convert any black image into a polygon shape. The problem I'm trying to solve consists of two steps: Convert image into a polygon Fill the polygon with text I'm ...
0
votes
1answer
119 views

Adding Polygon points from Line2D values

I have a small block of code that is reading Line2D values from an array called lineList (in a different class) and storing them in the new array called list. from here I have been trying to convert ...
0
votes
1answer
98 views

Polygon inside polygon in libgdx and box2d

I'm new in libgdx and box2d and I would like to know if there's an easy way to put a polygon randomly inside the bounds of another polygon. EDIT I want something like this: Where the black ...
2
votes
2answers
114 views

Match point to polygons in a big polygon list

I have a big list of polygons (say size 250,000) and a big list of points (say size 100,000). What I need to do is to find to which polygon(s) does each of these points belong. The polygons are ...
0
votes
2answers
120 views

How to map polygon in JavaScript

Please can you help me? I´m looking for a way, how to map a polygon in canvas with image file (.png or .jpg) but I´m quite confused and I don´t know how to do it... Can you tell me or give a link to a ...
1
vote
1answer
66 views

Make from polygon the clockwise polygon

I know how to determine if polygon is clockwise(compute the area and compare with 0. If area > 0 then polygon is clockwise). If polygon isn't clockwise then how to convert it to clockwise polygon?
0
votes
0answers
84 views

box2d how to rotate polygon with offset without changing polygon angle?

Sorry, it's hard to explain what I want to do, here is pic that describes it better: My code: b2BodyDef myBodyDef23; myBodyDef23.type = b2_kinematicBody; b2PolygonShape polygonShape23; ...
1
vote
2answers
122 views

Unable to fill the polygon with a color

I am adding a Polygon like this: PolygonOptions options = new PolygonOptions(); for (int x = 0; x <= 360; x++) { //get LatLng ll options.add(ll); } options.strokeColor(Color.BLUE); ...
2
votes
1answer
141 views

Reduced size of polygons in the paint method implementation

I've made a program in JAVA applets. The program draw a polygon A with 4 randomly generated points then it draws another polygon with 4 randomly generated point B. After this it compares each points ...
-1
votes
1answer
73 views

How can I draw float coordenates in a 500x500 picturebox?

I have this doubt, suddenly something more mathematical, for example I have the following geographical coordinates: (4.80549328, -74.14376602) (4.80755020, -74.14195687) (4.80011076, -74.13276181) ...
0
votes
1answer
150 views

Preventing Z-fighting on coplanar polygons?

I'm trying to deal with Z-fighting on co-planar polygons in an OpenGL based renderer. Due to legacy issues I have my hands tied in many regards. Mainly the renderer has to be myopic due to how the ...
0
votes
1answer
64 views

KMLViewer in iOS

I am testing Apple's KMLViewer software and I was wondering If I could use it to find in which country x,y coordinates belongs. My KML file has all the data for all countries. (Polygons, overlay..).
0
votes
0answers
76 views

Point in Polygon algorithm giving wrong results sometimes

I saw on stackoverflow a "point in polygon" raytracing algorithm that I implemented in my PHP Code. Most of the time, it works well, but in some complicated cases, with complex polygons and vicious ...
-1
votes
1answer
257 views

Convert a shapefile from polygons to points? [closed]

I have a non-overlapping polygon-based shapefile (.shp) with a large spatial extent and many dozens of associated attributes. The shapefile is projected in UTMs. I would like to convert the polygons ...
0
votes
1answer
428 views

Applet, drawpolygon in place of String special characters

I have not been learning Java for too long so forgive me, but I've been asked to make an applet and one of its basic functions is to allow a user to enter into a text box and for the applet to display ...
0
votes
1answer
45 views

Counting values in a Matrix within Boundaries

I've tried on my own using a "between the equations of a line" approach, but I need to do the following: I have a matrix, n by n, which store 2D histogram counts. I need to be able to specify points ...
0
votes
1answer
165 views

Polygon in Objective-C

I want to draw polygon as per given in attachment! Is it possible to do so ? One more thing about polygon, I want to create it as UIView. Just like as we create rectangle and square. Because I need to ...
0
votes
2answers
459 views

extract value from raster stack from spatialpolygondataframe

I have a raster stack with 27 rasters in it. I have 27 corresponding polygons in a spatial polygon data frame. I want to take polygon[i] overlay it on raster[i], extract and sum the values from ...
0
votes
1answer
174 views

Get Bounding Box from a lat/lon polygon

i have a list of boundaries (polygons) and a list of ways all represented by latitudes and longitudes. i would like to find out if one way is inside a polygon. i do this in perl but cant find anything ...
2
votes
2answers
97 views

How do I speed up infoBox.open() on FusionTables layer click?

Setup I have a polygon map of all the Provinces in South Africa. This is then pulled into a v3 Google Map as a FusionTablesLayer as follows: // The Google Map object map = new google.maps.Map( ...
1
vote
0answers
164 views

why do I get a Error: DISPATCH_REQUEST_ERR when trying to click on a Bing Map?

I'm using Bing Maps Ajax Control 6.3 and previously I succeded on attaching a click event, but now I'm getting the following error on a different page I tried to repeat the same behavior: Error: ...
0
votes
0answers
50 views

Polygon in JDBC PreparedStatement

i need to create a prepared statement for selecting ways in a polygon "SELECT w.id from ways w WHERE w.poly && (polygon ?)" i'm setting the parameter ps.setString(1, "((" + (tl.x - xLen) + ...
4
votes
2answers
132 views

Generate vertices for a polygon

I'm trying to make a useful/generic 2D polygon class for an OpenGL ES renderer. When I create a polygon, I give it several parameters: Polygon(Vector3 centerpoint, int numVertices, float inPolySize) ...
1
vote
1answer
50 views

Split 2D quad by line

I found many implementations that deal with splitting a polygon by a given line, but I only need to split a Quad (rectangle with 4 vertexes). Is there an algorithm optimized for this task? Simplicity ...
-4
votes
1answer
267 views

Calculating centroid of an arbitrary polygon in Java [closed]

public Point getCentroid() { return null; } I'm supposed to write a method that returns the centroid of a polygon. I read over the formula on Wikipedia, but it's still confusing. How do I ...
1
vote
1answer
125 views

OpenGL - weird lines on polygon edges

In a minecraft-like game I'm making, I'm getting these weird lines on polygon edges: I'm using a texture atlas, being clamped with GL_CLAMP_TO_EDGE. I tried using setting GL_TEXTURE_MIN_FILTER to ...
0
votes
0answers
192 views

create box2d andengine box2d body without sprite

hey I have created my body using following code: (please read full description) Body polyBody; final BodyDef mBodyDef = new BodyDef(); mBodyDef.type = BodyDef.BodyType.DynamicBody; ...
0
votes
1answer
89 views

Import error in Python: Polygon

I installed this library called Polygon, in Python 2.7.3. But, each time I import it I get the next error message : Traceback (most recent call last): File "<stdin>", line 1, in <module> ...
0
votes
1answer
134 views

Algorithm to partition an area - find points close to each other

Is there an algorithm to find all points with a set distance from each other ? Or all rectangles that are touching ? I divide the plane (in lat/lon coordinate system, of certain limits) in sample ...
0
votes
1answer
128 views

Android maps v2, polygon error

I am having trouble adding my polygon with holes to my google map. It was working with polylines (and I think once with polygon) but now it doesn't, whether the holes logic is there or not. Here is ...
0
votes
1answer
134 views

Redraw polygon while changing window size with WPF 4

I'm making a WPF/C# program with a Polygon to make a triangle. When the size of my window changes, I want it to be redraw, so here is my WPF : <Polygon Name="Plg" Grid.Row="1" Grid.Column="1" ...
0
votes
1answer
152 views

How to enlarge/move polygon in Java?

So I have the following code: import java.awt.*; public class Triangle extends Point { protected int size; private int p1x, p2x, p3x, p1y, p2y, p3y; //Create a new triangle public ...
0
votes
1answer
123 views

Convert polygon to ellipse

Background: I have a set of point which I run through a convex hull algorithm, these points returned are then drawn as a polygon on the screen. Aim: I want to "smooth" out the polygon into an ...
0
votes
2answers
332 views

highlight a polygon while on click using kml

I am using kml file to draw polygons in google map. I am setting click events for those polygon which is working. Now I want the clicked polygon to be highlighted. I had tried the setOption() method, ...
-2
votes
1answer
80 views

Why does java.awt.Polygon only work with integers?

I'm doing a project in which I use the AWT library with shapes a lot. Most of the classes implementing Shape work with both Double and Float, except Polygon. Why? Why in Gods name and grace?! Am I ...
1
vote
1answer
86 views

MousePressEvent catches signal unnecessary- PyQt4

So I have a QraphicsScene with a QGraphicsPolygonItem , which I flag as movable. And I also override the MousePressEvent. My code snippet tll now. def mousePressEvent(self , e): self.endx = e.x() ...
3
votes
1answer
504 views

Polygon Intersection with Line | Python Shapely

I have been trying to use shapely to find the intersection of a line and a polygon, but I'm having issues with some floating point numbers. Example code: polygon = [(4.0, -2.0), (5.0, -2.0), (4.0, ...
10
votes
1answer
178 views

Drawing outlines around multiple geom_point groups with ggplot

I currrently have the code included below to draw this: What I am trying to do is get the outline for each of the groups to follow all of the points in each group - rather than skip some of them as ...

1 2 3 4 5 21