Tagged Questions
The vertices tag has no wiki summary.
7
votes
2answers
1k 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: ...
4
votes
4answers
584 views
Given a large set of vertices in a non-convex polygon, how can i find the edges?
I have a set of vertices(called A) and I want to find all the border vertices such that this border vertices set is an outline of the shape.
Many of the vertices in A are redundant because they are ...
4
votes
3answers
2k views
Best Algorithm to find the edges (polygon) of vertices
I have a large array of vertices, some of them are edges, some are redundant (inside the shape) and I want to remove those.
The simplest algorithm I could think of is checking one by one if they hit ...
3
votes
1answer
266 views
Identify visible vertices in OpenGL
What is the most efficient way to identify the vertices that are visible from a particular viewpoint?
I have a scene composed of several 3D models. I want to attach an identifier to each vertex ...
3
votes
7answers
311 views
What is a 3D Vector and how does it differ from a 3D point?
Does a 3D vector differ from a 3D point tuple (x,y,z) in the context of 3D game mathematics?
If they are different, then how do I calculate a vector given a 3d point?
3
votes
2answers
1k views
Could somebody explain how to use glDrawElements (iPhone)?
Sorry for the duplicaiton, but I've been googlin' for hours now without any result.
I have this (optimized) data of a simple cube exported from a converter:
// 8 Verticies
// 4 Texture Coordinates
...
2
votes
1answer
99 views
OpenLayers get Lat, Lon from polygon vertices
I am trying to get the boundary box using a square polygon in openlayers. I need to get the North, South, West, and East values from the box. Right now I am using :
var topleft = ...
2
votes
1answer
355 views
How do I make a custom vertex format with OpenGL
I am writing my own engine using OpenTK (basically just OpenGL bindings for C#, gl* becomes GL.*) and I'm going to be storing a lot of vertex buffers with several thousand vertices in each. Therefore ...
2
votes
2answers
147 views
How to find Edges and Vertices of a hand drawn polygon
I would like to make a shape recognition program that would trace a mouse and record it's location at each 1/2 second. how could I use these points to find a rough polygon? In other words, if you just ...
2
votes
1answer
1k views
XNA - Using Dynamic Vertex Buffer and only four(4) vertices
Just a quick question on drawing quads. I'm currently using:
GraphicsDevice.DrawPrimitives(PrimitiveType primitiveType,
int startVertex, int primitiveCount);
This draws my ...
2
votes
2answers
358 views
Modifying OpenGL axis system
I'm using OpenGL with gluPerspective, what would I need to do to make it use an axis-system which the origin is top left instead of bottom left?
1
vote
1answer
92 views
XNA Beginner: How do I merge arrays of vertices into a single vertex buffer
I've just recently started using XNA and now I face a beginners problem, performance. The objects I draw has their own vertex buffer, so when I have ~50k objects, the fps goes down dramatically (from ...
1
vote
0answers
79 views
How to get specular color in OpenGL?
My code works for everything except specular component.
glEnable(GL_COLOR_SUM);
...
glEnableClientState(GL_COLOR_ARRAY);
glColorPointer(4, GL_UNSIGNED_BYTE, 0, color);
...
1
vote
3answers
113 views
Vertices limitation in OpenGL
I have an OpenGL scene with thousands of vertices and would like to pass them as VBOs/IBOs.
Executing the glGetIntegerv(GL_MAX_ELEMENTS_VERTICES, &maxVertices) command reveals a limitation of 2048 ...
1
vote
1answer
106 views
how to calculate vertices position of b2Polygon in box2D?
I have one shape when it touches another collision detection should happen, for that i need to draw b2Polygon shape in xcode. I need proper vertices to draw this shape in iPhone. Can anyone please ...
1
vote
1answer
82 views
Why is my arrow drawing the wrong way?
I have this code to draw an arrow:
const GLfloat vertices[] = {
-0.25f, -0.25f,
0.0f, 0.0f,
0.25f, -0.25f,
0.0f, 0.5f,
};
glVertexPointer(2, GL_FLOAT, 0, vertices);
...
1
vote
1answer
76 views
Assign mirror operation to vertices array
I understand the math in flipping vertex coordinates in a .obj vertices array to get the mirrored coordinate across a plane/axis. But, how do you populate the vertices array for an actual mirror ...
1
vote
3answers
964 views
mapping a texture on a square (Android)
Im new to openGL, and im trying to map an texture to a square. I followed NeHe's tutorial on texture mapping here:
http://insanitydesign.com/wp/wp-content/uploads/lesson06.zip
Right now i see my ...
1
vote
0answers
503 views
generate random graph with named vertices
I'm new to boost and i am trying to build up a distributed random graph generated by the erdos algorithm. All goes well since i specialize the internal_vertex_name template to work with named vertices ...
1
vote
1answer
839 views
JUNG: how to shape pickable vertices
I am using JUNG to make a network diagram. I want to shape the vertices depending upon its type. The vertices are pickable and colored. The code for vertices so far is as under:
class VertexColors ...
1
vote
4answers
976 views
Align point clouds via 3 points correlation?
Let's say I have 3 point clouds: first that has 3 points {x1,y1,z1}, {x2,y2,z2}, {x3,y3,z3} and second point cloud that has same points as {xx1, yy1, zz1}, {xx2,yy2,zz2}, {xx3,yy3,zz3}... I assume to ...
0
votes
0answers
34 views
Reusing vertices and applying transformations for separate sprites
I am writing an iPhone game which draws graphics with OpenGLES 1.1. I am exploring the best way to draw a collection of sprites, each with the same image. The sprite image is a small section of a ...
0
votes
1answer
31 views
OpenGL ES for android, modeling furniture
I am currently playing around with OpenGL ES for Android. I have decided to set myself the task of making a chair. Do I have to code each individual vertex or is there a way to multiply one set and ...
0
votes
1answer
43 views
Vertices behind are being drawn infront - XNA
Well, I am creating a minecraft terrain thing just for the heck of it. The problem I have is that if you look on a certain angle some faces which are actually behind others are drawn in front of them, ...
0
votes
0answers
21 views
JUNG, subgraph in a vertice
I'm trying to insert nested subgraph into a vertice. At last I want to create my own layout but firstly I've tried to use StaticLayout and set the vertices positions by hand. Unfortunately, parent ...
0
votes
1answer
142 views
Connecting Sphere Vertices OpenGL
I am trying to render a sphere in OpenGL using GL_TRIANGLES.
Here is an image of what I am getting with the code below..
Bad Sphere
This is supposed to be a unit sphere.
I have derived the vertices ...
0
votes
0answers
52 views
Trying to skew a quad (image) using it's verts and skew params provided by the export animation tool in Flash
Given a quad's vertices
// [x,y](location) [x,y](uv)
this.primitive.pushVertex(new GL2.Primitive.Vertex([0,0],[0,0]));
this.primitive.pushVertex(new GL2.Primitive.Vertex([80,0],[1,0]));
...
0
votes
0answers
96 views
Saving DirectX Mesh as X file and not seeing the vertices
In the C# (.NET 1.1, Visual Studio 2003) program that I have to modify there is a Direct3D object.
It is initially loaded from an X file.
Then number of vertices are added to it dynamically.
Then I ...
0
votes
1answer
98 views
JUNG graphs: vertex similarity?
I have a JUNG graph containing about 10K vertices and 100K edges, and I'd like to get a measure of similarity between any pair of vertices.
The vertices represent concepts (e.g. dog, house, etc), and ...
0
votes
2answers
42 views
Loading vertices with a for loop
I've created an algorithm that renders a heightmap in an array[x][y] wich stores the z-value.
Now i want to load these into a vertices with a for loop. How would i do this?
I want to do this with ...
0
votes
0answers
102 views
Writing a graph class
Here is my constructor and I wanted to ask, would this be equivalent to the overall look of web graph?
I'm just making a 2D array where (I think) all the indecies are vertices, one vertex joining 2 ...
0
votes
3answers
243 views
2D Dynamic Array C++ Display Problem
I've read about 2d dynamic arrays but I obviously haven't quite got my head around it as this program doesn't work. The program seems to lie in displaying the array.
The input file is a text file with ...
0
votes
0answers
44 views
Ways to procedurally parametrize a 3d mesh
How do you procedurally parametrize a 3d mesh?
For example - take a torus mesh, and you want to assign whether it spirals or cuts by assigning a numeric parameter... How do you apply the ...
0
votes
1answer
94 views
How to calculate mid point vertices?
I have a set of vertices to draw a circle, but I want to draw a high-res circle by drawing twice the number of vertices, I cant just increase the number of vertices what I need is to calculate the mid ...
0
votes
2answers
124 views
Multithreading going throught an array of struct in C
I have wrote a program that receives as input a text file and return as output another text file.
The text file is created with a script(python) inside a 3D app (Blender) , and it contains a list of ...
0
votes
2answers
1k views
Cube with triangle strips and vector normals in openGL
I'm trying to create a cube using one series of vertices such as attempted in this example (which I believe is wrong) and also talked about on this forum. The answer I'm looking for should look ...
0
votes
3answers
73 views
Is there a performance penalty for creating Direct3D vertices with all semantic types?
In Direct3D, you can create any type of Vertex you like. You can have a simple Vertex with just positional information, or you could add colour info, texture info, etc etc.
When creating your input ...
0
votes
1answer
775 views
glDrawElements with indices applied to vertices and normals
Is it possible to use the glDrawElements method when you have lets say 2 arrays (one for Normals and one for Vertices) and use the Index-buffer interleaved between vertices and normals).
EXAMPLE: ...
0
votes
1answer
742 views
Fill 2D area bound by vertices in XNA
I'm learning XNA by doing and, as the title states, I'm trying to see if there's a way to fill a 2D area that is defined by a collection of vertices on a plane. I want to fill with a color, not a ...
0
votes
1answer
242 views
Planewidth after bending (using pv3d, as3dmod)
I got a huge problem. I'm stuck there for two weeks now.
It's seems pretty simple.
I'm creating a plane, mapping a texture to it.
After that I bend it, using the bend modifier from as3dmod.
Of ...
0
votes
2answers
614 views
Most basic transformed vertex-drawing with Direct3D
I'm absolutely new to DirectX and I'd like to draw some untransformed primitives with the most basic Direct3D configuration (for learning purposes). I already drew some primitives with transformed ...