PLEASE rename Attached file to .exe i had to rename it to .zip to uploaded it.
OKAY its FINISHED
This is the first beta stage project that i have done.
These data is here
F04V0D02,BG400,18.139,4,-14.917,0.0000,1.5708,0.0000,1280,2,0,-1.00,-1.0,-1,2,0,0
F04V0D03,BG400,18.139,8,-14.917,0.0000,1.5708,0.0000,1280,2,0,-1.00,-1.0,-1,3,0,0
F04V0D04,BG400,18.139,12,-14.917,0.0000,1.5708,0.0000,1280,2,0,-1.00,-1.0,-1,4,0,0
F04V0D05,BG400,18.139,16,-14.917,0.0000,1.5708,0.0000,1280,2,0,-1.00,-1.0,-1,5,0,0
F04V0D06,BG400,18.139,20,-14.917,0.0000,1.5708,0.0000,1280,2,0,-1.00,-1.0,-1,6,0,0
F04V0D07,BG400,18.139,24,-14.917,0.0000,1.5708,0.0000,1280,2,0,-1.00,-1.0,-1,7,0,0
F04V0D08,BG400,18.139,28,-14.917,0.0000,1.5708,0.0000,1280,2,0,-1.00,-1.0,-1,8,0,0
F04V0D09,BG400,18.139,32,-14.917,0.0000,1.5708,0.0000,1280,2,0,-1.00,-1.0,-1,9,0,0
F04V0D010,BG400,18.139,36,-14.917,0.0000,1.5708,0.0000,1280,2,0,-1.00,-1.0,-1,10,0,0
F04V0D011,BG400,18.139,40,-14.917,0.0000,1.5708,0.0000,1280,2,0,-1.00,-1.0,-1,11,0,0
F04V0D012,BG400,18.139,44,-14.917,0.0000,1.5708,0.0000,1280,2,0,-1.00,-1.0,-1,12,0,0
-------------------
what does the program do?
Okay the program simply makes getting somthink like 400 objects stack onto each other much easyer. First Get the Object name from the .obj file. After you have achive getting this. Go into the program in command prompt. AFter doing so, Type in the name of the object ( return ), then the number of copys you want of the object. The seporation of the objects from each other. AND its done. Copy the text into group .obj and you shall have 100+ what ever you want.
This program is in beta stages.
Test data is above for comparrision. File is attached. if you need to contact me about any futur projects that you may want me to undertake.
doodo477@hotmail.com, or contact me in aces high i am F6bomber
.
Source code is bellow for people intrested in the way the program was made.
-------------
source code
-----------------
No copy right , edit it. and suggest any changes.
#include
int main()
{
char string1[20];
int object = 0, hight = 0, number, hightin;
printf( " Please enter in the Name of the object wanting copy\n");
scanf( "%s", string1);
printf( " Please enter in the copys you want of the object\n");
scanf( "%d", &object );
printf( " Please enter in the hight sep between the copy objects\n");
scanf( "%d", &hightin );
for ( number = 1; number <= object; number++){
printf( "%s%d,BG400,18.139,%d,-14.917,0.0000,1.5708,0.0000,1280,2,0,-1.00,-1.0,-1,%d,0,0\n",string1,number,hight,number );
hight += hightin;
}
return 0;
}
----------------------------------------------------
Cya soon.
-------------------------------------