0
votes
1answer
54 views

How does java fill a polygon

I've wondered for a while now how java fills his polygons, I've been trying it myself with scanline algorithms etc. etc. which have ended quite distorted uptill now, so I got myself wondering how does ...
2
votes
1answer
32 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 ...
1
vote
1answer
39 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
36 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 ...
5
votes
1answer
79 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 <- ...
0
votes
0answers
88 views

Draw and Fill polygons effeciently

So I came across an efficiency issue in my program. I have done quite a large amount of optimization, but I am still coming across a fundamental problem. Besides optimizing edge-merging, I have come ...
1
vote
1answer
180 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), _ ...
1
vote
2answers
210 views

Pixel overlap with polygon: efficient (scanline-type) algorithm

Problem specification: I have a rectangular and uniformly spaced image of pixels with vertex coordinates (i,j), (i+1,j), (i, j+1), (i+1, j+1) [i=0,...,m-1; j=0,...,n-1] and a polygon P with vertex ...
-4
votes
4answers
498 views

trying to draw a hexagon shape in

I'm trying to draw a hexagon shaped asteroid on a clone of Asteroids I'm making for a class. sprite = new Polygon(); sprite.addPoint(0,0); sprite.addPoint(0,-40); ...
1
vote
1answer
989 views

Intersection of two convex polygons

I have two convex polygons. Polygons are implemented as cyclic lists of their vertices. How to find an intersection of this two polygons?
7
votes
1answer
138 views

What exactly is a buffer in OpenGL, and how can I use multiple ones to my advantage?

Not long ago, I tried out a program from an OpenGL guidebook that was said to be double buffered; it displayed a spinning rectangle on the screen. Unfortunately, I don't have the book anymore, and I ...
0
votes
2answers
215 views

C++ fast library for drawing 2d with transparency

