Tagged Questions
The quad tag has no wiki summary.
7
votes
3answers
751 views
C++ / openGL: Rotating a QUAD toward a point using quaternions (updated)
When I have a QUAD at a certain position, how can I rotate it in such a way that its normal points toward a given point? Imagine the colored blocks are just rectangular quads, then this image shows a ...
4
votes
1answer
346 views
texture mapping a trapezoid with a square texture in OpenGL
I've been trying to render a GL_QUAD (which is shaped as a trapezoid) with a square texture and wanted to know if there was a good tutorial for pulling this off. I'd like to try and use OpenGL only to ...
4
votes
2answers
1k views
Quadruple Precision in C++ (GCC)
Just recently, the GCC 4.6.0 came out along with libquadmath. Unfortunately, GNU has supported Fortran, but not C or C++ (all that is included is a .so). I have not found a way to use these new ...
4
votes
4answers
1k views
3D triangulation algorithm
Does anybody know what triangulation algorithm Maya uses? Lacking that, what would be the most probable algoritms to try? I tried a few simple off the top of my head (shortest/longest resulting edges, ...
3
votes
3answers
2k views
OpenGL: Fastest way to draw a mixture of triangles and quads?
I have a mesh data structure with polygons that can be either triangles and quads. What is the fastest way to draw this using OpenGL?
The slow way is to iterate over the structure and for each ...
2
votes
2answers
732 views
Creating a tiled world with OpenGL
I'm planning to create a tiled world with OpenGL, with slightly rotated tiles and houses and building in the world will be made of models.
Can anybody suggest me what projection(Orthogonal, ...
1
vote
2answers
74 views
What is required printf precision for a __float128 to not lose information?
I'm trying to printf a __float128 using libquadmath, eg:
quadmath_snprintf(s, sizeof(s), "%.30Qg", f);
With the following three constaints:
The output must match the following production:
...
1
vote
1answer
50 views
Shapes in OpenGL not properly set behind others
I am drawing a simple quad in OpenGL at "altitude" y=0.3, and after another quad below this one at altitude y=0 and in another color.
However when being above with the camera or turning around, the ...
1
vote
1answer
233 views
OpenGL: Drawing Quad - Color fading issue
I'm trying to draw a white quad on Android with OpenGL-ES and the colors are fading.
See picture: http://img88.imageshack.us/img88/2787/tempew.png
I have tried it with int numVertices = 4; as well, ...
1
vote
2answers
162 views
Finding size of perfect quad tree
I need to find the size of a perfect quad tree.
This means I have 1 root node that splits into 4 nodes that splits into 4 nodes etc.
so a quad tree of height 1 would be size 1
height 2 = size 5 (1 + ...
1
vote
1answer
248 views
Opengl: fit a quad to screen, given the value of Z
Short Version of the question:
I will put a quad. I know the width and height of the screen in window coordinates, i know the Z-coordinates of the quad in 3D. I know the FOVY, I know the aspect. The ...
1
vote
1answer
254 views
OpenGL quad from normal
Is possible to draw a quad given its normal vector, a point that is center of the quad and the size of the quad?
I know the equation of a plane with normal vector n=(a,b,c) passing through the point ...
1
vote
1answer
1k views
XNA - Drawing Quads (and primitives) in right order
I'm fairly new to 3D-stuff in XNA and unfortunately I have encountered a problem I can't find the solution for. (Don't even know what the problem is).
To cut it short: I am drawing quads in my game ...
1
vote
1answer
944 views
Drawing a full screen Quad?
What's wrong with this:
pVertexBuffer[0].Position = D3DXVECTOR3(0.0f,0.0f,0.0f);
pVertexBuffer[0].TexCoord = D3DXVECTOR2(0.0f,0.0f);
pVertexBuffer[1].Position = ...
0
votes
0answers
69 views
Diamond square algorithm shows up as squares - Python
I've come along way since my previous question regarding what I've been doing in python.
The problem is that when I run my height map generation program in python, after a few iterations through the ...
0
votes
0answers
50 views
Difficulty with number of points chosen by quadgk in MATLAB
I am running the following code being called in nested loops that vary n and k:
%This function evaluates the displacement of a circular membrane at a
%single point at a goven time step.
% th is the ...
0
votes
1answer
43 views
Determing intersecting quads?
Is there a possibility to detect whether an object intersects another object in Opengl ?
For example: I have 2 quads(later nurbs),I am moving these quads so that at some point they intersect. Now I ...
0
votes
2answers
35 views
Normalvector for Quad
I've drwan a simple quad with glBegin and glEnd. With a for-loop I create copies of the quad and rotate it around my y-Axis in 3D-Space.
Now th problem is that I only see the quads in the front. These ...
0
votes
1answer
67 views
Drawing 2d quad strips
I'm currently trying to create quad strips which form lines drawn by the user using a touch screen (running android). Using some maths with the help of some others here on stack overflow, I was able ...
0
votes
3answers
126 views
OpenGL - One Step Further On The Way To Faster QUADS Rendering
I have been experimenting a bit and can render around 3 millions of GL_QUADS onto screen now using
glDrawArrays(GL_QUADS, 0, nVertexCount);
I also use multiple buffering, cycling through 18 vertex ...
0
votes
1answer
248 views
Trying to draw textured cube primitive in XNA with quads
Right now I'm using XNA 4.0 with Windows Phone Developer Tools to create a textured cube using a predefined quad class on MSDN.
The front/back/left/right faces of the cube will draw fine (for every ...
0
votes
2answers
99 views
How does quads get rendered as lines in wireframe mode?
People have been telling me that "GPU renders triangles only".
But how do you explain GPU rendering a quad with 4 lines only in the wireframe mode, shouldnt it be rendering it with 5 lines since GPU ...
0
votes
0answers
7 views
How to determine whether a point lies on Quad2DCurve
I have successfully drawn a Quad2D or Bezier curve in java. I have the equation for the same. But I need to determine whether a particular point(x,y) lies on the curve or not. I tried using ...
0
votes
0answers
130 views
Problem with quad function
I have a problem with quad function in Matlab.
I write:
r = 65;
k = 6;
hmax = 50;
R = 50;
i = 0;
for dR = 0:0.001:1
i = i + 1;
h(1,i) = r*(1 - cos(asin((sqrt(2*R*dR + dR^2) + r*sin(acos((r - ...
0
votes
0answers
852 views
How to use Gcc 4.6.0 libquadmath and __float128 on x86 and x86_64
I have medium size C99 program which uses long double type (80bit) for floating-point computation. I want to improve precision with new GCC 4.6 extension __float128. As I get, it is a ...
0
votes
1answer
298 views
What android devices don't support draw_texture?
Hey all, i am developing an android app using OpenGL ES for drawing and i use the draw_texture extension as it's the fastest.
I read you have to query the string to check and see if the drawing ...
0
votes
1answer
133 views
Creating a matrix for a billboarded quad?
I'm trying to come up with a proper algorithm to create a matrix which gets the quad to face the camer straight up but I'm having difficulty.
The quad I'm drawing is facing downwards, here's the code ...
0
votes
1answer
349 views
Do i really need a four cores processor to install SharePoint 2010? [closed]
i have read microsoft article from technet about sharepoint 2010 minimum requirements:
and it seems that i need to install it on a pc that has 4-cores processor !
in my case, i couldn't find any 4 ...
0
votes
1answer
321 views
barycentric coordinates using quads
some of you know how fill a quads in 2D using barycentric
coordinates?At the present, I'm splitting the quads into 2 triangles,
but that way is inefficient because I have to iterate over the second
...
-1
votes
3answers
288 views
Many quads, not plenty fps despite VBO
I got some time and I've read about VBO and that's what I got :
http://img64.imageshack.us/img64/5733/fps8.jpg
Ok, it's much better than before. It's compiled on Release. I uses VBO (probably, if ...