
Search found 11 matches
- Thu Apr 03, 2014 7:51 pm
- Forum: Programming
- Topic: PR3 final assignment
- Replies: 16
- Views: 12472
Re: PR3 final assignment
Or am I the only one experiencing this issue? 

- Thu Apr 03, 2014 5:04 pm
- Forum: Programming
- Topic: PR3 final assignment
- Replies: 16
- Views: 12472
Re: PR3 final assignment
Thanks 130802 for your answer. For the background I already use 1 line of code that does memcpy. Still it takes about 2.5 million ticks (with timerRDTSC) which is quite a lot, isn't it? Maybe I'm just wrong and it's supposed to be taking that amount of ticks. Everything is relatively fast ATM sittin...
- Tue Apr 01, 2014 6:21 pm
- Forum: Programming
- Topic: PR3 final assignment
- Replies: 16
- Views: 12472
Re: PR3 final assignment
Has anyone figured out a way to improve the Sprite::Draw function yet? And the background drawing? I can't seem to find any improvements in those (Without SIMD and multithreading)
- Fri Feb 14, 2014 12:30 pm
- Forum: Programming
- Topic: PR3 discussion
- Replies: 15
- Views: 12272
Re: PR3 discussion
Is the Glassball project supposed to crash when the ball hits the left corner? I bypassed this by moving the left collision 'wall' more to the right (x = 64 to be precise) but I'm not sure if this is allowed.
- Fri Feb 14, 2014 12:16 pm
- Forum: Programming
- Topic: PR3 homework results
- Replies: 7
- Views: 8526
Re: PR3 homework results
Alright, I have sent you an e-mail with the files WITHOUT the .exe. I sent the .rar through last time and that's probably why it didn't work then.
- Fri Feb 14, 2014 12:15 pm
- Forum: Programming
- Topic: PR3 discussion
- Replies: 15
- Views: 12272
Re: PR3 discussion
You are indeed right on that; however, I did pre-calculate everything because why not. It's not like I had to save space on the cache. If I had to take care of my memory though, it would indeed be better to do it your way.
- Thu Feb 13, 2014 10:20 am
- Forum: Programming
- Topic: PR3 homework results
- Replies: 7
- Views: 8526
Re: PR3 homework results
Also if I send an e-mail to j.bikker@gmail.com I get an e-mail back from daemon something that the e-mail did not arrive. I sent the e-mail to your nhtv account as that one does not give me an error. bikker.j, like the NHTV addresses. I meant bikker.j@gmail.com, sorry for that typo. It doesn't work...
- Wed Feb 12, 2014 10:08 pm
- Forum: Programming
- Topic: PR3 homework results
- Replies: 7
- Views: 8526
Re: PR3 homework results
Also if I send an e-mail to j.bikker@gmail.com I get an e-mail back from daemon something that the e-mail did not arrive. I sent the e-mail to your nhtv account as that one does not give me an error.
- Wed Feb 12, 2014 9:57 pm
- Forum: Programming
- Topic: PR3 homework results
- Replies: 7
- Views: 8526
Re: PR3 homework results
My name is not on the list but I did send in my work. Could you please check?
Student Number: 122828
//Bob Devilee
Student Number: 122828
//Bob Devilee
- Wed Feb 12, 2014 9:52 pm
- Forum: Programming
- Topic: PR3 discussion
- Replies: 15
- Views: 12272
Re: PR3 discussion
Thank you for your response. It is indeed quite a lot faster than the original one, however I found a way to make it faster as well. I pre-calculate every possible value for U and V and store them in an array. Then I read the array to get the numbers I need for the desired X and Y coordinates. Works...