I'am looking for fast library too make some 2d drawings. I need only to draw polygons, change transparency of them. I don't want to display result in any window, saving to file will be enoght (faster ...
2
votes
3answers
107 views

What is the complexity of this code?

I have a the above model represented in a Face Table List where the F1, F2,...F_n are the faces of the model and their face number is the index of the list array. Each list element is another array ...
1
vote
1answer
181 views

Polygonal Gradients

I am working on a project that uses the Juce library to display graphics. So far I have been using the library's API functions to generate linear and radial gradients, however that's the only two ...
2
votes
2answers
204 views

How to “soften” the edges of a polyline?

Given a line made up of several points, how do I make the line smoother/ curvier/ softer through adding intermediate points -- while keeping the original points completely intact and unmoved? To ...
0
votes
1answer
1k views

ray casting algorithm without side coordinates

Im trying to define if a point is inside a polygon. Only the coordinates of the corners are given. After some research I found the Ray casting algorithm but it looks like i need a vector filled with ...
0
votes
1answer
187 views

drawing poly with holes in on android

i have a master polygon, then i have regions i dont want to be drawn inside, specified as other polygons. I'm using android 1.6 which I think has some form of opengl es 1.x. I've been reading up on ...
4
votes
1answer
655 views

Finding the Twins when Implementing Catmull-Clark subdivision using Half-Edge mesh

Note: The description became a little longer than expected. Do you know a readable implementation of this algorithm using this mesh? Please let me know! I'm trying to implement Catmull-Clark ...
1
vote
3answers
785 views

Drawing a Polygon

I am using Google Maps API V3 to draw a polygon based on a path, which is an array of random unsorted coordinate points (LatLng). This produces the shape below: Polylines intersect!! Problem: ...
3
votes
2answers
3k views

Java Graphics.fillPolygon: How to also render right and bottom edges?

When drawing polygons, Java2D leaves off the right and bottom edges. I understand why this is done. However, I would like to draw something that includes those edges. One thing that occurred to me ...
3
votes
2answers
334 views

Determine if polygon has a hole?

After experimenting with some triangulation work I ran across the question on how to determine if a polygon has a hole? I know how to handle a known hole but am unsure of how to determine if one ...
1
vote
1answer
64 views

How to avoid the polygon to be complex when optimizing its vertices?

Suppose there's a set of 2D points to represent an initial simple polygon. Now I want to optimize the positions of each point according to some cost function. But this could make the polygon complex, ...
0
votes
2answers
88 views

Why are all of the four fragments of a quad fragment going to be shaded, even if a polygon covers only one of them?

Why are all of the four fragments of a quad fragment going to be shaded (calculating their color), if a triangle (polygon) for example, covers only one of them?
1
vote
1answer
368 views

texture coordinates for point in polygon

I have a polygon, where each vertex has texture coordinates. How can I calculate texture coord for any point lying in the polygon? (I know points coordinates.) Thanks p.s. sorry for my english...
2
votes
2answers
404 views

How to draw a regular polygon so that one edge is parallel to the X axis?

I know that to draw a regular polygon from a center point, you use something along the lines of: for (int i = 0; i < n; i++) { p.addPoint((int) (100 + 50 * Math.cos(i * 2 * Math.PI / n)), ...
1
vote
2answers
1k views

Graphics FillPolygon exterior?

I've created a simple test app that will draw a polygon onto an image given the points I provide. I've created a brush that will fill in the polygon how I want to. Now I want to fill in everything BUT ...
0
votes
1answer
167 views

Algorithm to make fewest triangles given points in 3d

With a set of points in 3d. How would one go about finding the fewest set of triangles connecting those points; creating a set of triangles all sharing at least two of their sides? (like a square ...
1
vote
2answers
774 views

Concave Polygon Line Clipping without Degenerate Edges

I have search and researched the internet last days to find a suitable method for my problem. Problem: Clip a concave polygon against an infinite line without direction (Actually a polygon against a ...
8
votes
5answers
2k views

Looking for a fast polygon rendering algorithm

I am working with a Microchip dsPIC33FJ128GP802. It's a small DSP-based microcontroller, and it doesn't have much power (40 million instructions per second). I'm looking for a way to render a convex ...
0
votes
2answers
757 views

How to draw an incomplete Polygon using Java

What I am looking to do is to draw an incomplete polygon using Java. I have figured out how to draw only the polygon in one shot, or even fill the polygon. I can also draw the incomplete polygon by ...
1
vote
1answer
1k views

Help me understand Java Polygon Fill oddness

I am working with drawing polygons based on a given line. I have the logic working out well except in cases where it appears that the polygon intersects itself. However, it doesn't seem to be 100% ...
1
vote
1answer
688 views

{R grid}: how to create a polygon half filled with color?

(This question might be too difficult, and maybe not worth the hassle to solve - however, if there is an easy solution - I would be curious to know) Let's say I create an image (using the grid ...
1
vote
1answer
192 views

3D Mesh Joining

I have 2 (or more) intersecting meshes, which require joining into 1 mesh object. I want to have some control over the resulting seam vertex insertion, so looking to write myself rather than use a ...
1
vote
1answer
4k views

Drawing an empty polygon given a set of points on a Map Overylay (Android 2.1)

I've set of n points and I want to draw a n-sided polygon using these points. I tried using android.graphics.path (please see below). Path path = new Path(); Vertex currVtx; for (int j = 0; j ...
0
votes
3answers
308 views

How do I arbitrarily distort a textured polygon?

I'd like to write a program that lets me arbitrarily distort a textured polygon by dragging its vertices. I want the texture to distort fluidly and without overlap, assuming the new polygon doesn't ...
1
vote
6answers
4k views

Draw a polygon in C

i need to draw a polygon of "n" sides given 2 points (the center and 1 of his vertex) just that i suck in math. I have been reading a lot and all this is what i have been able to figure it (i dont ...
1
vote
6answers
652 views

How do I flip a polygon by flipping the array?

I have 2 arrays of ints I am using to create a polygon (that looks like a fish). What do I need to do to the arrays to flip the polygon horizontally? x = new int[] { 0, 18, 24, 30, 48, 60, 60, 54, ...
0
votes
1answer
518 views

Reflections and other transformations with Java Polygons

I'm working on a project that requires me to do simple geometrical transformations (translation, reflection over x and y axis) on some figures drawn on a Java applet. The previous guy working on ...
8
votes
2answers
2k views

Minimize Polygon Vertices

What is a good algorithm for reducing the number of vertices in a polygon without changing the way it looks very much? Input: A polygon, represented as a list of points, with way too many verticies: ...
148
votes
16answers
50k 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.
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 ...