I hate being a newbie with stupid questions and I would RTFM if I new where the coding 3D manual was ?
Really want to learn C++ n code 3D.
using Dev-C++ compiler.
Microsoft compiler n directions our a bit much for now.
Started here.
http://www.cprogramming.com/tutorial.html
sorta understand it.it's just ya basic 101 this is a "loop,if, "etc etc.
it doesn't tell u how to code 3D.
There's not alot of 3D C++ Tutorials on the web.
Been 3Ding Since 98.
I'm new to coding and can barley get the hello world in DOS to stay on screen.
So I thought Blender would be the place to learn to Code 3D.
Got Blender n Source code.open a .cpp and not a clue what it's for.
our there tutorials to tell ya what each file of .cpp,.h,.c etc etc is for ?
want to learn to code 3D in C++ but not really a clue how to or where to start.
any suggestions on where to start at ?
Thanks
RorrKonn
http://www.atomic-3d.com
Help getting started programming 3D C++ ?
Moderators: jesterKing, stiv
I haven't learned Blender yet so not sure what all tools it does have.
want to make tools.
TS has Polygon draw.LW,C4D does not
http://www.atomic-3d.com/RK_Tutorial/RK ... n-Draw.htm
LW will subdivide a Tri,TS,C4D does not.
http://www.atomic-3d.com/RK_Tutorial/RK ... i-Quad.htm
C4D has Edge weights.LW,TS Does not
http://www.atomic-3d.com/RK_Tutorial/C4 ... eights.htm
Really want all these tools in the same app.
Don't know if I should use openGL or 3D Data,to make tools ?
TS,C4D both recommended using Microsoft C++ for making plugs.
is why I thought I alt to lean C++.
I don't just want to make plugs thou.Wouldn't mind to make my own 3D app.
Would like to make hair.
and a Poser like app,not Poser but something like Poser for main 3D App's.
Herd that Blender had something like Poser.
RorrKonn
http://www.atomic-3d.com
want to make tools.
TS has Polygon draw.LW,C4D does not
http://www.atomic-3d.com/RK_Tutorial/RK ... n-Draw.htm
LW will subdivide a Tri,TS,C4D does not.
http://www.atomic-3d.com/RK_Tutorial/RK ... i-Quad.htm
C4D has Edge weights.LW,TS Does not
http://www.atomic-3d.com/RK_Tutorial/C4 ... eights.htm
Really want all these tools in the same app.
Don't know if I should use openGL or 3D Data,to make tools ?
TS,C4D both recommended using Microsoft C++ for making plugs.
is why I thought I alt to lean C++.
I don't just want to make plugs thou.Wouldn't mind to make my own 3D app.
Would like to make hair.
and a Poser like app,not Poser but something like Poser for main 3D App's.
Herd that Blender had something like Poser.
RorrKonn
http://www.atomic-3d.com
If you're looking for the 3d math tutorials check out:
http://www.gamedev.net
http://www.flipcode.org
http://www.devmaster.net
http://www.gametutorials.com/Main.asp
http://www.gametutorials.com/Main.asp
Also, if you're looking for books, try "3D game Engine Design", "Real-Time Rendering", "Computer Graphics Principles and Practice in C"
Cheers,
Bob
http://www.gamedev.net
http://www.flipcode.org
http://www.devmaster.net
http://www.gametutorials.com/Main.asp
http://www.gametutorials.com/Main.asp
Also, if you're looking for books, try "3D game Engine Design", "Real-Time Rendering", "Computer Graphics Principles and Practice in C"
Cheers,
Bob
Halfway down the trail to hell....
-
- Posts: 0
- Joined: Sat Apr 23, 2005 12:49 am
- Location: Seattle
- Contact:
me too...
I'm a newb programmer as well, coming from a professional 3D background. I've been looking at the cprogramming.com site as well, I'm not sure if you noticed but if you scroll down the tutorials page it has a section for OpenGL tutorials, and a section of Rotations In 3 Dimensions (the hard stuff... for us!).
I have a small suggestion for Blender maintainers to ease us programming dopes into the Blender coding world: In the "Building with MSVC7" page on Blender3d.org (http://blender3d.org/cms/Building_with_MSVC7.140.0.html) make a note to set the Active Solution Configuration to Blender Debug. The default Active Solution for the solution files in CVS is set to 3D Plugin Release. A know-nuthin like me will continue to try to build with 3D Plugin Release active and won't get very far.
Thanks!
I have a small suggestion for Blender maintainers to ease us programming dopes into the Blender coding world: In the "Building with MSVC7" page on Blender3d.org (http://blender3d.org/cms/Building_with_MSVC7.140.0.html) make a note to set the Active Solution Configuration to Blender Debug. The default Active Solution for the solution files in CVS is set to 3D Plugin Release. A know-nuthin like me will continue to try to build with 3D Plugin Release active and won't get very far.

Thanks!
If you want to learn 3D coding, Blender is probably not your best choice as a beginner. It's a fairly complex piece of software and it's not at all obvious how things connect to work. Once you get some experience you'll know better how to examine it, but for starters, I would follow scourage's suggestions.
Check out OpenGL and GLUT libraries. They both work on (nearly) every platform. Also check out http://nehe.gamedev.net. It is an indispensable resource, especially if you're having trouble with "hello world". I'd use Borland C/C++ 5.5 which has been released for free. If you want to too and cannot find the right DLLs for it, post here and I'll send them to you.
You can find the OpenGL Programming Guide Third Edition online. You'll need it.
Another useful book is Interactive Computer Graphics Second Edition by Edward Angel. I'm not particularly fond of it, but it does explain a lot of things you absolutely need to know about the modern graphics pipeline.
If you're new to programming, welcome. It's both a frustrating and rewarding experience. My advice: start small. Make a simple animation. Model and texture a simple object (a spaceship or car or something with only a few moving parts).
Check out OpenGL and GLUT libraries. They both work on (nearly) every platform. Also check out http://nehe.gamedev.net. It is an indispensable resource, especially if you're having trouble with "hello world". I'd use Borland C/C++ 5.5 which has been released for free. If you want to too and cannot find the right DLLs for it, post here and I'll send them to you.
You can find the OpenGL Programming Guide Third Edition online. You'll need it.
Another useful book is Interactive Computer Graphics Second Edition by Edward Angel. I'm not particularly fond of it, but it does explain a lot of things you absolutely need to know about the modern graphics pipeline.
If you're new to programming, welcome. It's both a frustrating and rewarding experience. My advice: start small. Make a simple animation. Model and texture a simple object (a spaceship or car or something with only a few moving parts).