Search found 41 matches
- Mon Mar 19, 2007 4:55 pm
- Forum: Open Discussion and Dev Announcements
- Topic: New Animation System for Irrlicht
- Replies: 220
- Views: 52190
- Sat Mar 17, 2007 7:12 am
- Forum: Beginners Help
- Topic: Infinite Terrain?
- Replies: 8
- Views: 2249
^ But the point is that it can't be infinite . The values you use to seed a pseudo-random number generator with have to come from somewhere. It could be to all intents and purposes infinite (i.e., it'd take more than a lifetime to visit all locations), but never truly infinite.
Anyway, I'd suggest ...
Anyway, I'd suggest ...
- Wed Mar 07, 2007 3:51 am
- Forum: Beginners Help
- Topic: How can I sync the game Logic at 30 times per sec? +details
- Replies: 10
- Views: 957
Re: subject
Oh, sorry, I misunderstood your first post. Yeah, that's a good idea.CuecaX wrote:i dont want my game running well using all processing power at 200fps
and i think that using fixed values is simple and easier.
- Tue Mar 06, 2007 8:20 pm
- Forum: Beginners Help
- Topic: Finding the smallest arc of rotation for a vector
- Replies: 4
- Views: 543
- Mon Mar 05, 2007 11:16 pm
- Forum: Beginners Help
- Topic: How can I sync the game Logic at 30 times per sec? +details
- Replies: 10
- Views: 957
- Sat Mar 03, 2007 9:34 pm
- Forum: Project Announcements
- Topic: Anteron Online
- Replies: 52
- Views: 14370
- Fri Mar 02, 2007 5:32 am
- Forum: Project Announcements
- Topic: Anteron Online
- Replies: 52
- Views: 14370
- Sun Feb 25, 2007 10:47 pm
- Forum: Beginners Help
- Topic: Finding the smallest arc of rotation for a vector
- Replies: 4
- Views: 543
I think what I said I needed was misleading. Basically, all I need to know is whether a clockwise or counterclockwise rotation is shortest (between 2 unit vectors). Becuase acos(product), the way it is now, returns absolute values, I don't think if(angle>180)angle-360 will help (even if I set up the ...
- Sun Feb 25, 2007 10:00 pm
- Forum: Beginners Help
- Topic: Finding the smallest arc of rotation for a vector
- Replies: 4
- Views: 543
Finding the smallest arc of rotation for a vector
Hello. For a while now, I've been trying to figure out (with reference to a couple threads on the GameDev forums) how to rotate vectors. I can't get it right. I'm doing:
vector3df direction;
vector3df newDirection;
double product;
newDirection.X=mousePointAt.X-nodePos.X;
newDirection.Y ...
vector3df direction;
vector3df newDirection;
double product;
newDirection.X=mousePointAt.X-nodePos.X;
newDirection.Y ...
- Sun Feb 25, 2007 4:06 am
- Forum: Beginners Help
- Topic: HELP!!! moving characters on terrain when click on it....
- Replies: 2
- Views: 390
- Sat Feb 24, 2007 11:48 pm
- Forum: Beginners Help
- Topic: Scaling colliders
- Replies: 4
- Views: 399
getTriangles()? What class is that function a part of? I couldn't find it in the doco. I had checked with a visible mesh, and it definitely was the size I expected (using my method). I don't know anything about this getTriangles() function, so I was probably doing somethng wrong.
Anyway, thanks for ...
Anyway, thanks for ...
- Sat Feb 24, 2007 10:30 pm
- Forum: Beginners Help
- Topic: Scaling colliders
- Replies: 4
- Views: 399
- Sat Feb 24, 2007 5:35 am
- Forum: Beginners Help
- Topic: Scaling colliders
- Replies: 4
- Views: 399
Scaling colliders
Hello. Searched the forums, and couldn't find anything on this problem (surprisingly).
I wanted to do raycasting on a large plane. I did this:
IAnimatedMesh* planeMesh=smgr->getMesh("plane.x");
IAnimatedMeshSceneNode* planeNode=smgr->addAnimatedMeshSceneNode(planeMesh);
planeNode->setRotation ...
I wanted to do raycasting on a large plane. I did this:
IAnimatedMesh* planeMesh=smgr->getMesh("plane.x");
IAnimatedMeshSceneNode* planeNode=smgr->addAnimatedMeshSceneNode(planeMesh);
planeNode->setRotation ...
- Wed Feb 21, 2007 3:04 am
- Forum: Beginners Help
- Topic: Inheritance, subsumption, and constructing (C++ question)
- Replies: 18
- Views: 3470
- Tue Feb 20, 2007 8:27 pm
- Forum: Beginners Help
- Topic: Inheritance, subsumption, and constructing (C++ question)
- Replies: 18
- Views: 3470