Forum: Game Development May 5th, 2008 |
| Replies: 13 Views: 5,289 You use simple vectors. You can rotate vectors with minimal calculations.
So when the ball hits the paddle, based on the distance from the center, rotate the directional vector of the ball by a... |
Forum: PHP Dec 12th, 2007 |
| Replies: 5 Views: 3,825 First ... use code tags to highlight your code...
[*code]
[*/code]
(without the *)
Also dumping the whole file into your post does not really help... where's line 376... one's going count... |
Forum: Game Development Dec 12th, 2007 |
| Replies: 9 Views: 16,634 Most of the resources mentioned here are a bit advanced , used for 3D games, and requires quite a bit of reading to actually use in a game.
Here are a few libraries that should hopefully help in... |
Forum: C Oct 29th, 2004 |
| Replies: 10 Views: 6,103 Graphics In Pixel
Part II B
'Realization of an Enigma'
Introduction
------------
Life's unfair, writing good tutorials take a lot of time, not typing it, but... |
Forum: C++ Oct 10th, 2004 |
| Replies: 4 Views: 3,152 Look in the tutorial forum at dani too ;) and google |
Forum: C++ Sep 7th, 2004 |
| Replies: 3 Views: 1,848 The Brain - the one and only |
Forum: C++ Sep 7th, 2004 |
| Replies: 5 Views: 2,614 const is short for constant.An constant must be initialised when it is declared and it cannot be changed.
In a class you cannot declare a member as datatype data_var = some_value since it's... |
Forum: C++ Aug 22nd, 2004 |
| Replies: 7 Views: 5,773 FrozenICE.cpp to BurningHell.cpp
Hey,what else did you expect anyway.Cool depend on you.;) |
Forum: C++ Jul 25th, 2004 |
| Replies: 97 Views: 25,581 *Yawn*, me too.Who cares ???.We will have to use what ever the policy making companies shove at us.Yup it's quite too the OpenSource is only open before money comes in.It's like water,can dissolve... |
Forum: C++ Jul 24th, 2004 |
| Replies: 5 Views: 13,353 Now this is a bit OS specific when it comes to raw packet sending.I really dont know if you can manually control ARP packets on a Windows PC (XP,2000,NT [you dont even get raw packet access on other... |
Forum: C++ Jun 7th, 2004 |
| Replies: 2 Views: 7,663 How am I supposed to know what you can do?(Just kidding)
Yes you can in C, C++ and ASM.(ok some other languages also).Do a few searches on http://www.google.com/
You will find something. |
Forum: C Jun 7th, 2004 |
| Replies: 1 Views: 2,379 Not really.
If you are using a header with a static library you should try getting the latest version of the static library.
Otherwise if you have link errors is you own programs it maybe because... |
Forum: C++ Jun 2nd, 2004 |
| Replies: 47 Views: 158,633 File I/O
With C++ Fstream
Intro
File handling is as simple as writing in a book, much easier to modify and
find. It's so simple people get confused with it... |
Forum: C++ May 27th, 2004 |
| Replies: 5 Views: 25,628 My God I even had a comp science teacher ask me this.Arrrg one will go mad.
It's simple.Cut a few funtions out of you code and paste them in a file with a .h extension and call #include... |
Forum: C++ May 27th, 2004 |
| Replies: 2 Views: 3,483 Dir.h is probably what you want if you use C++
int chdir(char *path);
use it like chdir("c:\windows"); |
Forum: C++ May 25th, 2004 |
| Replies: 9 Views: 2,727 Yup, C++ is the best to start out of the langs you mentioned. try www.google.com and search for tutorials.
If you have no experiance what so ever QBASIC is also somewhere to start.
For C++ you... |