Search found 9 matches

by akaz
Tue Oct 26, 2010 10:15 pm
Forum: Beginners Help
Topic: Program in C that can kill people
Replies: 14
Views: 1013

Program in C that can kill people

I want to write a program that can kill people in C. Something that will display flashing colors or fractal pictures that will overload the brains of my victims so that they die. But, how can I write such a deadly program? I want to be the meanest mass-murderer of them all and I don't want to be cap...
by akaz
Sun May 16, 2010 7:16 am
Forum: Advanced Help
Topic: How to get render image and modify it before displaying
Replies: 9
Views: 806

Thanks, I will take a look for XEffects. I have one more question, how can I manipulate ITexture, pixel by pixel? I founded this: http://www.irrlicht3d.org/wiki/index.php?n=Main.IrrlichtManualChapter3, but I don't know how to put updated data on void buf to ITexture t. EDIT: aek here, i forgot that ...
by akaz
Wed May 12, 2010 12:45 am
Forum: Beginners Help
Topic: What IDE do you guys use?
Replies: 16
Views: 994

Visual Studio is only on trial license, download only Visual C++.

Here is a link: http://www.microsoft.com/express/Downloads/
Select Visual C++ 2010 Express
by akaz
Tue May 11, 2010 11:41 pm
Forum: Beginners Help
Topic: [solved] Node color
Replies: 2
Views: 267

Thank you for fast reply, slavik262 ! Your post helped me a lot! There is code snippet for people who find this thread having same problem: scene::IMesh *mesh = smgr->addSphereMesh("mesh"); scene::IMeshSceneNode* node = smgr->addMeshSceneNode( mesh ); smgr->getMeshManipulator()->setVertexC...
by akaz
Tue May 11, 2010 9:42 pm
Forum: Beginners Help
Topic: [solved] Node color
Replies: 2
Views: 267

[solved] Node color

Hello, I am creating new scene node (addSphereSceneNode()) and trying to set custom color of its render, but I don't know how I can made that. I can create texture file with desired color (then setMaterialTexture()), but it's not too much elegant option, also, I need to change many times color of no...
by akaz
Sun Nov 08, 2009 2:33 pm
Forum: Beginners Help
Topic: Linker error
Replies: 6
Views: 1901

This Makefile was generated by my IDE (NetBeans), i am so lazy
by akaz
Sun Nov 01, 2009 8:40 pm
Forum: Beginners Help
Topic: Linker error
Replies: 6
Views: 1901

Thank you, randomMesh!
I added -lXxf86vm to linker and now compilling secesfully.

Thank you again!
by akaz
Sun Nov 01, 2009 8:32 pm
Forum: Beginners Help
Topic: Linker error
Replies: 6
Views: 1901

Thanks for fast reply, randomMesh. I've got installed both glutg3-dev and libxxf86vm-dev, but I still receiving same error. The question is, why demos are compiling ok and my program not? EDIT: I added some additional commands to linker: "-L/usr/X11R6/lib$(LIBSELECT) -L../../lib/Linux -lIrrlich...
by akaz
Sun Nov 01, 2009 8:07 pm
Forum: Beginners Help
Topic: Linker error
Replies: 6
Views: 1901

Linker error

I'm Adam and that is my fist post here. Hello :) I tried compile very easy program that doing nothing to test compiler: #include "irrlicht.h" using namespace irr; using namespace core; using namespace scene; using namespace video; using namespace io; using namespace gui; int main() { creat...