C# and 3d programming

Rising

New member
Joined
Sep 19, 2003
Messages
1
Hi there, I need some help figuring out about C# 3D capabilities...
What I already know is that using DirectX Ill never get good 3D graphics interaction to work cause I havent found any good book ( have you read the book reviews ??) about directX with C#. the microsoft site only has help liberaries for directX 9.0 for C++...and the tutorials I
 
Its true, C++ is faster but the speed difference is very small. .NET programs are faster compared to some other languages and they get close to C++.
There isnt much books about DirectX9 for .NET (there is several for C++) but Ive seen some for .NET. Maybe you could search amazon for it.
 
Also, if you start with the wizard application that DirectX 9 creates, youll see a TON of code.

I noticed an ArcBall class that comes with one of the wizards. For some reason, they didnt use that class in the sample, but it contained all of the code to let you use the mouse to move a camera around a scene.

Also, we at the forums are glad to help with specific questions once you get started. For example, start with one of the sample projects and tweak it a bit to see how things work. Youll quickly find the C++ documentation will give you about 90% of what you need in terms of objects and methods and such. The other 10% will probably be debugging since things are never quite as easy as you might expect in DX. Thats where we all come in :)

-Ner
 
Back
Top