338 reputation
323
bio website
location
age 23
visits member for 2 years, 11 months
seen May 18 at 15:56
stats profile views 54

Workin on some Access DB, doin a few other things as well. Going into 3rd year Uni. Interested in games, currently trying to make a little game in XNA with intentions of porting to Silverlight/whatever else, mainly for experience. I really like coming up with odd game play ideas, so I figured going into CS would be the best bet to learn enough to make my own game. Maybe not an actual game, but certainly to prototype ideas I've had, see if they're fun enough and what not. If you have any suggestions to a beginning game designer, please PM me! :D


May
9
awarded  Popular Question
Mar
26
comment glunproject cheaper alternative
Yeah you're right. Mine is a different question than what this asked. For my application the solution on that link is perfect
Mar
26
comment glunproject cheaper alternative
My application is different than the one described in this question. What I am looking for is simply the distance from the camera for each pixel. glReadPixels is not the bottleneck, it's gluUnproject. I found a solution though of doing the transform myself following this code: olivers.posterous.com/linear-depth-in-glsl-for-real. It runs 7 times faster than gluUnproject (and I haven't even done it using a shader). I use glReadPixels for both.
Mar
25
comment glunproject cheaper alternative
I just wanted to say that I too have found gluUnproject to be a major bottleneck and would have loved if this question had an answer for an alternative.
Mar
16
asked Is there any advantage in building a business application with an Entity-Component System?
Mar
4
awarded  Caucus
Feb
20
awarded  Popular Question
Feb
18
accepted Can I call sscanf mutliple times on the same string?
Feb
18
comment Can I call sscanf mutliple times on the same string?
Ugh, nvm I have found out what was wrong and it was really stupid on my part. I had previously been loading in quads as the first 3 vertices and I was thinking that viewing that was a good way to judge if the model had been loaded in properly. When I switched to the i == 12 to say that quads aren't supported, I was losing all those half quad triangles that I was foolishly thinking were part of the model. Clearly I need to learn how to debug better and not rely on visuals...
Feb
18
comment Can I call sscanf mutliple times on the same string?
Hmm, I think I have an idea as to what's going wrong. Will sscanf ever return 12 for my first one if it only found 9?
Feb
18
comment Can I call sscanf mutliple times on the same string?
Eh, clearly I am confused. I was wrong when I said calling sscanf the second time doesn't work. Anyways what I'm trying to do is load in a model, and when I call that sscanf then i should == 12, if it doesn't and then I check if i == 9, my following code doesn't work. However if I do the second sscanf == 9, it will load it in properly. So clearly this must be a problem with what my code does. Does it look like I'm calling sscanf wrong in any way? (I've got rid of the /n btw.) My two sscanf's should put the same values into faceV1 etc even if it only does the first 9 instead of 12, right?
Feb
18
comment Can I call sscanf mutliple times on the same string?
@DanielFischer I expect it to put the first 9 values into faceV1 etc. The reason I called sscanf the second time is because the first time it doesn't do what I thought it would. If I get rid of the first sscanf and leave the second, it works like I want it to. If I keep the first sscanf in and either call sscanf again or use the original one and check for i == 9, it doesn't do what I want.
Feb
18
asked Can I call sscanf mutliple times on the same string?
Jan
22
comment obtaining 2d-3d point correspondences for pnp or posit
Have you tried Blind PNP? cvlab.epfl.ch/~lepetit/papers/moreno_eccv08.pdf
Dec
27
awarded  Notable Question
Nov
19
comment Randomness in linked lists
It'd also be easy to implement a "Monte Carlo" (I think?) method in which each node has a probability. Normalize your probabilities so they're all between 0 and 1.0. Choose a random number between 0 and 1.0. If your first node's probability is < your random number, choose it. Otherwise decrement your random number by the probability and continue down the list until you get a probability < than your random number. EDIT: Now that I think about it, you can different distributions in Sidar's method just choosing one using random, no need for my method
Sep
13
comment drawing bivariate gaussian distributions in matplotlib
This link 404s.
Aug
15
comment FQL: Find all posts a user has contributed to
I just did what I described, waited hours/days for it to finish. I think you can download all your own data now from FB.
Jul
20
awarded  Popular Question
Jul
5
awarded  Popular Question