QUOTE (xlibman @ 30 Aug, 2006, 19:00) |
if someone have a BASIC routine to do wireframe 3D stuff I would be happy to mess with it a little just for fun :D![]() |
CODE |
ec1 Clrdraw \\This list is used to tell the lines which points to connect {0,1,1,2,2,3,3,0,4,5,5,6,6,7,7,4,0,4,1,5,2,6,3,7}->LLin \\This is used to store 3D vertices to 2D transformations {0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0}->LSRC \\This is the work list because you want to keep your orignal list there at all times {0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0}->LWOR \\This is the camera in 3D space {0,0,20}->LCAM \\This is the center of the screen {0,0}->LSCC \\These are your 3D vertices {-10,-10,-10,10,-10,10,10,10,-10,-10,10,-10,-10,-10,10,10,-10,10,10,10,10,-10,10,10}->LCUB \\This variable is the distortion 8->D ->B For(A,1,24 If B<3:Then B+1->B Else 1->B End LCUB(A->E LCAM(B->F \\It is required that you subtract the camera position (x or y or z) depending on B E-F->LWOR(A End -1->B For(A,1,24,3 B+2->B LSCC(1->E LWOR(A->F LWOR(A+2->G // coord.x = screen_center.x + (distortion * 3Dcoord.x)/ 3Dcoord.z E+(D*F)/G->LSRC(B LSCC(2->E LWOR(A+1->F // coord.y = screen_center.y + (distortion * 3Dcoord.y)/ 3Dcoord.z E-(D*F)]G->LSRC(B+1 End For(A,1,16,2 round(LSRC(A,->X round(LSRC(A+1,->Y Pt-On(X,Y End \\Now we draw the lines in to make the cube For(A,1,24,2 LLIN(A)*2+1->W LLIN(A+1)*2+1->V LSRC(W->X LSRC(W+1->Y LSRC(V->Z LSRC(V+1->theta Line(X,Y,Z,theta End c2 |
QUOTE (runtogetdone @ 31 Aug, 2006, 7:46) |
Here's a http://www.rafb.net/paste/results/eKrD7599.html to some basic 3D formulas that might prove useful (Thank tr1p1ea for the links, not me Post by: Halifax on August 31, 2006, 09:46:00 pm This rotation for all axes: Camera.y = dist * sin(ang_x) ; Camera.z = dist * cos(ang_x) ; Camera.z = Camera.z * cos(ang_y) ; Camera.x = dist * cos(ang_x) ; Camera.x = Camera.x * sin(ang_y); //Those are in LCAM, LCAM(1=camera.x and so on Work_CUBE.z = - Work_CUBE.y * sin(ang_x) + Work_CUBE.z * cos(ang_x) Work_CUBE.y = Work_CUBE.y * cos(ang_x) + intermediate * sin(ang_x) //rotation around the y axis Work_CUBE.z = - Work_CUBE.y * sin(ang_x) + Work_CUBE.z * cos(ang_x) Work_CUBE.y = Work_CUBE.y * cos(ang_x) + intermediate * sin(ang_x) //rotation around the x axis Work_CUBE.x = Work_CUBE.x * cos(ang_z) - Work_CUBE.y * sin(ang_z) Work_CUBE.y = Work_CUBE.y * cos(ang_z) + intermediate * sin(ang_z) //rotation around the z axis |