Advertisement

looking for a 3D car model in array form! HELPP

Started by June 21, 2008 06:15 AM
1 comment, last by Kalisto 16 years, 7 months ago
I need for my game a 3D car model in array form,made out of triangles,no more that 300-400 triangles,I looked everywhere,didn't find anything...maybe someone know where to find? or maybe anyone her can build me a car?(its don't need to be "pretty" just something that look like a car) thanks!
Free cars/vehicles:
Turbo squid free vehicles

And by 'array form' i hope you don't mean all the vertices and indices listed in c++ code. Models should really be loaded from a file.
Advertisement
that why I mean exactly,because I don't know how to load from a file...
maybe you have a tutorial?
I always use things like this:

float theCar[12][3][4]=
{{{-6,-6,0,1},{-6,6,0,1},{6,6,0,1}},
{{6,6,0,1},{6,-6,0,1},{-6,-6,0,1}},
{{-6,-6,15,1},{6,-6,15,1},{6,6,15,1}},
{{6,6,15,1},{-6,6,15,1},{-6,-6,15,1}},
{{-6,-6,0,1},{6,-6,0,1},{6,-6,15,1}},
{{6,-6,15,1},{-6,-6,15,1},{-6,-6,0,1}},
{{6,-6,0,1},{6,6,-0,1},{6,6,15,1}},
{{6,6,15,1},{6,-6,15,1},{6,-6,0,1}},
{{6,6,0,1},{-6,6,0,1},{-6,6,15,1}},
{{-6,6,15,1},{6,6,15,1},{6,6,0,1}},
{{-6,6,0,1},{-6,-6,0,1},{-6,-6,15,1}},
{{-6,-6,15,1},{-6,6,15,1},{-6,6,0,1}}};

(in this case its a 3d box...)

edit:

maybe someone can covert me some obj file from here:
http://www.turbosquid.com/Search/Index.cfm?FuseAction=ProcessSmartSearch&blKeepCheck=y&blShowCategorySelect=FALSE&intCategory2=208&intMediaType=2&intMinPrice=0&intMaxPrice=0&dateBeforePub=&dateAfterPub=&stgBoolean=l&istSearchKey=&istExcKey=&istIncAuthor=&istExcAuthor=&intFileType_1=-1&intFileType_2=-1&intFileType_3=-1&fltRating=0&intRatingCount=0&x=0&y=0

to an array?

This topic is closed to new replies.

Advertisement