123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824 |
- #LookAt 1200 800 -1200 50 125 0 0 1 0
- LookAt 1200 1000 -1200 50 125 0 0 1 0
- Camera "perspective"
- #"float fov" [ 22 ]
- "float fov" [ 24.0 ]
- Sampler "random" "integer pixelsamples" [ 64 ]
- "integer pixelsamples" [ 128 ]
- Film "image"
- "integer xresolution" 1920
- "integer yresolution" 1080
- "string filename" [ "p3d_vw-van-view0.rawls" ]
- "float scale" 3
- Sampler "random" "integer pixelsamples" [ 64 ]
- Integrator "path" "integer maxdepth" [ 65 ]
- WorldBegin
- # Default Material
- Material "uber"
- "rgb Kd" [ 0.7 .7 .7 ]
- "rgb Ks" [ .1 .1 .1]
- "float roughness" .1
- Shape "trianglemesh" "point P" [-2500 0 -1000 1500 0 -1000 1500 0 2700 -2500 0 2700 ]
- "integer indices" [0 1 2 0 2 3]
- AttributeBegin
- Rotate 180 0 1 0
- Rotate -90 1 0 0
- LightSource "infinite" "string mapname" "textures/pisa_latlong.exr"
- AttributeEnd
- # black rubber
- MakeNamedMaterial "Mat"
- "float roughness" [ 0.5 ]
- "string type" [ "uber" ]
- "rgb Kd" [ .01 .01 .01 ]
- "rgb Ks" [ 0.2 .2 .2 ]
- MakeNamedMaterial "paint-mirror"
- "string type" "mirror" "rgb Kr" [.1 .1 .1]
- # "string type" "uber" "rgb Kd" [0 0 0] "rgb Ks" [.5 .5 .5] "float roughness" .001
- MakeNamedMaterial "paint-base"
- "string type" "substrate" "color Kd" [.7 .125 .125] "color Ks" [.1 .1 .1]
- "float uroughness" .01 "float vroughness" .01
- MakeNamedMaterial "Car Paint - Glossy Blue" "string type" "mix"
- "string namedmaterial1" [ "paint-mirror" ]
- "string namedmaterial2" [ "paint-base" ]
- MakeNamedMaterial "Metal - Chrome"
- "float roughness" [ 0.01 ]
- "string type" [ "metal" ]
- "spectrum k" "spds/Al.k.spd"
- "spectrum eta" "spds/Al.eta.spd"
- MakeNamedMaterial "Mat.1" # white painted stuff
- "string type" "fourier" "string bsdffile" "bsdfs/ceramic.bsdf"
- MakeNamedMaterial "Glass-Simple.1"
- "string type" [ "glass" ]
- MakeNamedMaterial "indicator_glass"
- "string type" [ "glass" ]
- MakeNamedMaterial "Glass-Simple"
- "string type" [ "glass" ]
- MakeNamedMaterial "opticforheadlamp"
- "string type" [ "glass" ]
- AttributeBegin
- ObjectBegin "Null.60"
- AttributeBegin
- # Cube
- ConcatTransform [ 1 0 0 0 0 -4.37113883e-08 1 0 0 -1 -4.37113883e-08 0 0 0.292991638 -0.165222287 1 ]
- AttributeBegin
- # Cube
- AttributeBegin
- NamedMaterial "Mat"
- Shape "plymesh" "string filename" "geometry/mesh_00001.ply"
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # Cube
- ConcatTransform [ 0.998970568 1.98287875e-09 -0.0453629754 0 0.0453629754 -4.36663932e-08 0.998970568 0 0 -1 -4.37113883e-08 0 -3.38286328 -3.67646885 -0.277225435 1 ]
- AttributeBegin
- # Cube
- AttributeBegin
- NamedMaterial "Mat"
- Shape "plymesh" "string filename" "geometry/mesh_00002.ply"
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # Cube.1
- ConcatTransform [ 0.998970568 1.98287875e-09 -0.0453629754 0 0.0453629754 -4.36663932e-08 0.998970568 0 0 -1 -4.37113883e-08 0 0.326629639 -7.52659464 -0.445672184 1 ]
- AttributeBegin
- # Cube.1
- AttributeBegin
- NamedMaterial "Mat"
- Shape "plymesh" "string filename" "geometry/mesh_00003.ply"
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # Cube.1
- ConcatTransform [ 0.998970568 1.98287875e-09 -0.0453629754 0 0.0453629754 -4.36663932e-08 0.998970568 0 0 -1 -4.37113883e-08 0 -3.27911162 -11.4200439 -0.281936169 1 ]
- AttributeBegin
- # Cube.1
- AttributeBegin
- NamedMaterial "Mat"
- Shape "plymesh" "string filename" "geometry/mesh_00004.ply"
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # Cube.2
- ConcatTransform [ 0.998970568 1.98287875e-09 -0.0453629754 0 0.0453629754 -4.36663932e-08 0.998970568 0 0 -1 -4.37113883e-08 0 1.2474277 -15.1919765 -0.487484753 1 ]
- AttributeBegin
- # Cube.2
- AttributeBegin
- NamedMaterial "Mat"
- Shape "plymesh" "string filename" "geometry/mesh_00005.ply"
- AttributeEnd
- AttributeEnd
- AttributeEnd
- ObjectEnd
- AttributeEnd
- AttributeBegin
- ObjectBegin "Null.60"
- AttributeBegin
- # Cube
- ConcatTransform [ 1 0 0 0 0 -4.37113883e-08 1 0 0 -1 -4.37113883e-08 0 0 0.292991638 -0.165222287 1 ]
- AttributeBegin
- # Cube
- AttributeBegin
- NamedMaterial "Mat"
- Shape "plymesh" "string filename" "geometry/mesh_00006.ply"
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # Cube
- ConcatTransform [ 0.998970568 1.98287875e-09 -0.0453629754 0 0.0453629754 -4.36663932e-08 0.998970568 0 0 -1 -4.37113883e-08 0 -3.38286328 -3.67646885 -0.277225435 1 ]
- AttributeBegin
- # Cube
- AttributeBegin
- NamedMaterial "Mat"
- Shape "plymesh" "string filename" "geometry/mesh_00007.ply"
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # Cube.1
- ConcatTransform [ 0.998970568 1.98287875e-09 -0.0453629754 0 0.0453629754 -4.36663932e-08 0.998970568 0 0 -1 -4.37113883e-08 0 0.326629639 -7.52659464 -0.445672184 1 ]
- AttributeBegin
- # Cube.1
- AttributeBegin
- NamedMaterial "Mat"
- Shape "plymesh" "string filename" "geometry/mesh_00008.ply"
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # Cube.1
- ConcatTransform [ 0.998970568 1.98287875e-09 -0.0453629754 0 0.0453629754 -4.36663932e-08 0.998970568 0 0 -1 -4.37113883e-08 0 -3.27911162 -11.4200439 -0.281936169 1 ]
- AttributeBegin
- # Cube.1
- AttributeBegin
- NamedMaterial "Mat"
- Shape "plymesh" "string filename" "geometry/mesh_00009.ply"
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # Cube.2
- ConcatTransform [ 0.998970568 1.98287875e-09 -0.0453629754 0 0.0453629754 -4.36663932e-08 0.998970568 0 0 -1 -4.37113883e-08 0 1.2474277 -15.1919765 -0.487484753 1 ]
- AttributeBegin
- # Cube.2
- AttributeBegin
- NamedMaterial "Mat"
- Shape "plymesh" "string filename" "geometry/mesh_00010.ply"
- AttributeEnd
- AttributeEnd
- AttributeEnd
- ObjectEnd
- AttributeEnd
- AttributeBegin
- ObjectBegin "Null.60"
- AttributeBegin
- # Cube
- ConcatTransform [ 1 0 0 0 0 -4.37113883e-08 1 0 0 -1 -4.37113883e-08 0 0 0.292991638 -0.165222287 1 ]
- AttributeBegin
- # Cube
- AttributeBegin
- NamedMaterial "Mat"
- Shape "plymesh" "string filename" "geometry/mesh_00011.ply"
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # Cube
- ConcatTransform [ 0.998970568 1.98287875e-09 -0.0453629754 0 0.0453629754 -4.36663932e-08 0.998970568 0 0 -1 -4.37113883e-08 0 -3.38286328 -3.67646885 -0.277225435 1 ]
- AttributeBegin
- # Cube
- AttributeBegin
- NamedMaterial "Mat"
- Shape "plymesh" "string filename" "geometry/mesh_00012.ply"
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # Cube.1
- ConcatTransform [ 0.998970568 1.98287875e-09 -0.0453629754 0 0.0453629754 -4.36663932e-08 0.998970568 0 0 -1 -4.37113883e-08 0 0.326629639 -7.52659464 -0.445672184 1 ]
- AttributeBegin
- # Cube.1
- AttributeBegin
- NamedMaterial "Mat"
- Shape "plymesh" "string filename" "geometry/mesh_00013.ply"
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # Cube.1
- ConcatTransform [ 0.998970568 1.98287875e-09 -0.0453629754 0 0.0453629754 -4.36663932e-08 0.998970568 0 0 -1 -4.37113883e-08 0 -3.27911162 -11.4200439 -0.281936169 1 ]
- AttributeBegin
- # Cube.1
- AttributeBegin
- NamedMaterial "Mat"
- Shape "plymesh" "string filename" "geometry/mesh_00014.ply"
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # Cube.2
- ConcatTransform [ 0.998970568 1.98287875e-09 -0.0453629754 0 0.0453629754 -4.36663932e-08 0.998970568 0 0 -1 -4.37113883e-08 0 1.2474277 -15.1919765 -0.487484753 1 ]
- AttributeBegin
- # Cube.2
- AttributeBegin
- NamedMaterial "Mat"
- Shape "plymesh" "string filename" "geometry/mesh_00015.ply"
- AttributeEnd
- AttributeEnd
- AttributeEnd
- ObjectEnd
- AttributeEnd
- AttributeBegin
- ObjectBegin "Null.60"
- AttributeBegin
- # Cube
- ConcatTransform [ 1 0 0 0 0 -4.37113883e-08 1 0 0 -1 -4.37113883e-08 0 0 0.292991638 -0.165222287 1 ]
- AttributeBegin
- # Cube
- AttributeBegin
- NamedMaterial "Mat"
- Shape "plymesh" "string filename" "geometry/mesh_00016.ply"
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # Cube
- ConcatTransform [ 0.998970568 1.98287875e-09 -0.0453629754 0 0.0453629754 -4.36663932e-08 0.998970568 0 0 -1 -4.37113883e-08 0 -3.38286328 -3.67646885 -0.277225435 1 ]
- AttributeBegin
- # Cube
- AttributeBegin
- NamedMaterial "Mat"
- Shape "plymesh" "string filename" "geometry/mesh_00017.ply"
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # Cube.1
- ConcatTransform [ 0.998970568 1.98287875e-09 -0.0453629754 0 0.0453629754 -4.36663932e-08 0.998970568 0 0 -1 -4.37113883e-08 0 0.326629639 -7.52659464 -0.445672184 1 ]
- AttributeBegin
- # Cube.1
- AttributeBegin
- NamedMaterial "Mat"
- Shape "plymesh" "string filename" "geometry/mesh_00018.ply"
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # Cube.1
- ConcatTransform [ 0.998970568 1.98287875e-09 -0.0453629754 0 0.0453629754 -4.36663932e-08 0.998970568 0 0 -1 -4.37113883e-08 0 -3.27911162 -11.4200439 -0.281936169 1 ]
- AttributeBegin
- # Cube.1
- AttributeBegin
- NamedMaterial "Mat"
- Shape "plymesh" "string filename" "geometry/mesh_00019.ply"
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # Cube.2
- ConcatTransform [ 0.998970568 1.98287875e-09 -0.0453629754 0 0.0453629754 -4.36663932e-08 0.998970568 0 0 -1 -4.37113883e-08 0 1.2474277 -15.1919765 -0.487484753 1 ]
- AttributeBegin
- # Cube.2
- AttributeBegin
- NamedMaterial "Mat"
- Shape "plymesh" "string filename" "geometry/mesh_00020.ply"
- AttributeEnd
- AttributeEnd
- AttributeEnd
- ObjectEnd
- AttributeEnd
- AttributeBegin
- # -- Model by Mark Hodsman --
- AttributeEnd
- AttributeBegin
- # VWcommercial
- ConcatTransform [ 1 0 0 0 0 1 0 0 0 0 1 0 -1.65661621 8.62585449 0 1 ]
- AttributeBegin
- # back_joint
- ConcatTransform [ 1 0 0 0 0 1 0 0 0 0 1 0 0 0 4.09829712 1 ]
- AttributeBegin
- # Cylinder
- ConcatTransform [ 1 0 0 0 0 1 0 0 0 0 1 0 -386.615997 157.235565 -77.3406754 1 ]
- AttributeBegin
- # Cylinder
- AttributeBegin
- NamedMaterial "Car Paint - Glossy Blue"
- Shape "plymesh" "string filename" "geometry/mesh_00021.ply"
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # Cylinder.1
- ConcatTransform [ 1 0 0 0 0 1 0 0 0 0 1 0 -386.615997 157.235565 -75.216507 1 ]
- AttributeBegin
- # Cylinder.1
- AttributeBegin
- NamedMaterial "Car Paint - Glossy Blue"
- Shape "plymesh" "string filename" "geometry/mesh_00022.ply"
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # Cylinder.2
- ConcatTransform [ 1 0 0 0 0 1 0 0 0 0 1 0 -386.615997 157.235565 -79.4825897 1 ]
- AttributeBegin
- # Cylinder.2
- AttributeBegin
- NamedMaterial "Car Paint - Glossy Blue"
- Shape "plymesh" "string filename" "geometry/mesh_00023.ply"
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # Cylinder.3
- ConcatTransform [ 1 0 0 0 0 1 0 0 0 0 1 0 -386.615997 157.235565 -73.087616 1 ]
- AttributeBegin
- # Cylinder.3
- AttributeBegin
- NamedMaterial "Car Paint - Glossy Blue"
- Shape "plymesh" "string filename" "geometry/mesh_00024.ply"
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # back_joint.1
- ConcatTransform [ 1 0 0 0 0 1 0 0 0 0 1 0 0 0 145.74884 1 ]
- AttributeBegin
- # Cylinder
- ConcatTransform [ 1 0 0 0 0 1 0 0 0 0 1 0 -386.615997 157.235565 -77.3406754 1 ]
- AttributeBegin
- # Cylinder
- AttributeBegin
- NamedMaterial "Car Paint - Glossy Blue"
- Shape "plymesh" "string filename" "geometry/mesh_00025.ply"
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # Cylinder.1
- ConcatTransform [ 1 0 0 0 0 1 0 0 0 0 1 0 -386.615997 157.235565 -75.216507 1 ]
- AttributeBegin
- # Cylinder.1
- AttributeBegin
- NamedMaterial "Car Paint - Glossy Blue"
- Shape "plymesh" "string filename" "geometry/mesh_00026.ply"
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # Cylinder.2
- ConcatTransform [ 1 0 0 0 0 1 0 0 0 0 1 0 -386.615997 157.235565 -79.4825897 1 ]
- AttributeBegin
- # Cylinder.2
- AttributeBegin
- NamedMaterial "Car Paint - Glossy Blue"
- Shape "plymesh" "string filename" "geometry/mesh_00027.ply"
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # Cylinder.3
- ConcatTransform [ 1 0 0 0 0 1 0 0 0 0 1 0 -386.615997 157.235565 -73.087616 1 ]
- AttributeBegin
- # Cylinder.3
- AttributeBegin
- NamedMaterial "Car Paint - Glossy Blue"
- Shape "plymesh" "string filename" "geometry/mesh_00028.ply"
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # numberplate_completeback
- AttributeBegin
- # Extrude
- ConcatTransform [ 0.991088569 -0.133204371 0 0 0.133204371 0.991088569 0 0 -0 0 1 0 -451.420319 106.615089 -26.561676 1 ]
- AttributeBegin
- # Extrude
- AttributeBegin
- NamedMaterial "Metal - Chrome"
- Shape "plymesh" "string filename" "geometry/mesh_00029.ply"
- AttributeEnd
- AttributeBegin
- # Cap 1
- ConcatTransform [ 4.88794456e-07 -0 -1 0 0.0954455137 0.995434642 4.66532342e-08 0 0.995434642 -0.0954455137 4.86562897e-07 0 67.8704758 9.96169949 27.1554794 1 ]
- AttributeBegin
- NamedMaterial "Metal - Chrome"
- Shape "plymesh" "string filename" "geometry/mesh_00030.ply"
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # Cap 2
- ConcatTransform [ 4.88794456e-07 -0 -1 0 0.0954455137 0.995434642 4.66532342e-08 0 0.995434642 -0.0954455137 4.86562897e-07 0 67.8704758 9.96169949 27.1554794 1 ]
- AttributeBegin
- NamedMaterial "Metal - Chrome"
- Shape "plymesh" "string filename" "geometry/mesh_00031.ply"
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # Text
- ConcatTransform [ 4.88762055e-07 -0 -1 0 0.0954455137 0.995434642 4.66501433e-08 0 0.995434642 -0.0954455137 4.86530666e-07 0 67.8704758 9.96169949 27.1554794 1 ]
- AttributeBegin
- # Text
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # numberplate
- ConcatTransform [ 0.976503193 -0.215502977 0 0 0.215502977 0.976503193 0 0 -0 0 1 0 -380.644684 113.963829 0 1 ]
- AttributeBegin
- # numberplate
- AttributeBegin
- NamedMaterial "Mat.1"
- Shape "plymesh" "string filename" "geometry/mesh_00032.ply"
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # numberplate_complete.1
- ConcatTransform [ -0.999015689 -0.0415573157 0.0155132571 0 -0.0415898338 0.999133408 -0.0017787118 0 -0.0154258916 -0.00242215418 -0.999878109 0 378.043182 75.0985336 0.857624352 1 ]
- AttributeBegin
- # Extrude
- ConcatTransform [ 0.991088569 -0.133204371 0 0 0.133204371 0.991088569 0 0 -0 0 1 0 -39.1303444 -3.82672644 -15.0429478 1 ]
- AttributeBegin
- # Extrude
- AttributeBegin
- NamedMaterial "Metal - Chrome"
- Shape "plymesh" "string filename" "geometry/mesh_00033.ply"
- AttributeEnd
- AttributeBegin
- # Cap 1
- ConcatTransform [ 4.88794456e-07 -0 -1 0 0.0954455137 0.995434642 4.66532342e-08 0 0.995434642 -0.0954455137 4.86562897e-07 0 38.315567 5.62378454 15.330348 1 ]
- AttributeBegin
- NamedMaterial "Metal - Chrome"
- Shape "plymesh" "string filename" "geometry/mesh_00034.ply"
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # Cap 2
- ConcatTransform [ 4.88794456e-07 -0 -1 0 0.0954455137 0.995434642 4.66532342e-08 0 0.995434642 -0.0954455137 4.86562897e-07 0 38.315567 5.62378454 15.330348 1 ]
- AttributeBegin
- NamedMaterial "Metal - Chrome"
- Shape "plymesh" "string filename" "geometry/mesh_00035.ply"
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # Text
- ConcatTransform [ 4.88762055e-07 -0 -1 0 0.0954455137 0.995434642 4.66501433e-08 0 0.995434642 -0.0954455137 4.86530666e-07 0 38.315567 5.62378454 15.330348 1 ]
- AttributeBegin
- # Text
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # numberplate
- ConcatTransform [ -0.976503134 0.215502873 0.000415422081 0 0.215502888 0.976503193 -1.85622952e-07 0 -0.000405700994 8.93433971e-05 -0.99999994 0 0.825301826 0.321937978 -0.0478262305 1 ]
- AttributeBegin
- # numberplate
- AttributeBegin
- NamedMaterial "Mat.1"
- Shape "plymesh" "string filename" "geometry/mesh_00036.ply"
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # wingmirrorSYM
- AttributeBegin
- # wing_mirror
- ConcatTransform [ -0.984961927 -0.0882137567 0.148554265 0 -0.0949729308 0.994714677 -0.0390241593 0 -0.144326627 -0.0525459461 -0.988133967 0 309.773407 205.409927 138.857773 1 ]
- AttributeBegin
- # Null
- ConcatTransform [ 0.864815831 -2.58525461e-07 0.502089024 0 2.48038333e-07 1 8.76697044e-08 0 -0.502089024 4.87191762e-08 0.864815831 0 10.7905521 48.3782806 -20.0433655 1 ]
- AttributeBegin
- # Sphere
- ConcatTransform [ 1 0 0 0 0 1 0 0 0 0 1 0 4.10145187 -0.185233355 -0.305648804 1 ]
- AttributeBegin
- NamedMaterial "Metal - Chrome"
- Shape "plymesh" "string filename" "geometry/mesh_00037.ply"
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # Cylinder
- ConcatTransform [ 1 0 0 0 0 1 0 0 0 0 1 0 4.84211731 -0.0663807392 -0.468658447 1 ]
- AttributeBegin
- NamedMaterial "Metal - Chrome"
- Shape "plymesh" "string filename" "geometry/mesh_00038.ply"
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # Sweep
- ConcatTransform [ 0.705663979 -6.66400197e-08 0.708546638 0 9.57397148e-08 1 -1.29850231e-09 0 -0.708546638 6.87523567e-08 0.705663979 0 -87.0015793 -165.222702 83.3410263 1 ]
- AttributeBegin
- NamedMaterial "Metal - Chrome"
- Shape "plymesh" "string filename" "geometry/mesh_00039.ply"
- AttributeEnd
- AttributeBegin
- # Cap 1
- ConcatTransform [ -2.28247181e-08 0.929900169 0.367812097 0 -1 6.539421e-09 -7.85883003e-08 0 -7.54845502e-08 -0.367812097 0.929900169 0 -4.78602806e-06 213.593918 -142.745178 1 ]
- AttributeBegin
- NamedMaterial "Metal - Chrome"
- Shape "plymesh" "string filename" "geometry/mesh_00040.ply"
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # Cap 2
- ConcatTransform [ 6.77553942e-08 -0.438652277 -0.898656845 0 -1 6.53941967e-09 -7.85883145e-08 0 4.03496365e-08 0.898656845 -0.438652277 0 -7.23686298e-06 169.565811 -115.223053 1 ]
- AttributeBegin
- NamedMaterial "Metal - Chrome"
- Shape "plymesh" "string filename" "geometry/mesh_00041.ply"
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # wing_mirror
- ConcatTransform [ -0.984961927 -0.0882137567 0.148554265 0 -0.0949729308 0.994714677 -0.0390241593 0 -0.144326627 -0.0525459461 -0.988133967 0 309.773407 205.409927 138.857773 1 ]
- AttributeBegin
- # Null
- ConcatTransform [ 0.864815831 -2.58525461e-07 0.502089024 0 2.48038333e-07 1 8.76697044e-08 0 -0.502089024 4.87191762e-08 0.864815831 0 10.7905521 48.3782806 -20.0433655 1 ]
- AttributeBegin
- # Sphere
- ConcatTransform [ 1 0 0 0 0 1 0 0 0 0 1 0 4.10145187 -0.185233355 -0.305648804 1 ]
- AttributeBegin
- # Sphere
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # Cylinder
- ConcatTransform [ 1 0 0 0 0 1 0 0 0 0 1 0 4.84211731 -0.0663807392 -0.468658447 1 ]
- AttributeBegin
- # Cylinder
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # Sweep
- ConcatTransform [ 0.705663979 -6.66400197e-08 0.708546638 0 9.57397148e-08 1 -1.29850231e-09 0 -0.708546638 6.87523567e-08 0.705663979 0 -87.0015793 -165.222702 83.3410263 1 ]
- AttributeBegin
- # Sweep
- AttributeBegin
- # Cap 1
- ConcatTransform [ -2.28247181e-08 0.929900169 0.367812097 0 -1 6.539421e-09 -7.85883003e-08 0 -7.54845502e-08 -0.367812097 0.929900169 0 -4.78602806e-06 213.593918 -142.745178 1 ]
- AttributeEnd
- AttributeBegin
- # Cap 2
- ConcatTransform [ 6.77553942e-08 -0.438652277 -0.898656845 0 -1 6.53941967e-09 -7.85883145e-08 0 4.03496365e-08 0.898656845 -0.438652277 0 -7.23686298e-06 169.565811 -115.223053 1 ]
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # Circle
- ConcatTransform [ 1 0 0 0 0 1 0 0 0 0 1 0 -2.67028809e-05 -1.01327896e-06 0 1 ]
- AttributeBegin
- # Circle
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # Spline
- ConcatTransform [ -4.37113883e-08 -0 1 0 0 1 0 0 -1 0 -4.37113883e-08 0 -7.62939453e-06 195.675537 -108.055641 1 ]
- AttributeBegin
- # Spline
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # roof_comm
- ConcatTransform [ 1 0 0 0 0 1 0 0 0 0 1 0 0 -1.0552063 0 1 ]
- AttributeEnd
- AttributeBegin
- # Subdivision Surface
- ConcatTransform [ 1 0 0 0 0 1 0 0 0 0 1 0 0 -1.0552063 0 1 ]
- AttributeBegin
- # Loft NURBS
- AttributeBegin
- NamedMaterial "Car Paint - Glossy Blue"
- Shape "plymesh" "string filename" "geometry/mesh_00042.ply"
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # Loft NURBS
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # fr bumper complete
- ConcatTransform [ 1 0 0 0 0 1 0 0 0 0 1 0 374.080994 70.8121643 0 1 ]
- AttributeBegin
- # lo_bumper
- ConcatTransform [ 1 0 0 0 0 1 0 0 0 0 1 0 -377.666565 -87.2328186 0 1 ]
- AttributeBegin
- # Cube.1
- ConcatTransform [ 0.989364624 -0 -0.145456597 0 0 1 -0 0 0.145456597 0 0.989364624 0 375.425537 85.4460449 -33.4992371 1 ]
- AttributeBegin
- NamedMaterial "Mat.1"
- Shape "plymesh" "string filename" "geometry/mesh_00043.ply"
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # Cube.1
- ConcatTransform [ 0.989364624 -0 -0.145456597 0 0 1 -0 0 0.145456597 0 0.989364624 0 375.425537 85.4460449 -33.4992371 1 ]
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # Cube.1
- ConcatTransform [ 1 0 0 0 0 1 0 0 0 0 1 0 -14.3305054 10.5786438 -64.8387756 1 ]
- AttributeBegin
- NamedMaterial "Mat.1"
- Shape "plymesh" "string filename" "geometry/mesh_00044.ply"
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # Sweep NURBS.1
- ConcatTransform [ 1 0 0 0 0 1 0 0 0 0 1 0 -379.081085 -48.9438324 -1.13439941 1 ]
- AttributeBegin
- NamedMaterial "Mat.1"
- Shape "plymesh" "string filename" "geometry/mesh_00045.ply"
- AttributeEnd
- AttributeBegin
- # Cap 1
- ConcatTransform [ -0.305443048 -0.0607956685 -0.950267553 0 -0.951812744 -0.00934243947 0.30653742 0 -0.027513966 0.998106539 -0.055012513 0 335.595398 53.4270782 -131.587189 1 ]
- AttributeBegin
- NamedMaterial "Mat.1"
- Shape "plymesh" "string filename" "geometry/mesh_00046.ply"
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # Cap 2
- ConcatTransform [ 0.258140534 0.966051757 -0.010368186 0 -0.96527344 0.258348674 0.0387701057 0 0.0401325338 0 0.999194384 0 374.494751 81.592392 1.21331024 1 ]
- AttributeBegin
- NamedMaterial "Mat.1"
- Shape "plymesh" "string filename" "geometry/mesh_00047.ply"
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # opening window
- ConcatTransform [ 1 -0 0 0 0 0.964548767 0.26390478 0 -0 -0.26390478 0.964548767 0 -162.364304 260.631866 -140.918015 1 ]
- AttributeBegin
- # Cube
- ConcatTransform [ 1 -0 0 0 0 0.999674976 0.0254940223 0 -0 -0.0254940223 0.999674976 0 -36.8621674 5.90448761 1.51216125 1 ]
- AttributeBegin
- # Cube
- Shape "plymesh" "string filename" "geometry/mesh_00048.ply"
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # rubber_stops
- AttributeBegin
- # Cone
- ConcatTransform [ 1 0 0 0 0 1 0 0 0 0 1 0 171.161163 224.520187 -161.138367 1 ]
- AttributeBegin
- # Cone
- AttributeBegin
- NamedMaterial "Mat"
- Shape "plymesh" "string filename" "geometry/mesh_00049.ply"
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # Cone_copies
- ConcatTransform [ 1 0 0 0 0 1 0 0 0 0 1 0 64.5552673 224.520187 -161.138367 1 ]
- AttributeBegin
- # Cone.0
- ConcatTransform [ 1 0 0 0 0 1 0 0 0 0 1 0 -5.24493408 0 0 1 ]
- AttributeBegin
- # Cone
- AttributeBegin
- # Cone
- AttributeBegin
- NamedMaterial "Mat"
- Shape "plymesh" "string filename" "geometry/mesh_00050.ply"
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # Cone.1
- ConcatTransform [ 1 0 0 0 0 1 0 0 0 0 1 0 -115.295471 0 0 1 ]
- AttributeBegin
- # Cone
- AttributeBegin
- # Cone
- AttributeBegin
- NamedMaterial "Mat"
- Shape "plymesh" "string filename" "geometry/mesh_00051.ply"
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # Cone.2
- ConcatTransform [ 1 0 0 0 0 1 0 0 0 0 1 0 -213.406921 0 0 1 ]
- AttributeBegin
- # Cone
- AttributeBegin
- # Cone
- AttributeBegin
- NamedMaterial "Mat"
- Shape "plymesh" "string filename" "geometry/mesh_00052.ply"
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # fr_indicator
- AttributeBegin
- # ellipse indicator
- ConcatTransform [ 0.449088424 0.00421267655 0.893477499 0 0.88794446 0.10910961 -0.446821779 0 -0.09936928 0.99402076 0.0452592336 0 324.340485 175.251236 -108.077278 1 ]
- AttributeBegin
- # Cylinder
- ConcatTransform [ -0.00592942256 0.999333739 -0.0360073373 0 0.00465979381 0.0360351987 0.999339581 0 0.99997139 0.00575772021 -0.00487035746 0 -0.370954186 -1.2988677 0.114388943 1 ]
- AttributeBegin
- NamedMaterial "Glass-Simple.1"
- Shape "plymesh" "string filename" "geometry/mesh_00053.ply"
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # Cone
- ConcatTransform [ 0.00370379444 0.999927819 -0.0114389127 0 -0.00413631508 0.0114542115 0.999925852 0 0.999984384 -0.00365620363 0.00417843927 0 -0.751654625 -7.22465754 -0.430682361 1 ]
- AttributeBegin
- NamedMaterial "Metal - Chrome"
- Shape "plymesh" "string filename" "geometry/mesh_00054.ply"
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # glass
- ConcatTransform [ 1 0 0 0 0 1 0 0 0 0 1 0 7.62939453e-06 6.10351562e-05 6.00814819e-05 1 ]
- AttributeBegin
- NamedMaterial "indicator_glass"
- Shape "plymesh" "string filename" "geometry/mesh_00055.ply"
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # rim
- ConcatTransform [ 1 0 0 0 0 1 0 0 0 0 1 0 7.62939453e-06 6.10351562e-05 6.00814819e-05 1 ]
- AttributeBegin
- NamedMaterial "Metal - Chrome"
- Shape "plymesh" "string filename" "geometry/mesh_00056.ply"
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # fr_window
- AttributeBegin
- # fr_door_window
- AttributeBegin
- # Cube
- ConcatTransform [ 0.895799458 -2.10734239e-08 0.444458425 0 1.88775626e-08 1 9.36626066e-09 0 -0.444458425 2.60141421e-16 0.895799458 0 243.563599 296.393738 -127.586861 1 ]
- AttributeBegin
- NamedMaterial "Metal - Chrome"
- Shape "plymesh" "string filename" "geometry/mesh_00057.ply"
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # Cube.1
- ConcatTransform [ 0.991108477 0.0707644746 0.112678289 0 -0.0973760039 -0.191346005 0.976680398 0 0.090674825 -0.978968501 -0.182753906 0 237.288055 244.020386 -142.88443 1 ]
- AttributeBegin
- NamedMaterial "Metal - Chrome"
- Shape "plymesh" "string filename" "geometry/mesh_00058.ply"
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # glass1
- ConcatTransform [ 1 0 0 0 0 -4.37113883e-08 -1 0 0 1 -4.37113883e-08 0 214.76561 257.058838 -146.458008 1 ]
- AttributeBegin
- NamedMaterial "Glass-Simple"
- Shape "plymesh" "string filename" "geometry/mesh_00059.ply"
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # glasas2
- ConcatTransform [ 1 -0 0 0 0 0.0263238102 -0.999653459 0 -0 0.999653459 0.0263238102 0 169.27298 257.059357 -146.61821 1 ]
- AttributeBegin
- NamedMaterial "Glass-Simple"
- Shape "plymesh" "string filename" "geometry/mesh_00060.ply"
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # glasas2.1
- ConcatTransform [ 1 -0 0 0 0 0.026323691 -0.999653459 0 -0 0.999653459 0.026323691 0 285.878174 257.059357 -146.61821 1 ]
- AttributeBegin
- NamedMaterial "Glass-Simple"
- Shape "plymesh" "string filename" "geometry/mesh_00061.ply"
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # Subdivision Surface
- AttributeBegin
- # Cube
- ConcatTransform [ 1 -0 0 0 0 0.977025211 0.213123783 0 -0 -0.213123783 0.977025211 0 239.228241 240.233856 -143.162247 1 ]
- AttributeBegin
- NamedMaterial "Metal - Chrome"
- Shape "plymesh" "string filename" "geometry/mesh_00062.ply"
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # Cube
- ConcatTransform [ 0.930198014 0.352608889 0.101974875 0 -0.367058396 0.893579662 0.258425057 0 2.90103401e-07 -0.27781716 0.960633993 0 238.392105 266.739075 -140.037338 1 ]
- AttributeBegin
- NamedMaterial "Car Paint - Glossy Blue"
- Shape "plymesh" "string filename" "geometry/mesh_00063.ply"
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # Cube
- ConcatTransform [ 1 -0 0 0 0 0.961242616 0.275703937 0 -0 -0.275703937 0.961242616 0 178.443253 264.232544 -138.927246 1 ]
- AttributeBegin
- NamedMaterial "Mat.1"
- Shape "plymesh" "string filename" "geometry/mesh_00064.ply"
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # driver_screen_insert_sm.1
- ConcatTransform [ -0.99972564 -5.11590031e-07 0.023458235 0 -0.00305287563 0.991498709 -0.130083561 0 -0.0232587326 -0.130119428 -0.991226196 0 154.256332 252.174103 -64.2610245 1 ]
- AttributeBegin
- NamedMaterial "Mat"
- Shape "plymesh" "string filename" "geometry/mesh_00065.ply"
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # Sweep
- ConcatTransform [ 1 3.01991605e-07 4.50002559e-15 0 -3.0199169e-07 1.00000024 1.49011647e-08 0 -0 -1.4901163e-08 1.00000012 0 -1.94907188e-05 -2.86102295e-05 9.53674316e-06 1 ]
- AttributeBegin
- NamedMaterial "Car Paint - Glossy Blue"
- Shape "plymesh" "string filename" "geometry/mesh_00066.ply"
- AttributeEnd
- AttributeBegin
- # Cap 1
- ConcatTransform [ 0.0480384789 -0.912780225 -0.405616283 0 0.262593478 0.403341621 -0.876561582 0 0.96371001 -0.0644035116 0.259066045 0 250.569534 239.574585 -147.26651 1 ]
- AttributeBegin
- NamedMaterial "Car Paint - Glossy Blue"
- Shape "plymesh" "string filename" "geometry/mesh_00067.ply"
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # Cap 2
- ConcatTransform [ -0.145217538 0.84019798 0.52247417 0 0.171603158 0.541457057 -0.823028922 0 -0.974404573 -0.0298600215 -0.222809687 0 227.578339 294.43808 -129.913696 1 ]
- AttributeBegin
- NamedMaterial "Car Paint - Glossy Blue"
- Shape "plymesh" "string filename" "geometry/mesh_00068.ply"
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # driver_screen_insert
- ConcatTransform [ -0.999664426 -0.00835510716 0.0245535169 0 -0.0114766769 0.991463482 -0.129881278 0 -0.0232587326 -0.130119428 -0.991226196 0 150.429474 245.70401 -96.3758698 1 ]
- AttributeBegin
- NamedMaterial "Mat"
- Shape "plymesh" "string filename" "geometry/mesh_00069.ply"
- AttributeEnd
- AttributeBegin
- # Cap 1
- ConcatTransform [ 0.0984474048 -8.80319178e-08 -0.995142281 0 0.0528781675 -0.998587251 0.00523121841 0 -0.993736386 -0.0531363003 -0.0983083174 0 -101.280678 -3.45500183 49.2850189 1 ]
- AttributeBegin
- NamedMaterial "Mat"
- Shape "plymesh" "string filename" "geometry/mesh_00070.ply"
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # Cap 2
- ConcatTransform [ -0.27951476 1.24787925e-06 0.96014142 0 0.053670533 -0.998436451 0.015625773 0 0.958640158 0.0558989346 0.279077649 0 -76.4633865 53.987896 24.3204498 1 ]
- AttributeBegin
- NamedMaterial "Mat"
- Shape "plymesh" "string filename" "geometry/mesh_00071.ply"
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # fr_door_window
- AttributeBegin
- # Cube
- ConcatTransform [ 0.895799458 -2.10734239e-08 0.444458425 0 1.88775626e-08 1 9.36626066e-09 0 -0.444458425 2.60141421e-16 0.895799458 0 243.563599 296.393738 -127.586861 1 ]
- AttributeBegin
- # Cube
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # Cube.1
- ConcatTransform [ 0.991108477 0.0707644746 0.112678289 0 -0.0973760039 -0.191346005 0.976680398 0 0.090674825 -0.978968501 -0.182753906 0 237.288055 244.020386 -142.88443 1 ]
- AttributeBegin
- # Cube.1
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # glass1
- ConcatTransform [ 1 0 0 0 0 -4.37113883e-08 -1 0 0 1 -4.37113883e-08 0 214.76561 257.058838 -146.458008 1 ]
- AttributeEnd
- AttributeBegin
- # glasas2
- ConcatTransform [ 1 -0 0 0 0 0.0263238102 -0.999653459 0 -0 0.999653459 0.0263238102 0 169.27298 257.059357 -146.61821 1 ]
- AttributeEnd
- AttributeBegin
- # glasas2.1
- ConcatTransform [ 1 -0 0 0 0 0.026323691 -0.999653459 0 -0 0.999653459 0.026323691 0 285.878174 257.059357 -146.61821 1 ]
- AttributeEnd
- AttributeBegin
- # Subdivision Surface
- AttributeBegin
- # Cube
- ConcatTransform [ 1 -0 0 0 0 0.977025211 0.213123783 0 -0 -0.213123783 0.977025211 0 239.228241 240.233856 -143.162247 1 ]
- AttributeEnd
- AttributeBegin
- # Cube
- ConcatTransform [ 1 -0 0 0 0 0.977025211 0.213123783 0 -0 -0.213123783 0.977025211 0 239.228241 240.233856 -143.162247 1 ]
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # Cube
- ConcatTransform [ 0.930198014 0.352608889 0.101974875 0 -0.367058396 0.893579662 0.258425057 0 2.90103401e-07 -0.27781716 0.960633993 0 238.392105 266.739075 -140.037338 1 ]
- AttributeBegin
- # Cube
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # Cube
- ConcatTransform [ 1 -0 0 0 0 0.961242616 0.275703937 0 -0 -0.275703937 0.961242616 0 178.443253 264.232544 -138.927246 1 ]
- AttributeBegin
- # Cube
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # driver_screen_insert_sm.1
- ConcatTransform [ -0.99972564 -5.11590031e-07 0.023458235 0 -0.00305287563 0.991498709 -0.130083561 0 -0.0232587326 -0.130119428 -0.991226196 0 154.256332 252.174103 -64.2610245 1 ]
- AttributeBegin
- # driver_screen_insert_sm.1
- AttributeEnd
- AttributeBegin
- # Circle
- ConcatTransform [ 0.0634929687 0.997642517 0.0260430463 0 0.986503005 -0.0666879416 0.149549365 0 0.150933534 0.0161962062 -0.988411367 0 257.188049 504.299377 -207.171478 1 ]
- AttributeBegin
- # Circle
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # poly.Spline
- ConcatTransform [ -0.960734785 -0.00293380301 -0.0223516766 0 -4.71188514e-07 0.95282954 -0.125044823 0 0.0225433987 -0.125010371 -0.952567101 0 -66.9327087 -50.6999207 73.1384735 1 ]
- AttributeBegin
- # poly.Spline
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # Sweep
- ConcatTransform [ 1 3.01991605e-07 4.50002559e-15 0 -3.0199169e-07 1.00000024 1.49011647e-08 0 -0 -1.4901163e-08 1.00000012 0 -1.94907188e-05 -2.86102295e-05 9.53674316e-06 1 ]
- AttributeBegin
- # Sweep
- AttributeBegin
- # Cap 1
- ConcatTransform [ 0.0480384789 -0.912780225 -0.405616283 0 0.262593478 0.403341621 -0.876561582 0 0.96371001 -0.0644035116 0.259066045 0 250.569534 239.574585 -147.26651 1 ]
- AttributeEnd
- AttributeBegin
- # Cap 2
- ConcatTransform [ -0.145217538 0.84019798 0.52247417 0 0.171603158 0.541457057 -0.823028922 0 -0.974404573 -0.0298600215 -0.222809687 0 227.578339 294.43808 -129.913696 1 ]
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # Rectangle
- ConcatTransform [ 1 -0 0 0 0 0.999999762 -1.49011541e-08 0 -0 1.49011559e-08 0.999999881 0 1.94907188e-05 2.86102222e-05 -9.53674135e-06 1 ]
- AttributeBegin
- # Rectangle
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # poly.Spline.1
- ConcatTransform [ 0.960999966 -1.68026574e-07 1.68026574e-07 0 1.68026588e-07 0.961000025 -2.1770564e-08 0 -1.68026546e-07 2.17705889e-08 0.960999846 0 217.423553 187.824753 -167.210068 1 ]
- AttributeBegin
- # poly.Spline.1
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # driver_screen_insert
- ConcatTransform [ -0.999664426 -0.00835510716 0.0245535169 0 -0.0114766769 0.991463482 -0.129881278 0 -0.0232587326 -0.130119428 -0.991226196 0 150.429474 245.70401 -96.3758698 1 ]
- AttributeBegin
- # driver_screen_insert
- AttributeBegin
- # Cap 1
- ConcatTransform [ 0.0984474048 -8.80319178e-08 -0.995142281 0 0.0528781675 -0.998587251 0.00523121841 0 -0.993736386 -0.0531363003 -0.0983083174 0 -101.280678 -3.45500183 49.2850189 1 ]
- AttributeEnd
- AttributeBegin
- # Cap 2
- ConcatTransform [ -0.27951476 1.24787925e-06 0.96014142 0 0.053670533 -0.998436451 0.015625773 0 0.958640158 0.0558989346 0.279077649 0 -76.4633865 53.987896 24.3204498 1 ]
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # Circle
- ConcatTransform [ 0.0550845601 0.998142123 0.0260430984 0 0.98702997 -0.0583732985 0.149549648 0 0.150791988 0.0174674373 -0.988411427 0 249.838501 508.648407 -239.935394 1 ]
- AttributeBegin
- # Circle
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # poly.Spline
- ConcatTransform [ -0.960676014 -0.011029073 -0.0223514736 0 -0.00802926533 0.952795923 -0.125044689 0 0.0235957578 -0.124815807 -0.952567041 0 -68.2271042 -48.9539261 76.1856308 1 ]
- AttributeBegin
- # poly.Spline
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # Wheel+rim
- ConcatTransform [ 1 -0 0 0 0 1 1.1920929e-07 0 -0 -1.1920929e-07 1 0 190.13562 51.3650398 -134.158646 1 ]
- AttributeBegin
- # Array
- ConcatTransform [ 1 0 0 0 0 -4.37113883e-08 -1 0 0 1 -4.37113883e-08 0 0.716629028 0.96824652 1.98828125 1 ]
- AttributeBegin
- # Array
- AttributeBegin
- # Null.60
- ConcatTransform [ 1 0 0 0 0 1 0 0 0 0 1 0 0 0 57 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.59
- ConcatTransform [ 0.994521916 -0 -0.104528464 0 0 1 -0 0 0.104528464 0 0.994521916 0 5.95812225 0 56.687748 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.58
- ConcatTransform [ 0.978147626 -0 -0.207911685 0 0 1 -0 0 0.207911685 0 0.978147626 0 11.8509665 0 55.7544136 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.57
- ConcatTransform [ 0.95105654 -0 -0.309017003 0 0 1 -0 0 0.309017003 0 0.95105654 0 17.6139679 0 54.2102203 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.56
- ConcatTransform [ 0.91354543 -0 -0.406736642 0 0 1 -0 0 0.406736642 0 0.91354543 0 23.1839886 0 52.0720901 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.55
- ConcatTransform [ 0.866025388 -0 -0.5 0 0 1 -0 0 0.5 0 0.866025388 0 28.5 0 49.3634491 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.54
- ConcatTransform [ 0.809017003 -0 -0.587785244 0 0 1 -0 0 0.587785244 0 0.809017003 0 33.5037575 0 46.1139679 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.53
- ConcatTransform [ 0.74314481 -0 -0.669130623 0 0 1 -0 0 0.669130623 0 0.74314481 0 38.1404457 0 42.3592567 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.52
- ConcatTransform [ 0.669130623 -0 -0.74314481 0 0 1 -0 0 0.74314481 0 0.669130623 0 42.3592567 -0 38.1404457 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.51
- ConcatTransform [ 0.587785244 -0 -0.809017003 0 0 1 -0 0 0.809017003 0 0.587785244 0 46.1139679 -0 33.5037575 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.50
- ConcatTransform [ 0.5 -0 -0.866025388 0 0 1 -0 0 0.866025388 0 0.5 0 49.3634491 -0 28.5 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.49
- ConcatTransform [ 0.406736642 -0 -0.91354543 0 0 1 -0 0 0.91354543 0 0.406736642 0 52.0720901 -0 23.1839886 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.48
- ConcatTransform [ 0.309017003 -0 -0.95105654 0 0 1 -0 0 0.95105654 0 0.309017003 0 54.2102203 -0 17.6139679 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.47
- ConcatTransform [ 0.207911685 -0 -0.978147626 0 0 1 -0 0 0.978147626 0 0.207911685 0 55.7544136 -0 11.8509665 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.46
- ConcatTransform [ 0.104528464 -0 -0.994521916 0 0 1 -0 0 0.994521916 0 0.104528464 0 56.687748 -0 5.95812225 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.45
- ConcatTransform [ 6.12323426e-17 -0 -1 0 0 1 -0 0 1 0 6.12323426e-17 0 57 -0 3.4902433e-15 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.44
- ConcatTransform [ -0.104528464 -0 -0.994521916 0 -0 1 0 0 0.994521916 0 -0.104528464 0 56.687748 0 -5.95812225 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.43
- ConcatTransform [ -0.207911685 -0 -0.978147626 0 -0 1 0 0 0.978147626 0 -0.207911685 0 55.7544136 0 -11.8509665 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.42
- ConcatTransform [ -0.309017003 -0 -0.95105654 0 -0 1 0 0 0.95105654 0 -0.309017003 0 54.2102203 0 -17.6139679 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.41
- ConcatTransform [ -0.406736642 -0 -0.91354543 0 -0 1 0 0 0.91354543 0 -0.406736642 0 52.0720901 0 -23.1839886 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.40
- ConcatTransform [ -0.5 -0 -0.866025388 0 -0 1 0 0 0.866025388 0 -0.5 0 49.3634491 0 -28.5 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.39
- ConcatTransform [ -0.587785244 -0 -0.809017003 0 -0 1 0 0 0.809017003 0 -0.587785244 0 46.1139679 0 -33.5037575 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.38
- ConcatTransform [ -0.669130623 -0 -0.74314481 0 -0 1 0 0 0.74314481 0 -0.669130623 0 42.3592567 0 -38.1404457 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.37
- ConcatTransform [ -0.74314481 -0 -0.669130623 0 -0 1 0 0 0.669130623 0 -0.74314481 0 38.1404457 -0 -42.3592567 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.36
- ConcatTransform [ -0.809017003 -0 -0.587785244 0 -0 1 0 0 0.587785244 0 -0.809017003 0 33.5037575 -0 -46.1139679 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.35
- ConcatTransform [ -0.866025388 -0 -0.5 0 -0 1 0 0 0.5 0 -0.866025388 0 28.5 -0 -49.3634491 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.34
- ConcatTransform [ -0.91354543 -0 -0.406736642 0 -0 1 0 0 0.406736642 0 -0.91354543 0 23.1839886 -0 -52.0720901 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.33
- ConcatTransform [ -0.95105654 -0 -0.309017003 0 -0 1 0 0 0.309017003 0 -0.95105654 0 17.6139679 -0 -54.2102203 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.32
- ConcatTransform [ -0.978147626 -0 -0.207911685 0 -0 1 0 0 0.207911685 0 -0.978147626 0 11.8509665 -0 -55.7544136 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.31
- ConcatTransform [ -0.994521916 -0 -0.104528464 0 -0 1 0 0 0.104528464 0 -0.994521916 0 5.95812225 -0 -56.687748 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.30
- ConcatTransform [ -1 -0 -1.22464685e-16 0 -0 1 0 0 1.22464685e-16 0 -1 0 6.98048661e-15 -0 -57 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.29
- ConcatTransform [ -0.994521916 -0 0.104528464 0 0 1 0 0 -0.104528464 0 -0.994521916 0 -5.95812225 0 -56.687748 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.28
- ConcatTransform [ -0.978147626 -0 0.207911685 0 0 1 0 0 -0.207911685 0 -0.978147626 0 -11.8509665 0 -55.7544136 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.27
- ConcatTransform [ -0.95105654 -0 0.309017003 0 0 1 0 0 -0.309017003 0 -0.95105654 0 -17.6139679 0 -54.2102203 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.26
- ConcatTransform [ -0.91354543 -0 0.406736642 0 0 1 0 0 -0.406736642 0 -0.91354543 0 -23.1839886 0 -52.0720901 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.25
- ConcatTransform [ -0.866025388 -0 0.5 0 0 1 0 0 -0.5 0 -0.866025388 0 -28.5 0 -49.3634491 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.24
- ConcatTransform [ -0.809017003 -0 0.587785244 0 0 1 0 0 -0.587785244 0 -0.809017003 0 -33.5037575 0 -46.1139679 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.23
- ConcatTransform [ -0.74314481 -0 0.669130623 0 0 1 0 0 -0.669130623 0 -0.74314481 0 -38.1404457 0 -42.3592567 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.22
- ConcatTransform [ -0.669130623 -0 0.74314481 0 0 1 0 0 -0.74314481 0 -0.669130623 0 -42.3592567 -0 -38.1404457 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.21
- ConcatTransform [ -0.587785244 -0 0.809017003 0 0 1 0 0 -0.809017003 0 -0.587785244 0 -46.1139679 -0 -33.5037575 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.20
- ConcatTransform [ -0.5 -0 0.866025388 0 0 1 0 0 -0.866025388 0 -0.5 0 -49.3634491 -0 -28.5 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.19
- ConcatTransform [ -0.406736642 -0 0.91354543 0 0 1 0 0 -0.91354543 0 -0.406736642 0 -52.0720901 -0 -23.1839886 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.18
- ConcatTransform [ -0.309017003 -0 0.95105654 0 0 1 0 0 -0.95105654 0 -0.309017003 0 -54.2102203 -0 -17.6139679 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.17
- ConcatTransform [ -0.207911685 -0 0.978147626 0 0 1 0 0 -0.978147626 0 -0.207911685 0 -55.7544136 -0 -11.8509665 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.16
- ConcatTransform [ -0.104528464 -0 0.994521916 0 0 1 0 0 -0.994521916 0 -0.104528464 0 -56.687748 -0 -5.95812225 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.15
- ConcatTransform [ -1.83697015e-16 -0 1 0 0 1 0 0 -1 0 -1.83697015e-16 0 -57 -0 -1.04707299e-14 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.14
- ConcatTransform [ 0.104528464 -0 0.994521916 0 0 1 0 0 -0.994521916 0 0.104528464 0 -56.687748 0 5.95812225 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.13
- ConcatTransform [ 0.207911685 -0 0.978147626 0 0 1 0 0 -0.978147626 0 0.207911685 0 -55.7544136 0 11.8509665 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.12
- ConcatTransform [ 0.309017003 -0 0.95105654 0 0 1 0 0 -0.95105654 0 0.309017003 0 -54.2102203 0 17.6139679 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.11
- ConcatTransform [ 0.406736642 -0 0.91354543 0 0 1 0 0 -0.91354543 0 0.406736642 0 -52.0720901 0 23.1839886 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.10
- ConcatTransform [ 0.5 -0 0.866025388 0 0 1 0 0 -0.866025388 0 0.5 0 -49.3634491 0 28.5 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.9
- ConcatTransform [ 0.587785244 -0 0.809017003 0 0 1 0 0 -0.809017003 0 0.587785244 0 -46.1139679 0 33.5037575 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.8
- ConcatTransform [ 0.669130623 -0 0.74314481 0 0 1 0 0 -0.74314481 0 0.669130623 0 -42.3592567 0 38.1404457 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.7
- ConcatTransform [ 0.74314481 -0 0.669130623 0 0 1 0 0 -0.669130623 0 0.74314481 0 -38.1404457 -0 42.3592567 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.6
- ConcatTransform [ 0.809017003 -0 0.587785244 0 0 1 0 0 -0.587785244 0 0.809017003 0 -33.5037575 -0 46.1139679 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.5
- ConcatTransform [ 0.866025388 -0 0.5 0 0 1 0 0 -0.5 0 0.866025388 0 -28.5 -0 49.3634491 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.4
- ConcatTransform [ 0.91354543 -0 0.406736642 0 0 1 0 0 -0.406736642 0 0.91354543 0 -23.1839886 -0 52.0720901 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.3
- ConcatTransform [ 0.95105654 -0 0.309017003 0 0 1 0 0 -0.309017003 0 0.95105654 0 -17.6139679 -0 54.2102203 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.2
- ConcatTransform [ 0.978147626 -0 0.207911685 0 0 1 0 0 -0.207911685 0 0.978147626 0 -11.8509665 -0 55.7544136 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.1
- ConcatTransform [ 0.994521916 -0 0.104528464 0 0 1 0 0 -0.104528464 0 0.994521916 0 -5.95812225 -0 56.687748 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # Null
- ConcatTransform [ 1 0 0 0 0 1 0 0 0 0 1 0 0 2.79130554 0 1 ]
- AttributeBegin
- # Cube
- ConcatTransform [ 1 0 0 0 0 -4.37113883e-08 1 0 0 -1 -4.37113883e-08 0 0 0.292991638 -0.165222287 1 ]
- AttributeEnd
- AttributeBegin
- # Cube
- ConcatTransform [ 0.998970568 1.98287875e-09 -0.0453629754 0 0.0453629754 -4.36663932e-08 0.998970568 0 0 -1 -4.37113883e-08 0 -3.38286328 -3.67646885 -0.277225435 1 ]
- AttributeEnd
- AttributeBegin
- # Cube.1
- ConcatTransform [ 0.998970568 1.98287875e-09 -0.0453629754 0 0.0453629754 -4.36663932e-08 0.998970568 0 0 -1 -4.37113883e-08 0 0.326629639 -7.52659464 -0.445672184 1 ]
- AttributeEnd
- AttributeBegin
- # Cube.1
- ConcatTransform [ 0.998970568 1.98287875e-09 -0.0453629754 0 0.0453629754 -4.36663932e-08 0.998970568 0 0 -1 -4.37113883e-08 0 -3.27911162 -11.4200439 -0.281936169 1 ]
- AttributeEnd
- AttributeBegin
- # Cube.2
- ConcatTransform [ 0.998970568 1.98287875e-09 -0.0453629754 0 0.0453629754 -4.36663932e-08 0.998970568 0 0 -1 -4.37113883e-08 0 1.2474277 -15.1919765 -0.487484753 1 ]
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # valve
- ConcatTransform [ 1 -0 0 0 0 0.957302809 -0.289087087 0 -0 0.289087087 0.957302809 0 0.994766235 -27.8183651 0.239135742 1 ]
- AttributeBegin
- # valve
- AttributeBegin
- NamedMaterial "Mat"
- Shape "plymesh" "string filename" "geometry/mesh_00072.ply"
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # tyre_lathe
- ConcatTransform [ -4.37053345e-08 -1 -4.37113883e-08 0 1.19248789e-08 -4.37113883e-08 1 0 -1 4.37053345e-08 1.19248806e-08 0 0.715667725 1.49196625 7.57936859 1 ]
- AttributeBegin
- # tyre_lathe
- AttributeBegin
- NamedMaterial "Mat"
- Shape "plymesh" "string filename" "geometry/mesh_00073.ply"
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # Spline.1
- ConcatTransform [ 0.000631288625 0.999999821 -1.74735135e-07 0 -0.999999821 0.000631288625 -1.749559e-07 0 -1.74845553e-07 1.74845553e-07 1 0 1.50930893 13.2726135 -67.7093506 1 ]
- AttributeBegin
- # Spline.1
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # RIM Lathe NURBS
- ConcatTransform [ -4.37053345e-08 -1 -4.37113883e-08 0 1.19248789e-08 -4.37113883e-08 1 0 -1 4.37053345e-08 1.19248806e-08 0 0.715667725 1.49196625 8.10813141 1 ]
- AttributeBegin
- # RIM Lathe NURBS
- AttributeBegin
- NamedMaterial "Mat.1"
- Shape "plymesh" "string filename" "geometry/mesh_00074.ply"
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # Spline.1
- ConcatTransform [ 0.000631288625 0.999999821 -1.74735135e-07 0 -0.999999821 0.000631288625 -1.749559e-07 0 -1.74845553e-07 1.74845553e-07 1 0 1.50014675 -1.2408905 -67.7093506 1 ]
- AttributeBegin
- # Spline.1
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # Dome Lathe NURBS.1
- ConcatTransform [ -4.37053345e-08 -1 -4.37113883e-08 0 1.19248789e-08 -4.37113883e-08 1 0 -1 4.37053345e-08 1.19248806e-08 0 0.715667725 1.49196625 7.11141205 1 ]
- AttributeBegin
- # Dome Lathe NURBS.1
- AttributeBegin
- NamedMaterial "Metal - Chrome"
- Shape "plymesh" "string filename" "geometry/mesh_00075.ply"
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # Spline.1
- ConcatTransform [ 0.000631288625 0.999999821 -1.74735135e-07 0 -0.999999821 0.000631288625 -1.749559e-07 0 -1.74845553e-07 1.74845553e-07 1 0 -38.8748055 -7.72566986 -67.7093506 1 ]
- AttributeBegin
- # Spline.1
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # Wheel+rim_copies
- ConcatTransform [ 1 -0 0 0 0 1 3.01991605e-07 0 -0 -3.01991605e-07 1 0 190.13562 51.3650398 -134.158646 1 ]
- AttributeBegin
- # Wheel+rim.0
- ConcatTransform [ 1 0 0 0 0 1 0 0 0 0 1 0 -438.690613 -7.3416777e-07 0 1 ]
- AttributeBegin
- # Wheel+rim
- AttributeBegin
- # Array
- ConcatTransform [ 1 0 0 0 0 -4.37113883e-08 -1 0 0 1 -4.37113883e-08 0 0.716629028 0.96824652 1.98828125 1 ]
- AttributeBegin
- # Array
- AttributeBegin
- # Null.60
- ConcatTransform [ 1 0 0 0 0 1 0 0 0 0 1 0 0 0 57 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.59
- ConcatTransform [ 0.994521916 -0 -0.104528464 0 0 1 -0 0 0.104528464 0 0.994521916 0 5.95812225 0 56.687748 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.58
- ConcatTransform [ 0.978147626 -0 -0.207911685 0 0 1 -0 0 0.207911685 0 0.978147626 0 11.8509665 0 55.7544136 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.57
- ConcatTransform [ 0.95105654 -0 -0.309017003 0 0 1 -0 0 0.309017003 0 0.95105654 0 17.6139679 0 54.2102203 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.56
- ConcatTransform [ 0.91354543 -0 -0.406736642 0 0 1 -0 0 0.406736642 0 0.91354543 0 23.1839886 0 52.0720901 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.55
- ConcatTransform [ 0.866025388 -0 -0.5 0 0 1 -0 0 0.5 0 0.866025388 0 28.5 0 49.3634491 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.54
- ConcatTransform [ 0.809017003 -0 -0.587785244 0 0 1 -0 0 0.587785244 0 0.809017003 0 33.5037575 0 46.1139679 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.53
- ConcatTransform [ 0.74314481 -0 -0.669130623 0 0 1 -0 0 0.669130623 0 0.74314481 0 38.1404457 0 42.3592567 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.52
- ConcatTransform [ 0.669130623 -0 -0.74314481 0 0 1 -0 0 0.74314481 0 0.669130623 0 42.3592567 -0 38.1404457 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.51
- ConcatTransform [ 0.587785244 -0 -0.809017003 0 0 1 -0 0 0.809017003 0 0.587785244 0 46.1139679 -0 33.5037575 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.50
- ConcatTransform [ 0.5 -0 -0.866025388 0 0 1 -0 0 0.866025388 0 0.5 0 49.3634491 -0 28.5 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.49
- ConcatTransform [ 0.406736642 -0 -0.91354543 0 0 1 -0 0 0.91354543 0 0.406736642 0 52.0720901 -0 23.1839886 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.48
- ConcatTransform [ 0.309017003 -0 -0.95105654 0 0 1 -0 0 0.95105654 0 0.309017003 0 54.2102203 -0 17.6139679 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.47
- ConcatTransform [ 0.207911685 -0 -0.978147626 0 0 1 -0 0 0.978147626 0 0.207911685 0 55.7544136 -0 11.8509665 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.46
- ConcatTransform [ 0.104528464 -0 -0.994521916 0 0 1 -0 0 0.994521916 0 0.104528464 0 56.687748 -0 5.95812225 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.45
- ConcatTransform [ 6.12323426e-17 -0 -1 0 0 1 -0 0 1 0 6.12323426e-17 0 57 -0 3.4902433e-15 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.44
- ConcatTransform [ -0.104528464 -0 -0.994521916 0 -0 1 0 0 0.994521916 0 -0.104528464 0 56.687748 0 -5.95812225 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.43
- ConcatTransform [ -0.207911685 -0 -0.978147626 0 -0 1 0 0 0.978147626 0 -0.207911685 0 55.7544136 0 -11.8509665 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.42
- ConcatTransform [ -0.309017003 -0 -0.95105654 0 -0 1 0 0 0.95105654 0 -0.309017003 0 54.2102203 0 -17.6139679 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.41
- ConcatTransform [ -0.406736642 -0 -0.91354543 0 -0 1 0 0 0.91354543 0 -0.406736642 0 52.0720901 0 -23.1839886 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.40
- ConcatTransform [ -0.5 -0 -0.866025388 0 -0 1 0 0 0.866025388 0 -0.5 0 49.3634491 0 -28.5 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.39
- ConcatTransform [ -0.587785244 -0 -0.809017003 0 -0 1 0 0 0.809017003 0 -0.587785244 0 46.1139679 0 -33.5037575 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.38
- ConcatTransform [ -0.669130623 -0 -0.74314481 0 -0 1 0 0 0.74314481 0 -0.669130623 0 42.3592567 0 -38.1404457 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.37
- ConcatTransform [ -0.74314481 -0 -0.669130623 0 -0 1 0 0 0.669130623 0 -0.74314481 0 38.1404457 -0 -42.3592567 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.36
- ConcatTransform [ -0.809017003 -0 -0.587785244 0 -0 1 0 0 0.587785244 0 -0.809017003 0 33.5037575 -0 -46.1139679 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.35
- ConcatTransform [ -0.866025388 -0 -0.5 0 -0 1 0 0 0.5 0 -0.866025388 0 28.5 -0 -49.3634491 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.34
- ConcatTransform [ -0.91354543 -0 -0.406736642 0 -0 1 0 0 0.406736642 0 -0.91354543 0 23.1839886 -0 -52.0720901 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.33
- ConcatTransform [ -0.95105654 -0 -0.309017003 0 -0 1 0 0 0.309017003 0 -0.95105654 0 17.6139679 -0 -54.2102203 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.32
- ConcatTransform [ -0.978147626 -0 -0.207911685 0 -0 1 0 0 0.207911685 0 -0.978147626 0 11.8509665 -0 -55.7544136 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.31
- ConcatTransform [ -0.994521916 -0 -0.104528464 0 -0 1 0 0 0.104528464 0 -0.994521916 0 5.95812225 -0 -56.687748 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.30
- ConcatTransform [ -1 -0 -1.22464685e-16 0 -0 1 0 0 1.22464685e-16 0 -1 0 6.98048661e-15 -0 -57 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.29
- ConcatTransform [ -0.994521916 -0 0.104528464 0 0 1 0 0 -0.104528464 0 -0.994521916 0 -5.95812225 0 -56.687748 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.28
- ConcatTransform [ -0.978147626 -0 0.207911685 0 0 1 0 0 -0.207911685 0 -0.978147626 0 -11.8509665 0 -55.7544136 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.27
- ConcatTransform [ -0.95105654 -0 0.309017003 0 0 1 0 0 -0.309017003 0 -0.95105654 0 -17.6139679 0 -54.2102203 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.26
- ConcatTransform [ -0.91354543 -0 0.406736642 0 0 1 0 0 -0.406736642 0 -0.91354543 0 -23.1839886 0 -52.0720901 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.25
- ConcatTransform [ -0.866025388 -0 0.5 0 0 1 0 0 -0.5 0 -0.866025388 0 -28.5 0 -49.3634491 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.24
- ConcatTransform [ -0.809017003 -0 0.587785244 0 0 1 0 0 -0.587785244 0 -0.809017003 0 -33.5037575 0 -46.1139679 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.23
- ConcatTransform [ -0.74314481 -0 0.669130623 0 0 1 0 0 -0.669130623 0 -0.74314481 0 -38.1404457 0 -42.3592567 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.22
- ConcatTransform [ -0.669130623 -0 0.74314481 0 0 1 0 0 -0.74314481 0 -0.669130623 0 -42.3592567 -0 -38.1404457 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.21
- ConcatTransform [ -0.587785244 -0 0.809017003 0 0 1 0 0 -0.809017003 0 -0.587785244 0 -46.1139679 -0 -33.5037575 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.20
- ConcatTransform [ -0.5 -0 0.866025388 0 0 1 0 0 -0.866025388 0 -0.5 0 -49.3634491 -0 -28.5 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.19
- ConcatTransform [ -0.406736642 -0 0.91354543 0 0 1 0 0 -0.91354543 0 -0.406736642 0 -52.0720901 -0 -23.1839886 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.18
- ConcatTransform [ -0.309017003 -0 0.95105654 0 0 1 0 0 -0.95105654 0 -0.309017003 0 -54.2102203 -0 -17.6139679 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.17
- ConcatTransform [ -0.207911685 -0 0.978147626 0 0 1 0 0 -0.978147626 0 -0.207911685 0 -55.7544136 -0 -11.8509665 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.16
- ConcatTransform [ -0.104528464 -0 0.994521916 0 0 1 0 0 -0.994521916 0 -0.104528464 0 -56.687748 -0 -5.95812225 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.15
- ConcatTransform [ -1.83697015e-16 -0 1 0 0 1 0 0 -1 0 -1.83697015e-16 0 -57 -0 -1.04707299e-14 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.14
- ConcatTransform [ 0.104528464 -0 0.994521916 0 0 1 0 0 -0.994521916 0 0.104528464 0 -56.687748 0 5.95812225 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.13
- ConcatTransform [ 0.207911685 -0 0.978147626 0 0 1 0 0 -0.978147626 0 0.207911685 0 -55.7544136 0 11.8509665 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.12
- ConcatTransform [ 0.309017003 -0 0.95105654 0 0 1 0 0 -0.95105654 0 0.309017003 0 -54.2102203 0 17.6139679 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.11
- ConcatTransform [ 0.406736642 -0 0.91354543 0 0 1 0 0 -0.91354543 0 0.406736642 0 -52.0720901 0 23.1839886 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.10
- ConcatTransform [ 0.5 -0 0.866025388 0 0 1 0 0 -0.866025388 0 0.5 0 -49.3634491 0 28.5 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.9
- ConcatTransform [ 0.587785244 -0 0.809017003 0 0 1 0 0 -0.809017003 0 0.587785244 0 -46.1139679 0 33.5037575 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.8
- ConcatTransform [ 0.669130623 -0 0.74314481 0 0 1 0 0 -0.74314481 0 0.669130623 0 -42.3592567 0 38.1404457 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.7
- ConcatTransform [ 0.74314481 -0 0.669130623 0 0 1 0 0 -0.669130623 0 0.74314481 0 -38.1404457 -0 42.3592567 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.6
- ConcatTransform [ 0.809017003 -0 0.587785244 0 0 1 0 0 -0.587785244 0 0.809017003 0 -33.5037575 -0 46.1139679 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.5
- ConcatTransform [ 0.866025388 -0 0.5 0 0 1 0 0 -0.5 0 0.866025388 0 -28.5 -0 49.3634491 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.4
- ConcatTransform [ 0.91354543 -0 0.406736642 0 0 1 0 0 -0.406736642 0 0.91354543 0 -23.1839886 -0 52.0720901 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.3
- ConcatTransform [ 0.95105654 -0 0.309017003 0 0 1 0 0 -0.309017003 0 0.95105654 0 -17.6139679 -0 54.2102203 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.2
- ConcatTransform [ 0.978147626 -0 0.207911685 0 0 1 0 0 -0.207911685 0 0.978147626 0 -11.8509665 -0 55.7544136 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.1
- ConcatTransform [ 0.994521916 -0 0.104528464 0 0 1 0 0 -0.104528464 0 0.994521916 0 -5.95812225 -0 56.687748 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # Null
- ConcatTransform [ 1 0 0 0 0 1 0 0 0 0 1 0 0 2.79130554 0 1 ]
- AttributeBegin
- # Cube
- ConcatTransform [ 1 0 0 0 0 -4.37113883e-08 1 0 0 -1 -4.37113883e-08 0 0 0.292991638 -0.165222287 1 ]
- AttributeEnd
- AttributeBegin
- # Cube
- ConcatTransform [ 0.998970568 1.98287875e-09 -0.0453629754 0 0.0453629754 -4.36663932e-08 0.998970568 0 0 -1 -4.37113883e-08 0 -3.38286328 -3.67646885 -0.277225435 1 ]
- AttributeEnd
- AttributeBegin
- # Cube.1
- ConcatTransform [ 0.998970568 1.98287875e-09 -0.0453629754 0 0.0453629754 -4.36663932e-08 0.998970568 0 0 -1 -4.37113883e-08 0 0.326629639 -7.52659464 -0.445672184 1 ]
- AttributeEnd
- AttributeBegin
- # Cube.1
- ConcatTransform [ 0.998970568 1.98287875e-09 -0.0453629754 0 0.0453629754 -4.36663932e-08 0.998970568 0 0 -1 -4.37113883e-08 0 -3.27911162 -11.4200439 -0.281936169 1 ]
- AttributeEnd
- AttributeBegin
- # Cube.2
- ConcatTransform [ 0.998970568 1.98287875e-09 -0.0453629754 0 0.0453629754 -4.36663932e-08 0.998970568 0 0 -1 -4.37113883e-08 0 1.2474277 -15.1919765 -0.487484753 1 ]
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # valve
- ConcatTransform [ 1 -0 0 0 0 0.957302809 -0.289087087 0 -0 0.289087087 0.957302809 0 0.994766235 -27.8183651 0.239135742 1 ]
- AttributeBegin
- # valve
- AttributeBegin
- NamedMaterial "Mat"
- Shape "plymesh" "string filename" "geometry/mesh_00076.ply"
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # tyre_lathe
- ConcatTransform [ -4.37053345e-08 -1 -4.37113883e-08 0 1.19248789e-08 -4.37113883e-08 1 0 -1 4.37053345e-08 1.19248806e-08 0 0.715667725 1.49196625 7.57936859 1 ]
- AttributeBegin
- # tyre_lathe
- AttributeBegin
- NamedMaterial "Mat"
- Shape "plymesh" "string filename" "geometry/mesh_00077.ply"
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # Spline.1
- ConcatTransform [ 0.000631288625 0.999999821 -1.74735135e-07 0 -0.999999821 0.000631288625 -1.749559e-07 0 -1.74845553e-07 1.74845553e-07 1 0 1.50930893 13.2726135 -67.7093506 1 ]
- AttributeBegin
- # Spline.1
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # RIM Lathe NURBS
- ConcatTransform [ -4.37053345e-08 -1 -4.37113883e-08 0 1.19248789e-08 -4.37113883e-08 1 0 -1 4.37053345e-08 1.19248806e-08 0 0.715667725 1.49196625 8.10813141 1 ]
- AttributeBegin
- # RIM Lathe NURBS
- AttributeBegin
- NamedMaterial "Mat.1"
- Shape "plymesh" "string filename" "geometry/mesh_00078.ply"
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # Spline.1
- ConcatTransform [ 0.000631288625 0.999999821 -1.74735135e-07 0 -0.999999821 0.000631288625 -1.749559e-07 0 -1.74845553e-07 1.74845553e-07 1 0 1.50014675 -1.2408905 -67.7093506 1 ]
- AttributeBegin
- # Spline.1
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # Dome Lathe NURBS.1
- ConcatTransform [ -4.37053345e-08 -1 -4.37113883e-08 0 1.19248789e-08 -4.37113883e-08 1 0 -1 4.37053345e-08 1.19248806e-08 0 0.715667725 1.49196625 7.11141205 1 ]
- AttributeBegin
- # Dome Lathe NURBS.1
- AttributeBegin
- NamedMaterial "Metal - Chrome"
- Shape "plymesh" "string filename" "geometry/mesh_00079.ply"
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # Spline.1
- ConcatTransform [ 0.000631288625 0.999999821 -1.74735135e-07 0 -0.999999821 0.000631288625 -1.749559e-07 0 -1.74845553e-07 1.74845553e-07 1 0 -38.8748055 -7.72566986 -67.7093506 1 ]
- AttributeBegin
- # Spline.1
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # Wheel+rim.1
- ConcatTransform [ -1 -0 -8.74227766e-08 0 -0 1 0 0 8.74227766e-08 0 -1 0 0.633577526 -3.29377144e-07 267.517212 1 ]
- AttributeBegin
- # Wheel+rim
- AttributeBegin
- # Array
- ConcatTransform [ 1 0 0 0 0 -4.37113883e-08 -1 0 0 1 -4.37113883e-08 0 0.716629028 0.96824652 1.98828125 1 ]
- AttributeBegin
- # Array
- AttributeBegin
- # Null.60
- ConcatTransform [ 1 0 0 0 0 1 0 0 0 0 1 0 0 0 57 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.59
- ConcatTransform [ 0.994521916 -0 -0.104528464 0 0 1 -0 0 0.104528464 0 0.994521916 0 5.95812225 0 56.687748 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.58
- ConcatTransform [ 0.978147626 -0 -0.207911685 0 0 1 -0 0 0.207911685 0 0.978147626 0 11.8509665 0 55.7544136 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.57
- ConcatTransform [ 0.95105654 -0 -0.309017003 0 0 1 -0 0 0.309017003 0 0.95105654 0 17.6139679 0 54.2102203 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.56
- ConcatTransform [ 0.91354543 -0 -0.406736642 0 0 1 -0 0 0.406736642 0 0.91354543 0 23.1839886 0 52.0720901 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.55
- ConcatTransform [ 0.866025388 -0 -0.5 0 0 1 -0 0 0.5 0 0.866025388 0 28.5 0 49.3634491 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.54
- ConcatTransform [ 0.809017003 -0 -0.587785244 0 0 1 -0 0 0.587785244 0 0.809017003 0 33.5037575 0 46.1139679 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.53
- ConcatTransform [ 0.74314481 -0 -0.669130623 0 0 1 -0 0 0.669130623 0 0.74314481 0 38.1404457 0 42.3592567 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.52
- ConcatTransform [ 0.669130623 -0 -0.74314481 0 0 1 -0 0 0.74314481 0 0.669130623 0 42.3592567 -0 38.1404457 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.51
- ConcatTransform [ 0.587785244 -0 -0.809017003 0 0 1 -0 0 0.809017003 0 0.587785244 0 46.1139679 -0 33.5037575 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.50
- ConcatTransform [ 0.5 -0 -0.866025388 0 0 1 -0 0 0.866025388 0 0.5 0 49.3634491 -0 28.5 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.49
- ConcatTransform [ 0.406736642 -0 -0.91354543 0 0 1 -0 0 0.91354543 0 0.406736642 0 52.0720901 -0 23.1839886 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.48
- ConcatTransform [ 0.309017003 -0 -0.95105654 0 0 1 -0 0 0.95105654 0 0.309017003 0 54.2102203 -0 17.6139679 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.47
- ConcatTransform [ 0.207911685 -0 -0.978147626 0 0 1 -0 0 0.978147626 0 0.207911685 0 55.7544136 -0 11.8509665 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.46
- ConcatTransform [ 0.104528464 -0 -0.994521916 0 0 1 -0 0 0.994521916 0 0.104528464 0 56.687748 -0 5.95812225 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.45
- ConcatTransform [ 6.12323426e-17 -0 -1 0 0 1 -0 0 1 0 6.12323426e-17 0 57 -0 3.4902433e-15 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.44
- ConcatTransform [ -0.104528464 -0 -0.994521916 0 -0 1 0 0 0.994521916 0 -0.104528464 0 56.687748 0 -5.95812225 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.43
- ConcatTransform [ -0.207911685 -0 -0.978147626 0 -0 1 0 0 0.978147626 0 -0.207911685 0 55.7544136 0 -11.8509665 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.42
- ConcatTransform [ -0.309017003 -0 -0.95105654 0 -0 1 0 0 0.95105654 0 -0.309017003 0 54.2102203 0 -17.6139679 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.41
- ConcatTransform [ -0.406736642 -0 -0.91354543 0 -0 1 0 0 0.91354543 0 -0.406736642 0 52.0720901 0 -23.1839886 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.40
- ConcatTransform [ -0.5 -0 -0.866025388 0 -0 1 0 0 0.866025388 0 -0.5 0 49.3634491 0 -28.5 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.39
- ConcatTransform [ -0.587785244 -0 -0.809017003 0 -0 1 0 0 0.809017003 0 -0.587785244 0 46.1139679 0 -33.5037575 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.38
- ConcatTransform [ -0.669130623 -0 -0.74314481 0 -0 1 0 0 0.74314481 0 -0.669130623 0 42.3592567 0 -38.1404457 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.37
- ConcatTransform [ -0.74314481 -0 -0.669130623 0 -0 1 0 0 0.669130623 0 -0.74314481 0 38.1404457 -0 -42.3592567 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.36
- ConcatTransform [ -0.809017003 -0 -0.587785244 0 -0 1 0 0 0.587785244 0 -0.809017003 0 33.5037575 -0 -46.1139679 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.35
- ConcatTransform [ -0.866025388 -0 -0.5 0 -0 1 0 0 0.5 0 -0.866025388 0 28.5 -0 -49.3634491 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.34
- ConcatTransform [ -0.91354543 -0 -0.406736642 0 -0 1 0 0 0.406736642 0 -0.91354543 0 23.1839886 -0 -52.0720901 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.33
- ConcatTransform [ -0.95105654 -0 -0.309017003 0 -0 1 0 0 0.309017003 0 -0.95105654 0 17.6139679 -0 -54.2102203 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.32
- ConcatTransform [ -0.978147626 -0 -0.207911685 0 -0 1 0 0 0.207911685 0 -0.978147626 0 11.8509665 -0 -55.7544136 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.31
- ConcatTransform [ -0.994521916 -0 -0.104528464 0 -0 1 0 0 0.104528464 0 -0.994521916 0 5.95812225 -0 -56.687748 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.30
- ConcatTransform [ -1 -0 -1.22464685e-16 0 -0 1 0 0 1.22464685e-16 0 -1 0 6.98048661e-15 -0 -57 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.29
- ConcatTransform [ -0.994521916 -0 0.104528464 0 0 1 0 0 -0.104528464 0 -0.994521916 0 -5.95812225 0 -56.687748 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.28
- ConcatTransform [ -0.978147626 -0 0.207911685 0 0 1 0 0 -0.207911685 0 -0.978147626 0 -11.8509665 0 -55.7544136 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.27
- ConcatTransform [ -0.95105654 -0 0.309017003 0 0 1 0 0 -0.309017003 0 -0.95105654 0 -17.6139679 0 -54.2102203 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.26
- ConcatTransform [ -0.91354543 -0 0.406736642 0 0 1 0 0 -0.406736642 0 -0.91354543 0 -23.1839886 0 -52.0720901 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.25
- ConcatTransform [ -0.866025388 -0 0.5 0 0 1 0 0 -0.5 0 -0.866025388 0 -28.5 0 -49.3634491 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.24
- ConcatTransform [ -0.809017003 -0 0.587785244 0 0 1 0 0 -0.587785244 0 -0.809017003 0 -33.5037575 0 -46.1139679 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.23
- ConcatTransform [ -0.74314481 -0 0.669130623 0 0 1 0 0 -0.669130623 0 -0.74314481 0 -38.1404457 0 -42.3592567 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.22
- ConcatTransform [ -0.669130623 -0 0.74314481 0 0 1 0 0 -0.74314481 0 -0.669130623 0 -42.3592567 -0 -38.1404457 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.21
- ConcatTransform [ -0.587785244 -0 0.809017003 0 0 1 0 0 -0.809017003 0 -0.587785244 0 -46.1139679 -0 -33.5037575 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.20
- ConcatTransform [ -0.5 -0 0.866025388 0 0 1 0 0 -0.866025388 0 -0.5 0 -49.3634491 -0 -28.5 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.19
- ConcatTransform [ -0.406736642 -0 0.91354543 0 0 1 0 0 -0.91354543 0 -0.406736642 0 -52.0720901 -0 -23.1839886 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.18
- ConcatTransform [ -0.309017003 -0 0.95105654 0 0 1 0 0 -0.95105654 0 -0.309017003 0 -54.2102203 -0 -17.6139679 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.17
- ConcatTransform [ -0.207911685 -0 0.978147626 0 0 1 0 0 -0.978147626 0 -0.207911685 0 -55.7544136 -0 -11.8509665 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.16
- ConcatTransform [ -0.104528464 -0 0.994521916 0 0 1 0 0 -0.994521916 0 -0.104528464 0 -56.687748 -0 -5.95812225 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.15
- ConcatTransform [ -1.83697015e-16 -0 1 0 0 1 0 0 -1 0 -1.83697015e-16 0 -57 -0 -1.04707299e-14 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.14
- ConcatTransform [ 0.104528464 -0 0.994521916 0 0 1 0 0 -0.994521916 0 0.104528464 0 -56.687748 0 5.95812225 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.13
- ConcatTransform [ 0.207911685 -0 0.978147626 0 0 1 0 0 -0.978147626 0 0.207911685 0 -55.7544136 0 11.8509665 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.12
- ConcatTransform [ 0.309017003 -0 0.95105654 0 0 1 0 0 -0.95105654 0 0.309017003 0 -54.2102203 0 17.6139679 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.11
- ConcatTransform [ 0.406736642 -0 0.91354543 0 0 1 0 0 -0.91354543 0 0.406736642 0 -52.0720901 0 23.1839886 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.10
- ConcatTransform [ 0.5 -0 0.866025388 0 0 1 0 0 -0.866025388 0 0.5 0 -49.3634491 0 28.5 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.9
- ConcatTransform [ 0.587785244 -0 0.809017003 0 0 1 0 0 -0.809017003 0 0.587785244 0 -46.1139679 0 33.5037575 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.8
- ConcatTransform [ 0.669130623 -0 0.74314481 0 0 1 0 0 -0.74314481 0 0.669130623 0 -42.3592567 0 38.1404457 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.7
- ConcatTransform [ 0.74314481 -0 0.669130623 0 0 1 0 0 -0.669130623 0 0.74314481 0 -38.1404457 -0 42.3592567 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.6
- ConcatTransform [ 0.809017003 -0 0.587785244 0 0 1 0 0 -0.587785244 0 0.809017003 0 -33.5037575 -0 46.1139679 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.5
- ConcatTransform [ 0.866025388 -0 0.5 0 0 1 0 0 -0.5 0 0.866025388 0 -28.5 -0 49.3634491 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.4
- ConcatTransform [ 0.91354543 -0 0.406736642 0 0 1 0 0 -0.406736642 0 0.91354543 0 -23.1839886 -0 52.0720901 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.3
- ConcatTransform [ 0.95105654 -0 0.309017003 0 0 1 0 0 -0.309017003 0 0.95105654 0 -17.6139679 -0 54.2102203 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.2
- ConcatTransform [ 0.978147626 -0 0.207911685 0 0 1 0 0 -0.207911685 0 0.978147626 0 -11.8509665 -0 55.7544136 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.1
- ConcatTransform [ 0.994521916 -0 0.104528464 0 0 1 0 0 -0.104528464 0 0.994521916 0 -5.95812225 -0 56.687748 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # Null
- ConcatTransform [ 1 0 0 0 0 1 0 0 0 0 1 0 0 2.79130554 0 1 ]
- AttributeBegin
- # Cube
- ConcatTransform [ 1 0 0 0 0 -4.37113883e-08 1 0 0 -1 -4.37113883e-08 0 0 0.292991638 -0.165222287 1 ]
- AttributeEnd
- AttributeBegin
- # Cube
- ConcatTransform [ 0.998970568 1.98287875e-09 -0.0453629754 0 0.0453629754 -4.36663932e-08 0.998970568 0 0 -1 -4.37113883e-08 0 -3.38286328 -3.67646885 -0.277225435 1 ]
- AttributeEnd
- AttributeBegin
- # Cube.1
- ConcatTransform [ 0.998970568 1.98287875e-09 -0.0453629754 0 0.0453629754 -4.36663932e-08 0.998970568 0 0 -1 -4.37113883e-08 0 0.326629639 -7.52659464 -0.445672184 1 ]
- AttributeEnd
- AttributeBegin
- # Cube.1
- ConcatTransform [ 0.998970568 1.98287875e-09 -0.0453629754 0 0.0453629754 -4.36663932e-08 0.998970568 0 0 -1 -4.37113883e-08 0 -3.27911162 -11.4200439 -0.281936169 1 ]
- AttributeEnd
- AttributeBegin
- # Cube.2
- ConcatTransform [ 0.998970568 1.98287875e-09 -0.0453629754 0 0.0453629754 -4.36663932e-08 0.998970568 0 0 -1 -4.37113883e-08 0 1.2474277 -15.1919765 -0.487484753 1 ]
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # valve
- ConcatTransform [ 1 -0 0 0 0 0.957302809 -0.289087087 0 -0 0.289087087 0.957302809 0 0.994766235 -27.8183651 0.239135742 1 ]
- AttributeBegin
- # valve
- AttributeBegin
- NamedMaterial "Mat"
- Shape "plymesh" "string filename" "geometry/mesh_00080.ply"
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # tyre_lathe
- ConcatTransform [ -4.37053345e-08 -1 -4.37113883e-08 0 1.19248789e-08 -4.37113883e-08 1 0 -1 4.37053345e-08 1.19248806e-08 0 0.715667725 1.49196625 7.57936859 1 ]
- AttributeBegin
- # tyre_lathe
- AttributeBegin
- NamedMaterial "Mat"
- Shape "plymesh" "string filename" "geometry/mesh_00081.ply"
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # Spline.1
- ConcatTransform [ 0.000631288625 0.999999821 -1.74735135e-07 0 -0.999999821 0.000631288625 -1.749559e-07 0 -1.74845553e-07 1.74845553e-07 1 0 1.50930893 13.2726135 -67.7093506 1 ]
- AttributeBegin
- # Spline.1
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # RIM Lathe NURBS
- ConcatTransform [ -4.37053345e-08 -1 -4.37113883e-08 0 1.19248789e-08 -4.37113883e-08 1 0 -1 4.37053345e-08 1.19248806e-08 0 0.715667725 1.49196625 8.10813141 1 ]
- AttributeBegin
- # RIM Lathe NURBS
- AttributeBegin
- NamedMaterial "Mat.1"
- Shape "plymesh" "string filename" "geometry/mesh_00082.ply"
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # Spline.1
- ConcatTransform [ 0.000631288625 0.999999821 -1.74735135e-07 0 -0.999999821 0.000631288625 -1.749559e-07 0 -1.74845553e-07 1.74845553e-07 1 0 1.50014675 -1.2408905 -67.7093506 1 ]
- AttributeBegin
- # Spline.1
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # Dome Lathe NURBS.1
- ConcatTransform [ -4.37053345e-08 -1 -4.37113883e-08 0 1.19248789e-08 -4.37113883e-08 1 0 -1 4.37053345e-08 1.19248806e-08 0 0.715667725 1.49196625 7.11141205 1 ]
- AttributeBegin
- # Dome Lathe NURBS.1
- AttributeBegin
- NamedMaterial "Metal - Chrome"
- Shape "plymesh" "string filename" "geometry/mesh_00083.ply"
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # Spline.1
- ConcatTransform [ 0.000631288625 0.999999821 -1.74735135e-07 0 -0.999999821 0.000631288625 -1.749559e-07 0 -1.74845553e-07 1.74845553e-07 1 0 -38.8748055 -7.72566986 -67.7093506 1 ]
- AttributeBegin
- # Spline.1
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # Wheel+rim.2
- ConcatTransform [ -1 -0 -3.89414367e-07 0 -0 1 0 0 3.89414367e-07 0 -1 0 -438.439087 -1.20858931e-06 267.468964 1 ]
- AttributeBegin
- # Wheel+rim
- AttributeBegin
- # Array
- ConcatTransform [ 1 0 0 0 0 -4.37113883e-08 -1 0 0 1 -4.37113883e-08 0 0.716629028 0.96824652 1.98828125 1 ]
- AttributeBegin
- # Array
- AttributeBegin
- # Null.60
- ConcatTransform [ 1 0 0 0 0 1 0 0 0 0 1 0 0 0 57 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.59
- ConcatTransform [ 0.994521916 -0 -0.104528464 0 0 1 -0 0 0.104528464 0 0.994521916 0 5.95812225 0 56.687748 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.58
- ConcatTransform [ 0.978147626 -0 -0.207911685 0 0 1 -0 0 0.207911685 0 0.978147626 0 11.8509665 0 55.7544136 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.57
- ConcatTransform [ 0.95105654 -0 -0.309017003 0 0 1 -0 0 0.309017003 0 0.95105654 0 17.6139679 0 54.2102203 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.56
- ConcatTransform [ 0.91354543 -0 -0.406736642 0 0 1 -0 0 0.406736642 0 0.91354543 0 23.1839886 0 52.0720901 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.55
- ConcatTransform [ 0.866025388 -0 -0.5 0 0 1 -0 0 0.5 0 0.866025388 0 28.5 0 49.3634491 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.54
- ConcatTransform [ 0.809017003 -0 -0.587785244 0 0 1 -0 0 0.587785244 0 0.809017003 0 33.5037575 0 46.1139679 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.53
- ConcatTransform [ 0.74314481 -0 -0.669130623 0 0 1 -0 0 0.669130623 0 0.74314481 0 38.1404457 0 42.3592567 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.52
- ConcatTransform [ 0.669130623 -0 -0.74314481 0 0 1 -0 0 0.74314481 0 0.669130623 0 42.3592567 -0 38.1404457 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.51
- ConcatTransform [ 0.587785244 -0 -0.809017003 0 0 1 -0 0 0.809017003 0 0.587785244 0 46.1139679 -0 33.5037575 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.50
- ConcatTransform [ 0.5 -0 -0.866025388 0 0 1 -0 0 0.866025388 0 0.5 0 49.3634491 -0 28.5 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.49
- ConcatTransform [ 0.406736642 -0 -0.91354543 0 0 1 -0 0 0.91354543 0 0.406736642 0 52.0720901 -0 23.1839886 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.48
- ConcatTransform [ 0.309017003 -0 -0.95105654 0 0 1 -0 0 0.95105654 0 0.309017003 0 54.2102203 -0 17.6139679 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.47
- ConcatTransform [ 0.207911685 -0 -0.978147626 0 0 1 -0 0 0.978147626 0 0.207911685 0 55.7544136 -0 11.8509665 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.46
- ConcatTransform [ 0.104528464 -0 -0.994521916 0 0 1 -0 0 0.994521916 0 0.104528464 0 56.687748 -0 5.95812225 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.45
- ConcatTransform [ 6.12323426e-17 -0 -1 0 0 1 -0 0 1 0 6.12323426e-17 0 57 -0 3.4902433e-15 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.44
- ConcatTransform [ -0.104528464 -0 -0.994521916 0 -0 1 0 0 0.994521916 0 -0.104528464 0 56.687748 0 -5.95812225 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.43
- ConcatTransform [ -0.207911685 -0 -0.978147626 0 -0 1 0 0 0.978147626 0 -0.207911685 0 55.7544136 0 -11.8509665 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.42
- ConcatTransform [ -0.309017003 -0 -0.95105654 0 -0 1 0 0 0.95105654 0 -0.309017003 0 54.2102203 0 -17.6139679 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.41
- ConcatTransform [ -0.406736642 -0 -0.91354543 0 -0 1 0 0 0.91354543 0 -0.406736642 0 52.0720901 0 -23.1839886 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.40
- ConcatTransform [ -0.5 -0 -0.866025388 0 -0 1 0 0 0.866025388 0 -0.5 0 49.3634491 0 -28.5 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.39
- ConcatTransform [ -0.587785244 -0 -0.809017003 0 -0 1 0 0 0.809017003 0 -0.587785244 0 46.1139679 0 -33.5037575 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.38
- ConcatTransform [ -0.669130623 -0 -0.74314481 0 -0 1 0 0 0.74314481 0 -0.669130623 0 42.3592567 0 -38.1404457 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.37
- ConcatTransform [ -0.74314481 -0 -0.669130623 0 -0 1 0 0 0.669130623 0 -0.74314481 0 38.1404457 -0 -42.3592567 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.36
- ConcatTransform [ -0.809017003 -0 -0.587785244 0 -0 1 0 0 0.587785244 0 -0.809017003 0 33.5037575 -0 -46.1139679 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.35
- ConcatTransform [ -0.866025388 -0 -0.5 0 -0 1 0 0 0.5 0 -0.866025388 0 28.5 -0 -49.3634491 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.34
- ConcatTransform [ -0.91354543 -0 -0.406736642 0 -0 1 0 0 0.406736642 0 -0.91354543 0 23.1839886 -0 -52.0720901 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.33
- ConcatTransform [ -0.95105654 -0 -0.309017003 0 -0 1 0 0 0.309017003 0 -0.95105654 0 17.6139679 -0 -54.2102203 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.32
- ConcatTransform [ -0.978147626 -0 -0.207911685 0 -0 1 0 0 0.207911685 0 -0.978147626 0 11.8509665 -0 -55.7544136 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.31
- ConcatTransform [ -0.994521916 -0 -0.104528464 0 -0 1 0 0 0.104528464 0 -0.994521916 0 5.95812225 -0 -56.687748 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.30
- ConcatTransform [ -1 -0 -1.22464685e-16 0 -0 1 0 0 1.22464685e-16 0 -1 0 6.98048661e-15 -0 -57 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.29
- ConcatTransform [ -0.994521916 -0 0.104528464 0 0 1 0 0 -0.104528464 0 -0.994521916 0 -5.95812225 0 -56.687748 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.28
- ConcatTransform [ -0.978147626 -0 0.207911685 0 0 1 0 0 -0.207911685 0 -0.978147626 0 -11.8509665 0 -55.7544136 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.27
- ConcatTransform [ -0.95105654 -0 0.309017003 0 0 1 0 0 -0.309017003 0 -0.95105654 0 -17.6139679 0 -54.2102203 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.26
- ConcatTransform [ -0.91354543 -0 0.406736642 0 0 1 0 0 -0.406736642 0 -0.91354543 0 -23.1839886 0 -52.0720901 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.25
- ConcatTransform [ -0.866025388 -0 0.5 0 0 1 0 0 -0.5 0 -0.866025388 0 -28.5 0 -49.3634491 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.24
- ConcatTransform [ -0.809017003 -0 0.587785244 0 0 1 0 0 -0.587785244 0 -0.809017003 0 -33.5037575 0 -46.1139679 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.23
- ConcatTransform [ -0.74314481 -0 0.669130623 0 0 1 0 0 -0.669130623 0 -0.74314481 0 -38.1404457 0 -42.3592567 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.22
- ConcatTransform [ -0.669130623 -0 0.74314481 0 0 1 0 0 -0.74314481 0 -0.669130623 0 -42.3592567 -0 -38.1404457 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.21
- ConcatTransform [ -0.587785244 -0 0.809017003 0 0 1 0 0 -0.809017003 0 -0.587785244 0 -46.1139679 -0 -33.5037575 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.20
- ConcatTransform [ -0.5 -0 0.866025388 0 0 1 0 0 -0.866025388 0 -0.5 0 -49.3634491 -0 -28.5 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.19
- ConcatTransform [ -0.406736642 -0 0.91354543 0 0 1 0 0 -0.91354543 0 -0.406736642 0 -52.0720901 -0 -23.1839886 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.18
- ConcatTransform [ -0.309017003 -0 0.95105654 0 0 1 0 0 -0.95105654 0 -0.309017003 0 -54.2102203 -0 -17.6139679 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.17
- ConcatTransform [ -0.207911685 -0 0.978147626 0 0 1 0 0 -0.978147626 0 -0.207911685 0 -55.7544136 -0 -11.8509665 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.16
- ConcatTransform [ -0.104528464 -0 0.994521916 0 0 1 0 0 -0.994521916 0 -0.104528464 0 -56.687748 -0 -5.95812225 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.15
- ConcatTransform [ -1.83697015e-16 -0 1 0 0 1 0 0 -1 0 -1.83697015e-16 0 -57 -0 -1.04707299e-14 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.14
- ConcatTransform [ 0.104528464 -0 0.994521916 0 0 1 0 0 -0.994521916 0 0.104528464 0 -56.687748 0 5.95812225 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.13
- ConcatTransform [ 0.207911685 -0 0.978147626 0 0 1 0 0 -0.978147626 0 0.207911685 0 -55.7544136 0 11.8509665 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.12
- ConcatTransform [ 0.309017003 -0 0.95105654 0 0 1 0 0 -0.95105654 0 0.309017003 0 -54.2102203 0 17.6139679 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.11
- ConcatTransform [ 0.406736642 -0 0.91354543 0 0 1 0 0 -0.91354543 0 0.406736642 0 -52.0720901 0 23.1839886 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.10
- ConcatTransform [ 0.5 -0 0.866025388 0 0 1 0 0 -0.866025388 0 0.5 0 -49.3634491 0 28.5 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.9
- ConcatTransform [ 0.587785244 -0 0.809017003 0 0 1 0 0 -0.809017003 0 0.587785244 0 -46.1139679 0 33.5037575 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.8
- ConcatTransform [ 0.669130623 -0 0.74314481 0 0 1 0 0 -0.74314481 0 0.669130623 0 -42.3592567 0 38.1404457 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.7
- ConcatTransform [ 0.74314481 -0 0.669130623 0 0 1 0 0 -0.669130623 0 0.74314481 0 -38.1404457 -0 42.3592567 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.6
- ConcatTransform [ 0.809017003 -0 0.587785244 0 0 1 0 0 -0.587785244 0 0.809017003 0 -33.5037575 -0 46.1139679 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.5
- ConcatTransform [ 0.866025388 -0 0.5 0 0 1 0 0 -0.5 0 0.866025388 0 -28.5 -0 49.3634491 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.4
- ConcatTransform [ 0.91354543 -0 0.406736642 0 0 1 0 0 -0.406736642 0 0.91354543 0 -23.1839886 -0 52.0720901 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.3
- ConcatTransform [ 0.95105654 -0 0.309017003 0 0 1 0 0 -0.309017003 0 0.95105654 0 -17.6139679 -0 54.2102203 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.2
- ConcatTransform [ 0.978147626 -0 0.207911685 0 0 1 0 0 -0.207911685 0 0.978147626 0 -11.8509665 -0 55.7544136 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeBegin
- # Null.1
- ConcatTransform [ 0.994521916 -0 0.104528464 0 0 1 0 0 -0.104528464 0 0.994521916 0 -5.95812225 -0 56.687748 1 ]
- ObjectInstance "Null.60"
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # Null
- ConcatTransform [ 1 0 0 0 0 1 0 0 0 0 1 0 0 2.79130554 0 1 ]
- AttributeBegin
- # Cube
- ConcatTransform [ 1 0 0 0 0 -4.37113883e-08 1 0 0 -1 -4.37113883e-08 0 0 0.292991638 -0.165222287 1 ]
- AttributeEnd
- AttributeBegin
- # Cube
- ConcatTransform [ 0.998970568 1.98287875e-09 -0.0453629754 0 0.0453629754 -4.36663932e-08 0.998970568 0 0 -1 -4.37113883e-08 0 -3.38286328 -3.67646885 -0.277225435 1 ]
- AttributeEnd
- AttributeBegin
- # Cube.1
- ConcatTransform [ 0.998970568 1.98287875e-09 -0.0453629754 0 0.0453629754 -4.36663932e-08 0.998970568 0 0 -1 -4.37113883e-08 0 0.326629639 -7.52659464 -0.445672184 1 ]
- AttributeEnd
- AttributeBegin
- # Cube.1
- ConcatTransform [ 0.998970568 1.98287875e-09 -0.0453629754 0 0.0453629754 -4.36663932e-08 0.998970568 0 0 -1 -4.37113883e-08 0 -3.27911162 -11.4200439 -0.281936169 1 ]
- AttributeEnd
- AttributeBegin
- # Cube.2
- ConcatTransform [ 0.998970568 1.98287875e-09 -0.0453629754 0 0.0453629754 -4.36663932e-08 0.998970568 0 0 -1 -4.37113883e-08 0 1.2474277 -15.1919765 -0.487484753 1 ]
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # valve
- ConcatTransform [ 1 -0 0 0 0 0.957302809 -0.289087087 0 -0 0.289087087 0.957302809 0 0.994766235 -27.8183651 0.239135742 1 ]
- AttributeBegin
- # valve
- AttributeBegin
- NamedMaterial "Mat"
- Shape "plymesh" "string filename" "geometry/mesh_00084.ply"
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # tyre_lathe
- ConcatTransform [ -4.37053345e-08 -1 -4.37113883e-08 0 1.19248789e-08 -4.37113883e-08 1 0 -1 4.37053345e-08 1.19248806e-08 0 0.715667725 1.49196625 7.57936859 1 ]
- AttributeBegin
- # tyre_lathe
- AttributeBegin
- NamedMaterial "Mat"
- Shape "plymesh" "string filename" "geometry/mesh_00085.ply"
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # Spline.1
- ConcatTransform [ 0.000631288625 0.999999821 -1.74735135e-07 0 -0.999999821 0.000631288625 -1.749559e-07 0 -1.74845553e-07 1.74845553e-07 1 0 1.50930893 13.2726135 -67.7093506 1 ]
- AttributeBegin
- # Spline.1
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # RIM Lathe NURBS
- ConcatTransform [ -4.37053345e-08 -1 -4.37113883e-08 0 1.19248789e-08 -4.37113883e-08 1 0 -1 4.37053345e-08 1.19248806e-08 0 0.715667725 1.49196625 8.10813141 1 ]
- AttributeBegin
- # RIM Lathe NURBS
- AttributeBegin
- NamedMaterial "Mat.1"
- Shape "plymesh" "string filename" "geometry/mesh_00086.ply"
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # Spline.1
- ConcatTransform [ 0.000631288625 0.999999821 -1.74735135e-07 0 -0.999999821 0.000631288625 -1.749559e-07 0 -1.74845553e-07 1.74845553e-07 1 0 1.50014675 -1.2408905 -67.7093506 1 ]
- AttributeBegin
- # Spline.1
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # Dome Lathe NURBS.1
- ConcatTransform [ -4.37053345e-08 -1 -4.37113883e-08 0 1.19248789e-08 -4.37113883e-08 1 0 -1 4.37053345e-08 1.19248806e-08 0 0.715667725 1.49196625 7.11141205 1 ]
- AttributeBegin
- # Dome Lathe NURBS.1
- AttributeBegin
- NamedMaterial "Metal - Chrome"
- Shape "plymesh" "string filename" "geometry/mesh_00087.ply"
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # Spline.1
- ConcatTransform [ 0.000631288625 0.999999821 -1.74735135e-07 0 -0.999999821 0.000631288625 -1.749559e-07 0 -1.74845553e-07 1.74845553e-07 1 0 -38.8748055 -7.72566986 -67.7093506 1 ]
- AttributeBegin
- # Spline.1
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # frontwindscreen
- AttributeBegin
- # Null
- AttributeBegin
- # frglass
- ConcatTransform [ 0.427072436 -0.896556199 -0.117458098 0 0.864457369 0.442930311 -0.237752855 0 0.265184492 1.74845553e-07 0.964197695 0 298.098877 262.900879 -56.4514046 1 ]
- AttributeBegin
- NamedMaterial "Glass-Simple"
- Shape "plymesh" "string filename" "geometry/mesh_00088.ply"
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # front screenrubber
- ConcatTransform [ 0.0539820269 0.0641394928 -0.996480703 0 -0.0137327062 0.997888565 0.0634861737 0 0.998448193 0.010257259 0.0547488295 0 246.515869 505.700867 -130.735519 1 ]
- AttributeBegin
- NamedMaterial "Mat"
- Shape "plymesh" "string filename" "geometry/mesh_00089.ply"
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # Null
- AttributeBegin
- # frglass
- ConcatTransform [ 0.427072436 -0.896556199 -0.117458098 0 0.864457369 0.442930311 -0.237752855 0 0.265184492 1.74845553e-07 0.964197695 0 298.098877 262.900879 -56.4514046 1 ]
- AttributeEnd
- AttributeBegin
- # front screenrubber
- ConcatTransform [ 0.0539820269 0.0641394928 -0.996480703 0 -0.0137327062 0.997888565 0.0634861737 0 0.998448193 0.010257259 0.0547488295 0 246.515869 505.700867 -130.735519 1 ]
- AttributeBegin
- # front screenrubber
- AttributeEnd
- AttributeBegin
- # Circle
- ConcatTransform [ 0.0634929687 0.997642517 0.0260430407 0 0.986502886 -0.0666879341 0.14954935 0 0.150933504 0.0161961988 -0.988411248 0 -2.72914124 281.236511 -203.619125 1 ]
- AttributeBegin
- # Circle
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # body.Spline
- ConcatTransform [ 0.0539819412 -0.0137326987 0.998446763 0 0.0641394556 0.99788779 0.0102572525 0 -0.996479034 0.0634861439 0.0547487438 0 -68.4830627 -318.403412 55.6185303 1 ]
- AttributeBegin
- # body.Spline
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # LF_ellipse headlight
- AttributeBegin
- # lampfitting
- ConcatTransform [ 1.00000012 3.01991633e-07 -3.0199169e-07 0 -3.01991633e-07 0.999999881 -1.74845439e-07 0 3.01991605e-07 1.74845553e-07 1 0 327.250916 132.413895 100.701393 1 ]
- AttributeBegin
- # Boole
- ConcatTransform [ 1 0 0 0 0 1 0 0 0 0 1 0 -447.634216 -132.41391 -100.701378 1 ]
- AttributeBegin
- # Tube
- ConcatTransform [ 1 0 0 0 0 1 0 0 0 0 1 0 465.150299 134.170166 -94.1644592 1 ]
- AttributeBegin
- NamedMaterial "Mat.1"
- Shape "plymesh" "string filename" "geometry/mesh_00090.ply"
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # Cube.2
- ConcatTransform [ 0.914655566 3.01991605e-07 -0.404234111 0 -3.494049e-07 1 -4.35231158e-08 0 0.404234111 1.81050041e-07 0.914655566 0 481.959991 134.39827 -93.4684067 1 ]
- AttributeBegin
- NamedMaterial "Mat.1"
- Shape "plymesh" "string filename" "geometry/mesh_00091.ply"
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # Tube
- ConcatTransform [ 1 0 0 0 0 1 0 0 0 0 1 0 -3.79230213 1.90887928 -194.972809 1 ]
- AttributeBegin
- NamedMaterial "Mat.1"
- Shape "plymesh" "string filename" "geometry/mesh_00092.ply"
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # Cone
- ConcatTransform [ 1.00000012 -0 1.74845567e-07 0 0 0.999999881 0 0 -1.74845553e-07 0 1 0 320.210022 133.999023 95.0485992 1 ]
- AttributeBegin
- # Cone
- AttributeBegin
- NamedMaterial "Metal - Chrome"
- Shape "plymesh" "string filename" "geometry/mesh_00093.ply"
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # glass.1
- ConcatTransform [ -0.106239207 0.0247444417 -0.994032681 0 0.991423011 0.0791633949 -0.103989676 0 0.076117821 -0.996554494 -0.032942459 0 329.740479 133.508453 94.0363312 1 ]
- AttributeBegin
- NamedMaterial "opticforheadlamp"
- Shape "plymesh" "string filename" "geometry/mesh_00094.ply"
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # glass
- ConcatTransform [ -0.363808781 -0.00152477191 -0.93147254 0 0.925222993 0.115065195 -0.361556232 0 0.10773132 -0.993356764 -0.0404509604 0 336.209137 134.006516 -92.4614944 1 ]
- AttributeBegin
- NamedMaterial "Glass-Simple"
- Shape "plymesh" "string filename" "geometry/mesh_00095.ply"
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # rim
- ConcatTransform [ -0.363808781 -0.00152477191 -0.93147254 0 0.925222993 0.115065195 -0.361556232 0 0.10773132 -0.993356764 -0.0404509604 0 336.209137 134.006516 -92.4614944 1 ]
- AttributeBegin
- NamedMaterial "Car Paint - Glossy Blue"
- Shape "plymesh" "string filename" "geometry/mesh_00096.ply"
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # RG_ellipse headlighgt
- ConcatTransform [ -0.36380896 -0.00152478018 -0.931472361 0 0.925222814 0.11506515 -0.361556411 0 0.107731283 -0.993356764 -0.0404509641 0 336.209167 134.006516 -92.4615173 1 ]
- AttributeBegin
- # lampfitting
- ConcatTransform [ -0.363808602 0.925222754 0.107731447 0 -0.0015248165 0.115065269 -0.993356645 0 -0.931472361 -0.361555994 -0.0404509418 0 36.3947639 -359.917877 93.1558762 1 ]
- AttributeBegin
- # Boole
- ConcatTransform [ 1 0 0 0 0 1 0 0 0 0 1 0 -120.38327 0 0 1 ]
- AttributeBegin
- # Tube-Cube.2
- AttributeBegin
- # Tube
- ConcatTransform [ 1 0 0 0 0 1 0 0 0 0 1 0 465.150299 134.170166 -94.1644592 1 ]
- AttributeBegin
- NamedMaterial "Mat.1"
- Shape "plymesh" "string filename" "geometry/mesh_00097.ply"
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # Cube.2
- ConcatTransform [ 0.914655566 3.01991605e-07 -0.404234111 0 -3.494049e-07 1 -4.35231158e-08 0 0.404234111 1.81050041e-07 0.914655566 0 481.959991 134.39827 -93.4684067 1 ]
- AttributeBegin
- NamedMaterial "Mat.1"
- Shape "plymesh" "string filename" "geometry/mesh_00098.ply"
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # Tube
- ConcatTransform [ 1 0 0 0 0 1 0 0 0 0 1 0 465.150299 134.170166 -94.1644592 1 ]
- AttributeBegin
- # Tube
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # Cube.2
- ConcatTransform [ 0.914655566 3.01991605e-07 -0.404234111 0 -3.494049e-07 1 -4.35231158e-08 0 0.404234111 1.81050041e-07 0.914655566 0 481.959991 134.39827 -93.4684067 1 ]
- AttributeBegin
- # Cube.2
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # Tube
- ConcatTransform [ 1 0 0 0 0 1 0 0 0 0 1 0 323.458649 134.322784 -94.2714386 1 ]
- AttributeBegin
- # Tube
- AttributeBegin
- NamedMaterial "Mat.1"
- Shape "plymesh" "string filename" "geometry/mesh_00099.ply"
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # Cone
- ConcatTransform [ -0.363808602 0.925222754 0.107731447 0 -0.0015248165 0.115065269 -0.993356645 0 -0.931472361 -0.361555994 -0.0404509418 0 7.41474152 -14.1848297 -1.64692473 1 ]
- AttributeBegin
- # Cone
- AttributeBegin
- NamedMaterial "Metal - Chrome"
- Shape "plymesh" "string filename" "geometry/mesh_00100.ply"
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # glass
- ConcatTransform [ 1 0 0 0 0 1 0 0 0 0 1 0 -1.52587891e-05 -3.43322754e-05 3.57627869e-06 1 ]
- AttributeBegin
- NamedMaterial "Glass-Simple"
- Shape "plymesh" "string filename" "geometry/mesh_00101.ply"
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # glass.1
- ConcatTransform [ 0.964527071 0.263950616 0.00418415759 0 -0.263945222 0.963994145 0.0323759355 0 0.00451214379 -0.0323318541 0.999466956 0 3.29964399 -5.01398706 -1.14331698 1 ]
- AttributeBegin
- NamedMaterial "opticforheadlamp"
- Shape "plymesh" "string filename" "geometry/mesh_00102.ply"
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # rim
- ConcatTransform [ 1 0 0 0 0 1 0 0 0 0 1 0 -1.52587891e-05 -3.43322754e-05 3.57627869e-06 1 ]
- AttributeBegin
- NamedMaterial "Car Paint - Glossy Blue"
- Shape "plymesh" "string filename" "geometry/mesh_00103.ply"
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # VWlogo
- ConcatTransform [ -2.82129974e-07 -0 1 0 -0.180769429 0.983525515 -5.10004732e-08 0 -0.983525515 -0.180769429 -2.7748203e-07 0 354.999634 174.539642 0.546035588 1 ]
- AttributeBegin
- NamedMaterial "Metal - Chrome"
- Shape "plymesh" "string filename" "geometry/mesh_00104.ply"
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # wiper
- ConcatTransform [ 6.37835456e-07 9.50973913e-08 1 0 0.776756048 0.629801571 -5.55335021e-07 0 -0.629801571 0.776756048 3.27842287e-07 0 330.558929 232.845383 -58.8752594 1 ]
- AttributeBegin
- # bladeattach
- ConcatTransform [ 1 0 0 0 0 1 0 0 0 0 1 0 -1.14440918e-05 2.17791603e-06 5.64617538 1 ]
- AttributeBegin
- # Cube.2
- ConcatTransform [ 1 -0 -3.01991605e-07 0 -3.2058054e-08 0.994349539 -0.10615544 0 3.00285222e-07 0.10615544 0.994349539 0 3.81469704e-06 -1.25558257 44.7910233 1 ]
- AttributeBegin
- NamedMaterial "Metal - Chrome"
- Shape "plymesh" "string filename" "geometry/mesh_00105.ply"
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # Cube.2
- ConcatTransform [ 1 -0 -3.01991605e-07 0 -3.2058054e-08 0.994349539 -0.10615544 0 3.00285222e-07 0.10615544 0.994349539 0 3.81469704e-06 -1.25558257 44.7910233 1 ]
- AttributeBegin
- # Cube.2
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # blade
- ConcatTransform [ 0.959029853 0.283305049 -3.52511421e-07 0 -0.278428525 0.94252187 -0.184743211 0 -0.0523383506 0.17717436 0.982786834 0 0.193674967 -2.66965437 48.1187973 1 ]
- AttributeBegin
- # blade
- AttributeBegin
- NamedMaterial "Mat"
- Shape "plymesh" "string filename" "geometry/mesh_00106.ply"
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # spindle
- ConcatTransform [ 1 0 0 0 0 1 0 0 0 0 1 0 -0.0555763245 -2.81948638 -3.01863503 1 ]
- AttributeBegin
- # spindle
- AttributeBegin
- NamedMaterial "Metal - Chrome"
- Shape "plymesh" "string filename" "geometry/mesh_00107.ply"
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # spindle.1
- ConcatTransform [ 1 -0 0 0 0 1 -1.74845553e-07 0 -0 1.74845553e-07 1 0 -0.0555801392 -3.67792487 -3.018574 1 ]
- AttributeBegin
- # spindle.1
- AttributeBegin
- NamedMaterial "Mat"
- Shape "plymesh" "string filename" "geometry/mesh_00108.ply"
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # pivotarm
- ConcatTransform [ 1 0 0 0 0 1 0 0 0 0 1 0 -3.81469727e-06 6.32130686e-05 1.12157777e-05 1 ]
- AttributeBegin
- # Cube
- ConcatTransform [ 1 0 0 0 0 1 0 0 0 0 1 0 0 0.220552713 1.12157777e-05 1 ]
- AttributeBegin
- NamedMaterial "Metal - Chrome"
- Shape "plymesh" "string filename" "geometry/mesh_00109.ply"
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # Cube
- ConcatTransform [ 1 0 0 0 0 1 0 0 0 0 1 0 0 0.220552713 1.12157777e-05 1 ]
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # wiperarm
- ConcatTransform [ 1 0 0 0 0 1 0 0 0 0 1 0 -3.81469727e-06 -0.579099357 26.0710411 1 ]
- AttributeBegin
- # wiperarm
- AttributeBegin
- NamedMaterial "Metal - Chrome"
- Shape "plymesh" "string filename" "geometry/mesh_00110.ply"
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # wiper.1
- ConcatTransform [ 6.37835456e-07 9.50973913e-08 1 0 0.776756048 0.629801571 -5.55335021e-07 0 -0.629801571 0.776756048 3.27842287e-07 0 330.558929 232.845367 61.1076698 1 ]
- AttributeBegin
- # bladeattach
- ConcatTransform [ 1 0 0 0 0 1 0 0 0 0 1 0 -1.14440918e-05 2.17791603e-06 5.64617538 1 ]
- AttributeBegin
- # Cube.2
- ConcatTransform [ 1 -0 -3.01991605e-07 0 -3.2058054e-08 0.994349539 -0.10615544 0 3.00285222e-07 0.10615544 0.994349539 0 3.81469704e-06 -1.25558257 44.7910233 1 ]
- AttributeBegin
- NamedMaterial "Metal - Chrome"
- Shape "plymesh" "string filename" "geometry/mesh_00111.ply"
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # Cube.2
- ConcatTransform [ 1 -0 -3.01991605e-07 0 -3.2058054e-08 0.994349539 -0.10615544 0 3.00285222e-07 0.10615544 0.994349539 0 3.81469704e-06 -1.25558257 44.7910233 1 ]
- AttributeBegin
- # Cube.2
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # blade
- ConcatTransform [ 0.959029853 0.283305049 -3.52511421e-07 0 -0.278428525 0.94252187 -0.184743211 0 -0.0523383506 0.17717436 0.982786834 0 0.193674967 -2.66965437 48.1187973 1 ]
- AttributeBegin
- # blade
- AttributeBegin
- NamedMaterial "Mat"
- Shape "plymesh" "string filename" "geometry/mesh_00112.ply"
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # spindle
- ConcatTransform [ 1 0 0 0 0 1 0 0 0 0 1 0 -0.0555763245 -2.81948638 -3.01863503 1 ]
- AttributeBegin
- # spindle
- AttributeBegin
- NamedMaterial "Metal - Chrome"
- Shape "plymesh" "string filename" "geometry/mesh_00113.ply"
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # spindle.1
- ConcatTransform [ 1 -0 0 0 0 1 -1.74845553e-07 0 -0 1.74845553e-07 1 0 -0.0555725098 -3.75185466 -3.01862621 1 ]
- AttributeBegin
- # spindle.1
- AttributeBegin
- NamedMaterial "Mat"
- Shape "plymesh" "string filename" "geometry/mesh_00114.ply"
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # pivotarm
- ConcatTransform [ 1 0 0 0 0 1 0 0 0 0 1 0 -3.81469727e-06 6.32130686e-05 1.12157777e-05 1 ]
- AttributeBegin
- # Cube
- ConcatTransform [ 1 0 0 0 0 1 0 0 0 0 1 0 0 0.220552713 1.12157777e-05 1 ]
- AttributeBegin
- NamedMaterial "Metal - Chrome"
- Shape "plymesh" "string filename" "geometry/mesh_00115.ply"
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # Cube
- ConcatTransform [ 1 0 0 0 0 1 0 0 0 0 1 0 0 0.220552713 1.12157777e-05 1 ]
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # wiperarm
- ConcatTransform [ 1 0 0 0 0 1 0 0 0 0 1 0 -3.81469727e-06 -0.579099357 26.0710411 1 ]
- AttributeBegin
- # wiperarm
- AttributeBegin
- NamedMaterial "Metal - Chrome"
- Shape "plymesh" "string filename" "geometry/mesh_00116.ply"
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # Cube
- ConcatTransform [ 1 0 0 0 0 1 0 0 0 0 1 0 -266.532776 100.128296 0.0730743408 1 ]
- AttributeBegin
- # Cube
- AttributeBegin
- NamedMaterial "Mat"
- Shape "plymesh" "string filename" "geometry/mesh_00117.ply"
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # axleF
- ConcatTransform [ 1 0 0 0 0 1 0 0 0 0 1 0 190.855042 51.7421265 0 1 ]
- AttributeBegin
- # axleF
- Shape "plymesh" "string filename" "geometry/mesh_00118.ply"
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # axleR
- ConcatTransform [ 1 0 0 0 0 1 0 0 0 0 1 0 -249.146591 51.7421265 0 1 ]
- AttributeBegin
- # axleR
- Shape "plymesh" "string filename" "geometry/mesh_00119.ply"
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # key
- ConcatTransform [ 1 -0 0 0 0 0.998902798 0.046830032 0 -0 -0.046830032 0.998902798 0 -256.031952 182.052994 -156.288528 1 ]
- AttributeBegin
- # key
- AttributeBegin
- NamedMaterial "Metal - Chrome"
- Shape "plymesh" "string filename" "geometry/mesh_00120.ply"
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # filler cap
- ConcatTransform [ 1 -0 0 0 0 0.998800039 0.0489766784 0 -0 -0.0489766784 0.998800039 0 -245.046021 181.975952 -156.321564 1 ]
- AttributeBegin
- # filler cap
- AttributeBegin
- NamedMaterial "Car Paint - Glossy Blue"
- Shape "plymesh" "string filename" "geometry/mesh_00121.ply"
- AttributeEnd
- AttributeBegin
- # Cap 1
- ConcatTransform [ 1 0 0 0 0 0.999999762 0 0 0 0 0.999999762 0 0 -3.71932983e-05 0 1 ]
- AttributeBegin
- NamedMaterial "Car Paint - Glossy Blue"
- Shape "plymesh" "string filename" "geometry/mesh_00122.ply"
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # Cap 2
- ConcatTransform [ 1 0 0 0 0 0.999999762 0 0 0 0 0.999999762 0 0 -3.71932983e-05 0 1 ]
- AttributeBegin
- NamedMaterial "Car Paint - Glossy Blue"
- Shape "plymesh" "string filename" "geometry/mesh_00123.ply"
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # Rectangle
- ConcatTransform [ 1 0 0 0 0 0.999999762 0 0 0 0 0.999999762 0 0 -3.71932983e-05 0 1 ]
- AttributeBegin
- # Rectangle
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # tailgateNURBS
- ConcatTransform [ 1 0 0 0 0 1 0 0 0 0 1 0 -468.214783 234.293839 -64.0575562 1 ]
- AttributeBegin
- # tailgate
- ConcatTransform [ 1 0 0 0 0 1 0 0 0 0 1 0 93.3214111 0 0 1 ]
- AttributeBegin
- NamedMaterial "Car Paint - Glossy Blue"
- Shape "plymesh" "string filename" "geometry/mesh_00124.ply"
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # tailgate
- ConcatTransform [ 1 0 0 0 0 1 0 0 0 0 1 0 93.3214111 0 0 1 ]
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # bodyNURBS
- ConcatTransform [ 1 0 0 0 0 1 0 0 0 0 1 0 -10.0583649 184.147675 -79.6626434 1 ]
- AttributeBegin
- # body
- ConcatTransform [ 1 0 0 0 0 1 0 0 0 0 1 0 312.782104 0 0 1 ]
- AttributeBegin
- NamedMaterial "Car Paint - Glossy Blue"
- Shape "plymesh" "string filename" "geometry/mesh_00125.ply"
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # body
- ConcatTransform [ 1 0 0 0 0 1 0 0 0 0 1 0 312.782104 0 0 1 ]
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # Symmetry
- AttributeBegin
- # Null
- AttributeBegin
- # backendNURBS
- AttributeBegin
- # backend
- ConcatTransform [ 1 0 0 0 0 1 0 0 0 0 1 0 -10.0583649 184.147675 -79.6626434 1 ]
- AttributeBegin
- NamedMaterial "Car Paint - Glossy Blue"
- Shape "plymesh" "string filename" "geometry/mesh_00126.ply"
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # engcoverNURBS
- AttributeBegin
- # enginecover
- ConcatTransform [ 1 0 0 0 0 1 0 0 0 0 1 0 -385.86026 116.608269 -54.2726135 1 ]
- AttributeBegin
- NamedMaterial "Car Paint - Glossy Blue"
- Shape "plymesh" "string filename" "geometry/mesh_00127.ply"
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # Null
- AttributeBegin
- # backendNURBS
- AttributeBegin
- # backend
- ConcatTransform [ 1 0 0 0 0 1 0 0 0 0 1 0 -10.0583649 184.147675 -79.6626434 1 ]
- AttributeEnd
- AttributeBegin
- # backend
- ConcatTransform [ 1 0 0 0 0 1 0 0 0 0 1 0 -10.0583649 184.147675 -79.6626434 1 ]
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # engcoverNURBS
- AttributeBegin
- # enginecover
- ConcatTransform [ 1 0 0 0 0 1 0 0 0 0 1 0 -385.86026 116.608269 -54.2726135 1 ]
- AttributeEnd
- AttributeBegin
- # enginecover
- ConcatTransform [ 1 0 0 0 0 1 0 0 0 0 1 0 -385.86026 116.608269 -54.2726135 1 ]
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # window glass
- AttributeBegin
- # Extrude
- AttributeBegin
- # Extrude
- AttributeBegin
- NamedMaterial "Glass-Simple"
- Shape "plymesh" "string filename" "geometry/mesh_00128.ply"
- AttributeEnd
- AttributeBegin
- # Cap 1
- ConcatTransform [ 1 -0 1.86264493e-09 0 -2.77555756e-17 1.00000024 1.4901163e-08 0 -1.86264515e-09 -1.49011612e-08 1.00000012 0 -374.893372 234.293823 -64.0575562 1 ]
- AttributeBegin
- NamedMaterial "Glass-Simple"
- Shape "plymesh" "string filename" "geometry/mesh_00129.ply"
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # Cap 2
- ConcatTransform [ 1 -0 1.86264493e-09 0 -2.77555756e-17 1.00000024 1.4901163e-08 0 -1.86264515e-09 -1.49011612e-08 1.00000012 0 -374.893372 234.293823 -64.0575562 1 ]
- AttributeBegin
- NamedMaterial "Glass-Simple"
- Shape "plymesh" "string filename" "geometry/mesh_00130.ply"
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # tailgate.Spline
- ConcatTransform [ 1 -0 1.86264493e-09 0 -2.77555756e-17 1.00000024 1.4901163e-08 0 -1.86264515e-09 -1.49011612e-08 1.00000012 0 -374.893372 234.293823 -64.0575562 1 ]
- AttributeBegin
- # tailgate.Spline
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # window_inserts
- AttributeBegin
- # tailgate_insert
- ConcatTransform [ -0.99972564 -5.11590031e-07 0.023458235 0 -0.00305287563 0.991498709 -0.130083561 0 -0.0232587326 -0.130119428 -0.991226196 0 -237.865616 501.901642 -76.7522202 1 ]
- AttributeBegin
- # tailgate_insert
- AttributeBegin
- NamedMaterial "Mat"
- Shape "plymesh" "string filename" "geometry/mesh_00131.ply"
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # Circle
- ConcatTransform [ 0.0634929687 0.997642517 0.0260430463 0 0.986503005 -0.0666879416 0.149549365 0 0.150933534 0.0161962062 -0.988411367 0 -116.940132 281.3974 -204.202011 1 ]
- AttributeBegin
- # Circle
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # tailgate.Spline
- ConcatTransform [ -0.99972403 -0.00305286469 -0.023258768 0 -4.9031064e-07 0.991497993 -0.130119488 0 0.0234582704 -0.130083621 -0.991224825 0 137.287888 -266.565643 25.4247437 1 ]
- AttributeBegin
- # tailgate.Spline
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # rear window quarter
- AttributeBegin
- # Null
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # doorhandle.1
- ConcatTransform [ 0.0729458779 0.997335911 -2.61783811e-07 0 -0.997335911 0.0729458779 -8.87712531e-07 0 -8.66251526e-07 3.2584137e-07 1 0 -390.278687 86.1304016 0.977309167 1 ]
- AttributeBegin
- # Cube
- ConcatTransform [ 1 2.38497613e-08 -8.74227837e-08 0 -2.38497684e-08 1 -8.74227766e-08 0 8.74227766e-08 8.74227766e-08 1 0 -1.03548002 2.94334131e-05 -3.39150429e-05 1 ]
- AttributeBegin
- NamedMaterial "Metal - Chrome"
- Shape "plymesh" "string filename" "geometry/mesh_00132.ply"
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # Cube
- ConcatTransform [ 1 2.38497613e-08 -8.74227837e-08 0 -2.38497684e-08 1 -8.74227766e-08 0 8.74227766e-08 8.74227766e-08 1 0 -1.03548002 2.94334131e-05 -3.39150429e-05 1 ]
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # doorhandle
- ConcatTransform [ 0.0729458779 0.997335911 -2.4439214e-07 0 -0.997335911 0.0729458779 -1.12549594e-06 0 -1.1046701e-06 3.2584137e-07 1 0 -391.866608 170.108521 0.977296293 1 ]
- AttributeBegin
- # Cube
- ConcatTransform [ 1 2.38497613e-08 -8.74227837e-08 0 -2.38497684e-08 1 -8.74227766e-08 0 8.74227766e-08 8.74227766e-08 1 0 6.09947056e-05 5.99510349e-05 -4.1782856e-05 1 ]
- AttributeBegin
- NamedMaterial "Metal - Chrome"
- Shape "plymesh" "string filename" "geometry/mesh_00133.ply"
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # Cube
- ConcatTransform [ 1 2.38497613e-08 -8.74227837e-08 0 -2.38497684e-08 1 -8.74227766e-08 0 8.74227766e-08 8.74227766e-08 1 0 6.09947056e-05 5.99510349e-05 -4.1782856e-05 1 ]
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # Cylinder
- ConcatTransform [ -0.0729459003 -0.997335911 1.21166401e-08 0 4.29937188e-07 -4.35949374e-08 -1 0 0.997335911 -0.0729459003 4.3197187e-07 0 -388.137024 177.815475 1.0335393 1 ]
- AttributeBegin
- # Cylinder
- AttributeBegin
- NamedMaterial "Metal - Chrome"
- Shape "plymesh" "string filename" "geometry/mesh_00134.ply"
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # front_door
- AttributeBegin
- # Frontdoor complete
- AttributeBegin
- # doorhandle
- ConcatTransform [ -1 -1.32004732e-14 -2.14568828e-07 0 2.14568828e-07 -4.37113883e-08 -1 0 3.82137135e-15 -1 4.37113883e-08 0 141.083084 188.175461 -157.018448 1 ]
- AttributeBegin
- # Boole
- ConcatTransform [ -1 6.60023616e-15 -1.50995803e-07 0 1.50995803e-07 4.37113883e-08 -1 0 0 -1 -4.37113883e-08 0 141.083054 -202.970612 188.175385 1 ]
- AttributeBegin
- # Cylinder
- ConcatTransform [ 1 -1.74845553e-07 0 0 1.74845553e-07 1 0 0 -0 0 1 0 132.37587 188.113892 -199.43074 1 ]
- AttributeBegin
- NamedMaterial "Metal - Chrome"
- Shape "plymesh" "string filename" "geometry/mesh_00135.ply"
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # Cube
- ConcatTransform [ -1 1.42429793e-14 -3.2584137e-07 0 3.2584137e-07 4.37113883e-08 -1 0 0 -1 -4.37113883e-08 0 141.083099 188.175476 -202.970505 1 ]
- AttributeBegin
- NamedMaterial "Metal - Chrome"
- Shape "plymesh" "string filename" "geometry/mesh_00136.ply"
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # fr_door
- ConcatTransform [ 1 0 0 0 0 1 0 0 0 0 1 0 220.280121 192.281555 -135.540833 1 ]
- AttributeBegin
- # poly
- ConcatTransform [ 0.960999966 0 0 0 0 0.960999966 0 0 0 0 0.960999966 0 0 0 0 1 ]
- AttributeBegin
- NamedMaterial "Car Paint - Glossy Blue"
- Shape "plymesh" "string filename" "geometry/mesh_00137.ply"
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # Frontdoor complete
- AttributeBegin
- # doorhandle
- ConcatTransform [ -1 -1.32004732e-14 -2.14568828e-07 0 2.14568828e-07 -4.37113883e-08 -1 0 3.82137135e-15 -1 4.37113883e-08 0 141.083084 188.175461 -157.018448 1 ]
- AttributeBegin
- # Boole
- ConcatTransform [ -1 6.60023616e-15 -1.50995803e-07 0 1.50995803e-07 4.37113883e-08 -1 0 0 -1 -4.37113883e-08 0 141.083054 -202.970612 188.175385 1 ]
- AttributeBegin
- # Cylinder
- ConcatTransform [ 1 -1.74845553e-07 0 0 1.74845553e-07 1 0 0 -0 0 1 0 132.37587 188.113892 -199.43074 1 ]
- AttributeEnd
- AttributeBegin
- # Cube
- ConcatTransform [ -1 1.42429793e-14 -3.2584137e-07 0 3.2584137e-07 4.37113883e-08 -1 0 0 -1 -4.37113883e-08 0 141.083099 188.175476 -202.970505 1 ]
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # Boole
- ConcatTransform [ -1 6.60023616e-15 -1.50995803e-07 0 1.50995803e-07 4.37113883e-08 -1 0 0 -1 -4.37113883e-08 0 141.083054 -202.970612 188.175385 1 ]
- AttributeBegin
- # Cylinder+Cube
- AttributeBegin
- # Cylinder
- ConcatTransform [ 1 -1.74845553e-07 0 0 1.74845553e-07 1 0 0 -0 0 1 0 132.37587 188.113892 -199.43074 1 ]
- AttributeEnd
- AttributeBegin
- # Cube
- ConcatTransform [ -1 1.42429793e-14 -3.2584137e-07 0 3.2584137e-07 4.37113883e-08 -1 0 0 -1 -4.37113883e-08 0 141.083099 188.175476 -202.970505 1 ]
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # Cylinder
- ConcatTransform [ 1 -1.74845553e-07 0 0 1.74845553e-07 1 0 0 -0 0 1 0 132.37587 188.113892 -199.43074 1 ]
- AttributeBegin
- # Cylinder
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # Cube
- ConcatTransform [ -1 1.42429793e-14 -3.2584137e-07 0 3.2584137e-07 4.37113883e-08 -1 0 0 -1 -4.37113883e-08 0 141.083099 188.175476 -202.970505 1 ]
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # fr_door
- ConcatTransform [ 1 0 0 0 0 1 0 0 0 0 1 0 220.280121 192.281555 -135.540833 1 ]
- AttributeBegin
- # poly
- ConcatTransform [ 0.960999966 0 0 0 0 0.960999966 0 0 0 0 0.960999966 0 0 0 0 1 ]
- AttributeEnd
- AttributeBegin
- # poly
- ConcatTransform [ 0.960999966 0 0 0 0 0.960999966 0 0 0 0 0.960999966 0 0 0 0 1 ]
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # mid_door
- ConcatTransform [ 1 0 0 0 0 1 0 0 0 0 1 0 62.9857178 187.044403 -142.34552 1 ]
- AttributeBegin
- # doorhandle
- ConcatTransform [ -1 -1.32004732e-14 -2.14568828e-07 0 2.14568828e-07 -4.37113883e-08 -1 0 3.82137135e-15 -1 4.37113883e-08 0 -40.9570312 1.13104248 -20.6345215 1 ]
- AttributeBegin
- # Boole
- ConcatTransform [ -1 6.60023616e-15 -1.50995803e-07 0 1.50995803e-07 4.37113883e-08 -1 0 0 -1 -4.37113883e-08 0 141.083054 -202.970612 188.175385 1 ]
- AttributeBegin
- # Cylinder
- ConcatTransform [ 1 -1.74845553e-07 0 0 1.74845553e-07 1 0 0 -0 0 1 0 132.37587 188.113892 -199.43074 1 ]
- AttributeBegin
- NamedMaterial "Metal - Chrome"
- Shape "plymesh" "string filename" "geometry/mesh_00138.ply"
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # Cube
- ConcatTransform [ -1 1.42429793e-14 -3.2584137e-07 0 3.2584137e-07 4.37113883e-08 -1 0 0 -1 -4.37113883e-08 0 141.083099 188.175476 -202.970505 1 ]
- AttributeBegin
- NamedMaterial "Metal - Chrome"
- Shape "plymesh" "string filename" "geometry/mesh_00139.ply"
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # Boole
- ConcatTransform [ -1 6.60023616e-15 -1.50995803e-07 0 1.50995803e-07 4.37113883e-08 -1 0 0 -1 -4.37113883e-08 0 141.083054 -202.970612 188.175385 1 ]
- AttributeBegin
- # Cylinder+Cube
- AttributeBegin
- # Cylinder
- ConcatTransform [ 1 -1.74845553e-07 0 0 1.74845553e-07 1 0 0 -0 0 1 0 132.37587 188.113892 -199.43074 1 ]
- AttributeEnd
- AttributeBegin
- # Cube
- ConcatTransform [ -1 1.42429793e-14 -3.2584137e-07 0 3.2584137e-07 4.37113883e-08 -1 0 0 -1 -4.37113883e-08 0 141.083099 188.175476 -202.970505 1 ]
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # Cylinder
- ConcatTransform [ 1 -1.74845553e-07 0 0 1.74845553e-07 1 0 0 -0 0 1 0 132.37587 188.113892 -199.43074 1 ]
- AttributeBegin
- # Cylinder
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # Cube
- ConcatTransform [ -1 1.42429793e-14 -3.2584137e-07 0 3.2584137e-07 4.37113883e-08 -1 0 0 -1 -4.37113883e-08 0 141.083099 188.175476 -202.970505 1 ]
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # mid_front_door
- AttributeBegin
- # mid_door-Tube
- AttributeBegin
- NamedMaterial "Car Paint - Glossy Blue"
- Shape "plymesh" "string filename" "geometry/mesh_00140.ply"
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # mid_door-Tube
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # mid_back_door
- ConcatTransform [ 1 0 0 0 0 1 0 0 0 0 1 0 -48.2036133 183.700104 -186.245911 1 ]
- AttributeBegin
- # mid_door2
- ConcatTransform [ 1 0 0 0 0 1 0 0 0 0 1 0 -0.215629578 0 44.1217766 1 ]
- AttributeBegin
- NamedMaterial "Car Paint - Glossy Blue"
- Shape "plymesh" "string filename" "geometry/mesh_00141.ply"
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # mid_door2
- ConcatTransform [ 1 0 0 0 0 1 0 0 0 0 1 0 -0.215629578 0 44.1217766 1 ]
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # backbumper
- AttributeBegin
- # Null
- ConcatTransform [ 1 0 0 0 0 1 0 0 0 0 1 0 -2.14733887 -5.12988281 0 1 ]
- AttributeBegin
- # Sweep NURBS.1
- ConcatTransform [ -1 -0 -8.74227766e-08 0 -0 1 0 0 8.74227766e-08 0 -1 0 -384.999939 89.2421722 28.2432575 1 ]
- AttributeBegin
- NamedMaterial "Mat.1"
- Shape "plymesh" "string filename" "geometry/mesh_00142.ply"
- AttributeEnd
- AttributeBegin
- # Cap 1
- ConcatTransform [ -0.273464054 0.0105173485 -0.961824715 0 -0.708704233 0.673879325 0.208866075 0 0.650350511 0.738766611 -0.176828071 0 -20.9263 -9.14438725 -119.076538 1 ]
- AttributeBegin
- NamedMaterial "Mat.1"
- Shape "plymesh" "string filename" "geometry/mesh_00143.ply"
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # Cap 2
- ConcatTransform [ 0.590667546 0.711651385 -0.380347461 0 -0.599550545 0.70253104 0.383391857 0 0.540047228 0.00158039667 0.841633201 0 10.1241455 8.42351437 -70.8373566 1 ]
- AttributeBegin
- NamedMaterial "Mat.1"
- Shape "plymesh" "string filename" "geometry/mesh_00144.ply"
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # Cube.1
- ConcatTransform [ -1 3.01991605e-07 -8.74227766e-08 0 3.01991605e-07 1 2.64009463e-14 0 8.74227766e-08 0 -1 0 -390.545776 81.3908081 100.986908 1 ]
- AttributeBegin
- NamedMaterial "Mat.1"
- Shape "plymesh" "string filename" "geometry/mesh_00145.ply"
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # Subdivision Surface
- ConcatTransform [ 0.407686949 -0 -0.91312176 0 0 1 -0 0 0.91312176 0 0.407686949 0 -352.316498 -15.4901276 -4.82803202 1 ]
- AttributeBegin
- # Cube.1
- ConcatTransform [ -0.369938225 -2.10734239e-08 -0.929056346 0 -7.79586529e-09 1 -1.95783976e-08 0 0.929056346 0 -0.369938225 0 -41.8650856 85.4460526 -31.3379459 1 ]
- AttributeBegin
- NamedMaterial "Mat.1"
- Shape "plymesh" "string filename" "geometry/mesh_00146.ply"
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # Null
- ConcatTransform [ 1 0 0 0 0 1 0 0 0 0 1 0 -2.14733887 -5.12988281 0 1 ]
- AttributeBegin
- # Sweep NURBS.1
- ConcatTransform [ -1 -0 -8.74227766e-08 0 -0 1 0 0 8.74227766e-08 0 -1 0 -384.999939 89.2421722 28.2432575 1 ]
- AttributeBegin
- # Sweep NURBS.1
- AttributeBegin
- # Cap 1
- ConcatTransform [ -0.273464054 0.0105173485 -0.961824715 0 -0.708704233 0.673879325 0.208866075 0 0.650350511 0.738766611 -0.176828071 0 -20.9263 -9.14438725 -119.076538 1 ]
- AttributeEnd
- AttributeBegin
- # Cap 2
- ConcatTransform [ 0.590667546 0.711651385 -0.380347461 0 -0.599550545 0.70253104 0.383391857 0 0.540047228 0.00158039667 0.841633201 0 10.1241455 8.42351437 -70.8373566 1 ]
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # Circle
- ConcatTransform [ 1 0 0 0 0 1 0 0 0 0 1 0 -358.361023 -60.6726532 8.11337941e-07 1 ]
- AttributeBegin
- # Circle
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # Cube.1.Spline
- ConcatTransform [ 0.989364624 -0 -0.145456597 0 0 1 -0 0 0.145456597 0 0.989364624 0 17.0645142 -4.14348602 -33.4992332 1 ]
- AttributeBegin
- # Cube.1.Spline
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # Cube.1
- ConcatTransform [ -1 3.01991605e-07 -8.74227766e-08 0 3.01991605e-07 1 2.64009463e-14 0 8.74227766e-08 0 -1 0 -390.545776 81.3908081 100.986908 1 ]
- AttributeEnd
- AttributeBegin
- # Subdivision Surface
- ConcatTransform [ 0.407686949 -0 -0.91312176 0 0 1 -0 0 0.91312176 0 0.407686949 0 -352.316498 -15.4901276 -4.82803202 1 ]
- AttributeBegin
- # Cube.1
- ConcatTransform [ -0.369938225 -2.10734239e-08 -0.929056346 0 -7.79586529e-09 1 -1.95783976e-08 0 0.929056346 0 -0.369938225 0 -41.8650856 85.4460526 -31.3379459 1 ]
- AttributeEnd
- AttributeBegin
- # Cube.1
- ConcatTransform [ -0.369938225 -2.10734239e-08 -0.929056346 0 -7.79586529e-09 1 -1.95783976e-08 0 0.929056346 0 -0.369938225 0 -41.8650856 85.4460526 -31.3379459 1 ]
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # front_bumper complete
- AttributeBegin
- # bumper complete
- ConcatTransform [ 1 0 0 0 0 1 0 0 0 0 1 0 374.080994 70.8121643 0 1 ]
- AttributeBegin
- # Subdivision Surface
- ConcatTransform [ 1 0 0 0 0 1 0 0 0 0 1 0 -377.666565 -87.2328186 0 1 ]
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # Null Object.2
- ConcatTransform [ 1 0 0 0 0 1 0 0 0 0 1 0 -249.930908 50.1340485 -134.182922 1 ]
- AttributeEnd
- AttributeBegin
- # Symmetry
- AttributeBegin
- # floorpan
- ConcatTransform [ 1 0 0 0 0 1 0 0 0 0 1 0 0 127.368042 -0.924621582 1 ]
- AttributeBegin
- NamedMaterial "Car Paint - Glossy Blue"
- Shape "plymesh" "string filename" "geometry/mesh_00147.ply"
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # floorpan
- ConcatTransform [ 1 0 0 0 0 1 0 0 0 0 1 0 0 127.368042 -0.924621582 1 ]
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # chrome wrap
- ConcatTransform [ 1 0 0 0 0 1 0 0 0 0 1 0 2.99539185 -10.3527832 0 1 ]
- AttributeBegin
- # Null
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # Cube.1
- ConcatTransform [ 1 0 0 0 0 1 0 0 0 0 1 0 183.935303 116.599106 0 1 ]
- AttributeBegin
- NamedMaterial "Car Paint - Glossy Blue"
- Shape "plymesh" "string filename" "geometry/mesh_00148.ply"
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # doorjoints
- AttributeBegin
- # Symmetry
- AttributeBegin
- # Null Object.2
- ConcatTransform [ -0.896406949 -0.022144042 -0.442678779 0 -0.00375284231 -0.998336136 0.0575389452 0 -0.443216413 0.0532396175 0.894832373 0 321.08374 108.389534 -132.88739 1 ]
- AttributeBegin
- # Capsule
- ConcatTransform [ 1 0 0 0 0 1 0 0 0 0 1 0 -0.564880371 4.37567139 -1.62908936 1 ]
- AttributeBegin
- NamedMaterial "Car Paint - Glossy Blue"
- Shape "plymesh" "string filename" "geometry/mesh_00149.ply"
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # Cube.1
- ConcatTransform [ 1 0 0 0 0 1 0 0 0 0 1 0 0.92489624 4.19851685 1.0153017 1 ]
- AttributeBegin
- NamedMaterial "Car Paint - Glossy Blue"
- Shape "plymesh" "string filename" "geometry/mesh_00150.ply"
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # Null Object.2
- ConcatTransform [ -0.896406949 -0.022144042 -0.442678779 0 -0.00375284231 -0.998336136 0.0575389452 0 -0.443216413 0.0532396175 0.894832373 0 321.08374 108.389534 -132.88739 1 ]
- AttributeBegin
- # Capsule
- ConcatTransform [ 1 0 0 0 0 1 0 0 0 0 1 0 -0.564880371 4.37567139 -1.62908936 1 ]
- AttributeBegin
- # Capsule
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # Cube.1
- ConcatTransform [ 1 0 0 0 0 1 0 0 0 0 1 0 0.92489624 4.19851685 1.0153017 1 ]
- AttributeBegin
- # Cube.1
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # Symmetry
- AttributeBegin
- # Null Object
- ConcatTransform [ -0.882774472 -0.0481733792 -0.467321336 0 0.070384793 -0.997063339 -0.0301762167 0 -0.464495301 -0.059531115 0.883572757 0 311.821564 217.772003 -133.336868 1 ]
- AttributeBegin
- # Capsule
- ConcatTransform [ 1 0 0 0 0 1 0 0 0 0 1 0 -0.785461426 6.08437681 -2.2652359 1 ]
- AttributeBegin
- NamedMaterial "Car Paint - Glossy Blue"
- Shape "plymesh" "string filename" "geometry/mesh_00151.ply"
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # Cube.1
- ConcatTransform [ 1 0 0 0 0 1 0 0 0 0 1 0 1.28604507 5.8380537 1.41178131 1 ]
- AttributeBegin
- NamedMaterial "Car Paint - Glossy Blue"
- Shape "plymesh" "string filename" "geometry/mesh_00152.ply"
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # Null Object
- ConcatTransform [ -0.882774472 -0.0481733792 -0.467321336 0 0.070384793 -0.997063339 -0.0301762167 0 -0.464495301 -0.059531115 0.883572757 0 311.821564 217.772003 -133.336868 1 ]
- AttributeBegin
- # Capsule
- ConcatTransform [ 1 0 0 0 0 1 0 0 0 0 1 0 -0.785461426 6.08437681 -2.2652359 1 ]
- AttributeBegin
- # Capsule
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # Cube.1
- ConcatTransform [ 1 0 0 0 0 1 0 0 0 0 1 0 1.28604507 5.8380537 1.41178131 1 ]
- AttributeBegin
- # Cube.1
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # Null
- ConcatTransform [ -0.882063806 0.15200302 -0.445935428 0 -0.0816006958 -0.981508613 -0.173153415 0 -0.464009315 -0.116343729 0.878156781 0 119.605042 254.214828 -150.593826 1 ]
- AttributeBegin
- # Capsule
- ConcatTransform [ 1 0 0 0 0 1 0 0 0 0 1 0 -0.564880371 4.37567139 -1.62908936 1 ]
- AttributeBegin
- # Capsule
- AttributeBegin
- NamedMaterial "Car Paint - Glossy Blue"
- Shape "plymesh" "string filename" "geometry/mesh_00153.ply"
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # Cube.1
- ConcatTransform [ 1 0 0 0 0 1 0 0 0 0 1 0 0.169906333 4.19851685 1.0153017 1 ]
- AttributeBegin
- # Cube.1
- AttributeBegin
- NamedMaterial "Car Paint - Glossy Blue"
- Shape "plymesh" "string filename" "geometry/mesh_00154.ply"
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # Null Object.1
- ConcatTransform [ -0.89640677 -0.0221440382 -0.44267866 0 -0.00375284045 -0.998336136 0.057538949 0 -0.443216294 0.0532396138 0.894832313 0 118.515083 119.480423 -155.487946 1 ]
- AttributeBegin
- # Capsule
- ConcatTransform [ 1 0 0 0 0 1 0 0 0 0 1 0 -0.564880371 4.37567139 -1.62908936 1 ]
- AttributeBegin
- # Capsule
- AttributeBegin
- NamedMaterial "Car Paint - Glossy Blue"
- Shape "plymesh" "string filename" "geometry/mesh_00155.ply"
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # Cube.1
- ConcatTransform [ 1 0 0 0 0 1 0 0 0 0 1 0 0.92489624 4.19851685 1.0153017 1 ]
- AttributeBegin
- # Cube.1
- AttributeBegin
- NamedMaterial "Car Paint - Glossy Blue"
- Shape "plymesh" "string filename" "geometry/mesh_00156.ply"
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # Null Object.3
- ConcatTransform [ -0.797537327 0.0377002545 0.602090478 0 -0.00375358271 -0.998336077 0.0575393625 0 0.603258014 0.0436298028 0.796351969 0 -104.878334 120.028816 -160.543961 1 ]
- AttributeBegin
- # Capsule
- ConcatTransform [ 1 0 0 0 0 1 0 0 0 0 1 0 -0.564880371 4.37567139 -1.62908936 1 ]
- AttributeBegin
- # Capsule
- AttributeBegin
- NamedMaterial "Car Paint - Glossy Blue"
- Shape "plymesh" "string filename" "geometry/mesh_00157.ply"
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # Cube.1
- ConcatTransform [ 1 0 0 0 0 1 0 0 0 0 1 0 0.92489624 4.19851685 1.0153017 1 ]
- AttributeBegin
- # Cube.1
- AttributeBegin
- NamedMaterial "Car Paint - Glossy Blue"
- Shape "plymesh" "string filename" "geometry/mesh_00158.ply"
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # Null Object.4
- ConcatTransform [ -0.803937435 -0.0981837958 0.586553097 0 0.00830990821 -0.988035977 -0.153998807 0 0.594655931 -0.118931226 0.7951352 0 -104.181633 255.265915 -151.069839 1 ]
- AttributeBegin
- # Capsule
- ConcatTransform [ 1 0 0 0 0 1 0 0 0 0 1 0 -0.564880371 4.37567139 -1.62908936 1 ]
- AttributeBegin
- # Capsule
- AttributeBegin
- NamedMaterial "Car Paint - Glossy Blue"
- Shape "plymesh" "string filename" "geometry/mesh_00159.ply"
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # Cube.1
- ConcatTransform [ 1 0 0 0 0 1 0 0 0 0 1 0 0.92489624 4.19851685 1.0153017 1 ]
- AttributeBegin
- # Cube.1
- AttributeBegin
- NamedMaterial "Car Paint - Glossy Blue"
- Shape "plymesh" "string filename" "geometry/mesh_00160.ply"
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # suspension_part
- ConcatTransform [ 1 0 0 0 0 1 0 0 0 0 1 0 191.023621 0 0 1 ]
- AttributeBegin
- # Cube.1
- ConcatTransform [ 1 0 0 0 0 1 0 0 0 0 1 0 -88.4448395 41.6813354 -98.6320801 1 ]
- Shape "plymesh" "string filename" "geometry/mesh_00161.ply"
- AttributeEnd
- AttributeBegin
- # Cylinder.1
- ConcatTransform [ 1 0 0 0 0 1 0 0 0 0 1 0 0 25.5865784 -98.6320953 1 ]
- AttributeBegin
- # Cylinder.1
- Shape "plymesh" "string filename" "geometry/mesh_00162.ply"
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # Cylinder
- ConcatTransform [ 1 0 0 0 0 1 0 0 0 0 1 0 0 26.3269043 0 1 ]
- AttributeBegin
- # Cylinder
- Shape "plymesh" "string filename" "geometry/mesh_00163.ply"
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # Lathe NURBS.1
- ConcatTransform [ 7.54979013e-08 -1 0 0 1 7.54979013e-08 0 0 -0 0 1 0 64.2620239 134.32196 -94.4686661 1 ]
- AttributeBegin
- # Lathe NURBS.1
- AttributeEnd
- AttributeBegin
- # Spline
- AttributeBegin
- # Spline
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeBegin
- # front_light
- ConcatTransform [ 0.140091896 -0.989209414 -0.0428914428 0 0.902510166 0.145390794 -0.40538612 0 0.407247543 0.0180813354 0.913139105 0 301.418884 171.610031 -98.5668411 1 ]
- AttributeBegin
- # front_light
- AttributeEnd
- AttributeBegin
- # Spline
- ConcatTransform [ 0.999986529 0.00519607868 1.74873961e-07 0 -0.00519607868 0.999986529 5.01227637e-09 0 -1.74845553e-07 -5.92086735e-09 1 0 4.29153442e-06 21.4036713 -3.08070374 1 ]
- AttributeBegin
- # Spline
- AttributeEnd
- AttributeEnd
- AttributeEnd
- AttributeEnd
- WorldEnd
|