Search found 7 matches
- Sat Nov 07, 2009 1:09 pm
- Forum: Beginners Help
- Topic: Arbitrarily long object vector
- Replies: 2
- Views: 212
Sounds like a problem with your code. As far as Irrlicht is concerned this shouldn't be an issue. Can you paste the main.cpp from your modified 04.Movement example? Yup! Tidied up a bit and the problem ceased. I guess it was some kind of pointer issue. Hopefully I will be able to sort out my moveme...
- Fri Nov 06, 2009 6:06 pm
- Forum: Beginners Help
- Topic: Arbitrarily long object vector
- Replies: 2
- Views: 212
Arbitrarily long object vector
I was trying to make an arbitrarily long object vector with sphereNodes. I thought that vectors might be the way to go, and I managed to get a row of balls like the first one bounce up and down from different heights. My problem is that i don't seem to be able to adjust individual properties like te...
- Fri Nov 06, 2009 2:29 pm
- Forum: Beginners Help
- Topic: Displaying text and debugging
- Replies: 10
- Views: 650
- Fri Nov 06, 2009 9:52 am
- Forum: Beginners Help
- Topic: Displaying text and debugging
- Replies: 10
- Views: 650
Displaying text and debugging
Hi! I am trying to display and update some text on the screen to read out some values for control and debugging. I am currently using virtual IGUIStaticText = gui::IGUIEnvironment->addStaticText() to do this. The text displays as it should, but I don't know how, or if its possible to edit the text c...
- Thu Nov 05, 2009 4:08 pm
- Forum: Beginners Help
- Topic: PI and trigonometry
- Replies: 2
- Views: 331
Re: PI and trigonometry
Aaah, thanks! I included the core namespace now as well. I use it quite a lotrandomMesh wrote:Don't forget the namespaces.
- Thu Nov 05, 2009 3:51 pm
- Forum: Beginners Help
- Topic: PI and trigonometry
- Replies: 2
- Views: 331
PI and trigonometry
I took a look at irrMath.h and saw that it includes cmath and defines PI and a lot of useful functions. But I have not been able to access them. I tried to #include <irrMath.h> without success.
So what is the correct way of doing it?
So what is the correct way of doing it?
- Tue Nov 03, 2009 11:22 pm
- Forum: Beginners Help
- Topic: Compiling for Windows using Linux
- Replies: 3
- Views: 299
Compiling for Windows using Linux
Hi, this is my first shot at Irrlight! I am an Ubuntu 9.10 and just managed to compile a few examples and run the executables. However, when I went into the Makefile in examples/01.HelloWorld and changed the line below "#default target is linux" from "all: all_linux" to "all...