Search found 3 matches

by Link777
Sun Sep 16, 2007 12:12 am
Forum: Beginners Help
Topic: seekg and large numbers
Replies: 7
Views: 446

I'd advise just making the file that you're reading spread apart in many files, like data0.dat, data1.dat, data2.dat, etc.

It'd make things quicker as well.
by Link777
Fri Sep 14, 2007 5:38 am
Forum: Beginners Help
Topic: seekg and large numbers
Replies: 7
Views: 446

According to what I've found... "signed int s32" is a signed integer guaranteed to be 32 bits on all platforms. Values of this type can range from -2,147,483,648 to 2,147,483,647. Therefore rewrite the seek function (you did mean seek, and not seekg, correct?) as something like "MySee...
by Link777
Tue Sep 11, 2007 4:38 am
Forum: FAQs, Tutorials, Howtos, and external tool lists
Topic: How to make a 3d rpg camera in 10 steps
Replies: 38
Views: 36755

Thank you so much! This was extremely helpful in developing my RPG 3rd person camera. Now I have to figure out a way to turn the model and have the camera follow behind in a World of Warcraft / Guildwars / KalOnline way. My favorite camera style being World of Warcraft, because of the optional mouse...