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

learn more… | top users | synonyms

1
vote
0answers
38 views

creating a soccer ball with 2d drawing c#

I have tried making this for inside the ball and the ball but I don't know how to fill the ball with the GraphiPath I created private void soccerball_Paint(object sender, PaintEventArgs e) { ...
0
votes
0answers
14 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 ...
2
votes
1answer
19 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
22 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
50 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 ...
0
votes
1answer
39 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 ...
0
votes
1answer
34 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
13 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 ...
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, ...
-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

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 ...
0
votes
0answers
9 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 ...
0
votes
1answer
33 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" ...
2
votes
0answers
35 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 ...
0
votes
0answers
38 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 ...
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
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 ...
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
69 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 ...
0
votes
0answers
35 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. ...
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
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 ...
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 ...
-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 ...
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
40 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, ...
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 ...
-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 ...
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 ...
-2
votes
1answer
54 views

Drawing a polygon based on clicks

I am trying to write a program that allows the user to draw a polygon by drawing a line every time they click within the frame. On the first click, a small square should be drawn. Every click ...
1
vote
1answer
65 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. ...
0
votes
0answers
32 views

Polygon String to jts Geometry

Can some one suggest me how to convert a polygon string to jts Geometry, without parsing the string? POLYGON((-86.82373046875 39.6923828125,-85.1318359375 39.8681640625,-85.32958984375 ...
0
votes
1answer
41 views

Overlay SpatialPointsDataFrame and a SpatialPolygonsDataFrame when the number of rows is unequal [closed]

I am wondering if this is possible in R. I have a SpatialPointsDataFrame, which includes points that have attributes assigned to them. I want to overlay this SpatialPointsDataFrame with a ...
7
votes
1answer
139 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 ...
0
votes
1answer
33 views

What does “region” and “polygon” mean in rasterize function from raster library in R?

When I use the function rasterize from the raster library in R, this message appears in the console: "Found 6085 region(s) and 6409 polygon(s)". There is 6085 polygons in the shapefile, so I was ...
-8
votes
0answers
64 views

Does random lines form a polygon? [closed]

Does random lines form a polygon? I work in a 2D space. I am a beginner in programming For this problem I need an algorithm Programmed in VB.NET entrance set of lines in the collection collection ...
0
votes
2answers
79 views

Draw 2D thick arc using polygon in OpenGL

I want to draw a thick Arc(something like colored segment of analog dial) using polygon. For that i have added vertices in polygon and its working fine for the outer circumference BUT its joining the ...
2
votes
1answer
281 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. ...
-1
votes
0answers
65 views

Clipping library to calculate center of mass of polygon; and point within the polygon [closed]

I am in need of polygon clipping library in C#. This is something I would like to find, only in C#. The clipping library has following requirements (besides actual polygon clipping): It has to be ...
1
vote
1answer
100 views

Extruding multiple polygons with multiple holes and texturing the combined shape

This question is related to this question. The answer shows very nice way to extrude polygons that have holes (see the excellent live example). The main learning of the answer was that paths in ...
0
votes
0answers
47 views

DbGeography polygon to JSON

I store DbGeography polygon in database. My controller gets polygons from database and I need to convert them to JSON. var polygons = db.Areas .Where(x => x.Type == type) .Select(x ...
0
votes
1answer
77 views

Drawing a polygon with circles using java script canvas

Hi all is there a way to draw a polygon with circles using java script canvas, so that I could refer to each circle as an object that contains its coordinates and index inside. I want to draw complete ...
1
vote
1answer
85 views

Converting SVG paths with holes to extruded shapes in three.js

I have a shape that consists of 4 polygons: 2 non-holes and 2 holes. This is only an example. In reality there can be a shape that consists of 50 polygons, of which 20 are non-holes and 30 are holes. ...
3
votes
2answers
160 views

Spatial query using my SQL

I am writing from two varChar formatted columns named 'lattitude' and 'longitude' to a Point formatted column named 'coordinate' using the statement below. "UPDATE table_name SET coordinate = ...

1 2 3 4 5 21