Tagged Questions
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 ...
0
votes
2answers
82 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 ...
1
vote
1answer
141 views
OPEN GL_POLYGON
I have a problem when I try to use Polygon in openGL. I don't know how to explain this but all my vertex are connected with the beginning one. The problem happens when I try to color the object. I ...
0
votes
1answer
95 views
Convert shape to polygons
Is there any simple (or not) algorithm that is capable of creating polygons from closed path?
Assume w have following path:
0,0; 2,0, 2,1; 1,1;
1,2; 2,2; 2,3; 0,3;
I need to be able to create ...
1
vote
1answer
171 views
Use of GL_STENCIL_TEST to render concave polygons
I'm working on a custom geometry library adapted to Quartz Composer and trying to draw some concave polygons in a Plug In.
I implemented the poly2tri library, so the user can choose to triangulate ...
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 ...
0
votes
1answer
149 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 ...
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 ...
3
votes
2answers
909 views
Drawing textured polygons with libgdx
I'm having a problem with my rendering cycle using libgdx, basically I need to fill an area with a square texture, and the last part of this area may be smaller or with a different shape than the ...
0
votes
1answer
202 views
Debugging Polygon Approximation Algorithm Code C++ [closed]
I was wondering if it would be possible for you to help me debug some code of mine. I've written the following code for a class project where we are implementing a polygon approximation algorithm. But ...
0
votes
1answer
82 views
OpenGL Displaying Two Arrays
I'm needing some help with some c++/OpenGL coding. What I'm doing is a polygon approximation algorithm.
My code first pulls in a set of points from a .txt file, stores them all in an array and then ...
0
votes
2answers
199 views
Rotating a Polygon by Clicking on it in OpenGL
I have 2 hexagons
And I want to click on the center of one hexagon and the clicked hexagon will rotate 30 degrees, and the other will stay still. What I tried to do was:
void myMouse( int button, ...
0
votes
1answer
447 views
OpenGL draw Polygon with GL_LINES and angle between lines
I need to draw a Polygon iteratively. for example, I want to draw a Polygon with 8 corners. I need to draw the first line with GL_LINES and then draw the second line with the same length and an angle ...
7
votes
1answer
135 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 ...
1
vote
1answer
197 views
OpenGL GL_POLYGON Not Functioning Properly
I have an OpenGL-related issue. Whenever I attempt to draw a simple polygon using four vertices from a vertex buffer... nothing happens. However, it will draw the shape in GL_TRIANGLES or ...
1
vote
1answer
114 views
Polygon into shader
I'm writing a game. Now there is rendering of the water. I have a polygon:
All the scene is rendered into a single texture and when the water's queue comes I want to pass a complex polygon into the ...
0
votes
1answer
194 views
Draw shapes given list of lines
I am working with C# OpenTK, but any code in C++ OpenGL is fine, i understand it.
I have a list of Markers. A Marker is defined as a 2 coordinate, and a pointer to the next marker in the loop. ...
5
votes
1answer
538 views
OpenGL: create complex and smoothed polygons
In my OpenGL project, I want to dynamically create smoothed polygons, similiar like this one:
The problem relies mainly in the smoothing process. My procedure up to this point, is firstly to ...
8
votes
1answer
694 views
OpenGL 2D polygonal shape drawing and manipulation?
I'm working on a 2D game project where I am expecting users to draw 2D polygons (closed path) such as:
Possible Solutions:
1 - Draw by Points and Calculate Border Lines.
1 Problem - Calculation of ...
2
votes
2answers
419 views
OpenGl polygon rotation
I'm trying to implement a moving and rotating polygon in OpenGl and C++.
Movement and rotation are along the XZ plane(2D transformations only).
The polygon is defined by a centre point and a set of ...
1
vote
2answers
994 views
in a wavefront object file (.obj) how am i supposed to render faces with more than 4 vertices in opengl?
So using a wavefront object file as defined here:
http://en.wikipedia.org/wiki/Wavefront_.obj_file
how am i supposed to render faces that have more than 4 vertices in opengl. I undertand that if it ...
1
vote
1answer
292 views
Java LWJGL: When I call “GL11.glEnd” the polygon disappears?
When I call "GL11.glEnd" the polygon disappears. If I leave that one line "GL11.glEnd" out, then it stays on the screen, but when I put it in, the polygon I was drawing disappears.
package package01;
...
1
vote
2answers
2k views
OpenGL tessellation of a car made from a polygon
im learning to use openGL and iv been told that because my wheel arches are concave i have to tessellate them. So here is my code for the front wheel arch...
GLdouble car[7][2] = { {-1.93,0.3}, ...
1
vote
2answers
509 views
OpenGL project, using tessellation on a polygon rendered car
Ok so im seperating my problem up because i need a depthy answer cos im nooby with it and will fail if i have just a generalisation answer.
I have a car body which i originally drew using line_loop ...
1
vote
3answers
196 views
“Rendering” polygons that are transparent OpenGL
I am developing an engine and the way I am handling boundaries the player is not supposed to reach is to have actual polygons as these boundaries. Now, I am wondering how to "render" the polgon but ...
1
vote
1answer
198 views
Apple OpenGL: Why is my drawing of a polygon with glVertexAttribPointer just folding a square?
Warning: trying to learn OpenGL ...
I have drawn a square with the following code.
static const GLfloat squareVertices[] = {
-0.5f, -0.33f,
0.5f, -0.33f,
-0.5f, 0.33f, ...
4
votes
2answers
335 views
OpenGL - Not Draw Completely Occluded Polygons?
Let's say we have a set of polygons, can change the camera view angle and can translate the camera in the 3D environment. From certain view angles some of these polygons are completely occluded by one ...
3
votes
3answers
2k views
Convert polygon to triangles
In order to create a VBO in OpenGl, I need to convert polygons to triangles.
Is there an example of script/code somewhere that would describe this ?
I would need something robust for convex and ...
1
vote
1answer
366 views
Polygon inside another polygon in the same plane
There is a strange behaviour in my OpenGL code. I want to draw a carpet on the ground.
In the code below, if GROUND_SIZE is larger than 2071 and CARPET_HEIGHT is smaller than 0.0003, the smaller ...
0
votes
3answers
384 views
opengl regular polygon
i have the following code which draws nothing.
If i use glBegin(GL_POINTS) it draws a circle but with polygon mode it doesn't.
int WXSIZE=500,WYSIZE=500;
//Coordinate system
float Xmin=-8, Xmax=8, ...
0
votes
2answers
85 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?
0
votes
3answers
482 views
OpenGL Polygon Render order
As you can see: http://i.stack.imgur.com/ztM0v.png, certain polygons are simply being rendered over the other ones. Does anyone have any suggestions or related reading on rendering these in the ...
1
vote
2answers
2k views
OpenGL Z-Biasing (Polygon Offset) Limitations
I have a two coplanar polygons.
I tried doing.
glEnable(GL_POLYGON_OFFSET_FILL);
glPolygonOffset(0,1);
and expected one to be distinctly "on top of" the other.
This is the case until about 70-75 ...
0
votes
2answers
719 views
Outline non-convex polygon in OpenGL
I'm trying to draw an outlined non-convex polygon in OpenGL, but I'm being unsuccessful, hence the question.
What I'm doing, basically, is tessellate the polygon and create a Display List from that. ...
5
votes
1answer
2k views
OpenGL/JOGL: Multiple triangle fans in a vertex array
I'm working on making some moderately simple shapes with vertex arrays, and I'm making some good headway, but now I want to draw 2 (or more) triangle fan objects. Is there any way to only make one ...
7
votes
3answers
766 views
Algorithm to convert vertices of a triangular strip to polygon
I have an array with vertices representing a triangular strip.
I need to convert it into polygon.
There are many solution to do the reverse, but I failed to find one for the above problem.
Or it ...
0
votes
1answer
402 views
Techniques for drawing coplanar polygons in OpenGL
I'm going to have meshes with several coplanar polygons, all lying in a certain plane, that I'm not going to be able to eliminate.
These polygons have a specific draw order. Some polygons are behind ...
1
vote
2answers
1k views
OpenGL Coordinate system confusion
Maybe I set up GLUT wrong. I want verticies to be relative to their size in pixels. Right now if I create a hexagon, it takes up the whole screen even though the units are 6.
#include ...
1
vote
2answers
1k views
OpenGL polygon stipple
i'm wondering how a array of 32x32 is mapped to a bitmap. The following arrays represents a bitmap. I know that each row of the array represents row of the bitmap. The first row of the array is the ...
0
votes
2answers
3k views
How to get polygon antialiasing to work?
I'm using these function calls:
glEnable(GL_BLEND)
glEnable(GL_POLYGON_SMOOTH)
glBlendFunc(GL_SRC_ALPHA_SATURATE, GL_ONE)
It doesn't work and won't render.
glEnable(GL_BLEND)
...
2
votes
1answer
1k views
Find a point in a complex polygon
This polygon could be shaped like a C
I tried the formula located here
http://stackoverflow.com/questions/217578/point-in-polygon-aka-hit-test
however it doesn't actually correctly predict if the ...
2
votes
1answer
850 views
Having trouble with ear clipping
The problem I have is coming up because I can't identify a a caved in triangle vs an ear that should actually be chopped off.
How can I tell the difference between a convex and a concave triangle?
1
vote
1answer
420 views
OpenGL background dissappears with certain Polygon Modes
I am creating a simple gradient background by drawing a quad as follows:
glMatrixMode GL.GL_PROJECTION
glLoadIdentity
glMatrixMode GL.GL_MODELVIEW
glLoadIdentity
***glPolygonMode ...
4
votes
1answer
2k views
Concave polygon drawing
For drawing complex concave polygons with OpenGL, is it better to tesselate it into triangles, or use the stencil buffer? I'm guessing the stencil buffer would be faster for a single frame, but ...
5
votes
2answers
3k views
Convert Bitmap to Polygon - (Reverse-Rasterizing)
Given a bitmap image with some blots of solid color on it, what algorithm would you employ to construct polygons in the same shape as the blots?
This can be done in multiple steps: a high-resolution ...
