Computer Science Canada Terrain Demo |
Author: | Catalyst [ Mon Jun 02, 2003 11:10 pm ] |
Post subject: | Terrain Demo |
I am really beginning to like opengl ![]() this a terrain demo i made its a bit blocky since the file it uses is low res |
Author: | Tony [ Tue Jun 03, 2003 10:20 am ] |
Post subject: | |
Catalyst with his openGL skillz 8) Nice |
Author: | nate [ Tue Jun 03, 2003 2:59 pm ] |
Post subject: | |
Catalyst awsome terrain demo, but what program do u use for openGL |
Author: | Catalyst [ Tue Jun 03, 2003 3:09 pm ] |
Post subject: | |
dev c++ |
Author: | Catalyst [ Tue Jun 03, 2003 3:37 pm ] |
Post subject: | |
heres a better version (i like alpha blending ![]() it runs smoother since i used display lists |
Author: | Homer_simpson [ Tue Jun 03, 2003 5:21 pm ] |
Post subject: | |
I cant exactly see what that is but what ever it is it looks super dooper cool... so here's 20 bits.... question : how much do i need to know about c++ to start working with OpenGL... right now i know all the basic stuff(looping,if statements,operators,vars...) and i know basics of classes and pointers... what else do i need to know to get started?! |
Author: | Catalyst [ Tue Jun 03, 2003 5:44 pm ] |
Post subject: | |
you dont need to know much to get started the experience you have is enough |
Author: | Homer_simpson [ Tue Jun 03, 2003 5:50 pm ] |
Post subject: | |
sweet... do i get started by starting a new project > multimedia>opengl>ok? or do i start a blank project?! |
Author: | Catalyst [ Tue Jun 03, 2003 6:29 pm ] |
Post subject: | |
thats the best route since it will lessen the linker issues that you could run into be warned tho you cant use glut in that mode |
Author: | Homer_simpson [ Tue Jun 03, 2003 8:05 pm ] |
Post subject: | |
ok but yo... i used samples and tutorials on gamedev.net to create a GL scene but they are so comlicated there are about 50 functions into it... can u give me the shortest code possible that would create a GL window and draw some object in it?!(will give u bits for it ![]() |
Author: | Catalyst [ Tue Jun 03, 2003 8:07 pm ] | ||
Post subject: | |||
pulled right from dev c++ to understand the gl functions http://msdn.microsoft.com/library/default.asp?url=/library/en-us/opengl/glfunc01_4f03.asp
|
Author: | Homer_simpson [ Tue Jun 03, 2003 8:37 pm ] |
Post subject: | |
yes i already understand that...(i know how to create 3d objects ,Rotations translations...) but i dont understand some of the functions that's used EnableOpenGL (hWnd, &hDC, &hRC); could u explain hWnd, &hDC, &hRC variables to me... |
Author: | Homer_simpson [ Tue Jun 03, 2003 8:47 pm ] |
Post subject: | |
and also the numeric system glColor3f (1.0f, 0.0f, 0.0f); glVertex2f (0.0f, 1.0f); is 0.0f hexadecimal...?! |
Author: | Catalyst [ Tue Jun 03, 2003 9:15 pm ] | ||
Post subject: | |||
all the hDc stuff is just making the window (there no real need to understand it at this point) the coor system is like a cartesian grid:
the f at the end just mean float (GLFloat i think), it doesnt need to be there |