The quad tag has no wiki summary.
-2
votes
0answers
44 views
Applying Colors to Vertex Arrays
I am looking to create two windows. One window shows points that will be selected using a red box which will turn the selected points red also. This will change the second window which shows the ...
0
votes
1answer
165 views
nested trapz double integration
I'd like knowing if there is any way to bypass the call for quad2d with a nested trapz loop. I'll discuss my problem with some more detail: currently, I perform the calculation of a double integral ...
0
votes
0answers
32 views
Drawing textured Quad using LWJGL
I'm trying to draw a textured quad with LWJGL, but I don't know why my quad renders with only one pixel of color.
This is the first time that i use LWJGL to create a 2D Fullscreen game.
Here's the ...
0
votes
1answer
26 views
Alpha blending for background
I am a beginner to DirectX, so please keep it simple for me. I have loaded a texture and displayed it on a quad, but the transparent background still shows. How can I stop that? I have tried a couple ...
0
votes
0answers
26 views
LWJGL 2-D Quad Not Rendering To Edge
I am playing with the main menu elements for an lwjgl video game, and I have been frustrated about rendering a 2-D quad. I have no idea what is wrong with my code and I spent the whole day looking for ...
0
votes
1answer
28 views
How expensive are matrix multiplications?
I've written a couple of methods in my Quad class to draw quads and also to rotate.
Currently, the draw sprite method does just that - renders the quad to the screen.
However, the rotation method, ...
0
votes
2answers
167 views
Using Matrix.Translate in OpenGL ES 2.0
Edit - Added more code
Having a lot of problems attempting to correctly rotate my quad using OpenGL ES 2.0.
It always seems to rotate around the centre of the screen co-ordinates. I'm trying to get ...
0
votes
2answers
59 views
In three.js library, how convert face4 into two face3 not overlapping triangles?
I have a face4 (quad face), and i need to get two face3 (triangle face) without overlapping.
0
votes
2answers
495 views
Simple textured quad rotation in OpenGL ES 2.0
Edit 6 - Complete re-write in relation to comments/ongoing research
Edit 7 - Added projection / view matrix.....
As I'm not getting far with this, I added view/projection matrix from the Google demo ...
0
votes
1answer
109 views
C++ OpenGL Have a Quad follow the mouse pointer (without Glut)
I'm trying to have a quad follow the mouse pointer. So basically I need to convert screen coordinates to world coordinates. I've seen many posts on this, and tutorials from NeHe and other places, but ...
1
vote
1answer
58 views
opengl only drawing final quad out of a list of many in java
I'm making a simple 2D game with LWJGL and OpenGl in Java and I can't seem to render more than one quad.
I have an arraylist of Squares in my main class and if I have more than one Square in the list ...
1
vote
1answer
60 views
Why is the AMD driver rendering fullscreen quads incorrectly?
In my game engine, I draw to a framebuffer before drawing to the actual screen, and then use a post processing shader to draw to the actual framebuffer. However, there's an issue I'm having with AMD ...
0
votes
2answers
55 views
getting the inner corner angle [closed]
I have four points that make concave quad:
a(3 , 11)
b(11 , 9)
c(18 , 10)
d(8 , 1)
now i wanna get the inner angle of the (b) corner in degrees.
note: the inner angle is greater than 180 ...
2
votes
2answers
74 views
Integrating a function over a variable other than the first, looking for an alternative to lambda
Is there any other way than using a lambda function to integrate a function in python 2.7 over, say, the 2nd of two variables? For instance, I would like to integrate this example function over x:
...
0
votes
1answer
160 views
Fasted way to many 2d textured squares (quads) in opengl 3+
For a 2d game I need to draw many textured quads each frame. They do not share any vertexes and should should be considered to have a random location that change every frame. As I am using opengl 3+ I ...
-1
votes
1answer
95 views
vector valued limits in matlab integral
Is it possible to use vector limits for any matlab function of integration? I have to avoid from for loops because of the speed of my program. Can you please give me a clue on do
k=0:5
f=@(x)x^2
...
1
vote
1answer
108 views
How to integrate a signal in Python
I have to integrate a signal in a range that I decide.
I have used this method:
def integrand(x,y):
return y[x]
result=scipy.integrate.quad(integrand,t0,t1,args=(y))*0.2E-6
y is an array of ...
1
vote
1answer
50 views
Split 2D quad by line
I found many implementations that deal with splitting a polygon by a given line, but I only need to split a Quad (rectangle with 4 vertexes).
Is there an algorithm optimized for this task? Simplicity ...
0
votes
2answers
164 views
OpenGL: Is it more efficient to use GL_QUADS or GL_TRIANGLES?
I know that OpenGL deprecated and got rid of GL_QUADS in the newer releases. I have heard this is due to the fact that modern GPUs only render with triangles so calling a quad would just make the GPU ...
0
votes
0answers
138 views
stretch image with glTexSubImage2D in opengl es 2.0
on OpenGL ES 2.0, how can I force glTexSubImage2D to render/stretch over all a texture Quad which is larger than the image to be rendered?
I have defined a texture quad which is larger than the image ...
0
votes
1answer
125 views
freeglut/ glu 3d drawing
I'm trying to draw a blue quad across the bottom of a room.
This is the the code I've been attempting to use, but there is no quad, just the green clear color.
#include <iostream>
#include ...
2
votes
3answers
685 views
3D polygon in JavaFX
Is there a 3D polygon in JavaFX (similar to QuadArray in Java3D)?
If there isn't what is the simplest way to create one? Creating two triangles?
If there is no simple way than should I use 3rd party ...
1
vote
1answer
107 views
Scipy: Integration of Hermite function with quadrature weights
I want to integrate the product of two time- and frequency-shifted Hermite functions using scipy.integrate.quad.
However, since large order-polynomials are included, there are numerical errors ...
1
vote
1answer
301 views
Link libquadmath with c++ on linux
I have an example code:
#include <quadmath.h>
int main()
{
__float128 foo=123;
cosq(foo);
return 0;
}
I tried to compile it with the following commands:
g++ f128.cpp -lquadmath
...
0
votes
0answers
17 views
Make textured quad without refreshing
I currently have a class that uses textured quads however the problem is to get it to show up on the display I have to run an update method every frame. Is there any way where I can initialize it once ...
1
vote
1answer
96 views
lwjgl colors all items on screen
I have a several quads which are successfully being displayed on the screen, however when I try to set the colour of one of them it sets the color of all of them.
GL11.glColor3f(red,green,blue);
...
5
votes
1answer
620 views
About using quad in MATLAB
I encounter a strange problem with quad function.
I was using quad to calculate simple integral, and it worked for 10 to 20 times, then Matlab issues the following error:
Error using quad (line 75)
...
0
votes
2answers
273 views
error using 'quad' function in matlab - integrating power to get energy
I am calculating capacitor voltage and current. Now I want to determine the energy also. Energy is just the integral of power, however I cannot integrate my power function:
...
0
votes
0answers
150 views
Combining function integration with trapz integration
This is what I'm trying to do:
Divide a numerically integrated array (over the whole data range) by a "quad" integrated function over a specific integration range:
maxw = lambda t,en: ...
2
votes
0answers
141 views
Draw smoothly colored quad in OpenGL ES 1.0 on Android
I'm trying to render a smoothly colored rectangle in OpenGL ES. Since one cannot directly draw a quad, I'm using two triangles. With a smooth shading, the result is as the picture from Lesson 5 here: ...
1
vote
1answer
90 views
quad with mvnpdf involves vector in MATLAB
I tried to run the following code:
F=@(x)mvnpdf([6 x],[0 0],[1 0;0 1]);
P=quad(F,12,100);
to get the probability integration of x2 from 12 to 100 of a joint Gaussian distribution.
However matlab ...
1
vote
2answers
584 views
Set transparency of a quad in starling
OK, so it blows my mind, so help me please, I'd like to use a transparent quad in my starling project, it has a property: color of ARGB, so I set the alpha to 90 for example, but it just doesn't seem ...
1
vote
2answers
249 views
Most efficient way to check if a point is in or on a convex quad polygon
I'm trying to figure out the most efficient/fast way to add a large number of convex quads (four given x,y points) into an array/list and then to check against those quads if a point is within or on ...
0
votes
2answers
418 views
OpenGL - Texture coordinates on quad
I have no idea what's wrong. Everything seems to be fine. Here's code (texture is loaded, just drawing) :
glBegin( GL_QUADS );
float TX1,TX2,TY1,TY2;
TX1=some_numbers_check_below_code;
...
0
votes
1answer
64 views
OpenGL incorrect texture coords only with multiple textured quads
When I have multiple textured quads that use the same texture but at different coords the textures get morphed. Here's what my code looks like:
glBindTexture(GL_TEXTURE_2D, texture_id);
...
1
vote
2answers
162 views
Render to a texture, then render result to screen in OpenGL
I need to render an OpenGL scene to a texture in order to then manipulate that texture in a shader. I've solved this by using Framebuffer Objects, which I think I understand fairly well by now. At ...
0
votes
1answer
120 views
Matlab: one-dim integral for a function @(x,y,z)
Lets say
y=2;
z=4;
f=@(x,y,z) x.^2+y.^2+z.^2;
And I want to integrate f for x in [0,1].
It seems like I have to define g and do quad(g,0,1)
g=@(x) f(x,y,z);
quad(g,0,1)
The question I ...
1
vote
1answer
236 views
how to call python scipy quad with array inputs
I am using nested scipy.integrate.quad calls to integrate a 2 dimensional integrand. The integrand is made of numpy functions - so it is much more efficient to pass it an array of inputs - than to ...
1
vote
1answer
114 views
How to use a quad/oct tree for a block world
I have been messing around with octrees and quadtrees for the past couple of days. I can build them, iterate them, and spit out information that I need. I also know they are very useful in collision ...
2
votes
4answers
1k views
quad precision in gfortran
i am trying to use quad precision in gfortran, but it seems like the real*16 does not work. after some fishing around, i have found that it may be implemented as real*10. is real*10 actually quad ...
1
vote
1answer
777 views
Why is my cube failing to draw properly in LWJGL/OpenGL?
I believe it has something to do with draw order, but I've just given up at this point.
Basically, the Quads are drawing, but they're not in the right order, and backface culling is enabled but ...
0
votes
0answers
117 views
Linux using “quad displays” square shape(2x2 layout) overlap
I'd like to use 4 monitors to make a square shape.
And now I can display it... but there's a little problem.
This is my Serverlayout setting in Xorg.conf:
Section "ServerLayout"
Identifier ...
1
vote
1answer
129 views
Opengl Quads not rendering
This is the problematic code:
glColor3f(1,1,1);
for(int x=0;x<125;x++){
for(int y=0;y<10;y++){
int p = levelArray[x][y];
if(p == 0){
break;
}
...
0
votes
1answer
142 views
Ardor3D transparent quad
I am using Ardor3D for a 3D application in Java. I can draw a quad to the screen with a texture mapped to it. Part of the texture image is transparent, and the quad background shows through there.
...
-2
votes
1answer
364 views
Rotating 2D square
I can rotate a 3D object, but it doesn't seem to work for a 2D one.
I'd like to rotate my moveable (via arrows) square for 90 degrees right (rotation center: a center of a square). I've come up with ...
0
votes
1answer
510 views
Screen-space to clip-space conversion problems
I'm drawing a GUI in Direct3D 11, and currently I'm managing it by drawing a load of 3D quads near the screen. I've decided to instance the screen quads to improve speed a little.
When I draw I quad ...
0
votes
1answer
157 views
Love2D setting the tile x and y
I have a player tile and i want to set the x and the y for the player as a variable. but i cant seem to get it work.
I tried puttin a few numbers behind the function drawq but it just stretched it.
...
-1
votes
1answer
146 views
newQuad function limited to 5? Lua
I use Love2D with lua and when i use 5 quads (love.graphics.newQuad) It seems to work just fine, but when i use 6 quads there shows a weird error:
Error menu.lua:9: Incoorect parameter type: expected ...
0
votes
1answer
944 views
Error using quad in Matlab
I have an anonymous function in matlab: f=@(x) x/(1+x^4). I want to integrate it from 0 to 1 with quad, but for some reason mpower is complaining that it can't take x^4 because "Inputs must be a ...
0
votes
1answer
187 views
OpenGL quads overlapping
Say I have two quads which are overlapping, forming an X.
Is it possible to disable this from happening? So that the GPU removes (one of) these overlapping quads?
The case is about billboards, which ...




