1
vote
3answers
66 views
Which would be the best 2D graphics library?
Okay, I bet this question might have been asked dozens of times before, but at the end of the day, I am still confused.
I am working on a charting/plotting application. My applica …
1
vote
1answer
30 views
Applying Coefficient of Restitution in a collision resolution method
I have a collision resolution method in my physics engine, that goes like this:
Vector2 n1pos = n1.NonLinearSpace != null ? n1.NonLinearPosition : n1.Position;
Vector2 n2pos = n2. …
3
votes
2answers
61 views
Optimizing a high-traffic function in XNA
I have a function that's called hundreds of thousands of times per update, and i need to optimize it. Now, i generally follow the "don't optimize too soon" rule but this is a criti …
0
votes
1answer
50 views
Cannot get this triangle to display
Hi, I'm following the XNA 3.0 Game Studio Unleashed Book by Chad Carter.
I'm on chapter 4 and the following listing should render a textured triangle onto the game window but for …
6
votes
10answers
372 views
C++ as first language for Windows game programming?
I'm a hobbyist programmer with a fair grasp of Python and I'm currently learning C. Recently I was talking to a colleague who also wants to learn to program. In his case, he wants …
0
votes
2answers
73 views
XNA - Merge sprites for better drawing performance?
Hello!
I read somewhere that when rendering a lot of 3D objects one could merge these to form a giant mesh so that only one draw call would be made. Therefore letting the, quote: …
1
vote
2answers
145 views
How to get camera up vector from roll, pitch, and yaw?
Hello,
I need to get an up vector for a camera (to get the right look) from a roll, pitch, and yaw angles (in degrees). I've been trying different things for a couple hours and h …
0
votes
3answers
80 views
Area constraint blows up my physics simulation if a body slams into it too fast
I have a physics simulation and it allows you to place area constraints, so that the bodies within will not exit that area. However if an atom goes past one of the "walls" of the a …
1
vote
1answer
30 views
How to get x and y coordinates from a linear grid simply?
I have myself a linear grid of Vector2s stored in a Vector2[,] array, and i also have another Vector2 that lies within this grid. How can i simply extract both the nearest 4 grid p …
1
vote
1answer
42 views
XNA Zune HD application won’t exit gracefully
I have and built and deployed the application created by the new project template for the zune hd. The problem is whenever the application exits, the Zune reboots. This happens whe …
1
vote
1answer
45 views
XNA: Getting a struct as a texture to the GPU
I use XNA as a nice easy basis for some graphics processing I'm doing on the CPU, because it already provides a lot of the things I need. Currently, my "rendertarget" is an array o …
1
vote
1answer
97 views
Order of calculation and iterations for physics engines
I'm writing a physics engine that uses Verlet integration, and i can't get some constraints to work right. Some (like a bond/weld constraint) are extra "soggy" and aren't stiff eno …
3
votes
3answers
176 views
Does using a delegate create garbage
I'm working on a game for the xbox360, using XNA. On the Xbox the garbage collector performs rather badly compared to the one on a PC, so keeping garbage generated to a minimum is …
1
vote
1answer
47 views
Verlet Integration is blowing up my physics engine
I'm building a physics engine and i had some sort of "pseudo-verlet" thing going and i wanted to upgrade it to "real" verlet. So i found an article and set to work. After i added w …
0
votes
1answer
35 views
How to make soft springs with constraints being iterated?
I'm trying to add springs to my physics engine, and while the algorithm itself works, they are incredibly stiff ( have to feed in values <= about 0.1 to get any visible motion o …
