123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433 |
- @comment $OpenBSD: PLIST,v 1.3 2011/10/23 11:06:44 ajacoutot Exp $
- @bin bin/makehuman
- share/makehuman/
- share/makehuman/base.body
- share/makehuman/base.clothes
- share/makehuman/base.colors
- share/makehuman/base.faces
- share/makehuman/base.materials
- share/makehuman/base.parts
- share/makehuman/base.skin
- share/makehuman/base.smooth
- share/makehuman/base.strips
- share/makehuman/base.subde
- share/makehuman/base.subdf
- share/makehuman/base.subdo
- share/makehuman/base.uv
- share/makehuman/base.vertices
- share/makehuman/bs_data/
- share/makehuman/bs_data/characters1/
- share/makehuman/bs_data/characters1/asian_girl01.bs
- share/makehuman/bs_data/characters1/big_fat_hero.bs
- share/makehuman/bs_data/characters1/bodybuilder_man01.bs
- share/makehuman/bs_data/characters1/bodybuilder_woman01.bs
- share/makehuman/bs_data/characters1/fashion_model.bs
- share/makehuman/bs_data/characters1/fat_girl01.bs
- share/makehuman/bs_data/characters1/hero01.bs
- share/makehuman/bs_data/characters1/idealistic_man01.bs
- share/makehuman/bs_data/characters1/megahero.bs
- share/makehuman/bs_data/characters1/old_man01.bs
- share/makehuman/bs_data/characters1/ultra_skinny_girl01.bs
- share/makehuman/bs_data/poses1/
- share/makehuman/bs_data/poses1/catwalk1.bs
- share/makehuman/bs_data/poses1/dance1.bs
- share/makehuman/bs_data/poses1/drama1.bs
- share/makehuman/bs_data/poses1/standing.bs
- share/makehuman/bs_data/poses1/yoga1.bs
- share/makehuman/default.bs
- share/makehuman/rib_data/
- share/makehuman/rib_data/rib_templates/
- share/makehuman/rib_data/rib_templates/out_render.rib.template
- share/makehuman/rib_data/rib_templates_preview/
- share/makehuman/rib_data/rib_templates_preview/out_render_preview.rib.template
- share/makehuman/rib_data/rib_templates_toon/
- share/makehuman/rib_data/rib_templates_toon/out_render_toon.rib.template
- share/makehuman/rib_data/shaders_data/
- share/makehuman/rib_data/shaders_data/IDcs.sl
- share/makehuman/rib_data/shaders_data/IDfill.sl
- share/makehuman/rib_data/shaders_data/IDoutline.sl
- share/makehuman/rib_data/shaders_data/alphafur.sl
- share/makehuman/rib_data/shaders_data/cameravector.sl
- share/makehuman/rib_data/shaders_data/cornea.sl
- share/makehuman/rib_data/shaders_data/eyes.sl
- share/makehuman/rib_data/shaders_data/onlyrefl.sl
- share/makehuman/rib_data/shaders_data/onlytexture.sl
- share/makehuman/rib_data/shaders_data/skin1.sl
- share/makehuman/rib_data/shaders_data/skin2.sl
- share/makehuman/rib_data/shaders_data/skinbump.sl
- share/makehuman/rib_data/textures_data/
- share/makehuman/rib_data/textures_data/body_bump.tif
- share/makehuman/rib_data/textures_data/body_color.tif
- share/makehuman/rib_data/textures_data/body_specular.tif
- share/makehuman/rib_data/textures_data/eyebrows_alpha.tif
- share/makehuman/rib_data/textures_data/eyebrows_color.tif
- share/makehuman/rib_data/textures_data/eyelashes_color.tif
- share/makehuman/rib_data/textures_data/eyes_color.tif
- share/makehuman/rib_data/textures_data/eyes_reflection.tif
- share/makehuman/rib_data/textures_data/head_bump.tif
- share/makehuman/rib_data/textures_data/head_color.tif
- share/makehuman/rib_data/textures_data/head_specular.tif
- share/makehuman/rotations/
- share/makehuman/rotations/000_right_footfinger_5_2/
- share/makehuman/rotations/000_right_footfinger_5_2/ROT1/
- share/makehuman/rotations/000_right_footfinger_5_2/ROT1/00_X_LIMB_RFOOTFINGER53.rot
- share/makehuman/rotations/000_right_footfinger_5_2/ROT1/00_X_LIMB_RFOOTFINGER53.rot.info
- share/makehuman/rotations/000_right_footfinger_5_2/ROT1/01_X_LIMB_RFOOTFINGER52.rot
- share/makehuman/rotations/000_right_footfinger_5_2/ROT1/01_X_LIMB_RFOOTFINGER52.rot.info
- share/makehuman/rotations/001_right_footfinger_5_1/
- share/makehuman/rotations/001_right_footfinger_5_1/ROT1/
- share/makehuman/rotations/001_right_footfinger_5_1/ROT1/00_X_LIMB_RFOOTFINGER51.rot
- share/makehuman/rotations/001_right_footfinger_5_1/ROT1/00_X_LIMB_RFOOTFINGER51.rot.info
- share/makehuman/rotations/002_right_footfinger_4_2/
- share/makehuman/rotations/002_right_footfinger_4_2/ROT1/
- share/makehuman/rotations/002_right_footfinger_4_2/ROT1/00_X_LIMB_RFOOTFINGER43.rot
- share/makehuman/rotations/002_right_footfinger_4_2/ROT1/00_X_LIMB_RFOOTFINGER43.rot.info
- share/makehuman/rotations/002_right_footfinger_4_2/ROT1/01_X_LIMB_RFOOTFINGER42.rot
- share/makehuman/rotations/002_right_footfinger_4_2/ROT1/01_X_LIMB_RFOOTFINGER42.rot.info
- share/makehuman/rotations/003_right_footfinger_4_1/
- share/makehuman/rotations/003_right_footfinger_4_1/ROT1/
- share/makehuman/rotations/003_right_footfinger_4_1/ROT1/00_X_LIMB_RFOOTFINGER41.rot
- share/makehuman/rotations/003_right_footfinger_4_1/ROT1/00_X_LIMB_RFOOTFINGER41.rot.info
- share/makehuman/rotations/004_right_footfinger_3_2/
- share/makehuman/rotations/004_right_footfinger_3_2/ROT1/
- share/makehuman/rotations/004_right_footfinger_3_2/ROT1/00_X_LIMB_RFOOTFINGER33.rot
- share/makehuman/rotations/004_right_footfinger_3_2/ROT1/00_X_LIMB_RFOOTFINGER33.rot.info
- share/makehuman/rotations/004_right_footfinger_3_2/ROT1/01_X_LIMB_RFOOTFINGER32.rot
- share/makehuman/rotations/004_right_footfinger_3_2/ROT1/01_X_LIMB_RFOOTFINGER32.rot.info
- share/makehuman/rotations/005_right_footfinger_3_1/
- share/makehuman/rotations/005_right_footfinger_3_1/ROT1/
- share/makehuman/rotations/005_right_footfinger_3_1/ROT1/00_X_LIMB_RFOOTFINGER31.rot
- share/makehuman/rotations/005_right_footfinger_3_1/ROT1/00_X_LIMB_RFOOTFINGER31.rot.info
- share/makehuman/rotations/006_right_footfinger_2_2/
- share/makehuman/rotations/006_right_footfinger_2_2/ROT1/
- share/makehuman/rotations/006_right_footfinger_2_2/ROT1/00_X_LIMB_RFOOTFINGER23.rot
- share/makehuman/rotations/006_right_footfinger_2_2/ROT1/00_X_LIMB_RFOOTFINGER23.rot.info
- share/makehuman/rotations/006_right_footfinger_2_2/ROT1/01_X_LIMB_RFOOTFINGER22.rot
- share/makehuman/rotations/006_right_footfinger_2_2/ROT1/01_X_LIMB_RFOOTFINGER22.rot.info
- share/makehuman/rotations/007_right_footfinger_2_1/
- share/makehuman/rotations/007_right_footfinger_2_1/ROT1/
- share/makehuman/rotations/007_right_footfinger_2_1/ROT1/00_X_LIMB_RFOOTFINGER21.rot
- share/makehuman/rotations/007_right_footfinger_2_1/ROT1/00_X_LIMB_RFOOTFINGER21.rot.info
- share/makehuman/rotations/007_right_footfinger_2_1/ROT1/00_X_LIMB_RFOOTFINGER21.target
- share/makehuman/rotations/007_right_footfinger_2_1/ROT1/00_X_LIMB_RFOOTFINGER21.target.info
- share/makehuman/rotations/008_right_footfinger_1_2/
- share/makehuman/rotations/008_right_footfinger_1_2/ROT1/
- share/makehuman/rotations/008_right_footfinger_1_2/ROT1/00_X_LIMB_RFOOTFINGER12.rot
- share/makehuman/rotations/008_right_footfinger_1_2/ROT1/00_X_LIMB_RFOOTFINGER12.rot.info
- share/makehuman/rotations/009_right_footfinger_1_1/
- share/makehuman/rotations/009_right_footfinger_1_1/ROT1/
- share/makehuman/rotations/009_right_footfinger_1_1/ROT1/00_X_LIMB_RFOOTFINGER11.rot
- share/makehuman/rotations/009_right_footfinger_1_1/ROT1/00_X_LIMB_RFOOTFINGER11.rot.info
- share/makehuman/rotations/009_right_footfinger_1_1/ROT1/00_X_LIMB_RFOOTFINGER11.target
- share/makehuman/rotations/009_right_footfinger_1_1/ROT1/00_X_LIMB_RFOOTFINGER11.target.info
- share/makehuman/rotations/020_right_foot/
- share/makehuman/rotations/020_right_foot/ROT1/
- share/makehuman/rotations/020_right_foot/ROT1/00_X_LIMB_RFOOT-.rot
- share/makehuman/rotations/020_right_foot/ROT1/00_X_LIMB_RFOOT-.rot.info
- share/makehuman/rotations/020_right_foot/ROT1/00_X_LIMB_RFOOT-.target
- share/makehuman/rotations/020_right_foot/ROT1/00_X_LIMB_RFOOT-.target.info
- share/makehuman/rotations/020_right_foot/ROT1/00_X_LIMB_RFOOT.rot
- share/makehuman/rotations/020_right_foot/ROT1/00_X_LIMB_RFOOT.rot.info
- share/makehuman/rotations/020_right_foot/ROT1/00_X_LIMB_RFOOT.target
- share/makehuman/rotations/020_right_foot/ROT1/00_X_LIMB_RFOOT.target.info
- share/makehuman/rotations/020_right_foot/ROT2/
- share/makehuman/rotations/020_right_foot/ROT2/00_Y_LIMB_RFOOT-.rot
- share/makehuman/rotations/020_right_foot/ROT2/00_Y_LIMB_RFOOT-.rot.info
- share/makehuman/rotations/020_right_foot/ROT2/00_Y_LIMB_RFOOT-.target
- share/makehuman/rotations/020_right_foot/ROT2/00_Y_LIMB_RFOOT-.target.info
- share/makehuman/rotations/020_right_foot/ROT2/00_Y_LIMB_RFOOT.rot
- share/makehuman/rotations/020_right_foot/ROT2/00_Y_LIMB_RFOOT.rot.info
- share/makehuman/rotations/020_right_foot/ROT2/00_Y_LIMB_RFOOT.target
- share/makehuman/rotations/020_right_foot/ROT2/00_Y_LIMB_RFOOT.target.info
- share/makehuman/rotations/021_left_footfinger_5_2/
- share/makehuman/rotations/021_left_footfinger_5_2/ROT1/
- share/makehuman/rotations/021_left_footfinger_5_2/ROT1/00_X_LIMB_LFOOTFINGER53.rot
- share/makehuman/rotations/021_left_footfinger_5_2/ROT1/00_X_LIMB_LFOOTFINGER53.rot.info
- share/makehuman/rotations/021_left_footfinger_5_2/ROT1/01_X_LIMB_LFOOTFINGER52.rot
- share/makehuman/rotations/021_left_footfinger_5_2/ROT1/01_X_LIMB_LFOOTFINGER52.rot.info
- share/makehuman/rotations/022_left_footfinger_5_1/
- share/makehuman/rotations/022_left_footfinger_5_1/ROT1/
- share/makehuman/rotations/022_left_footfinger_5_1/ROT1/00_X_LIMB_LFOOTFINGER51.rot
- share/makehuman/rotations/022_left_footfinger_5_1/ROT1/00_X_LIMB_LFOOTFINGER51.rot.info
- share/makehuman/rotations/023_left_footfinger_4_2/
- share/makehuman/rotations/023_left_footfinger_4_2/ROT1/
- share/makehuman/rotations/023_left_footfinger_4_2/ROT1/00_X_LIMB_LFOOTFINGER43.rot
- share/makehuman/rotations/023_left_footfinger_4_2/ROT1/00_X_LIMB_LFOOTFINGER43.rot.info
- share/makehuman/rotations/023_left_footfinger_4_2/ROT1/01_X_LIMB_LFOOTFINGER42.rot
- share/makehuman/rotations/023_left_footfinger_4_2/ROT1/01_X_LIMB_LFOOTFINGER42.rot.info
- share/makehuman/rotations/024_left_footfinger_4_1/
- share/makehuman/rotations/024_left_footfinger_4_1/ROT1/
- share/makehuman/rotations/024_left_footfinger_4_1/ROT1/00_X_LIMB_LFOOTFINGER41.rot
- share/makehuman/rotations/024_left_footfinger_4_1/ROT1/00_X_LIMB_LFOOTFINGER41.rot.info
- share/makehuman/rotations/025_left_footfinger_3_2/
- share/makehuman/rotations/025_left_footfinger_3_2/ROT1/
- share/makehuman/rotations/025_left_footfinger_3_2/ROT1/00_X_LIMB_LFOOTFINGER33.rot
- share/makehuman/rotations/025_left_footfinger_3_2/ROT1/00_X_LIMB_LFOOTFINGER33.rot.info
- share/makehuman/rotations/025_left_footfinger_3_2/ROT1/01_X_LIMB_LFOOTFINGER32.rot
- share/makehuman/rotations/025_left_footfinger_3_2/ROT1/01_X_LIMB_LFOOTFINGER32.rot.info
- share/makehuman/rotations/026_left_footfinger_3_1/
- share/makehuman/rotations/026_left_footfinger_3_1/ROT1/
- share/makehuman/rotations/026_left_footfinger_3_1/ROT1/00_X_LIMB_LFOOTFINGER31.rot
- share/makehuman/rotations/026_left_footfinger_3_1/ROT1/00_X_LIMB_LFOOTFINGER31.rot.info
- share/makehuman/rotations/027_left_footfinger_2_2/
- share/makehuman/rotations/027_left_footfinger_2_2/ROT1/
- share/makehuman/rotations/027_left_footfinger_2_2/ROT1/00_X_LIMB_LFOOTFINGER23.rot
- share/makehuman/rotations/027_left_footfinger_2_2/ROT1/00_X_LIMB_LFOOTFINGER23.rot.info
- share/makehuman/rotations/027_left_footfinger_2_2/ROT1/01_X_LIMB_LFOOTFINGER22.rot
- share/makehuman/rotations/027_left_footfinger_2_2/ROT1/01_X_LIMB_LFOOTFINGER22.rot.info
- share/makehuman/rotations/028_left_footfinger_2_1/
- share/makehuman/rotations/028_left_footfinger_2_1/ROT1/
- share/makehuman/rotations/028_left_footfinger_2_1/ROT1/00_X_LIMB_LFOOTFINGER21.rot
- share/makehuman/rotations/028_left_footfinger_2_1/ROT1/00_X_LIMB_LFOOTFINGER21.rot.info
- share/makehuman/rotations/028_left_footfinger_2_1/ROT1/00_X_LIMB_LFOOTFINGER21.target
- share/makehuman/rotations/028_left_footfinger_2_1/ROT1/00_X_LIMB_LFOOTFINGER21.target.info
- share/makehuman/rotations/029_left_footfinger_1_2/
- share/makehuman/rotations/029_left_footfinger_1_2/ROT1/
- share/makehuman/rotations/029_left_footfinger_1_2/ROT1/00_X_LIMB_LFOOTFINGER12.rot
- share/makehuman/rotations/029_left_footfinger_1_2/ROT1/00_X_LIMB_LFOOTFINGER12.rot.info
- share/makehuman/rotations/030_left_footfinger_1_1/
- share/makehuman/rotations/030_left_footfinger_1_1/ROT1/
- share/makehuman/rotations/030_left_footfinger_1_1/ROT1/00_X_LIMB_LFOOTFINGER11.rot
- share/makehuman/rotations/030_left_footfinger_1_1/ROT1/00_X_LIMB_LFOOTFINGER11.rot.info
- share/makehuman/rotations/030_left_footfinger_1_1/ROT1/00_X_LIMB_LFOOTFINGER11.target
- share/makehuman/rotations/030_left_footfinger_1_1/ROT1/00_X_LIMB_LFOOTFINGER11.target.info
- share/makehuman/rotations/040_left_foot/
- share/makehuman/rotations/040_left_foot/ROT1/
- share/makehuman/rotations/040_left_foot/ROT1/00_X_LIMB_LFOOT-.rot
- share/makehuman/rotations/040_left_foot/ROT1/00_X_LIMB_LFOOT-.rot.info
- share/makehuman/rotations/040_left_foot/ROT1/00_X_LIMB_LFOOT-.target
- share/makehuman/rotations/040_left_foot/ROT1/00_X_LIMB_LFOOT-.target.info
- share/makehuman/rotations/040_left_foot/ROT1/00_X_LIMB_LFOOT.rot
- share/makehuman/rotations/040_left_foot/ROT1/00_X_LIMB_LFOOT.rot.info
- share/makehuman/rotations/040_left_foot/ROT1/00_X_LIMB_LFOOT.target
- share/makehuman/rotations/040_left_foot/ROT1/00_X_LIMB_LFOOT.target.info
- share/makehuman/rotations/040_left_foot/ROT2/
- share/makehuman/rotations/040_left_foot/ROT2/00_Y_LIMB_LFOOT-.rot
- share/makehuman/rotations/040_left_foot/ROT2/00_Y_LIMB_LFOOT-.rot.info
- share/makehuman/rotations/040_left_foot/ROT2/00_Y_LIMB_LFOOT-.target
- share/makehuman/rotations/040_left_foot/ROT2/00_Y_LIMB_LFOOT-.target.info
- share/makehuman/rotations/040_left_foot/ROT2/00_Y_LIMB_LFOOT.rot
- share/makehuman/rotations/040_left_foot/ROT2/00_Y_LIMB_LFOOT.rot.info
- share/makehuman/rotations/040_left_foot/ROT2/00_Y_LIMB_LFOOT.target
- share/makehuman/rotations/040_left_foot/ROT2/00_Y_LIMB_LFOOT.target.info
- share/makehuman/rotations/041_right_pollex_3/
- share/makehuman/rotations/041_right_pollex_3/ROT1/
- share/makehuman/rotations/041_right_pollex_3/ROT1/00_Z_LIMB_RFINGER13.rot
- share/makehuman/rotations/041_right_pollex_3/ROT1/00_Z_LIMB_RFINGER13.rot.info
- share/makehuman/rotations/041_right_pollex_3/ROT1/00_Z_LIMB_RFINGER13.target
- share/makehuman/rotations/041_right_pollex_3/ROT1/00_Z_LIMB_RFINGER13.target.info
- share/makehuman/rotations/042_right_pollex_2/
- share/makehuman/rotations/042_right_pollex_2/ROT1/
- share/makehuman/rotations/042_right_pollex_2/ROT1/00_Z_LIMB_RFINGER12-.rot
- share/makehuman/rotations/042_right_pollex_2/ROT1/00_Z_LIMB_RFINGER12-.rot.info
- share/makehuman/rotations/042_right_pollex_2/ROT1/00_Z_LIMB_RFINGER12-.target
- share/makehuman/rotations/042_right_pollex_2/ROT1/00_Z_LIMB_RFINGER12-.target.info
- share/makehuman/rotations/042_right_pollex_2/ROT1/00_Z_LIMB_RFINGER12.rot
- share/makehuman/rotations/042_right_pollex_2/ROT1/00_Z_LIMB_RFINGER12.rot.info
- share/makehuman/rotations/042_right_pollex_2/ROT1/00_Z_LIMB_RFINGER12.target
- share/makehuman/rotations/042_right_pollex_2/ROT1/00_Z_LIMB_RFINGER12.target.info
- share/makehuman/rotations/043_right_pollex_1/
- share/makehuman/rotations/043_right_pollex_1/ROT1/
- share/makehuman/rotations/043_right_pollex_1/ROT1/00_X_LIMB_RFINGER11-.rot
- share/makehuman/rotations/043_right_pollex_1/ROT1/00_X_LIMB_RFINGER11-.rot.info
- share/makehuman/rotations/043_right_pollex_1/ROT1/00_X_LIMB_RFINGER11-.target
- share/makehuman/rotations/043_right_pollex_1/ROT1/00_X_LIMB_RFINGER11-.target.info
- share/makehuman/rotations/043_right_pollex_1/ROT1/00_X_LIMB_RFINGER11.rot
- share/makehuman/rotations/043_right_pollex_1/ROT1/00_X_LIMB_RFINGER11.rot.info
- share/makehuman/rotations/043_right_pollex_1/ROT1/00_X_LIMB_RFINGER11.target
- share/makehuman/rotations/043_right_pollex_1/ROT1/00_X_LIMB_RFINGER11.target.info
- share/makehuman/rotations/044_right_forefinger_3/
- share/makehuman/rotations/044_right_forefinger_3/ROT1/
- share/makehuman/rotations/044_right_forefinger_3/ROT1/00_Y_LIMB_RFINGER23.rot
- share/makehuman/rotations/044_right_forefinger_3/ROT1/00_Y_LIMB_RFINGER23.rot.info
- share/makehuman/rotations/044_right_forefinger_3/ROT1/00_Y_LIMB_RFINGER23.target
- share/makehuman/rotations/044_right_forefinger_3/ROT1/00_Y_LIMB_RFINGER23.target.info
- share/makehuman/rotations/045_right_forefinger_2/
- share/makehuman/rotations/045_right_forefinger_2/ROT1/
- share/makehuman/rotations/045_right_forefinger_2/ROT1/00_Y_LIMB_RFINGER22.rot
- share/makehuman/rotations/045_right_forefinger_2/ROT1/00_Y_LIMB_RFINGER22.rot.info
- share/makehuman/rotations/045_right_forefinger_2/ROT1/00_Y_LIMB_RFINGER22.target
- share/makehuman/rotations/045_right_forefinger_2/ROT1/00_Y_LIMB_RFINGER22.target.info
- share/makehuman/rotations/046_right_forefinger_1/
- share/makehuman/rotations/046_right_forefinger_1/ROT1/
- share/makehuman/rotations/046_right_forefinger_1/ROT1/00_Y_LIMB_RFINGER21-.rot
- share/makehuman/rotations/046_right_forefinger_1/ROT1/00_Y_LIMB_RFINGER21-.rot.info
- share/makehuman/rotations/046_right_forefinger_1/ROT1/00_Y_LIMB_RFINGER21-.target
- share/makehuman/rotations/046_right_forefinger_1/ROT1/00_Y_LIMB_RFINGER21-.target.info
- share/makehuman/rotations/046_right_forefinger_1/ROT1/00_Y_LIMB_RFINGER21.rot
- share/makehuman/rotations/046_right_forefinger_1/ROT1/00_Y_LIMB_RFINGER21.rot.info
- share/makehuman/rotations/046_right_forefinger_1/ROT1/00_Y_LIMB_RFINGER21.target
- share/makehuman/rotations/046_right_forefinger_1/ROT1/00_Y_LIMB_RFINGER21.target.info
- share/makehuman/rotations/046_right_forefinger_1/ROT2/
- share/makehuman/rotations/046_right_forefinger_1/ROT2/00_Z_LIMB_RFINGER21-.rot
- share/makehuman/rotations/046_right_forefinger_1/ROT2/00_Z_LIMB_RFINGER21-.rot.info
- share/makehuman/rotations/046_right_forefinger_1/ROT2/00_Z_LIMB_RFINGER21-.target
- share/makehuman/rotations/046_right_forefinger_1/ROT2/00_Z_LIMB_RFINGER21-.target.info
- share/makehuman/rotations/046_right_forefinger_1/ROT2/00_Z_LIMB_RFINGER21.rot
- share/makehuman/rotations/046_right_forefinger_1/ROT2/00_Z_LIMB_RFINGER21.rot.info
- share/makehuman/rotations/046_right_forefinger_1/ROT2/00_Z_LIMB_RFINGER21.target
- share/makehuman/rotations/046_right_forefinger_1/ROT2/00_Z_LIMB_RFINGER21.target.info
- share/makehuman/rotations/047_right_middlefinger_3/
- share/makehuman/rotations/047_right_middlefinger_3/ROT1/
- share/makehuman/rotations/047_right_middlefinger_3/ROT1/00_Y_LIMB_RFINGER33.rot
- share/makehuman/rotations/047_right_middlefinger_3/ROT1/00_Y_LIMB_RFINGER33.rot.info
- share/makehuman/rotations/047_right_middlefinger_3/ROT1/00_Y_LIMB_RFINGER33.target
- share/makehuman/rotations/047_right_middlefinger_3/ROT1/00_Y_LIMB_RFINGER33.target.info
- share/makehuman/rotations/048_right_middlefinger_2/
- share/makehuman/rotations/048_right_middlefinger_2/ROT1/
- share/makehuman/rotations/048_right_middlefinger_2/ROT1/00_Y_LIMB_RFINGER32.rot
- share/makehuman/rotations/048_right_middlefinger_2/ROT1/00_Y_LIMB_RFINGER32.rot.info
- share/makehuman/rotations/048_right_middlefinger_2/ROT1/00_Y_LIMB_RFINGER32.target
- share/makehuman/rotations/048_right_middlefinger_2/ROT1/00_Y_LIMB_RFINGER32.target.info
- share/makehuman/rotations/049_right_middlefinger_1/
- share/makehuman/rotations/049_right_middlefinger_1/ROT1/
- share/makehuman/rotations/049_right_middlefinger_1/ROT1/00_Y_LIMB_RFINGER31-.rot
- share/makehuman/rotations/049_right_middlefinger_1/ROT1/00_Y_LIMB_RFINGER31-.rot.info
- share/makehuman/rotations/049_right_middlefinger_1/ROT1/00_Y_LIMB_RFINGER31-.target
- share/makehuman/rotations/049_right_middlefinger_1/ROT1/00_Y_LIMB_RFINGER31-.target.info
- share/makehuman/rotations/049_right_middlefinger_1/ROT1/00_Y_LIMB_RFINGER31.rot
- share/makehuman/rotations/049_right_middlefinger_1/ROT1/00_Y_LIMB_RFINGER31.rot.info
- share/makehuman/rotations/049_right_middlefinger_1/ROT1/00_Y_LIMB_RFINGER31.target
- share/makehuman/rotations/049_right_middlefinger_1/ROT1/00_Y_LIMB_RFINGER31.target.info
- share/makehuman/rotations/049_right_middlefinger_1/ROT2/
- share/makehuman/rotations/049_right_middlefinger_1/ROT2/00_Z_LIMB_RFINGER31-.rot
- share/makehuman/rotations/049_right_middlefinger_1/ROT2/00_Z_LIMB_RFINGER31-.rot.info
- share/makehuman/rotations/049_right_middlefinger_1/ROT2/00_Z_LIMB_RFINGER31-.target
- share/makehuman/rotations/049_right_middlefinger_1/ROT2/00_Z_LIMB_RFINGER31-.target.info
- share/makehuman/rotations/049_right_middlefinger_1/ROT2/00_Z_LIMB_RFINGER31.rot
- share/makehuman/rotations/049_right_middlefinger_1/ROT2/00_Z_LIMB_RFINGER31.rot.info
- share/makehuman/rotations/049_right_middlefinger_1/ROT2/00_Z_LIMB_RFINGER31.target
- share/makehuman/rotations/049_right_middlefinger_1/ROT2/00_Z_LIMB_RFINGER31.target.info
- share/makehuman/rotations/050_right_ringfinger_3/
- share/makehuman/rotations/050_right_ringfinger_3/ROT1/
- share/makehuman/rotations/050_right_ringfinger_3/ROT1/00_Y_LIMB_RFINGER43.rot
- share/makehuman/rotations/050_right_ringfinger_3/ROT1/00_Y_LIMB_RFINGER43.rot.info
- share/makehuman/rotations/050_right_ringfinger_3/ROT1/00_Y_LIMB_RFINGER43.target
- share/makehuman/rotations/050_right_ringfinger_3/ROT1/00_Y_LIMB_RFINGER43.target.info
- share/makehuman/rotations/051_right_ringfinger_2/
- share/makehuman/rotations/051_right_ringfinger_2/ROT1/
- share/makehuman/rotations/051_right_ringfinger_2/ROT1/00_Y_LIMB_RFINGER42.rot
- share/makehuman/rotations/051_right_ringfinger_2/ROT1/00_Y_LIMB_RFINGER42.rot.info
- share/makehuman/rotations/051_right_ringfinger_2/ROT1/00_Y_LIMB_RFINGER42.target
- share/makehuman/rotations/051_right_ringfinger_2/ROT1/00_Y_LIMB_RFINGER42.target.info
- share/makehuman/rotations/052_right_ringfinger_1/
- share/makehuman/rotations/052_right_ringfinger_1/ROT1/
- share/makehuman/rotations/052_right_ringfinger_1/ROT1/00_Y_LIMB_RFINGER41-.rot
- share/makehuman/rotations/052_right_ringfinger_1/ROT1/00_Y_LIMB_RFINGER41-.rot.info
- share/makehuman/rotations/052_right_ringfinger_1/ROT1/00_Y_LIMB_RFINGER41-.target
- share/makehuman/rotations/052_right_ringfinger_1/ROT1/00_Y_LIMB_RFINGER41-.target.info
- share/makehuman/rotations/052_right_ringfinger_1/ROT1/00_Y_LIMB_RFINGER41.rot
- share/makehuman/rotations/052_right_ringfinger_1/ROT1/00_Y_LIMB_RFINGER41.rot.info
- share/makehuman/rotations/052_right_ringfinger_1/ROT1/00_Y_LIMB_RFINGER41.target
- share/makehuman/rotations/052_right_ringfinger_1/ROT1/00_Y_LIMB_RFINGER41.target.info
- share/makehuman/rotations/052_right_ringfinger_1/ROT2/
- share/makehuman/rotations/052_right_ringfinger_1/ROT2/00_Z_LIMB_RFINGER41-.rot
- share/makehuman/rotations/052_right_ringfinger_1/ROT2/00_Z_LIMB_RFINGER41-.rot.info
- share/makehuman/rotations/052_right_ringfinger_1/ROT2/00_Z_LIMB_RFINGER41-.target
- share/makehuman/rotations/052_right_ringfinger_1/ROT2/00_Z_LIMB_RFINGER41-.target.info
- share/makehuman/rotations/052_right_ringfinger_1/ROT2/00_Z_LIMB_RFINGER41.rot
- share/makehuman/rotations/052_right_ringfinger_1/ROT2/00_Z_LIMB_RFINGER41.rot.info
- share/makehuman/rotations/052_right_ringfinger_1/ROT2/00_Z_LIMB_RFINGER41.target
- share/makehuman/rotations/052_right_ringfinger_1/ROT2/00_Z_LIMB_RFINGER41.target.info
- share/makehuman/rotations/053_right_littlefinger_3/
- share/makehuman/rotations/053_right_littlefinger_3/ROT1/
- share/makehuman/rotations/053_right_littlefinger_3/ROT1/00_Y_LIMB_RFINGER53.rot
- share/makehuman/rotations/053_right_littlefinger_3/ROT1/00_Y_LIMB_RFINGER53.rot.info
- share/makehuman/rotations/053_right_littlefinger_3/ROT1/00_Y_LIMB_RFINGER53.target
- share/makehuman/rotations/053_right_littlefinger_3/ROT1/00_Y_LIMB_RFINGER53.target.info
- share/makehuman/rotations/054_right_littlefinger_2/
- share/makehuman/rotations/054_right_littlefinger_2/ROT1/
- share/makehuman/rotations/054_right_littlefinger_2/ROT1/00_Y_LIMB_RFINGER52.rot
- share/makehuman/rotations/054_right_littlefinger_2/ROT1/00_Y_LIMB_RFINGER52.rot.info
- share/makehuman/rotations/054_right_littlefinger_2/ROT1/00_Y_LIMB_RFINGER52.target
- share/makehuman/rotations/054_right_littlefinger_2/ROT1/00_Y_LIMB_RFINGER52.target.info
- share/makehuman/rotations/055_right_littlefinger_1/
- share/makehuman/rotations/055_right_littlefinger_1/ROT1/
- share/makehuman/rotations/055_right_littlefinger_1/ROT1/00_Y_LIMB_RFINGER51-.rot
- share/makehuman/rotations/055_right_littlefinger_1/ROT1/00_Y_LIMB_RFINGER51-.rot.info
- share/makehuman/rotations/055_right_littlefinger_1/ROT1/00_Y_LIMB_RFINGER51-.target
- share/makehuman/rotations/055_right_littlefinger_1/ROT1/00_Y_LIMB_RFINGER51-.target.info
- share/makehuman/rotations/055_right_littlefinger_1/ROT1/00_Y_LIMB_RFINGER51.rot
- share/makehuman/rotations/055_right_littlefinger_1/ROT1/00_Y_LIMB_RFINGER51.rot.info
- share/makehuman/rotations/055_right_littlefinger_1/ROT1/00_Y_LIMB_RFINGER51.target
- share/makehuman/rotations/055_right_littlefinger_1/ROT1/00_Y_LIMB_RFINGER51.target.info
- share/makehuman/rotations/055_right_littlefinger_1/ROT2/
- share/makehuman/rotations/055_right_littlefinger_1/ROT2/00_Z_LIMB_RFINGER51-.rot
- share/makehuman/rotations/055_right_littlefinger_1/ROT2/00_Z_LIMB_RFINGER51-.rot.info
- share/makehuman/rotations/055_right_littlefinger_1/ROT2/00_Z_LIMB_RFINGER51-.target
- share/makehuman/rotations/055_right_littlefinger_1/ROT2/00_Z_LIMB_RFINGER51-.target.info
- share/makehuman/rotations/055_right_littlefinger_1/ROT2/00_Z_LIMB_RFINGER51.rot
- share/makehuman/rotations/055_right_littlefinger_1/ROT2/00_Z_LIMB_RFINGER51.rot.info
- share/makehuman/rotations/055_right_littlefinger_1/ROT2/00_Z_LIMB_RFINGER51.target
- share/makehuman/rotations/055_right_littlefinger_1/ROT2/00_Z_LIMB_RFINGER51.target.info
- share/makehuman/rotations/060_right_hand/
- share/makehuman/rotations/060_right_hand/ROT1/
- share/makehuman/rotations/060_right_hand/ROT1/00_Y_LIMB_RHAND-.rot
- share/makehuman/rotations/060_right_hand/ROT1/00_Y_LIMB_RHAND-.rot.info
- share/makehuman/rotations/060_right_hand/ROT1/00_Y_LIMB_RHAND-.target
- share/makehuman/rotations/060_right_hand/ROT1/00_Y_LIMB_RHAND-.target.info
- share/makehuman/rotations/060_right_hand/ROT1/00_Y_LIMB_RHAND.rot
- share/makehuman/rotations/060_right_hand/ROT1/00_Y_LIMB_RHAND.rot.info
- share/makehuman/rotations/060_right_hand/ROT1/00_Y_LIMB_RHAND.target
- share/makehuman/rotations/060_right_hand/ROT1/00_Y_LIMB_RHAND.target.info
- share/makehuman/rotations/060_right_hand/ROT2/
- share/makehuman/rotations/060_right_hand/ROT2/00_Z_LIMB_RHAND-.rot
- share/makehuman/rotations/060_right_hand/ROT2/00_Z_LIMB_RHAND-.rot.info
- share/makehuman/rotations/060_right_hand/ROT2/00_Z_LIMB_RHAND-.target
- share/makehuman/rotations/060_right_hand/ROT2/00_Z_LIMB_RHAND-.target.info
- share/makehuman/rotations/060_right_hand/ROT2/00_Z_LIMB_RHAND.rot
- share/makehuman/rotations/060_right_hand/ROT2/00_Z_LIMB_RHAND.rot.info
- share/makehuman/rotations/060_right_hand/ROT2/00_Z_LIMB_RHAND.target
- share/makehuman/rotations/060_right_hand/ROT2/00_Z_LIMB_RHAND.target.info
- share/makehuman/rotations/060_right_hand/ROT3/
- share/makehuman/rotations/060_right_hand/ROT3/00_X_LIMB_RHAND-.rot
- share/makehuman/rotations/060_right_hand/ROT3/00_X_LIMB_RHAND-.rot.info
- share/makehuman/rotations/060_right_hand/ROT3/00_X_LIMB_RHAND.rot
- share/makehuman/rotations/060_right_hand/ROT3/00_X_LIMB_RHAND.rot.info
- share/makehuman/rotations/060_right_hand/ROT3/00_X_LIMB_RHAND.target
- share/makehuman/rotations/060_right_hand/ROT3/00_X_LIMB_RHAND.target.info
- share/makehuman/rotations/061_left_pollex_3/
- share/makehuman/rotations/061_left_pollex_3/ROT1/
- share/makehuman/rotations/061_left_pollex_3/ROT1/00_Z_LIMB_LFINGER13.rot
- share/makehuman/rotations/061_left_pollex_3/ROT1/00_Z_LIMB_LFINGER13.rot.info
- share/makehuman/rotations/061_left_pollex_3/ROT1/00_Z_LIMB_LFINGER13.target
- share/makehuman/rotations/061_left_pollex_3/ROT1/00_Z_LIMB_LFINGER13.target.info
- share/makehuman/rotations/062_left_pollex_2/
- share/makehuman/rotations/062_left_pollex_2/ROT1/
- share/makehuman/rotations/062_left_pollex_2/ROT1/00_Z_LIMB_LFINGER12-.rot
- share/makehuman/rotations/062_left_pollex_2/ROT1/00_Z_LIMB_LFINGER12-.rot.info
- share/makehuman/rotations/062_left_pollex_2/ROT1/00_Z_LIMB_LFINGER12-.target
- share/makehuman/rotations/062_left_pollex_2/ROT1/00_Z_LIMB_LFINGER12-.target.info
- share/makehuman/rotations/062_left_pollex_2/ROT1/00_Z_LIMB_LFINGER12.rot
- share/makehuman/rotations/062_left_pollex_2/ROT1/00_Z_LIMB_LFINGER12.rot.info
- share/makehuman/rotations/062_left_pollex_2/ROT1/00_Z_LIMB_LFINGER12.target
- share/makehuman/rotations/062_left_pollex_2/ROT1/00_Z_LIMB_LFINGER12.target.info
- share/makehuman/rotations/063_left_pollex_1/
- share/makehuman/rotations/063_left_pollex_1/ROT1/
- share/makehuman/rotations/063_left_pollex_1/ROT1/00_X_LIMB_LFINGER11-.rot
- share/makehuman/rotations/063_left_pollex_1/ROT1/00_X_LIMB_LFINGER11-.rot.info
- share/makehuman/rotations/063_left_pollex_1/ROT1/00_X_LIMB_LFINGER11-.target
- share/makehuman/rotations/063_left_pollex_1/ROT1/00_X_LIMB_LFINGER11-.target.info
- share/makehuman/rotations/063_left_pollex_1/ROT1/00_X_LIMB_LFINGER11.rot
- share/makehuman/rotations/063_left_pollex_1/ROT1/00_X_LIMB_LFINGER11.rot.info
- share/makehuman/rotations/063_left_pollex_1/ROT1/00_X_LIMB_LFINGER11.target
- share/makehuman/rotations/063_left_pollex_1/ROT1/00_X_LIMB_LFINGER11.target.info
- share/makehuman/rotations/064_left_forefinger_3/
- share/makehuman/rotations/064_left_forefinger_3/ROT1/
- share/makehuman/rotations/064_left_forefinger_3/ROT1/00_Y_LIMB_LFINGER23.rot
- share/makehuman/rotations/064_left_forefinger_3/ROT1/00_Y_LIMB_LFINGER23.rot.info
- share/makehuman/rotations/064_left_forefinger_3/ROT1/00_Y_LIMB_LFINGER23.target
- share/makehuman/rotations/064_left_forefinger_3/ROT1/00_Y_LIMB_LFINGER23.target.info
- share/makehuman/rotations/065_left_forefinger_2/
- share/makehuman/rotations/065_left_forefinger_2/ROT1/
- share/makehuman/rotations/065_left_forefinger_2/ROT1/00_Y_LIMB_LFINGER22.rot
- share/makehuman/rotations/065_left_forefinger_2/ROT1/00_Y_LIMB_LFINGER22.rot.info
- share/makehuman/rotations/065_left_forefinger_2/ROT1/00_Y_LIMB_LFINGER22.target
- share/makehuman/rotations/065_left_forefinger_2/ROT1/00_Y_LIMB_LFINGER22.target.info
- share/makehuman/rotations/066_left_forefinger_1/
- share/makehuman/rotations/066_left_forefinger_1/ROT1/
- share/makehuman/rotations/066_left_forefinger_1/ROT1/00_Y_LIMB_LFINGER21-.rot
- share/makehuman/rotations/066_left_forefinger_1/ROT1/00_Y_LIMB_LFINGER21-.rot.info
- share/makehuman/rotations/066_left_forefinger_1/ROT1/00_Y_LIMB_LFINGER21-.target
- share/makehuman/rotations/066_left_forefinger_1/ROT1/00_Y_LIMB_LFINGER21-.target.info
- share/makehuman/rotations/066_left_forefinger_1/ROT1/00_Y_LIMB_LFINGER21.rot
- share/makehuman/rotations/066_left_forefinger_1/ROT1/00_Y_LIMB_LFINGER21.rot.info
- share/makehuman/rotations/066_left_forefinger_1/ROT1/00_Y_LIMB_LFINGER21.target
- share/makehuman/rotations/066_left_forefinger_1/ROT1/00_Y_LIMB_LFINGER21.target.info
- share/makehuman/rotations/066_left_forefinger_1/ROT2/
- share/makehuman/rotations/066_left_forefinger_1/ROT2/00_Z_LIMB_LFINGER21-.rot
- share/makehuman/rotations/066_left_forefinger_1/ROT2/00_Z_LIMB_LFINGER21-.rot.info
- share/makehuman/rotations/066_left_forefinger_1/ROT2/00_Z_LIMB_LFINGER21-.target
- share/makehuman/rotations/066_left_forefinger_1/ROT2/00_Z_LIMB_LFINGER21-.target.info
- share/makehuman/rotations/066_left_forefinger_1/ROT2/00_Z_LIMB_LFINGER21.rot
- share/makehuman/rotations/066_left_forefinger_1/ROT2/00_Z_LIMB_LFINGER21.rot.info
- share/makehuman/rotations/066_left_forefinger_1/ROT2/00_Z_LIMB_LFINGER21.target
- share/makehuman/rotations/066_left_forefinger_1/ROT2/00_Z_LIMB_LFINGER21.target.info
- share/makehuman/rotations/067_left_middlefinger_3/
- share/makehuman/rotations/067_left_middlefinger_3/ROT1/
- share/makehuman/rotations/067_left_middlefinger_3/ROT1/00_Y_LIMB_LFINGER33.rot
- share/makehuman/rotations/067_left_middlefinger_3/ROT1/00_Y_LIMB_LFINGER33.rot.info
- share/makehuman/rotations/067_left_middlefinger_3/ROT1/00_Y_LIMB_LFINGER33.target
- share/makehuman/rotations/067_left_middlefinger_3/ROT1/00_Y_LIMB_LFINGER33.target.info
- share/makehuman/rotations/068_left_middlefinger_2/
- share/makehuman/rotations/068_left_middlefinger_2/ROT1/
- share/makehuman/rotations/068_left_middlefinger_2/ROT1/00_Y_LIMB_LFINGER32.rot
- share/makehuman/rotations/068_left_middlefinger_2/ROT1/00_Y_LIMB_LFINGER32.rot.info
- share/makehuman/rotations/068_left_middlefinger_2/ROT1/00_Y_LIMB_LFINGER32.target
- share/makehuman/rotations/068_left_middlefinger_2/ROT1/00_Y_LIMB_LFINGER32.target.info
- share/makehuman/rotations/069_left_middlefinger_1/
- share/makehuman/rotations/069_left_middlefinger_1/ROT1/
- share/makehuman/rotations/069_left_middlefinger_1/ROT1/00_Y_LIMB_LFINGER31-.rot
- share/makehuman/rotations/069_left_middlefinger_1/ROT1/00_Y_LIMB_LFINGER31-.rot.info
- share/makehuman/rotations/069_left_middlefinger_1/ROT1/00_Y_LIMB_LFINGER31-.target
- share/makehuman/rotations/069_left_middlefinger_1/ROT1/00_Y_LIMB_LFINGER31-.target.info
- share/makehuman/rotations/069_left_middlefinger_1/ROT1/00_Y_LIMB_LFINGER31.rot
- share/makehuman/rotations/069_left_middlefinger_1/ROT1/00_Y_LIMB_LFINGER31.rot.info
- share/makehuman/rotations/069_left_middlefinger_1/ROT1/00_Y_LIMB_LFINGER31.target
- share/makehuman/rotations/069_left_middlefinger_1/ROT1/00_Y_LIMB_LFINGER31.target.info
- share/makehuman/rotations/069_left_middlefinger_1/ROT2/
- share/makehuman/rotations/069_left_middlefinger_1/ROT2/00_Z_LIMB_LFINGER31-.rot
- share/makehuman/rotations/069_left_middlefinger_1/ROT2/00_Z_LIMB_LFINGER31-.rot.info
- share/makehuman/rotations/069_left_middlefinger_1/ROT2/00_Z_LIMB_LFINGER31-.target
- share/makehuman/rotations/069_left_middlefinger_1/ROT2/00_Z_LIMB_LFINGER31-.target.info
- share/makehuman/rotations/069_left_middlefinger_1/ROT2/00_Z_LIMB_LFINGER31.rot
- share/makehuman/rotations/069_left_middlefinger_1/ROT2/00_Z_LIMB_LFINGER31.rot.info
- share/makehuman/rotations/069_left_middlefinger_1/ROT2/00_Z_LIMB_LFINGER31.target
- share/makehuman/rotations/069_left_middlefinger_1/ROT2/00_Z_LIMB_LFINGER31.target.info
- share/makehuman/rotations/070_left_ringfinger_3/
- share/makehuman/rotations/070_left_ringfinger_3/ROT1/
- share/makehuman/rotations/070_left_ringfinger_3/ROT1/00_Y_LIMB_LFINGER43.rot
- share/makehuman/rotations/070_left_ringfinger_3/ROT1/00_Y_LIMB_LFINGER43.rot.info
- share/makehuman/rotations/070_left_ringfinger_3/ROT1/00_Y_LIMB_LFINGER43.target
- share/makehuman/rotations/070_left_ringfinger_3/ROT1/00_Y_LIMB_LFINGER43.target.info
- share/makehuman/rotations/071_left_ringfinger_2/
- share/makehuman/rotations/071_left_ringfinger_2/ROT1/
- share/makehuman/rotations/071_left_ringfinger_2/ROT1/00_Y_LIMB_LFINGER42.rot
- share/makehuman/rotations/071_left_ringfinger_2/ROT1/00_Y_LIMB_LFINGER42.rot.info
- share/makehuman/rotations/071_left_ringfinger_2/ROT1/00_Y_LIMB_LFINGER42.target
- share/makehuman/rotations/071_left_ringfinger_2/ROT1/00_Y_LIMB_LFINGER42.target.info
- share/makehuman/rotations/072_left_ringfinger_1/
- share/makehuman/rotations/072_left_ringfinger_1/ROT1/
- share/makehuman/rotations/072_left_ringfinger_1/ROT1/00_Y_LIMB_LFINGER41-.rot
- share/makehuman/rotations/072_left_ringfinger_1/ROT1/00_Y_LIMB_LFINGER41-.rot.info
- share/makehuman/rotations/072_left_ringfinger_1/ROT1/00_Y_LIMB_LFINGER41-.target
- share/makehuman/rotations/072_left_ringfinger_1/ROT1/00_Y_LIMB_LFINGER41-.target.info
- share/makehuman/rotations/072_left_ringfinger_1/ROT1/00_Y_LIMB_LFINGER41.rot
- share/makehuman/rotations/072_left_ringfinger_1/ROT1/00_Y_LIMB_LFINGER41.rot.info
- share/makehuman/rotations/072_left_ringfinger_1/ROT1/00_Y_LIMB_LFINGER41.target
- share/makehuman/rotations/072_left_ringfinger_1/ROT1/00_Y_LIMB_LFINGER41.target.info
- share/makehuman/rotations/072_left_ringfinger_1/ROT2/
- share/makehuman/rotations/072_left_ringfinger_1/ROT2/00_Z_LIMB_LFINGER41-.rot
- share/makehuman/rotations/072_left_ringfinger_1/ROT2/00_Z_LIMB_LFINGER41-.rot.info
- share/makehuman/rotations/072_left_ringfinger_1/ROT2/00_Z_LIMB_LFINGER41-.target
- share/makehuman/rotations/072_left_ringfinger_1/ROT2/00_Z_LIMB_LFINGER41-.target.info
- share/makehuman/rotations/072_left_ringfinger_1/ROT2/00_Z_LIMB_LFINGER41.rot
- share/makehuman/rotations/072_left_ringfinger_1/ROT2/00_Z_LIMB_LFINGER41.rot.info
- share/makehuman/rotations/072_left_ringfinger_1/ROT2/00_Z_LIMB_LFINGER41.target
- share/makehuman/rotations/072_left_ringfinger_1/ROT2/00_Z_LIMB_LFINGER41.target.info
- share/makehuman/rotations/073_left_littlefinger_3/
- share/makehuman/rotations/073_left_littlefinger_3/ROT1/
- share/makehuman/rotations/073_left_littlefinger_3/ROT1/00_Y_LIMB_LFINGER53.rot
- share/makehuman/rotations/073_left_littlefinger_3/ROT1/00_Y_LIMB_LFINGER53.rot.info
- share/makehuman/rotations/073_left_littlefinger_3/ROT1/00_Y_LIMB_LFINGER53.target
- share/makehuman/rotations/073_left_littlefinger_3/ROT1/00_Y_LIMB_LFINGER53.target.info
- share/makehuman/rotations/074_left_littlefinger_2/
- share/makehuman/rotations/074_left_littlefinger_2/ROT1/
- share/makehuman/rotations/074_left_littlefinger_2/ROT1/00_Y_LIMB_LFINGER52.rot
- share/makehuman/rotations/074_left_littlefinger_2/ROT1/00_Y_LIMB_LFINGER52.rot.info
- share/makehuman/rotations/074_left_littlefinger_2/ROT1/00_Y_LIMB_LFINGER52.target
- share/makehuman/rotations/074_left_littlefinger_2/ROT1/00_Y_LIMB_LFINGER52.target.info
- share/makehuman/rotations/075_left_littlefinger_1/
- share/makehuman/rotations/075_left_littlefinger_1/ROT1/
- share/makehuman/rotations/075_left_littlefinger_1/ROT1/00_Y_LIMB_LFINGER51-.rot
- share/makehuman/rotations/075_left_littlefinger_1/ROT1/00_Y_LIMB_LFINGER51-.rot.info
- share/makehuman/rotations/075_left_littlefinger_1/ROT1/00_Y_LIMB_LFINGER51-.target
- share/makehuman/rotations/075_left_littlefinger_1/ROT1/00_Y_LIMB_LFINGER51-.target.info
- share/makehuman/rotations/075_left_littlefinger_1/ROT1/00_Y_LIMB_LFINGER51.rot
- share/makehuman/rotations/075_left_littlefinger_1/ROT1/00_Y_LIMB_LFINGER51.rot.info
- share/makehuman/rotations/075_left_littlefinger_1/ROT1/00_Y_LIMB_LFINGER51.target
- share/makehuman/rotations/075_left_littlefinger_1/ROT1/00_Y_LIMB_LFINGER51.target.info
- share/makehuman/rotations/075_left_littlefinger_1/ROT2/
- share/makehuman/rotations/075_left_littlefinger_1/ROT2/00_Z_LIMB_LFINGER51-.rot
- share/makehuman/rotations/075_left_littlefinger_1/ROT2/00_Z_LIMB_LFINGER51-.rot.info
- share/makehuman/rotations/075_left_littlefinger_1/ROT2/00_Z_LIMB_LFINGER51-.target
- share/makehuman/rotations/075_left_littlefinger_1/ROT2/00_Z_LIMB_LFINGER51-.target.info
- share/makehuman/rotations/075_left_littlefinger_1/ROT2/00_Z_LIMB_LFINGER51.rot
- share/makehuman/rotations/075_left_littlefinger_1/ROT2/00_Z_LIMB_LFINGER51.rot.info
- share/makehuman/rotations/075_left_littlefinger_1/ROT2/00_Z_LIMB_LFINGER51.target
- share/makehuman/rotations/075_left_littlefinger_1/ROT2/00_Z_LIMB_LFINGER51.target.info
- share/makehuman/rotations/080_left_hand/
- share/makehuman/rotations/080_left_hand/ROT1/
- share/makehuman/rotations/080_left_hand/ROT1/00_Y_LIMB_LHAND-.rot
- share/makehuman/rotations/080_left_hand/ROT1/00_Y_LIMB_LHAND-.rot.info
- share/makehuman/rotations/080_left_hand/ROT1/00_Y_LIMB_LHAND-.target
- share/makehuman/rotations/080_left_hand/ROT1/00_Y_LIMB_LHAND-.target.info
- share/makehuman/rotations/080_left_hand/ROT1/00_Y_LIMB_LHAND.rot
- share/makehuman/rotations/080_left_hand/ROT1/00_Y_LIMB_LHAND.rot.info
- share/makehuman/rotations/080_left_hand/ROT1/00_Y_LIMB_LHAND.target
- share/makehuman/rotations/080_left_hand/ROT1/00_Y_LIMB_LHAND.target.info
- share/makehuman/rotations/080_left_hand/ROT2/
- share/makehuman/rotations/080_left_hand/ROT2/00_Z_LIMB_LHAND-.rot
- share/makehuman/rotations/080_left_hand/ROT2/00_Z_LIMB_LHAND-.rot.info
- share/makehuman/rotations/080_left_hand/ROT2/00_Z_LIMB_LHAND-.target
- share/makehuman/rotations/080_left_hand/ROT2/00_Z_LIMB_LHAND-.target.info
- share/makehuman/rotations/080_left_hand/ROT2/00_Z_LIMB_LHAND.rot
- share/makehuman/rotations/080_left_hand/ROT2/00_Z_LIMB_LHAND.rot.info
- share/makehuman/rotations/080_left_hand/ROT2/00_Z_LIMB_LHAND.target
- share/makehuman/rotations/080_left_hand/ROT2/00_Z_LIMB_LHAND.target.info
- share/makehuman/rotations/080_left_hand/ROT3/
- share/makehuman/rotations/080_left_hand/ROT3/00_X_LIMB_LHAND-.rot
- share/makehuman/rotations/080_left_hand/ROT3/00_X_LIMB_LHAND-.rot.info
- share/makehuman/rotations/080_left_hand/ROT3/00_X_LIMB_LHAND.rot
- share/makehuman/rotations/080_left_hand/ROT3/00_X_LIMB_LHAND.rot.info
- share/makehuman/rotations/080_left_hand/ROT3/00_X_LIMB_LHAND.target
- share/makehuman/rotations/080_left_hand/ROT3/00_X_LIMB_LHAND.target.info
- share/makehuman/rotations/100_right_lower_leg/
- share/makehuman/rotations/100_right_lower_leg/ROT1/
- share/makehuman/rotations/100_right_lower_leg/ROT1/00_Z_LIMB_RLOWERLEG.rot
- share/makehuman/rotations/100_right_lower_leg/ROT1/00_Z_LIMB_RLOWERLEG.rot.info
- share/makehuman/rotations/100_right_lower_leg/ROT2/
- share/makehuman/rotations/100_right_lower_leg/ROT2/00_X_LIMB_RLOWERLEG0.rot
- share/makehuman/rotations/100_right_lower_leg/ROT2/00_X_LIMB_RLOWERLEG0.rot.info
- share/makehuman/rotations/100_right_lower_leg/ROT2/00_X_LIMB_RLOWERLEG0.target
- share/makehuman/rotations/100_right_lower_leg/ROT2/00_X_LIMB_RLOWERLEG0.target.info
- share/makehuman/rotations/100_right_lower_leg/ROT2/00_X_LIMB_RLOWERLEG1.rot
- share/makehuman/rotations/100_right_lower_leg/ROT2/00_X_LIMB_RLOWERLEG1.rot.info
- share/makehuman/rotations/100_right_lower_leg/ROT2/00_X_LIMB_RLOWERLEG1.target
- share/makehuman/rotations/100_right_lower_leg/ROT2/00_X_LIMB_RLOWERLEG1.target.info
- share/makehuman/rotations/120_left_lower_leg/
- share/makehuman/rotations/120_left_lower_leg/ROT1/
- share/makehuman/rotations/120_left_lower_leg/ROT1/00_Z_LIMB_LLOWERLEG.rot
- share/makehuman/rotations/120_left_lower_leg/ROT1/00_Z_LIMB_LLOWERLEG.rot.info
- share/makehuman/rotations/120_left_lower_leg/ROT2/
- share/makehuman/rotations/120_left_lower_leg/ROT2/00_X_LIMB_LLOWERLEG0.rot
- share/makehuman/rotations/120_left_lower_leg/ROT2/00_X_LIMB_LLOWERLEG0.rot.info
- share/makehuman/rotations/120_left_lower_leg/ROT2/00_X_LIMB_LLOWERLEG0.target
- share/makehuman/rotations/120_left_lower_leg/ROT2/00_X_LIMB_LLOWERLEG0.target.info
- share/makehuman/rotations/120_left_lower_leg/ROT2/00_X_LIMB_LLOWERLEG1.rot
- share/makehuman/rotations/120_left_lower_leg/ROT2/00_X_LIMB_LLOWERLEG1.rot.info
- share/makehuman/rotations/120_left_lower_leg/ROT2/00_X_LIMB_LLOWERLEG1.target
- share/makehuman/rotations/120_left_lower_leg/ROT2/00_X_LIMB_LLOWERLEG1.target.info
- share/makehuman/rotations/140_right_lower_arm/
- share/makehuman/rotations/140_right_lower_arm/ROT1/
- share/makehuman/rotations/140_right_lower_arm/ROT1/00_X_LIMB_RLOWERARM0.rot
- share/makehuman/rotations/140_right_lower_arm/ROT1/00_X_LIMB_RLOWERARM0.rot.info
- share/makehuman/rotations/140_right_lower_arm/ROT1/00_X_LIMB_RLOWERARM0.target
- share/makehuman/rotations/140_right_lower_arm/ROT1/00_X_LIMB_RLOWERARM0.target.info
- share/makehuman/rotations/140_right_lower_arm/ROT1/00_X_LIMB_RLOWERARM1.rot
- share/makehuman/rotations/140_right_lower_arm/ROT1/00_X_LIMB_RLOWERARM1.rot.info
- share/makehuman/rotations/140_right_lower_arm/ROT1/00_X_LIMB_RLOWERARM1.target
- share/makehuman/rotations/140_right_lower_arm/ROT1/00_X_LIMB_RLOWERARM1.target.info
- share/makehuman/rotations/160_left_lower_arm/
- share/makehuman/rotations/160_left_lower_arm/ROT1/
- share/makehuman/rotations/160_left_lower_arm/ROT1/00_X_LIMB_LLOWERARM0.rot
- share/makehuman/rotations/160_left_lower_arm/ROT1/00_X_LIMB_LLOWERARM0.rot.info
- share/makehuman/rotations/160_left_lower_arm/ROT1/00_X_LIMB_LLOWERARM0.target
- share/makehuman/rotations/160_left_lower_arm/ROT1/00_X_LIMB_LLOWERARM0.target.info
- share/makehuman/rotations/160_left_lower_arm/ROT1/00_X_LIMB_LLOWERARM1.rot
- share/makehuman/rotations/160_left_lower_arm/ROT1/00_X_LIMB_LLOWERARM1.rot.info
- share/makehuman/rotations/160_left_lower_arm/ROT1/00_X_LIMB_LLOWERARM1.target
- share/makehuman/rotations/160_left_lower_arm/ROT1/00_X_LIMB_LLOWERARM1.target.info
- share/makehuman/rotations/180_right_upper_leg/
- share/makehuman/rotations/180_right_upper_leg/ROT_ADJUST1/
- share/makehuman/rotations/180_right_upper_leg/ROT_ADJUST1/00_Z_LIMB_RUPPERLEG-.rot
- share/makehuman/rotations/180_right_upper_leg/ROT_ADJUST1/00_Z_LIMB_RUPPERLEG-.rot.info
- share/makehuman/rotations/180_right_upper_leg/ROT_ADJUST1/00_Z_LIMB_RUPPERLEG-.target
- share/makehuman/rotations/180_right_upper_leg/ROT_ADJUST1/00_Z_LIMB_RUPPERLEG-.target.info
- share/makehuman/rotations/180_right_upper_leg/ROT_ADJUST1/00_Z_LIMB_RUPPERLEG.rot
- share/makehuman/rotations/180_right_upper_leg/ROT_ADJUST1/00_Z_LIMB_RUPPERLEG.rot.info
- share/makehuman/rotations/180_right_upper_leg/ROT_ADJUST1/00_Z_LIMB_RUPPERLEG.target
- share/makehuman/rotations/180_right_upper_leg/ROT_ADJUST1/00_Z_LIMB_RUPPERLEG.target.info
- share/makehuman/rotations/180_right_upper_leg/ROT_ADJUST2/
- share/makehuman/rotations/180_right_upper_leg/ROT_ADJUST2/00_Y_LIMB_RUPPERLEG-.rot
- share/makehuman/rotations/180_right_upper_leg/ROT_ADJUST2/00_Y_LIMB_RUPPERLEG-.rot.info
- share/makehuman/rotations/180_right_upper_leg/ROT_ADJUST2/00_Y_LIMB_RUPPERLEG.rot
- share/makehuman/rotations/180_right_upper_leg/ROT_ADJUST2/00_Y_LIMB_RUPPERLEG.rot.info
- share/makehuman/rotations/180_right_upper_leg/ROT_BASE1/
- share/makehuman/rotations/180_right_upper_leg/ROT_BASE1/00_Y_LIMB_RUPPERLEG-.rot
- share/makehuman/rotations/180_right_upper_leg/ROT_BASE1/00_Y_LIMB_RUPPERLEG-.rot.info
- share/makehuman/rotations/180_right_upper_leg/ROT_BASE1/00_Y_LIMB_RUPPERLEG.rot
- share/makehuman/rotations/180_right_upper_leg/ROT_BASE1/00_Y_LIMB_RUPPERLEG.rot.info
- share/makehuman/rotations/180_right_upper_leg/ROT_BASE1/00_Y_LIMB_RUPPERLEG.target
- share/makehuman/rotations/180_right_upper_leg/ROT_BASE1/00_Y_LIMB_RUPPERLEG.target.info
- share/makehuman/rotations/180_right_upper_leg/ROT_BASE2/
- share/makehuman/rotations/180_right_upper_leg/ROT_BASE2/00_X_LIMB_RUPPERLEG-.rot
- share/makehuman/rotations/180_right_upper_leg/ROT_BASE2/00_X_LIMB_RUPPERLEG-.rot.info
- share/makehuman/rotations/180_right_upper_leg/ROT_BASE2/00_X_LIMB_RUPPERLEG-.target
- share/makehuman/rotations/180_right_upper_leg/ROT_BASE2/00_X_LIMB_RUPPERLEG-.target.info
- share/makehuman/rotations/180_right_upper_leg/ROT_BASE2/00_X_LIMB_RUPPERLEG0.rot
- share/makehuman/rotations/180_right_upper_leg/ROT_BASE2/00_X_LIMB_RUPPERLEG0.rot.info
- share/makehuman/rotations/180_right_upper_leg/ROT_BASE2/00_X_LIMB_RUPPERLEG0.target
- share/makehuman/rotations/180_right_upper_leg/ROT_BASE2/00_X_LIMB_RUPPERLEG0.target.info
- share/makehuman/rotations/180_right_upper_leg/ROT_BASE3/
- share/makehuman/rotations/180_right_upper_leg/ROT_BASE3/00_Y_LIMB_RUPPERLEG.rot
- share/makehuman/rotations/180_right_upper_leg/ROT_BASE3/00_Y_LIMB_RUPPERLEG.rot.info
- share/makehuman/rotations/180_right_upper_leg/ROT_BASE3/00_Y_LIMB_RUPPERLEG.target
- share/makehuman/rotations/180_right_upper_leg/ROT_BASE3/00_Y_LIMB_RUPPERLEG.target.info
- share/makehuman/rotations/180_right_upper_leg/ROT_BASE3/01_X_LIMB_RUPPERLEG.rot
- share/makehuman/rotations/180_right_upper_leg/ROT_BASE3/01_X_LIMB_RUPPERLEG.rot.info
- share/makehuman/rotations/200_left_upper_leg/
- share/makehuman/rotations/200_left_upper_leg/ROT_ADJUST1/
- share/makehuman/rotations/200_left_upper_leg/ROT_ADJUST1/00_Z_LIMB_LUPPERLEG-.rot
- share/makehuman/rotations/200_left_upper_leg/ROT_ADJUST1/00_Z_LIMB_LUPPERLEG-.rot.info
- share/makehuman/rotations/200_left_upper_leg/ROT_ADJUST1/00_Z_LIMB_LUPPERLEG-.target
- share/makehuman/rotations/200_left_upper_leg/ROT_ADJUST1/00_Z_LIMB_LUPPERLEG-.target.info
- share/makehuman/rotations/200_left_upper_leg/ROT_ADJUST1/00_Z_LIMB_LUPPERLEG.rot
- share/makehuman/rotations/200_left_upper_leg/ROT_ADJUST1/00_Z_LIMB_LUPPERLEG.rot.info
- share/makehuman/rotations/200_left_upper_leg/ROT_ADJUST1/00_Z_LIMB_LUPPERLEG.target
- share/makehuman/rotations/200_left_upper_leg/ROT_ADJUST1/00_Z_LIMB_LUPPERLEG.target.info
- share/makehuman/rotations/200_left_upper_leg/ROT_ADJUST2/
- share/makehuman/rotations/200_left_upper_leg/ROT_ADJUST2/00_Y_LIMB_LUPPERLEG-.rot
- share/makehuman/rotations/200_left_upper_leg/ROT_ADJUST2/00_Y_LIMB_LUPPERLEG-.rot.info
- share/makehuman/rotations/200_left_upper_leg/ROT_ADJUST2/00_Y_LIMB_LUPPERLEG.rot
- share/makehuman/rotations/200_left_upper_leg/ROT_ADJUST2/00_Y_LIMB_LUPPERLEG.rot.info
- share/makehuman/rotations/200_left_upper_leg/ROT_BASE1/
- share/makehuman/rotations/200_left_upper_leg/ROT_BASE1/00_Y_LIMB_LUPPERLEG-.rot
- share/makehuman/rotations/200_left_upper_leg/ROT_BASE1/00_Y_LIMB_LUPPERLEG-.rot.info
- share/makehuman/rotations/200_left_upper_leg/ROT_BASE1/00_Y_LIMB_LUPPERLEG.rot
- share/makehuman/rotations/200_left_upper_leg/ROT_BASE1/00_Y_LIMB_LUPPERLEG.rot.info
- share/makehuman/rotations/200_left_upper_leg/ROT_BASE1/00_Y_LIMB_LUPPERLEG.target
- share/makehuman/rotations/200_left_upper_leg/ROT_BASE1/00_Y_LIMB_LUPPERLEG.target.info
- share/makehuman/rotations/200_left_upper_leg/ROT_BASE2/
- share/makehuman/rotations/200_left_upper_leg/ROT_BASE2/00_X_LIMB_LUPPERLEG-.rot
- share/makehuman/rotations/200_left_upper_leg/ROT_BASE2/00_X_LIMB_LUPPERLEG-.rot.info
- share/makehuman/rotations/200_left_upper_leg/ROT_BASE2/00_X_LIMB_LUPPERLEG-.target
- share/makehuman/rotations/200_left_upper_leg/ROT_BASE2/00_X_LIMB_LUPPERLEG-.target.info
- share/makehuman/rotations/200_left_upper_leg/ROT_BASE2/00_X_LIMB_LUPPERLEG0.rot
- share/makehuman/rotations/200_left_upper_leg/ROT_BASE2/00_X_LIMB_LUPPERLEG0.rot.info
- share/makehuman/rotations/200_left_upper_leg/ROT_BASE2/00_X_LIMB_LUPPERLEG0.target
- share/makehuman/rotations/200_left_upper_leg/ROT_BASE2/00_X_LIMB_LUPPERLEG0.target.info
- share/makehuman/rotations/200_left_upper_leg/ROT_BASE3/
- share/makehuman/rotations/200_left_upper_leg/ROT_BASE3/00_Y_LIMB_LUPPERLEG.rot
- share/makehuman/rotations/200_left_upper_leg/ROT_BASE3/00_Y_LIMB_LUPPERLEG.rot.info
- share/makehuman/rotations/200_left_upper_leg/ROT_BASE3/00_Y_LIMB_LUPPERLEG.target
- share/makehuman/rotations/200_left_upper_leg/ROT_BASE3/00_Y_LIMB_LUPPERLEG.target.info
- share/makehuman/rotations/200_left_upper_leg/ROT_BASE3/01_X_LIMB_LUPPERLEG.rot
- share/makehuman/rotations/200_left_upper_leg/ROT_BASE3/01_X_LIMB_LUPPERLEG.rot.info
- share/makehuman/rotations/220_right_upper_arm/
- share/makehuman/rotations/220_right_upper_arm/ROT_ADJUST0/
- share/makehuman/rotations/220_right_upper_arm/ROT_ADJUST0/00_X_LIMB_RUPPERARM-.rot
- share/makehuman/rotations/220_right_upper_arm/ROT_ADJUST0/00_X_LIMB_RUPPERARM-.rot.info
- share/makehuman/rotations/220_right_upper_arm/ROT_ADJUST0/00_X_LIMB_RUPPERARM.rot
- share/makehuman/rotations/220_right_upper_arm/ROT_ADJUST0/00_X_LIMB_RUPPERARM.rot.info
- share/makehuman/rotations/220_right_upper_arm/ROT_ADJUST0/00_X_LIMB_RUPPERARM.target
- share/makehuman/rotations/220_right_upper_arm/ROT_ADJUST0/00_X_LIMB_RUPPERARM.target.info
- share/makehuman/rotations/220_right_upper_arm/ROT_ADJUST1/
- share/makehuman/rotations/220_right_upper_arm/ROT_ADJUST1/00_Y_LIMB_RUPPERARM-.rot
- share/makehuman/rotations/220_right_upper_arm/ROT_ADJUST1/00_Y_LIMB_RUPPERARM-.rot.info
- share/makehuman/rotations/220_right_upper_arm/ROT_ADJUST1/00_Y_LIMB_RUPPERARM.rot
- share/makehuman/rotations/220_right_upper_arm/ROT_ADJUST1/00_Y_LIMB_RUPPERARM.rot.info
- share/makehuman/rotations/220_right_upper_arm/ROT_ADJUST2/
- share/makehuman/rotations/220_right_upper_arm/ROT_ADJUST2/00_Z_LIMB_RUPPERARM-.rot
- share/makehuman/rotations/220_right_upper_arm/ROT_ADJUST2/00_Z_LIMB_RUPPERARM-.rot.info
- share/makehuman/rotations/220_right_upper_arm/ROT_ADJUST2/00_Z_LIMB_RUPPERARM.rot
- share/makehuman/rotations/220_right_upper_arm/ROT_ADJUST2/00_Z_LIMB_RUPPERARM.rot.info
- share/makehuman/rotations/220_right_upper_arm/ROT_BASE1/
- share/makehuman/rotations/220_right_upper_arm/ROT_BASE1/00_Y_LIMB_RUPPERARM-.rot
- share/makehuman/rotations/220_right_upper_arm/ROT_BASE1/00_Y_LIMB_RUPPERARM-.rot.info
- share/makehuman/rotations/220_right_upper_arm/ROT_BASE1/00_Y_LIMB_RUPPERARM-.target
- share/makehuman/rotations/220_right_upper_arm/ROT_BASE1/00_Y_LIMB_RUPPERARM-.target.info
- share/makehuman/rotations/220_right_upper_arm/ROT_BASE1/00_Y_LIMB_RUPPERARM.rot
- share/makehuman/rotations/220_right_upper_arm/ROT_BASE1/00_Y_LIMB_RUPPERARM.rot.info
- share/makehuman/rotations/220_right_upper_arm/ROT_BASE1/00_Y_LIMB_RUPPERARM.target
- share/makehuman/rotations/220_right_upper_arm/ROT_BASE1/00_Y_LIMB_RUPPERARM.target.info
- share/makehuman/rotations/220_right_upper_arm/ROT_BASE1/01_Y_LIMB_CLAVICLE.rot
- share/makehuman/rotations/220_right_upper_arm/ROT_BASE1/01_Y_LIMB_CLAVICLE.rot.info
- share/makehuman/rotations/220_right_upper_arm/ROT_BASE2/
- share/makehuman/rotations/220_right_upper_arm/ROT_BASE2/00_Z_LIMB_RUPPERARM-.rot
- share/makehuman/rotations/220_right_upper_arm/ROT_BASE2/00_Z_LIMB_RUPPERARM-.rot.info
- share/makehuman/rotations/220_right_upper_arm/ROT_BASE2/00_Z_LIMB_RUPPERARM-.target
- share/makehuman/rotations/220_right_upper_arm/ROT_BASE2/00_Z_LIMB_RUPPERARM-.target.info
- share/makehuman/rotations/220_right_upper_arm/ROT_BASE2/00_Z_LIMB_RUPPERARM.rot
- share/makehuman/rotations/220_right_upper_arm/ROT_BASE2/00_Z_LIMB_RUPPERARM.rot.info
- share/makehuman/rotations/220_right_upper_arm/ROT_BASE2/00_Z_LIMB_RUPPERARM.target
- share/makehuman/rotations/220_right_upper_arm/ROT_BASE2/00_Z_LIMB_RUPPERARM.target.info
- share/makehuman/rotations/220_right_upper_arm/ROT_BASE2/01_Y_LIMB_RUPPERARM-.rot
- share/makehuman/rotations/220_right_upper_arm/ROT_BASE2/01_Y_LIMB_RUPPERARM-.rot.info
- share/makehuman/rotations/220_right_upper_arm/ROT_BASE2/01_Y_LIMB_RUPPERARM.rot
- share/makehuman/rotations/220_right_upper_arm/ROT_BASE2/01_Y_LIMB_RUPPERARM.rot.info
- share/makehuman/rotations/220_right_upper_arm/ROT_BASE2/02_Y_LIMB_CLAVICLE.rot
- share/makehuman/rotations/220_right_upper_arm/ROT_BASE2/02_Y_LIMB_CLAVICLE.rot.info
- share/makehuman/rotations/220_right_upper_arm/ROT_BASE3/
- share/makehuman/rotations/220_right_upper_arm/ROT_BASE3/00_Y_LIMB_RUPPERARM.rot
- share/makehuman/rotations/220_right_upper_arm/ROT_BASE3/00_Y_LIMB_RUPPERARM.rot.info
- share/makehuman/rotations/220_right_upper_arm/ROT_BASE3/00_Y_LIMB_RUPPERARM.target
- share/makehuman/rotations/220_right_upper_arm/ROT_BASE3/00_Y_LIMB_RUPPERARM.target.info
- share/makehuman/rotations/220_right_upper_arm/ROT_BASE3/00_Z_LIMB_RUPPERARM-.rot
- share/makehuman/rotations/220_right_upper_arm/ROT_BASE3/00_Z_LIMB_RUPPERARM-.rot.info
- share/makehuman/rotations/220_right_upper_arm/ROT_BASE3/00_Z_LIMB_RUPPERARM-.target
- share/makehuman/rotations/220_right_upper_arm/ROT_BASE3/00_Z_LIMB_RUPPERARM-.target.info
- share/makehuman/rotations/220_right_upper_arm/ROT_BASE3/01_Y_LIMB_RUPPERARM-.rot
- share/makehuman/rotations/220_right_upper_arm/ROT_BASE3/01_Y_LIMB_RUPPERARM-.rot.info
- share/makehuman/rotations/220_right_upper_arm/ROT_BASE3/01_Z_LIMB_RUPPERARM.rot
- share/makehuman/rotations/220_right_upper_arm/ROT_BASE3/01_Z_LIMB_RUPPERARM.rot.info
- share/makehuman/rotations/220_right_upper_arm/ROT_BASE4/
- share/makehuman/rotations/220_right_upper_arm/ROT_BASE4/00_Z_LIMB_RUPPERARM-.rot
- share/makehuman/rotations/220_right_upper_arm/ROT_BASE4/00_Z_LIMB_RUPPERARM-.rot.info
- share/makehuman/rotations/220_right_upper_arm/ROT_BASE4/00_Z_LIMB_RUPPERARM-.target
- share/makehuman/rotations/220_right_upper_arm/ROT_BASE4/00_Z_LIMB_RUPPERARM-.target.info
- share/makehuman/rotations/220_right_upper_arm/ROT_BASE4/00_Z_LIMB_RUPPERARM.rot
- share/makehuman/rotations/220_right_upper_arm/ROT_BASE4/00_Z_LIMB_RUPPERARM.rot.info
- share/makehuman/rotations/220_right_upper_arm/ROT_BASE4/00_Z_LIMB_RUPPERARM.target
- share/makehuman/rotations/220_right_upper_arm/ROT_BASE4/00_Z_LIMB_RUPPERARM.target.info
- share/makehuman/rotations/220_right_upper_arm/ROT_BASE4/01_Z_LIMB_RUPPERARM-.rot
- share/makehuman/rotations/220_right_upper_arm/ROT_BASE4/01_Z_LIMB_RUPPERARM-.rot.info
- share/makehuman/rotations/220_right_upper_arm/ROT_BASE5/
- share/makehuman/rotations/220_right_upper_arm/ROT_BASE5/00_Y_LIMB_RUPPERARM-.rot
- share/makehuman/rotations/220_right_upper_arm/ROT_BASE5/00_Y_LIMB_RUPPERARM-.rot.info
- share/makehuman/rotations/220_right_upper_arm/ROT_BASE5/00_Y_LIMB_RUPPERARM-.target
- share/makehuman/rotations/220_right_upper_arm/ROT_BASE5/00_Y_LIMB_RUPPERARM-.target.info
- share/makehuman/rotations/220_right_upper_arm/ROT_BASE5/00_Y_LIMB_RUPPERARM.rot
- share/makehuman/rotations/220_right_upper_arm/ROT_BASE5/00_Y_LIMB_RUPPERARM.rot.info
- share/makehuman/rotations/220_right_upper_arm/ROT_BASE5/00_Y_LIMB_RUPPERARM.target
- share/makehuman/rotations/220_right_upper_arm/ROT_BASE5/00_Y_LIMB_RUPPERARM.target.info
- share/makehuman/rotations/220_right_upper_arm/ROT_BASE5/00_Z_LIMB_RUPPERARM-.rot
- share/makehuman/rotations/220_right_upper_arm/ROT_BASE5/00_Z_LIMB_RUPPERARM-.rot.info
- share/makehuman/rotations/220_right_upper_arm/ROT_BASE5/00_Z_LIMB_RUPPERARM.rot
- share/makehuman/rotations/220_right_upper_arm/ROT_BASE5/00_Z_LIMB_RUPPERARM.rot.info
- share/makehuman/rotations/220_right_upper_arm/ROT_BASE5/01_Z_LIMB_RCLAVICLE-.rot
- share/makehuman/rotations/220_right_upper_arm/ROT_BASE5/01_Z_LIMB_RCLAVICLE-.rot.info
- share/makehuman/rotations/220_right_upper_arm/ROT_BASE6/
- share/makehuman/rotations/220_right_upper_arm/ROT_BASE6/00_Y_LIMB_RUPPERARM-.rot
- share/makehuman/rotations/220_right_upper_arm/ROT_BASE6/00_Y_LIMB_RUPPERARM-.rot.info
- share/makehuman/rotations/220_right_upper_arm/ROT_BASE6/00_Y_LIMB_RUPPERARM-.target
- share/makehuman/rotations/220_right_upper_arm/ROT_BASE6/00_Y_LIMB_RUPPERARM-.target.info
- share/makehuman/rotations/220_right_upper_arm/ROT_BASE6/00_Y_LIMB_RUPPERARM.rot
- share/makehuman/rotations/220_right_upper_arm/ROT_BASE6/00_Y_LIMB_RUPPERARM.rot.info
- share/makehuman/rotations/220_right_upper_arm/ROT_BASE6/00_Y_LIMB_RUPPERARM.target
- share/makehuman/rotations/220_right_upper_arm/ROT_BASE6/00_Y_LIMB_RUPPERARM.target.info
- share/makehuman/rotations/220_right_upper_arm/ROT_BASE6/00_Z_LIMB_RUPPERARM-.rot
- share/makehuman/rotations/220_right_upper_arm/ROT_BASE6/00_Z_LIMB_RUPPERARM-.rot.info
- share/makehuman/rotations/220_right_upper_arm/ROT_BASE6/00_Z_LIMB_RUPPERARM.rot
- share/makehuman/rotations/220_right_upper_arm/ROT_BASE6/00_Z_LIMB_RUPPERARM.rot.info
- share/makehuman/rotations/220_right_upper_arm/ROT_BASE6/01_Z_LIMB_RCLAVICLE-.rot
- share/makehuman/rotations/220_right_upper_arm/ROT_BASE6/01_Z_LIMB_RCLAVICLE-.rot.info
- share/makehuman/rotations/240_left_upper_arm/
- share/makehuman/rotations/240_left_upper_arm/ROT_ADJUST0/
- share/makehuman/rotations/240_left_upper_arm/ROT_ADJUST0/00_X_LIMB_LUPPERARM-.rot
- share/makehuman/rotations/240_left_upper_arm/ROT_ADJUST0/00_X_LIMB_LUPPERARM-.rot.info
- share/makehuman/rotations/240_left_upper_arm/ROT_ADJUST0/00_X_LIMB_LUPPERARM.rot
- share/makehuman/rotations/240_left_upper_arm/ROT_ADJUST0/00_X_LIMB_LUPPERARM.rot.info
- share/makehuman/rotations/240_left_upper_arm/ROT_ADJUST0/00_X_LIMB_LUPPERARM.target
- share/makehuman/rotations/240_left_upper_arm/ROT_ADJUST0/00_X_LIMB_LUPPERARM.target.info
- share/makehuman/rotations/240_left_upper_arm/ROT_ADJUST1/
- share/makehuman/rotations/240_left_upper_arm/ROT_ADJUST1/00_Y_LIMB_LUPPERARM-.rot
- share/makehuman/rotations/240_left_upper_arm/ROT_ADJUST1/00_Y_LIMB_LUPPERARM-.rot.info
- share/makehuman/rotations/240_left_upper_arm/ROT_ADJUST1/00_Y_LIMB_LUPPERARM.rot
- share/makehuman/rotations/240_left_upper_arm/ROT_ADJUST1/00_Y_LIMB_LUPPERARM.rot.info
- share/makehuman/rotations/240_left_upper_arm/ROT_ADJUST2/
- share/makehuman/rotations/240_left_upper_arm/ROT_ADJUST2/00_Z_LIMB_LUPPERARM-.rot
- share/makehuman/rotations/240_left_upper_arm/ROT_ADJUST2/00_Z_LIMB_LUPPERARM-.rot.info
- share/makehuman/rotations/240_left_upper_arm/ROT_ADJUST2/00_Z_LIMB_LUPPERARM.rot
- share/makehuman/rotations/240_left_upper_arm/ROT_ADJUST2/00_Z_LIMB_LUPPERARM.rot.info
- share/makehuman/rotations/240_left_upper_arm/ROT_BASE1/
- share/makehuman/rotations/240_left_upper_arm/ROT_BASE1/00_Y_LIMB_LUPPERARM-.rot
- share/makehuman/rotations/240_left_upper_arm/ROT_BASE1/00_Y_LIMB_LUPPERARM-.rot.info
- share/makehuman/rotations/240_left_upper_arm/ROT_BASE1/00_Y_LIMB_LUPPERARM-.target
- share/makehuman/rotations/240_left_upper_arm/ROT_BASE1/00_Y_LIMB_LUPPERARM-.target.info
- share/makehuman/rotations/240_left_upper_arm/ROT_BASE1/00_Y_LIMB_LUPPERARM.rot
- share/makehuman/rotations/240_left_upper_arm/ROT_BASE1/00_Y_LIMB_LUPPERARM.rot.info
- share/makehuman/rotations/240_left_upper_arm/ROT_BASE1/00_Y_LIMB_LUPPERARM.target
- share/makehuman/rotations/240_left_upper_arm/ROT_BASE1/00_Y_LIMB_LUPPERARM.target.info
- share/makehuman/rotations/240_left_upper_arm/ROT_BASE1/01_Y_LIMB_CLAVICLE.rot
- share/makehuman/rotations/240_left_upper_arm/ROT_BASE1/01_Y_LIMB_CLAVICLE.rot.info
- share/makehuman/rotations/240_left_upper_arm/ROT_BASE2/
- share/makehuman/rotations/240_left_upper_arm/ROT_BASE2/00_Z_LIMB_LUPPERARM-.rot
- share/makehuman/rotations/240_left_upper_arm/ROT_BASE2/00_Z_LIMB_LUPPERARM-.rot.info
- share/makehuman/rotations/240_left_upper_arm/ROT_BASE2/00_Z_LIMB_LUPPERARM-.target
- share/makehuman/rotations/240_left_upper_arm/ROT_BASE2/00_Z_LIMB_LUPPERARM-.target.info
- share/makehuman/rotations/240_left_upper_arm/ROT_BASE2/00_Z_LIMB_LUPPERARM.rot
- share/makehuman/rotations/240_left_upper_arm/ROT_BASE2/00_Z_LIMB_LUPPERARM.rot.info
- share/makehuman/rotations/240_left_upper_arm/ROT_BASE2/00_Z_LIMB_LUPPERARM.target
- share/makehuman/rotations/240_left_upper_arm/ROT_BASE2/00_Z_LIMB_LUPPERARM.target.info
- share/makehuman/rotations/240_left_upper_arm/ROT_BASE2/01_Y_LIMB_LUPPERARM-.rot
- share/makehuman/rotations/240_left_upper_arm/ROT_BASE2/01_Y_LIMB_LUPPERARM-.rot.info
- share/makehuman/rotations/240_left_upper_arm/ROT_BASE2/01_Y_LIMB_LUPPERARM.rot
- share/makehuman/rotations/240_left_upper_arm/ROT_BASE2/01_Y_LIMB_LUPPERARM.rot.info
- share/makehuman/rotations/240_left_upper_arm/ROT_BASE2/02_Y_LIMB_CLAVICLE.rot
- share/makehuman/rotations/240_left_upper_arm/ROT_BASE2/02_Y_LIMB_CLAVICLE.rot.info
- share/makehuman/rotations/240_left_upper_arm/ROT_BASE3/
- share/makehuman/rotations/240_left_upper_arm/ROT_BASE3/00_Y_LIMB_LUPPERARM.rot
- share/makehuman/rotations/240_left_upper_arm/ROT_BASE3/00_Y_LIMB_LUPPERARM.rot.info
- share/makehuman/rotations/240_left_upper_arm/ROT_BASE3/00_Y_LIMB_LUPPERARM.target
- share/makehuman/rotations/240_left_upper_arm/ROT_BASE3/00_Y_LIMB_LUPPERARM.target.info
- share/makehuman/rotations/240_left_upper_arm/ROT_BASE3/00_Z_LIMB_LUPPERARM-.rot
- share/makehuman/rotations/240_left_upper_arm/ROT_BASE3/00_Z_LIMB_LUPPERARM-.rot.info
- share/makehuman/rotations/240_left_upper_arm/ROT_BASE3/00_Z_LIMB_LUPPERARM-.target
- share/makehuman/rotations/240_left_upper_arm/ROT_BASE3/00_Z_LIMB_LUPPERARM-.target.info
- share/makehuman/rotations/240_left_upper_arm/ROT_BASE3/01_Y_LIMB_LUPPERARM-.rot
- share/makehuman/rotations/240_left_upper_arm/ROT_BASE3/01_Y_LIMB_LUPPERARM-.rot.info
- share/makehuman/rotations/240_left_upper_arm/ROT_BASE3/01_Z_LIMB_LUPPERARM.rot
- share/makehuman/rotations/240_left_upper_arm/ROT_BASE3/01_Z_LIMB_LUPPERARM.rot.info
- share/makehuman/rotations/240_left_upper_arm/ROT_BASE4/
- share/makehuman/rotations/240_left_upper_arm/ROT_BASE4/00_Z_LIMB_LUPPERARM-.rot
- share/makehuman/rotations/240_left_upper_arm/ROT_BASE4/00_Z_LIMB_LUPPERARM-.rot.info
- share/makehuman/rotations/240_left_upper_arm/ROT_BASE4/00_Z_LIMB_LUPPERARM-.target
- share/makehuman/rotations/240_left_upper_arm/ROT_BASE4/00_Z_LIMB_LUPPERARM-.target.info
- share/makehuman/rotations/240_left_upper_arm/ROT_BASE4/00_Z_LIMB_LUPPERARM.rot
- share/makehuman/rotations/240_left_upper_arm/ROT_BASE4/00_Z_LIMB_LUPPERARM.rot.info
- share/makehuman/rotations/240_left_upper_arm/ROT_BASE4/00_Z_LIMB_LUPPERARM.target
- share/makehuman/rotations/240_left_upper_arm/ROT_BASE4/00_Z_LIMB_LUPPERARM.target.info
- share/makehuman/rotations/240_left_upper_arm/ROT_BASE4/01_Z_LIMB_LUPPERARM-.rot
- share/makehuman/rotations/240_left_upper_arm/ROT_BASE4/01_Z_LIMB_LUPPERARM-.rot.info
- share/makehuman/rotations/240_left_upper_arm/ROT_BASE5/
- share/makehuman/rotations/240_left_upper_arm/ROT_BASE5/00_Y_LIMB_LUPPERARM-.rot
- share/makehuman/rotations/240_left_upper_arm/ROT_BASE5/00_Y_LIMB_LUPPERARM-.rot.info
- share/makehuman/rotations/240_left_upper_arm/ROT_BASE5/00_Y_LIMB_LUPPERARM-.target
- share/makehuman/rotations/240_left_upper_arm/ROT_BASE5/00_Y_LIMB_LUPPERARM-.target.info
- share/makehuman/rotations/240_left_upper_arm/ROT_BASE5/00_Y_LIMB_LUPPERARM.rot
- share/makehuman/rotations/240_left_upper_arm/ROT_BASE5/00_Y_LIMB_LUPPERARM.rot.info
- share/makehuman/rotations/240_left_upper_arm/ROT_BASE5/00_Y_LIMB_LUPPERARM.target
- share/makehuman/rotations/240_left_upper_arm/ROT_BASE5/00_Y_LIMB_LUPPERARM.target.info
- share/makehuman/rotations/240_left_upper_arm/ROT_BASE5/00_Z_LIMB_LUPPERARM-.rot
- share/makehuman/rotations/240_left_upper_arm/ROT_BASE5/00_Z_LIMB_LUPPERARM-.rot.info
- share/makehuman/rotations/240_left_upper_arm/ROT_BASE5/00_Z_LIMB_LUPPERARM.rot
- share/makehuman/rotations/240_left_upper_arm/ROT_BASE5/00_Z_LIMB_LUPPERARM.rot.info
- share/makehuman/rotations/240_left_upper_arm/ROT_BASE5/01_Z_LIMB_LCLAVICLE-.rot
- share/makehuman/rotations/240_left_upper_arm/ROT_BASE5/01_Z_LIMB_LCLAVICLE-.rot.info
- share/makehuman/rotations/240_left_upper_arm/ROT_BASE6/
- share/makehuman/rotations/240_left_upper_arm/ROT_BASE6/00_Y_LIMB_LUPPERARM-.rot
- share/makehuman/rotations/240_left_upper_arm/ROT_BASE6/00_Y_LIMB_LUPPERARM-.rot.info
- share/makehuman/rotations/240_left_upper_arm/ROT_BASE6/00_Y_LIMB_LUPPERARM-.target
- share/makehuman/rotations/240_left_upper_arm/ROT_BASE6/00_Y_LIMB_LUPPERARM-.target.info
- share/makehuman/rotations/240_left_upper_arm/ROT_BASE6/00_Y_LIMB_LUPPERARM.rot
- share/makehuman/rotations/240_left_upper_arm/ROT_BASE6/00_Y_LIMB_LUPPERARM.rot.info
- share/makehuman/rotations/240_left_upper_arm/ROT_BASE6/00_Y_LIMB_LUPPERARM.target
- share/makehuman/rotations/240_left_upper_arm/ROT_BASE6/00_Y_LIMB_LUPPERARM.target.info
- share/makehuman/rotations/240_left_upper_arm/ROT_BASE6/00_Z_LIMB_LUPPERARM-.rot
- share/makehuman/rotations/240_left_upper_arm/ROT_BASE6/00_Z_LIMB_LUPPERARM-.rot.info
- share/makehuman/rotations/240_left_upper_arm/ROT_BASE6/00_Z_LIMB_LUPPERARM.rot
- share/makehuman/rotations/240_left_upper_arm/ROT_BASE6/00_Z_LIMB_LUPPERARM.rot.info
- share/makehuman/rotations/240_left_upper_arm/ROT_BASE6/01_Z_LIMB_LCLAVICLE-.rot
- share/makehuman/rotations/240_left_upper_arm/ROT_BASE6/01_Z_LIMB_LCLAVICLE-.rot.info
- share/makehuman/rotations/260_right_collar/
- share/makehuman/rotations/260_right_collar/ROT1/
- share/makehuman/rotations/260_right_collar/ROT1/00_Y_LIMB_RSCAPULA-.rot
- share/makehuman/rotations/260_right_collar/ROT1/00_Y_LIMB_RSCAPULA-.rot.info
- share/makehuman/rotations/260_right_collar/ROT1/00_Y_LIMB_RSCAPULA-.target
- share/makehuman/rotations/260_right_collar/ROT1/00_Y_LIMB_RSCAPULA-.target.info
- share/makehuman/rotations/260_right_collar/ROT1/00_Y_LIMB_RSCAPULA.rot
- share/makehuman/rotations/260_right_collar/ROT1/00_Y_LIMB_RSCAPULA.rot.info
- share/makehuman/rotations/260_right_collar/ROT1/00_Y_LIMB_RSCAPULA.target
- share/makehuman/rotations/260_right_collar/ROT1/00_Y_LIMB_RSCAPULA.target.info
- share/makehuman/rotations/260_right_collar/ROT2/
- share/makehuman/rotations/260_right_collar/ROT2/00_Z_LIMB_RSCAPULA-.rot
- share/makehuman/rotations/260_right_collar/ROT2/00_Z_LIMB_RSCAPULA-.rot.info
- share/makehuman/rotations/260_right_collar/ROT2/00_Z_LIMB_RSCAPULA-.target
- share/makehuman/rotations/260_right_collar/ROT2/00_Z_LIMB_RSCAPULA-.target.info
- share/makehuman/rotations/260_right_collar/ROT2/00_Z_LIMB_RSCAPULA.rot
- share/makehuman/rotations/260_right_collar/ROT2/00_Z_LIMB_RSCAPULA.rot.info
- share/makehuman/rotations/260_right_collar/ROT2/00_Z_LIMB_RSCAPULA.target
- share/makehuman/rotations/260_right_collar/ROT2/00_Z_LIMB_RSCAPULA.target.info
- share/makehuman/rotations/260_right_collar/ROT3/
- share/makehuman/rotations/260_right_collar/ROT3/00_X_LIMB_RSCAPULA-.rot
- share/makehuman/rotations/260_right_collar/ROT3/00_X_LIMB_RSCAPULA-.rot.info
- share/makehuman/rotations/260_right_collar/ROT3/00_X_LIMB_RSCAPULA-.target
- share/makehuman/rotations/260_right_collar/ROT3/00_X_LIMB_RSCAPULA-.target.info
- share/makehuman/rotations/260_right_collar/ROT3/00_X_LIMB_RSCAPULA.rot
- share/makehuman/rotations/260_right_collar/ROT3/00_X_LIMB_RSCAPULA.rot.info
- share/makehuman/rotations/260_right_collar/ROT3/00_X_LIMB_RSCAPULA.target
- share/makehuman/rotations/260_right_collar/ROT3/00_X_LIMB_RSCAPULA.target.info
- share/makehuman/rotations/280_left_collar/
- share/makehuman/rotations/280_left_collar/ROT1/
- share/makehuman/rotations/280_left_collar/ROT1/00_Y_LIMB_LSCAPULA-.rot
- share/makehuman/rotations/280_left_collar/ROT1/00_Y_LIMB_LSCAPULA-.rot.info
- share/makehuman/rotations/280_left_collar/ROT1/00_Y_LIMB_LSCAPULA-.target
- share/makehuman/rotations/280_left_collar/ROT1/00_Y_LIMB_LSCAPULA-.target.info
- share/makehuman/rotations/280_left_collar/ROT1/00_Y_LIMB_LSCAPULA.rot
- share/makehuman/rotations/280_left_collar/ROT1/00_Y_LIMB_LSCAPULA.rot.info
- share/makehuman/rotations/280_left_collar/ROT1/00_Y_LIMB_LSCAPULA.target
- share/makehuman/rotations/280_left_collar/ROT1/00_Y_LIMB_LSCAPULA.target.info
- share/makehuman/rotations/280_left_collar/ROT2/
- share/makehuman/rotations/280_left_collar/ROT2/00_Z_LIMB_LSCAPULA-.rot
- share/makehuman/rotations/280_left_collar/ROT2/00_Z_LIMB_LSCAPULA-.rot.info
- share/makehuman/rotations/280_left_collar/ROT2/00_Z_LIMB_LSCAPULA-.target
- share/makehuman/rotations/280_left_collar/ROT2/00_Z_LIMB_LSCAPULA-.target.info
- share/makehuman/rotations/280_left_collar/ROT2/00_Z_LIMB_LSCAPULA.rot
- share/makehuman/rotations/280_left_collar/ROT2/00_Z_LIMB_LSCAPULA.rot.info
- share/makehuman/rotations/280_left_collar/ROT2/00_Z_LIMB_LSCAPULA.target
- share/makehuman/rotations/280_left_collar/ROT2/00_Z_LIMB_LSCAPULA.target.info
- share/makehuman/rotations/280_left_collar/ROT3/
- share/makehuman/rotations/280_left_collar/ROT3/00_X_LIMB_LSCAPULA-.rot
- share/makehuman/rotations/280_left_collar/ROT3/00_X_LIMB_LSCAPULA-.rot.info
- share/makehuman/rotations/280_left_collar/ROT3/00_X_LIMB_LSCAPULA-.target
- share/makehuman/rotations/280_left_collar/ROT3/00_X_LIMB_LSCAPULA-.target.info
- share/makehuman/rotations/280_left_collar/ROT3/00_X_LIMB_LSCAPULA.rot
- share/makehuman/rotations/280_left_collar/ROT3/00_X_LIMB_LSCAPULA.rot.info
- share/makehuman/rotations/280_left_collar/ROT3/00_X_LIMB_LSCAPULA.target
- share/makehuman/rotations/280_left_collar/ROT3/00_X_LIMB_LSCAPULA.target.info
- share/makehuman/rotations/300_head/
- share/makehuman/rotations/300_head/ROT1/
- share/makehuman/rotations/300_head/ROT1/00_X_LIMB_HEAD-.rot
- share/makehuman/rotations/300_head/ROT1/00_X_LIMB_HEAD-.rot.info
- share/makehuman/rotations/300_head/ROT1/00_X_LIMB_HEAD-.target
- share/makehuman/rotations/300_head/ROT1/00_X_LIMB_HEAD-.target.info
- share/makehuman/rotations/300_head/ROT1/00_X_LIMB_HEAD.rot
- share/makehuman/rotations/300_head/ROT1/00_X_LIMB_HEAD.rot.info
- share/makehuman/rotations/300_head/ROT1/00_X_LIMB_HEAD.target
- share/makehuman/rotations/300_head/ROT1/00_X_LIMB_HEAD.target.info
- share/makehuman/rotations/300_head/ROT2/
- share/makehuman/rotations/300_head/ROT2/00_Z_LIMB_HEAD-.rot
- share/makehuman/rotations/300_head/ROT2/00_Z_LIMB_HEAD-.rot.info
- share/makehuman/rotations/300_head/ROT2/00_Z_LIMB_HEAD-.target
- share/makehuman/rotations/300_head/ROT2/00_Z_LIMB_HEAD-.target.info
- share/makehuman/rotations/300_head/ROT2/00_Z_LIMB_HEAD.rot
- share/makehuman/rotations/300_head/ROT2/00_Z_LIMB_HEAD.rot.info
- share/makehuman/rotations/300_head/ROT2/00_Z_LIMB_HEAD.target
- share/makehuman/rotations/300_head/ROT2/00_Z_LIMB_HEAD.target.info
- share/makehuman/rotations/300_head/ROT3/
- share/makehuman/rotations/300_head/ROT3/00_Y_LIMB_HEAD-.rot
- share/makehuman/rotations/300_head/ROT3/00_Y_LIMB_HEAD-.rot.info
- share/makehuman/rotations/300_head/ROT3/00_Y_LIMB_HEAD-.target
- share/makehuman/rotations/300_head/ROT3/00_Y_LIMB_HEAD-.target.info
- share/makehuman/rotations/300_head/ROT3/00_Y_LIMB_HEAD.rot
- share/makehuman/rotations/300_head/ROT3/00_Y_LIMB_HEAD.rot.info
- share/makehuman/rotations/300_head/ROT3/00_Y_LIMB_HEAD.target
- share/makehuman/rotations/300_head/ROT3/00_Y_LIMB_HEAD.target.info
- share/makehuman/rotations/320_neck/
- share/makehuman/rotations/320_neck/ROT1/
- share/makehuman/rotations/320_neck/ROT1/00_X_LIMB_NECK-.rot
- share/makehuman/rotations/320_neck/ROT1/00_X_LIMB_NECK-.rot.info
- share/makehuman/rotations/320_neck/ROT1/00_X_LIMB_NECK-.target
- share/makehuman/rotations/320_neck/ROT1/00_X_LIMB_NECK-.target.info
- share/makehuman/rotations/320_neck/ROT1/00_X_LIMB_NECK.rot
- share/makehuman/rotations/320_neck/ROT1/00_X_LIMB_NECK.rot.info
- share/makehuman/rotations/320_neck/ROT1/00_X_LIMB_NECK.target
- share/makehuman/rotations/320_neck/ROT1/00_X_LIMB_NECK.target.info
- share/makehuman/rotations/320_neck/ROT2/
- share/makehuman/rotations/320_neck/ROT2/00_Y_LIMB_NECK-.rot
- share/makehuman/rotations/320_neck/ROT2/00_Y_LIMB_NECK-.rot.info
- share/makehuman/rotations/320_neck/ROT2/00_Y_LIMB_NECK-.target
- share/makehuman/rotations/320_neck/ROT2/00_Y_LIMB_NECK-.target.info
- share/makehuman/rotations/320_neck/ROT2/00_Y_LIMB_NECK.rot
- share/makehuman/rotations/320_neck/ROT2/00_Y_LIMB_NECK.rot.info
- share/makehuman/rotations/320_neck/ROT2/00_Y_LIMB_NECK.target
- share/makehuman/rotations/320_neck/ROT2/00_Y_LIMB_NECK.target.info
- share/makehuman/rotations/360_torso/
- share/makehuman/rotations/360_torso/ROT1/
- share/makehuman/rotations/360_torso/ROT1/00_Y_LIMB_LOWERTORSO0-.rot
- share/makehuman/rotations/360_torso/ROT1/00_Y_LIMB_LOWERTORSO0-.rot.info
- share/makehuman/rotations/360_torso/ROT1/00_Y_LIMB_LOWERTORSO0-.target
- share/makehuman/rotations/360_torso/ROT1/00_Y_LIMB_LOWERTORSO0-.target.info
- share/makehuman/rotations/360_torso/ROT1/00_Y_LIMB_LOWERTORSO0.rot
- share/makehuman/rotations/360_torso/ROT1/00_Y_LIMB_LOWERTORSO0.rot.info
- share/makehuman/rotations/360_torso/ROT1/00_Y_LIMB_LOWERTORSO0.target
- share/makehuman/rotations/360_torso/ROT1/00_Y_LIMB_LOWERTORSO0.target.info
- share/makehuman/rotations/360_torso/ROT1/00_Y_LIMB_LOWERTORSO1-.rot
- share/makehuman/rotations/360_torso/ROT1/00_Y_LIMB_LOWERTORSO1-.rot.info
- share/makehuman/rotations/360_torso/ROT1/00_Y_LIMB_LOWERTORSO1.rot
- share/makehuman/rotations/360_torso/ROT1/00_Y_LIMB_LOWERTORSO1.rot.info
- share/makehuman/rotations/360_torso/ROT2/
- share/makehuman/rotations/360_torso/ROT2/00_X_LIMB_LOWERTORSO0-.rot
- share/makehuman/rotations/360_torso/ROT2/00_X_LIMB_LOWERTORSO0-.rot.info
- share/makehuman/rotations/360_torso/ROT2/00_X_LIMB_LOWERTORSO0-.target
- share/makehuman/rotations/360_torso/ROT2/00_X_LIMB_LOWERTORSO0-.target.info
- share/makehuman/rotations/360_torso/ROT2/00_X_LIMB_LOWERTORSO0.rot
- share/makehuman/rotations/360_torso/ROT2/00_X_LIMB_LOWERTORSO0.rot.info
- share/makehuman/rotations/360_torso/ROT2/00_X_LIMB_LOWERTORSO0.target
- share/makehuman/rotations/360_torso/ROT2/00_X_LIMB_LOWERTORSO0.target.info
- share/makehuman/rotations/360_torso/ROT2/00_X_LIMB_LOWERTORSO1-.rot
- share/makehuman/rotations/360_torso/ROT2/00_X_LIMB_LOWERTORSO1-.rot.info
- share/makehuman/rotations/360_torso/ROT2/00_X_LIMB_LOWERTORSO1.rot
- share/makehuman/rotations/360_torso/ROT2/00_X_LIMB_LOWERTORSO1.rot.info
- share/makehuman/rotations/360_torso/ROT2/00_X_LIMB_LOWERTORSO2.rot
- share/makehuman/rotations/360_torso/ROT2/00_X_LIMB_LOWERTORSO2.rot.info
- share/makehuman/rotations/360_torso/ROT3/
- share/makehuman/rotations/360_torso/ROT3/00_Z_LIMB_LOWERTORSO0-.rot
- share/makehuman/rotations/360_torso/ROT3/00_Z_LIMB_LOWERTORSO0-.rot.info
- share/makehuman/rotations/360_torso/ROT3/00_Z_LIMB_LOWERTORSO0-.target
- share/makehuman/rotations/360_torso/ROT3/00_Z_LIMB_LOWERTORSO0-.target.info
- share/makehuman/rotations/360_torso/ROT3/00_Z_LIMB_LOWERTORSO0.rot
- share/makehuman/rotations/360_torso/ROT3/00_Z_LIMB_LOWERTORSO0.rot.info
- share/makehuman/rotations/360_torso/ROT3/00_Z_LIMB_LOWERTORSO0.target
- share/makehuman/rotations/360_torso/ROT3/00_Z_LIMB_LOWERTORSO0.target.info
- share/makehuman/rotations/360_torso/ROT3/00_Z_LIMB_LOWERTORSO1-.rot
- share/makehuman/rotations/360_torso/ROT3/00_Z_LIMB_LOWERTORSO1-.rot.info
- share/makehuman/rotations/360_torso/ROT3/00_Z_LIMB_LOWERTORSO1.rot
- share/makehuman/rotations/360_torso/ROT3/00_Z_LIMB_LOWERTORSO1.rot.info
- share/makehuman/rotations/360_torso/ROT3/00_Z_LIMB_LOWERTORSO2-.rot
- share/makehuman/rotations/360_torso/ROT3/00_Z_LIMB_LOWERTORSO2-.rot.info
- share/makehuman/rotations/360_torso/ROT3/00_Z_LIMB_LOWERTORSO2.rot
- share/makehuman/rotations/360_torso/ROT3/00_Z_LIMB_LOWERTORSO2.rot.info
- share/makehuman/rotations/360_torso/ROT3/00_Z_LIMB_LOWERTORSO3-.rot
- share/makehuman/rotations/360_torso/ROT3/00_Z_LIMB_LOWERTORSO3-.rot.info
- share/makehuman/rotations/360_torso/ROT3/00_Z_LIMB_LOWERTORSO3.rot
- share/makehuman/rotations/360_torso/ROT3/00_Z_LIMB_LOWERTORSO3.rot.info
- share/makehuman/rotations/360_torso/ROT3/00_Z_LIMB_LOWERTORSO4-.rot
- share/makehuman/rotations/360_torso/ROT3/00_Z_LIMB_LOWERTORSO4-.rot.info
- share/makehuman/rotations/360_torso/ROT3/00_Z_LIMB_LOWERTORSO4.rot
- share/makehuman/rotations/360_torso/ROT3/00_Z_LIMB_LOWERTORSO4.rot.info
- share/makehuman/rotations/380_pivot/
- share/makehuman/rotations/380_pivot/ROT1/
- share/makehuman/rotations/380_pivot/ROT1/00_Z_LIMB_PIVOT-.rot
- share/makehuman/rotations/380_pivot/ROT1/00_Z_LIMB_PIVOT-.rot.info
- share/makehuman/rotations/380_pivot/ROT1/00_Z_LIMB_PIVOT.rot
- share/makehuman/rotations/380_pivot/ROT1/00_Z_LIMB_PIVOT.rot.info
- share/makehuman/rotations/380_pivot/ROT2/
- share/makehuman/rotations/380_pivot/ROT2/00_X_LIMB_PIVOT-.rot
- share/makehuman/rotations/380_pivot/ROT2/00_X_LIMB_PIVOT-.rot.info
- share/makehuman/rotations/380_pivot/ROT2/00_X_LIMB_PIVOT.rot
- share/makehuman/rotations/380_pivot/ROT2/00_X_LIMB_PIVOT.rot.info
- share/makehuman/rotations/380_pivot/ROT3/
- share/makehuman/rotations/380_pivot/ROT3/00_Y_LIMB_PIVOT-.rot
- share/makehuman/rotations/380_pivot/ROT3/00_Y_LIMB_PIVOT-.rot.info
- share/makehuman/rotations/380_pivot/ROT3/00_Y_LIMB_PIVOT.rot
- share/makehuman/rotations/380_pivot/ROT3/00_Y_LIMB_PIVOT.rot.info
- share/makehuman/selectors/
- share/makehuman/selectors/ages/
- share/makehuman/selectors/ages/female_10.target
- share/makehuman/selectors/ages/female_30.target
- share/makehuman/selectors/ages/female_50.target
- share/makehuman/selectors/ages/female_70.target
- share/makehuman/selectors/ages/female_90.target
- share/makehuman/selectors/ages/male_10.target
- share/makehuman/selectors/ages/male_30.target
- share/makehuman/selectors/ages/male_50.target
- share/makehuman/selectors/ages/male_70.target
- share/makehuman/selectors/ages/male_90.target
- share/makehuman/selectors/breast/
- share/makehuman/selectors/breast/female_10_big_muscle_cone_big.target
- share/makehuman/selectors/breast/female_10_big_muscle_cone_little.target
- share/makehuman/selectors/breast/female_10_big_muscle_sphere_big.target
- share/makehuman/selectors/breast/female_10_big_muscle_sphere_little.target
- share/makehuman/selectors/breast/female_10_big_nomuscle_cone_big.target
- share/makehuman/selectors/breast/female_10_big_nomuscle_cone_little.target
- share/makehuman/selectors/breast/female_10_big_nomuscle_sphere_big.target
- share/makehuman/selectors/breast/female_10_big_nomuscle_sphere_little.target
- share/makehuman/selectors/breast/female_10_skinny_muscle_cone_big.target
- share/makehuman/selectors/breast/female_10_skinny_muscle_cone_little.target
- share/makehuman/selectors/breast/female_10_skinny_muscle_sphere_big.target
- share/makehuman/selectors/breast/female_10_skinny_muscle_sphere_little.target
- share/makehuman/selectors/breast/female_10_skinny_nomuscle_cone_big.target
- share/makehuman/selectors/breast/female_10_skinny_nomuscle_cone_little.target
- share/makehuman/selectors/breast/female_10_skinny_nomuscle_sphere_big.target
- share/makehuman/selectors/breast/female_10_skinny_nomuscle_sphere_little.target
- share/makehuman/selectors/breast/female_30_big_muscle_cone_big.target
- share/makehuman/selectors/breast/female_30_big_muscle_cone_little.target
- share/makehuman/selectors/breast/female_30_big_muscle_sphere_big.target
- share/makehuman/selectors/breast/female_30_big_muscle_sphere_little.target
- share/makehuman/selectors/breast/female_30_big_nomuscle_cone_big.target
- share/makehuman/selectors/breast/female_30_big_nomuscle_cone_little.target
- share/makehuman/selectors/breast/female_30_big_nomuscle_sphere_big.target
- share/makehuman/selectors/breast/female_30_big_nomuscle_sphere_little.target
- share/makehuman/selectors/breast/female_30_skinny_muscle_cone_big.target
- share/makehuman/selectors/breast/female_30_skinny_muscle_cone_little.target
- share/makehuman/selectors/breast/female_30_skinny_muscle_sphere_big.target
- share/makehuman/selectors/breast/female_30_skinny_muscle_sphere_little.target
- share/makehuman/selectors/breast/female_30_skinny_nomuscle_cone_big.target
- share/makehuman/selectors/breast/female_30_skinny_nomuscle_cone_little.target
- share/makehuman/selectors/breast/female_30_skinny_nomuscle_sphere_big.target
- share/makehuman/selectors/breast/female_30_skinny_nomuscle_sphere_little.target
- share/makehuman/selectors/breast/female_50_big_muscle_cone_big.target
- share/makehuman/selectors/breast/female_50_big_muscle_cone_little.target
- share/makehuman/selectors/breast/female_50_big_muscle_sphere_big.target
- share/makehuman/selectors/breast/female_50_big_muscle_sphere_little.target
- share/makehuman/selectors/breast/female_50_big_nomuscle_cone_big.target
- share/makehuman/selectors/breast/female_50_big_nomuscle_cone_little.target
- share/makehuman/selectors/breast/female_50_big_nomuscle_sphere_big.target
- share/makehuman/selectors/breast/female_50_big_nomuscle_sphere_little.target
- share/makehuman/selectors/breast/female_50_skinny_muscle_cone_big.target
- share/makehuman/selectors/breast/female_50_skinny_muscle_cone_little.target
- share/makehuman/selectors/breast/female_50_skinny_muscle_sphere_big.target
- share/makehuman/selectors/breast/female_50_skinny_muscle_sphere_little.target
- share/makehuman/selectors/breast/female_50_skinny_nomuscle_cone_big.target
- share/makehuman/selectors/breast/female_50_skinny_nomuscle_cone_little.target
- share/makehuman/selectors/breast/female_50_skinny_nomuscle_sphere_big.target
- share/makehuman/selectors/breast/female_50_skinny_nomuscle_sphere_little.target
- share/makehuman/selectors/breast/female_70_big_muscle_cone_big.target
- share/makehuman/selectors/breast/female_70_big_muscle_cone_little.target
- share/makehuman/selectors/breast/female_70_big_muscle_sphere_big.target
- share/makehuman/selectors/breast/female_70_big_muscle_sphere_little.target
- share/makehuman/selectors/breast/female_70_big_nomuscle_cone_big.target
- share/makehuman/selectors/breast/female_70_big_nomuscle_cone_little.target
- share/makehuman/selectors/breast/female_70_big_nomuscle_sphere_big.target
- share/makehuman/selectors/breast/female_70_big_nomuscle_sphere_little.target
- share/makehuman/selectors/breast/female_70_skinny_muscle_cone_big.target
- share/makehuman/selectors/breast/female_70_skinny_muscle_cone_little.target
- share/makehuman/selectors/breast/female_70_skinny_muscle_sphere_big.target
- share/makehuman/selectors/breast/female_70_skinny_muscle_sphere_little.target
- share/makehuman/selectors/breast/female_70_skinny_nomuscle_cone_big.target
- share/makehuman/selectors/breast/female_70_skinny_nomuscle_cone_little.target
- share/makehuman/selectors/breast/female_70_skinny_nomuscle_sphere_big.target
- share/makehuman/selectors/breast/female_70_skinny_nomuscle_sphere_little.target
- share/makehuman/selectors/breast/female_90_big_muscle_cone_big.target
- share/makehuman/selectors/breast/female_90_big_muscle_cone_little.target
- share/makehuman/selectors/breast/female_90_big_muscle_sphere_big.target
- share/makehuman/selectors/breast/female_90_big_muscle_sphere_little.target
- share/makehuman/selectors/breast/female_90_big_nomuscle_cone_big.target
- share/makehuman/selectors/breast/female_90_big_nomuscle_cone_little.target
- share/makehuman/selectors/breast/female_90_big_nomuscle_sphere_big.target
- share/makehuman/selectors/breast/female_90_big_nomuscle_sphere_little.target
- share/makehuman/selectors/breast/female_90_skinny_muscle_cone_big.target
- share/makehuman/selectors/breast/female_90_skinny_muscle_cone_little.target
- share/makehuman/selectors/breast/female_90_skinny_muscle_sphere_big.target
- share/makehuman/selectors/breast/female_90_skinny_muscle_sphere_little.target
- share/makehuman/selectors/breast/female_90_skinny_nomuscle_cone_big.target
- share/makehuman/selectors/breast/female_90_skinny_nomuscle_cone_little.target
- share/makehuman/selectors/breast/female_90_skinny_nomuscle_sphere_big.target
- share/makehuman/selectors/breast/female_90_skinny_nomuscle_sphere_little.target
- share/makehuman/selectors/muscleSize/
- share/makehuman/selectors/muscleSize/female_10_big_muscle.target
- share/makehuman/selectors/muscleSize/female_10_big_nomuscle.target
- share/makehuman/selectors/muscleSize/female_10_skinny_muscle.target
- share/makehuman/selectors/muscleSize/female_10_skinny_nomuscle.target
- share/makehuman/selectors/muscleSize/female_30_big_muscle.target
- share/makehuman/selectors/muscleSize/female_30_big_nomuscle.target
- share/makehuman/selectors/muscleSize/female_30_skinny_muscle.target
- share/makehuman/selectors/muscleSize/female_30_skinny_nomuscle.target
- share/makehuman/selectors/muscleSize/female_50_big_muscle.target
- share/makehuman/selectors/muscleSize/female_50_big_nomuscle.target
- share/makehuman/selectors/muscleSize/female_50_skinny_muscle.target
- share/makehuman/selectors/muscleSize/female_50_skinny_nomuscle.target
- share/makehuman/selectors/muscleSize/female_70_big_muscle.target
- share/makehuman/selectors/muscleSize/female_70_big_nomuscle.target
- share/makehuman/selectors/muscleSize/female_70_skinny_muscle.target
- share/makehuman/selectors/muscleSize/female_70_skinny_nomuscle.target
- share/makehuman/selectors/muscleSize/female_90_big_muscle.target
- share/makehuman/selectors/muscleSize/female_90_big_nomuscle.target
- share/makehuman/selectors/muscleSize/female_90_skinny_muscle.target
- share/makehuman/selectors/muscleSize/female_90_skinny_nomuscle.target
- share/makehuman/selectors/muscleSize/male_10_big_muscle.target
- share/makehuman/selectors/muscleSize/male_10_big_nomuscle.target
- share/makehuman/selectors/muscleSize/male_10_skinny_muscle.target
- share/makehuman/selectors/muscleSize/male_10_skinny_nomuscle.target
- share/makehuman/selectors/muscleSize/male_30_big_muscle.target
- share/makehuman/selectors/muscleSize/male_30_big_nomuscle.target
- share/makehuman/selectors/muscleSize/male_30_skinny_muscle.target
- share/makehuman/selectors/muscleSize/male_30_skinny_nomuscle.target
- share/makehuman/selectors/muscleSize/male_50_big_muscle.target
- share/makehuman/selectors/muscleSize/male_50_big_nomuscle.target
- share/makehuman/selectors/muscleSize/male_50_skinny_muscle.target
- share/makehuman/selectors/muscleSize/male_50_skinny_nomuscle.target
- share/makehuman/selectors/muscleSize/male_70_big_muscle.target
- share/makehuman/selectors/muscleSize/male_70_big_nomuscle.target
- share/makehuman/selectors/muscleSize/male_70_skinny_muscle.target
- share/makehuman/selectors/muscleSize/male_70_skinny_nomuscle.target
- share/makehuman/selectors/muscleSize/male_90_big_muscle.target
- share/makehuman/selectors/muscleSize/male_90_big_nomuscle.target
- share/makehuman/selectors/muscleSize/male_90_skinny_muscle.target
- share/makehuman/selectors/muscleSize/male_90_skinny_nomuscle.target
- share/makehuman/selectors/shapes/
- share/makehuman/selectors/shapes/brevilinear_peershape.target
- share/makehuman/selectors/shapes/brevilinear_vshape.target
- share/makehuman/selectors/shapes/longilinear_peershape.target
- share/makehuman/selectors/shapes/longilinear_vshape.target
- share/makehuman/subd.parts
- share/makehuman/targets/
- share/makehuman/targets/abdomen/
- share/makehuman/targets/abdomen/abdomen.camera
- share/makehuman/targets/cheek/
- share/makehuman/targets/cheek/cheek.camera
- share/makehuman/targets/cheek/cheek001.target
- share/makehuman/targets/cheek/cheek002.target
- share/makehuman/targets/cheek/cheek003.target
- share/makehuman/targets/cheek/cheek004.target
- share/makehuman/targets/chin_jaw/
- share/makehuman/targets/chin_jaw/chin_convex.target
- share/makehuman/targets/chin_jaw/chin_jaw.camera
- share/makehuman/targets/chin_jaw/chin_jaw001.target
- share/makehuman/targets/chin_jaw/chin_jaw002.target
- share/makehuman/targets/chin_jaw/chin_jaw002b.target
- share/makehuman/targets/chin_jaw/chin_jaw003.target
- share/makehuman/targets/chin_jaw/chin_jaw004.target
- share/makehuman/targets/chin_jaw/chin_jaw005.target
- share/makehuman/targets/chin_jaw/chin_jaw020.target
- share/makehuman/targets/chin_jaw/chin_prominent.target
- share/makehuman/targets/chin_jaw/chin_quadrangular.target
- share/makehuman/targets/chin_jaw/chin_recessed.target
- share/makehuman/targets/chin_jaw/chin_tapered.target
- share/makehuman/targets/chin_jaw/jaw_biprognathism_in.target
- share/makehuman/targets/chin_jaw/jaw_biprognathism_out.target
- share/makehuman/targets/chin_jaw/jaw_prognathism_in.target
- share/makehuman/targets/chin_jaw/jaw_prognathism_out.target
- share/makehuman/targets/ears/
- share/makehuman/targets/ears/ears.camera
- share/makehuman/targets/ears/ears001.target
- share/makehuman/targets/ears/ears002.target
- share/makehuman/targets/ears/ears003.target
- share/makehuman/targets/ears/ears004.target
- share/makehuman/targets/ears/ears_backward.target
- share/makehuman/targets/ears/ears_big.target
- share/makehuman/targets/ears/ears_darwin nodule_a.target
- share/makehuman/targets/ears/ears_darwin nodule_b.target
- share/makehuman/targets/ears/ears_down.target
- share/makehuman/targets/ears/ears_flap.target
- share/makehuman/targets/ears/ears_forward.target
- share/makehuman/targets/ears/ears_height_max.target
- share/makehuman/targets/ears/ears_lobe_height_max.target
- share/makehuman/targets/ears/ears_lobe_height_min.target
- share/makehuman/targets/ears/ears_no_wind.target
- share/makehuman/targets/ears/ears_rectangular.target
- share/makehuman/targets/ears/ears_rot_backward.target
- share/makehuman/targets/ears/ears_rot_forward.target
- share/makehuman/targets/ears/ears_round.target
- share/makehuman/targets/ears/ears_small.target
- share/makehuman/targets/ears/ears_triangular.target
- share/makehuman/targets/ears/ears_up.target
- share/makehuman/targets/ears/ears_wide_max.target
- share/makehuman/targets/ears/ears_wide_min.target
- share/makehuman/targets/ears/ears_wind.target
- share/makehuman/targets/eyes/
- share/makehuman/targets/eyes/eyes.camera
- share/makehuman/targets/eyes/eyes001.target
- share/makehuman/targets/eyes/eyes002.target
- share/makehuman/targets/eyes/eyes003.target
- share/makehuman/targets/eyes/eyes004.target
- share/makehuman/targets/eyes/eyes005.target
- share/makehuman/targets/eyes/eyes006.target
- share/makehuman/targets/eyes/eyes007.target
- share/makehuman/targets/eyes/eyes008.target
- share/makehuman/targets/eyes/eyes009.target
- share/makehuman/targets/eyes/eyes_big.target
- share/makehuman/targets/eyes/eyes_close.target
- share/makehuman/targets/eyes/eyes_distance_max.target
- share/makehuman/targets/eyes/eyes_distance_min.target
- share/makehuman/targets/eyes/eyes_down.target
- share/makehuman/targets/eyes/eyes_lower_up.target
- share/makehuman/targets/eyes/eyes_small.target
- share/makehuman/targets/eyes/eyes_up.target
- share/makehuman/targets/feet/
- share/makehuman/targets/feet/feet.camera
- share/makehuman/targets/forefinger/
- share/makehuman/targets/forefinger/forefinger.camera
- share/makehuman/targets/forehead/
- share/makehuman/targets/forehead/forehead.camera
- share/makehuman/targets/forehead/forehead001.target
- share/makehuman/targets/forehead/forehead002.target
- share/makehuman/targets/forehead/forehead003.target
- share/makehuman/targets/forehead/forehead004.target
- share/makehuman/targets/forehead/forehead005.target
- share/makehuman/targets/forehead/forehead006.target
- share/makehuman/targets/forehead/forehead_backward.target
- share/makehuman/targets/forehead/forehead_concave.target
- share/makehuman/targets/forehead/forehead_rectilinear.target
- share/makehuman/targets/hands/
- share/makehuman/targets/hands/Hand001.target
- share/makehuman/targets/hands/Hand002.target
- share/makehuman/targets/hands/Hand003.target
- share/makehuman/targets/hands/hands.camera
- share/makehuman/targets/hands/hands_long_thin.target
- share/makehuman/targets/head/
- share/makehuman/targets/head/head.camera
- share/makehuman/targets/head/head001.target
- share/makehuman/targets/head/head002.target
- share/makehuman/targets/head/head003.target
- share/makehuman/targets/head/head004.target
- share/makehuman/targets/head/head005.target
- share/makehuman/targets/head/head_frontal_vertex.target
- share/makehuman/targets/head/head_occiput_flattened.target
- share/makehuman/targets/head/head_occiput_protruded.target
- share/makehuman/targets/head/head_ovoidal.target
- share/makehuman/targets/head/head_ovoidal_invert.target
- share/makehuman/targets/head/head_parietal_navicular.target
- share/makehuman/targets/head/head_parietal_saddled.target
- share/makehuman/targets/head/head_parietal_vertex.target
- share/makehuman/targets/head/head_pentagonoidal.target
- share/makehuman/targets/head/head_rectangular.target
- share/makehuman/targets/head/head_rhomboidal.target
- share/makehuman/targets/head/head_rounded.target
- share/makehuman/targets/head/head_segmented_line.target
- share/makehuman/targets/head/head_squarely.target
- share/makehuman/targets/head/head_trapezioidal.target
- share/makehuman/targets/head/head_trapezioidal_invert.target
- share/makehuman/targets/head/old_head001.target
- share/makehuman/targets/littlefinger/
- share/makehuman/targets/littlefinger/littlefinger.camera
- share/makehuman/targets/lower_arms/
- share/makehuman/targets/lower_arms/lower_arms.camera
- share/makehuman/targets/lower_arms/lowerarm_End-large.target
- share/makehuman/targets/lower_arms/lowerarm_lenght_max.target
- share/makehuman/targets/lower_arms/lowerarm_lenght_mix.target
- share/makehuman/targets/lower_legs/
- share/makehuman/targets/lower_legs/lower_legs.camera
- share/makehuman/targets/lower_legs/lowerleg_lenght_max.target
- share/makehuman/targets/lower_legs/lowerleg_lenght_min.target
- share/makehuman/targets/middlefinger/
- share/makehuman/targets/middlefinger/middlefinger.camera
- share/makehuman/targets/mouth/
- share/makehuman/targets/mouth/mouth.camera
- share/makehuman/targets/mouth/mouth001.target
- share/makehuman/targets/mouth/mouth002.target
- share/makehuman/targets/mouth/mouth003.target
- share/makehuman/targets/mouth/mouth004.target
- share/makehuman/targets/mouth/mouth005.target
- share/makehuman/targets/mouth/mouth010.target
- share/makehuman/targets/mouth/mouth011.target
- share/makehuman/targets/mouth/mouth012.target
- share/makehuman/targets/mouth/mouth013.target
- share/makehuman/targets/mouth/mouth014.target
- share/makehuman/targets/mouth/mouth015.target
- share/makehuman/targets/mouth/mouth016.target
- share/makehuman/targets/mouth/mouth017.target
- share/makehuman/targets/mouth/mouth018.target
- share/makehuman/targets/mouth/mouth019.target
- share/makehuman/targets/mouth/mouth020.target
- share/makehuman/targets/mouth/mouth_line_deep.target
- share/makehuman/targets/mouth/mouth_line_removed.target
- share/makehuman/targets/mouth/mouth_lips_deflatten.target
- share/makehuman/targets/mouth/mouth_lips_inflatten.target
- share/makehuman/targets/mouth/mouth_lips_lower_V.target
- share/makehuman/targets/mouth/mouth_lips_lower_deflatten.target
- share/makehuman/targets/mouth/mouth_lips_upper_V.target
- share/makehuman/targets/mouth/mouth_lips_upper_deflatten.target
- share/makehuman/targets/mouth/mouth_lips_upper_inflatten.target
- share/makehuman/targets/mouth/mouth_wide_max.target
- share/makehuman/targets/mouth/mouth_wide_min.target
- share/makehuman/targets/neck/
- share/makehuman/targets/neck/neck.camera
- share/makehuman/targets/neck/neck001.target
- share/makehuman/targets/neck/neck_high.target
- share/makehuman/targets/neck/neck_large.target
- share/makehuman/targets/neck/neck_short.target
- share/makehuman/targets/neck/neck_slim.target
- share/makehuman/targets/nose/
- share/makehuman/targets/nose/nose.camera
- share/makehuman/targets/nose/nose001.target
- share/makehuman/targets/nose/nose002.target
- share/makehuman/targets/nose/nose003.target
- share/makehuman/targets/nose/nose004.target
- share/makehuman/targets/nose/nose005.target
- share/makehuman/targets/nose/nose006.target
- share/makehuman/targets/nose/nose007.target
- share/makehuman/targets/nose/nose008.target
- share/makehuman/targets/nose/nose009.target
- share/makehuman/targets/nose/nose010.target
- share/makehuman/targets/nose/nose011.target
- share/makehuman/targets/nose/nose012.target
- share/makehuman/targets/nose/nose013.target
- share/makehuman/targets/nose/nose014.target
- share/makehuman/targets/nose/nose015.target
- share/makehuman/targets/nose/nose016.target
- share/makehuman/targets/nose/nose017.target
- share/makehuman/targets/nose/nose018.target
- share/makehuman/targets/nose/nose019.target
- share/makehuman/targets/nose/nose020.target
- share/makehuman/targets/nose/nose021.target
- share/makehuman/targets/nose/nose022.target
- share/makehuman/targets/nose/nose023.target
- share/makehuman/targets/nose/nose024.target
- share/makehuman/targets/nose/nose025.target
- share/makehuman/targets/nose/nose026.target
- share/makehuman/targets/nose/nose027.target
- share/makehuman/targets/nose/nose028.target
- share/makehuman/targets/nose/nose029.target
- share/makehuman/targets/nose/nose030.target
- share/makehuman/targets/nose/nose031.target
- share/makehuman/targets/nose/nose_narrow.target
- share/makehuman/targets/nose/nose_nostril_down.target
- share/makehuman/targets/nose/nose_nostril_up.target
- share/makehuman/targets/nose/nose_short.target
- share/makehuman/targets/nose/nosebase001.target
- share/makehuman/targets/nose/nosebase002.target
- share/makehuman/targets/nose/nosebase003.target
- share/makehuman/targets/nose/nosebase004.target
- share/makehuman/targets/nose/nosebase005.target
- share/makehuman/targets/pelvis/
- share/makehuman/targets/pelvis/genital_female.target
- share/makehuman/targets/pelvis/genital_male_foreskin.target
- share/makehuman/targets/pelvis/genital_male_foreskin_none.target
- share/makehuman/targets/pelvis/pelvis.camera
- share/makehuman/targets/pollex/
- share/makehuman/targets/pollex/pollex.camera
- share/makehuman/targets/ringfinger/
- share/makehuman/targets/ringfinger/ringfinger.camera
- share/makehuman/targets/shoulders/
- share/makehuman/targets/shoulders/shoulders.camera
- share/makehuman/targets/teeth/
- share/makehuman/targets/teeth/teeth.camera
- share/makehuman/targets/tongue/
- share/makehuman/targets/tongue/tongue.camera
- share/makehuman/targets/torso/
- share/makehuman/targets/torso/torso.camera
- share/makehuman/targets/torso/torso_width_min.target
- share/makehuman/targets/upper_arms/
- share/makehuman/targets/upper_arms/upper_arms.camera
- share/makehuman/targets/upper_arms/upperarm_lenght_max.target
- share/makehuman/targets/upper_arms/upperarm_lenght_min.target
- share/makehuman/targets/upper_legs/
- share/makehuman/targets/upper_legs/thigs_size_decrease.target
- share/makehuman/targets/upper_legs/thigs_size_increase.target
- share/makehuman/targets/upper_legs/upper_legs.camera
- share/makehuman/targets/upper_legs/upperleg_lenght_max.target
- share/makehuman/targets/upper_legs/upperleg_lenght_min.target
- share/pixmaps/makehuman/
- share/pixmaps/makehuman/bsimg/
- share/pixmaps/makehuman/bsimg/characters1/
- share/pixmaps/makehuman/bsimg/characters1/asian_girl01.png
- share/pixmaps/makehuman/bsimg/characters1/big_fat_hero.png
- share/pixmaps/makehuman/bsimg/characters1/bodybuilder_man01.png
- share/pixmaps/makehuman/bsimg/characters1/bodybuilder_woman01.png
- share/pixmaps/makehuman/bsimg/characters1/fashion_model.png
- share/pixmaps/makehuman/bsimg/characters1/fat_girl01.png
- share/pixmaps/makehuman/bsimg/characters1/hero01.png
- share/pixmaps/makehuman/bsimg/characters1/idealistic_man01.png
- share/pixmaps/makehuman/bsimg/characters1/megahero.png
- share/pixmaps/makehuman/bsimg/characters1/old_man01.png
- share/pixmaps/makehuman/bsimg/characters1/ultra_skinny_girl01.png
- share/pixmaps/makehuman/bsimg/poses1/
- share/pixmaps/makehuman/bsimg/poses1/catwalk1.png
- share/pixmaps/makehuman/bsimg/poses1/dance1.png
- share/pixmaps/makehuman/bsimg/poses1/drama1.png
- share/pixmaps/makehuman/bsimg/poses1/standing.png
- share/pixmaps/makehuman/bsimg/poses1/yoga1.png
- share/pixmaps/makehuman/bsimg/user_bs.png
- share/pixmaps/makehuman/rotimg/
- share/pixmaps/makehuman/rotimg/000_right_footfinger_5_2/
- share/pixmaps/makehuman/rotimg/000_right_footfinger_5_2/ROT1.png
- share/pixmaps/makehuman/rotimg/000_right_footfinger_5_2/ROT1_over.png
- share/pixmaps/makehuman/rotimg/001_right_footfinger_5_1/
- share/pixmaps/makehuman/rotimg/001_right_footfinger_5_1/ROT1.png
- share/pixmaps/makehuman/rotimg/001_right_footfinger_5_1/ROT1_over.png
- share/pixmaps/makehuman/rotimg/002_right_footfinger_4_2/
- share/pixmaps/makehuman/rotimg/002_right_footfinger_4_2/ROT1.png
- share/pixmaps/makehuman/rotimg/002_right_footfinger_4_2/ROT1_over.png
- share/pixmaps/makehuman/rotimg/003_right_footfinger_4_1/
- share/pixmaps/makehuman/rotimg/003_right_footfinger_4_1/ROT1.png
- share/pixmaps/makehuman/rotimg/003_right_footfinger_4_1/ROT1_over.png
- share/pixmaps/makehuman/rotimg/004_right_footfinger_3_2/
- share/pixmaps/makehuman/rotimg/004_right_footfinger_3_2/ROT1.png
- share/pixmaps/makehuman/rotimg/004_right_footfinger_3_2/ROT1_over.png
- share/pixmaps/makehuman/rotimg/005_right_footfinger_3_1/
- share/pixmaps/makehuman/rotimg/005_right_footfinger_3_1/ROT1.png
- share/pixmaps/makehuman/rotimg/005_right_footfinger_3_1/ROT1_over.png
- share/pixmaps/makehuman/rotimg/006_right_footfinger_2_2/
- share/pixmaps/makehuman/rotimg/006_right_footfinger_2_2/ROT1.png
- share/pixmaps/makehuman/rotimg/006_right_footfinger_2_2/ROT1_over.png
- share/pixmaps/makehuman/rotimg/007_right_footfinger_2_1/
- share/pixmaps/makehuman/rotimg/007_right_footfinger_2_1/ROT1.png
- share/pixmaps/makehuman/rotimg/007_right_footfinger_2_1/ROT1_over.png
- share/pixmaps/makehuman/rotimg/008_right_footfinger_1_2/
- share/pixmaps/makehuman/rotimg/008_right_footfinger_1_2/ROT1.png
- share/pixmaps/makehuman/rotimg/008_right_footfinger_1_2/ROT1_over.png
- share/pixmaps/makehuman/rotimg/009_right_footfinger_1_1/
- share/pixmaps/makehuman/rotimg/009_right_footfinger_1_1/ROT1.png
- share/pixmaps/makehuman/rotimg/009_right_footfinger_1_1/ROT1_over.png
- share/pixmaps/makehuman/rotimg/020_right_foot/
- share/pixmaps/makehuman/rotimg/020_right_foot/ROT1.png
- share/pixmaps/makehuman/rotimg/020_right_foot/ROT1_over.png
- share/pixmaps/makehuman/rotimg/020_right_foot/ROT2.png
- share/pixmaps/makehuman/rotimg/020_right_foot/ROT2_over.png
- share/pixmaps/makehuman/rotimg/021_left_footfinger_5_2/
- share/pixmaps/makehuman/rotimg/021_left_footfinger_5_2/ROT1.png
- share/pixmaps/makehuman/rotimg/021_left_footfinger_5_2/ROT1_over.png
- share/pixmaps/makehuman/rotimg/022_left_footfinger_5_1/
- share/pixmaps/makehuman/rotimg/022_left_footfinger_5_1/ROT1.png
- share/pixmaps/makehuman/rotimg/022_left_footfinger_5_1/ROT1_over.png
- share/pixmaps/makehuman/rotimg/023_left_footfinger_4_2/
- share/pixmaps/makehuman/rotimg/023_left_footfinger_4_2/ROT1.png
- share/pixmaps/makehuman/rotimg/023_left_footfinger_4_2/ROT1_over.png
- share/pixmaps/makehuman/rotimg/024_left_footfinger_4_1/
- share/pixmaps/makehuman/rotimg/024_left_footfinger_4_1/ROT1.png
- share/pixmaps/makehuman/rotimg/024_left_footfinger_4_1/ROT1_over.png
- share/pixmaps/makehuman/rotimg/025_left_footfinger_3_2/
- share/pixmaps/makehuman/rotimg/025_left_footfinger_3_2/ROT1.png
- share/pixmaps/makehuman/rotimg/025_left_footfinger_3_2/ROT1_over.png
- share/pixmaps/makehuman/rotimg/026_left_footfinger_3_1/
- share/pixmaps/makehuman/rotimg/026_left_footfinger_3_1/ROT1.png
- share/pixmaps/makehuman/rotimg/026_left_footfinger_3_1/ROT1_over.png
- share/pixmaps/makehuman/rotimg/027_left_footfinger_2_2/
- share/pixmaps/makehuman/rotimg/027_left_footfinger_2_2/ROT1.png
- share/pixmaps/makehuman/rotimg/027_left_footfinger_2_2/ROT1_over.png
- share/pixmaps/makehuman/rotimg/028_left_footfinger_2_1/
- share/pixmaps/makehuman/rotimg/028_left_footfinger_2_1/ROT1.png
- share/pixmaps/makehuman/rotimg/028_left_footfinger_2_1/ROT1_over.png
- share/pixmaps/makehuman/rotimg/029_left_footfinger_1_2/
- share/pixmaps/makehuman/rotimg/029_left_footfinger_1_2/ROT1.png
- share/pixmaps/makehuman/rotimg/029_left_footfinger_1_2/ROT1_over.png
- share/pixmaps/makehuman/rotimg/030_left_footfinger_1_1/
- share/pixmaps/makehuman/rotimg/030_left_footfinger_1_1/ROT1.png
- share/pixmaps/makehuman/rotimg/030_left_footfinger_1_1/ROT1_over.png
- share/pixmaps/makehuman/rotimg/040_left_foot/
- share/pixmaps/makehuman/rotimg/040_left_foot/ROT1.png
- share/pixmaps/makehuman/rotimg/040_left_foot/ROT1_over.png
- share/pixmaps/makehuman/rotimg/040_left_foot/ROT2.png
- share/pixmaps/makehuman/rotimg/040_left_foot/ROT2_over.png
- share/pixmaps/makehuman/rotimg/041_right_pollex_3/
- share/pixmaps/makehuman/rotimg/041_right_pollex_3/ROT1.png
- share/pixmaps/makehuman/rotimg/041_right_pollex_3/ROT1_over.png
- share/pixmaps/makehuman/rotimg/042_right_pollex_2/
- share/pixmaps/makehuman/rotimg/042_right_pollex_2/ROT1.png
- share/pixmaps/makehuman/rotimg/042_right_pollex_2/ROT1_over.png
- share/pixmaps/makehuman/rotimg/043_right_pollex_1/
- share/pixmaps/makehuman/rotimg/043_right_pollex_1/ROT1.png
- share/pixmaps/makehuman/rotimg/043_right_pollex_1/ROT1_over.png
- share/pixmaps/makehuman/rotimg/044_right_forefinger_3/
- share/pixmaps/makehuman/rotimg/044_right_forefinger_3/ROT1.png
- share/pixmaps/makehuman/rotimg/044_right_forefinger_3/ROT1_over.png
- share/pixmaps/makehuman/rotimg/045_right_forefinger_2/
- share/pixmaps/makehuman/rotimg/045_right_forefinger_2/ROT1.png
- share/pixmaps/makehuman/rotimg/045_right_forefinger_2/ROT1_over.png
- share/pixmaps/makehuman/rotimg/046_right_forefinger_1/
- share/pixmaps/makehuman/rotimg/046_right_forefinger_1/ROT1.png
- share/pixmaps/makehuman/rotimg/046_right_forefinger_1/ROT1_over.png
- share/pixmaps/makehuman/rotimg/046_right_forefinger_1/ROT2.png
- share/pixmaps/makehuman/rotimg/046_right_forefinger_1/ROT2_over.png
- share/pixmaps/makehuman/rotimg/047_right_middlefinger_3/
- share/pixmaps/makehuman/rotimg/047_right_middlefinger_3/ROT1.png
- share/pixmaps/makehuman/rotimg/047_right_middlefinger_3/ROT1_over.png
- share/pixmaps/makehuman/rotimg/048_right_middlefinger_2/
- share/pixmaps/makehuman/rotimg/048_right_middlefinger_2/ROT1.png
- share/pixmaps/makehuman/rotimg/048_right_middlefinger_2/ROT1_over.png
- share/pixmaps/makehuman/rotimg/049_right_middlefinger_1/
- share/pixmaps/makehuman/rotimg/049_right_middlefinger_1/ROT1.png
- share/pixmaps/makehuman/rotimg/049_right_middlefinger_1/ROT1_over.png
- share/pixmaps/makehuman/rotimg/049_right_middlefinger_1/ROT2.png
- share/pixmaps/makehuman/rotimg/049_right_middlefinger_1/ROT2_over.png
- share/pixmaps/makehuman/rotimg/050_right_ringfinger_3/
- share/pixmaps/makehuman/rotimg/050_right_ringfinger_3/ROT1.png
- share/pixmaps/makehuman/rotimg/050_right_ringfinger_3/ROT1_over.png
- share/pixmaps/makehuman/rotimg/051_right_ringfinger_2/
- share/pixmaps/makehuman/rotimg/051_right_ringfinger_2/ROT1.png
- share/pixmaps/makehuman/rotimg/051_right_ringfinger_2/ROT1_over.png
- share/pixmaps/makehuman/rotimg/052_right_ringfinger_1/
- share/pixmaps/makehuman/rotimg/052_right_ringfinger_1/ROT1.png
- share/pixmaps/makehuman/rotimg/052_right_ringfinger_1/ROT1_over.png
- share/pixmaps/makehuman/rotimg/052_right_ringfinger_1/ROT2.png
- share/pixmaps/makehuman/rotimg/052_right_ringfinger_1/ROT2_over.png
- share/pixmaps/makehuman/rotimg/053_right_littlefinger_3/
- share/pixmaps/makehuman/rotimg/053_right_littlefinger_3/ROT1.png
- share/pixmaps/makehuman/rotimg/053_right_littlefinger_3/ROT1_over.png
- share/pixmaps/makehuman/rotimg/054_right_littlefinger_2/
- share/pixmaps/makehuman/rotimg/054_right_littlefinger_2/ROT1.png
- share/pixmaps/makehuman/rotimg/054_right_littlefinger_2/ROT1_over.png
- share/pixmaps/makehuman/rotimg/055_right_littlefinger_1/
- share/pixmaps/makehuman/rotimg/055_right_littlefinger_1/ROT1.png
- share/pixmaps/makehuman/rotimg/055_right_littlefinger_1/ROT1_over.png
- share/pixmaps/makehuman/rotimg/055_right_littlefinger_1/ROT2.png
- share/pixmaps/makehuman/rotimg/055_right_littlefinger_1/ROT2_over.png
- share/pixmaps/makehuman/rotimg/060_right_hand/
- share/pixmaps/makehuman/rotimg/060_right_hand/ROT1.png
- share/pixmaps/makehuman/rotimg/060_right_hand/ROT1_over.png
- share/pixmaps/makehuman/rotimg/060_right_hand/ROT2.png
- share/pixmaps/makehuman/rotimg/060_right_hand/ROT2_over.png
- share/pixmaps/makehuman/rotimg/060_right_hand/ROT3.png
- share/pixmaps/makehuman/rotimg/060_right_hand/ROT3_over.png
- share/pixmaps/makehuman/rotimg/061_left_pollex_3/
- share/pixmaps/makehuman/rotimg/061_left_pollex_3/ROT1.png
- share/pixmaps/makehuman/rotimg/061_left_pollex_3/ROT1_over.png
- share/pixmaps/makehuman/rotimg/062_left_pollex_2/
- share/pixmaps/makehuman/rotimg/062_left_pollex_2/ROT1.png
- share/pixmaps/makehuman/rotimg/062_left_pollex_2/ROT1_over.png
- share/pixmaps/makehuman/rotimg/063_left_pollex_1/
- share/pixmaps/makehuman/rotimg/063_left_pollex_1/ROT1.png
- share/pixmaps/makehuman/rotimg/063_left_pollex_1/ROT1_over.png
- share/pixmaps/makehuman/rotimg/064_left_forefinger_3/
- share/pixmaps/makehuman/rotimg/064_left_forefinger_3/ROT1.png
- share/pixmaps/makehuman/rotimg/064_left_forefinger_3/ROT1_over.png
- share/pixmaps/makehuman/rotimg/065_left_forefinger_2/
- share/pixmaps/makehuman/rotimg/065_left_forefinger_2/ROT1.png
- share/pixmaps/makehuman/rotimg/065_left_forefinger_2/ROT1_over.png
- share/pixmaps/makehuman/rotimg/066_left_forefinger_1/
- share/pixmaps/makehuman/rotimg/066_left_forefinger_1/ROT1.png
- share/pixmaps/makehuman/rotimg/066_left_forefinger_1/ROT1_over.png
- share/pixmaps/makehuman/rotimg/066_left_forefinger_1/ROT2.png
- share/pixmaps/makehuman/rotimg/066_left_forefinger_1/ROT2_over.png
- share/pixmaps/makehuman/rotimg/067_left_middlefinger_3/
- share/pixmaps/makehuman/rotimg/067_left_middlefinger_3/ROT1.png
- share/pixmaps/makehuman/rotimg/067_left_middlefinger_3/ROT1_over.png
- share/pixmaps/makehuman/rotimg/068_left_middlefinger_2/
- share/pixmaps/makehuman/rotimg/068_left_middlefinger_2/ROT1.png
- share/pixmaps/makehuman/rotimg/068_left_middlefinger_2/ROT1_over.png
- share/pixmaps/makehuman/rotimg/069_left_middlefinger_1/
- share/pixmaps/makehuman/rotimg/069_left_middlefinger_1/ROT1.png
- share/pixmaps/makehuman/rotimg/069_left_middlefinger_1/ROT1_over.png
- share/pixmaps/makehuman/rotimg/069_left_middlefinger_1/ROT2.png
- share/pixmaps/makehuman/rotimg/069_left_middlefinger_1/ROT2_over.png
- share/pixmaps/makehuman/rotimg/070_left_ringfinger_3/
- share/pixmaps/makehuman/rotimg/070_left_ringfinger_3/ROT1.png
- share/pixmaps/makehuman/rotimg/070_left_ringfinger_3/ROT1_over.png
- share/pixmaps/makehuman/rotimg/071_left_ringfinger_2/
- share/pixmaps/makehuman/rotimg/071_left_ringfinger_2/ROT1.png
- share/pixmaps/makehuman/rotimg/071_left_ringfinger_2/ROT1_over.png
- share/pixmaps/makehuman/rotimg/072_left_ringfinger_1/
- share/pixmaps/makehuman/rotimg/072_left_ringfinger_1/ROT1.png
- share/pixmaps/makehuman/rotimg/072_left_ringfinger_1/ROT1_over.png
- share/pixmaps/makehuman/rotimg/072_left_ringfinger_1/ROT2.png
- share/pixmaps/makehuman/rotimg/072_left_ringfinger_1/ROT2_over.png
- share/pixmaps/makehuman/rotimg/073_left_littlefinger_3/
- share/pixmaps/makehuman/rotimg/073_left_littlefinger_3/ROT1.png
- share/pixmaps/makehuman/rotimg/073_left_littlefinger_3/ROT1_over.png
- share/pixmaps/makehuman/rotimg/074_left_littlefinger_2/
- share/pixmaps/makehuman/rotimg/074_left_littlefinger_2/ROT1.png
- share/pixmaps/makehuman/rotimg/074_left_littlefinger_2/ROT1_over.png
- share/pixmaps/makehuman/rotimg/075_left_littlefinger_1/
- share/pixmaps/makehuman/rotimg/075_left_littlefinger_1/ROT1.png
- share/pixmaps/makehuman/rotimg/075_left_littlefinger_1/ROT1_over.png
- share/pixmaps/makehuman/rotimg/075_left_littlefinger_1/ROT2.png
- share/pixmaps/makehuman/rotimg/075_left_littlefinger_1/ROT2_over.png
- share/pixmaps/makehuman/rotimg/080_left_hand/
- share/pixmaps/makehuman/rotimg/080_left_hand/ROT1.png
- share/pixmaps/makehuman/rotimg/080_left_hand/ROT1_over.png
- share/pixmaps/makehuman/rotimg/080_left_hand/ROT2.png
- share/pixmaps/makehuman/rotimg/080_left_hand/ROT2_over.png
- share/pixmaps/makehuman/rotimg/080_left_hand/ROT3.png
- share/pixmaps/makehuman/rotimg/080_left_hand/ROT3_over.png
- share/pixmaps/makehuman/rotimg/100_right_lower_leg/
- share/pixmaps/makehuman/rotimg/100_right_lower_leg/ROT1.png
- share/pixmaps/makehuman/rotimg/100_right_lower_leg/ROT1_over.png
- share/pixmaps/makehuman/rotimg/100_right_lower_leg/ROT2.png
- share/pixmaps/makehuman/rotimg/100_right_lower_leg/ROT2_over.png
- share/pixmaps/makehuman/rotimg/120_left_lower_leg/
- share/pixmaps/makehuman/rotimg/120_left_lower_leg/ROT1.png
- share/pixmaps/makehuman/rotimg/120_left_lower_leg/ROT1_over.png
- share/pixmaps/makehuman/rotimg/120_left_lower_leg/ROT2.png
- share/pixmaps/makehuman/rotimg/120_left_lower_leg/ROT2_over.png
- share/pixmaps/makehuman/rotimg/140_right_lower_arm/
- share/pixmaps/makehuman/rotimg/140_right_lower_arm/ROT1.png
- share/pixmaps/makehuman/rotimg/140_right_lower_arm/ROT1_over.png
- share/pixmaps/makehuman/rotimg/160_left_lower_arm/
- share/pixmaps/makehuman/rotimg/160_left_lower_arm/ROT1.png
- share/pixmaps/makehuman/rotimg/160_left_lower_arm/ROT1_over.png
- share/pixmaps/makehuman/rotimg/180_right_upper_leg/
- share/pixmaps/makehuman/rotimg/180_right_upper_leg/ROT_ADJUST1.png
- share/pixmaps/makehuman/rotimg/180_right_upper_leg/ROT_ADJUST1_over.png
- share/pixmaps/makehuman/rotimg/180_right_upper_leg/ROT_ADJUST2.png
- share/pixmaps/makehuman/rotimg/180_right_upper_leg/ROT_ADJUST2_over.png
- share/pixmaps/makehuman/rotimg/180_right_upper_leg/ROT_BASE1.png
- share/pixmaps/makehuman/rotimg/180_right_upper_leg/ROT_BASE1_over.png
- share/pixmaps/makehuman/rotimg/180_right_upper_leg/ROT_BASE2.png
- share/pixmaps/makehuman/rotimg/180_right_upper_leg/ROT_BASE2_over.png
- share/pixmaps/makehuman/rotimg/180_right_upper_leg/ROT_BASE3.png
- share/pixmaps/makehuman/rotimg/180_right_upper_leg/ROT_BASE3_over.png
- share/pixmaps/makehuman/rotimg/200_left_upper_leg/
- share/pixmaps/makehuman/rotimg/200_left_upper_leg/ROT_ADJUST1.png
- share/pixmaps/makehuman/rotimg/200_left_upper_leg/ROT_ADJUST1_over.png
- share/pixmaps/makehuman/rotimg/200_left_upper_leg/ROT_ADJUST2.png
- share/pixmaps/makehuman/rotimg/200_left_upper_leg/ROT_ADJUST2_over.png
- share/pixmaps/makehuman/rotimg/200_left_upper_leg/ROT_BASE1.png
- share/pixmaps/makehuman/rotimg/200_left_upper_leg/ROT_BASE1_over.png
- share/pixmaps/makehuman/rotimg/200_left_upper_leg/ROT_BASE2.png
- share/pixmaps/makehuman/rotimg/200_left_upper_leg/ROT_BASE2_over.png
- share/pixmaps/makehuman/rotimg/200_left_upper_leg/ROT_BASE3.png
- share/pixmaps/makehuman/rotimg/200_left_upper_leg/ROT_BASE3_over.png
- share/pixmaps/makehuman/rotimg/220_right_upper_arm/
- share/pixmaps/makehuman/rotimg/220_right_upper_arm/ROT_ADJUST0.png
- share/pixmaps/makehuman/rotimg/220_right_upper_arm/ROT_ADJUST0_over.png
- share/pixmaps/makehuman/rotimg/220_right_upper_arm/ROT_ADJUST1.png
- share/pixmaps/makehuman/rotimg/220_right_upper_arm/ROT_ADJUST1_over.png
- share/pixmaps/makehuman/rotimg/220_right_upper_arm/ROT_ADJUST2.png
- share/pixmaps/makehuman/rotimg/220_right_upper_arm/ROT_ADJUST2_over.png
- share/pixmaps/makehuman/rotimg/220_right_upper_arm/ROT_ADJUST3.png
- share/pixmaps/makehuman/rotimg/220_right_upper_arm/ROT_ADJUST3_over.png
- share/pixmaps/makehuman/rotimg/220_right_upper_arm/ROT_BASE1.png
- share/pixmaps/makehuman/rotimg/220_right_upper_arm/ROT_BASE1_over.png
- share/pixmaps/makehuman/rotimg/220_right_upper_arm/ROT_BASE2.png
- share/pixmaps/makehuman/rotimg/220_right_upper_arm/ROT_BASE2_over.png
- share/pixmaps/makehuman/rotimg/220_right_upper_arm/ROT_BASE3.png
- share/pixmaps/makehuman/rotimg/220_right_upper_arm/ROT_BASE3_over.png
- share/pixmaps/makehuman/rotimg/220_right_upper_arm/ROT_BASE4.png
- share/pixmaps/makehuman/rotimg/220_right_upper_arm/ROT_BASE4_over.png
- share/pixmaps/makehuman/rotimg/220_right_upper_arm/ROT_BASE5.png
- share/pixmaps/makehuman/rotimg/220_right_upper_arm/ROT_BASE5_over.png
- share/pixmaps/makehuman/rotimg/220_right_upper_arm/ROT_BASE6.png
- share/pixmaps/makehuman/rotimg/220_right_upper_arm/ROT_BASE6_over.png
- share/pixmaps/makehuman/rotimg/240_left_upper_arm/
- share/pixmaps/makehuman/rotimg/240_left_upper_arm/ROT_ADJUST0.png
- share/pixmaps/makehuman/rotimg/240_left_upper_arm/ROT_ADJUST0_over.png
- share/pixmaps/makehuman/rotimg/240_left_upper_arm/ROT_ADJUST1.png
- share/pixmaps/makehuman/rotimg/240_left_upper_arm/ROT_ADJUST1_over.png
- share/pixmaps/makehuman/rotimg/240_left_upper_arm/ROT_ADJUST2.png
- share/pixmaps/makehuman/rotimg/240_left_upper_arm/ROT_ADJUST2_over.png
- share/pixmaps/makehuman/rotimg/240_left_upper_arm/ROT_ADJUST3.png
- share/pixmaps/makehuman/rotimg/240_left_upper_arm/ROT_ADJUST3_over.png
- share/pixmaps/makehuman/rotimg/240_left_upper_arm/ROT_BASE1.png
- share/pixmaps/makehuman/rotimg/240_left_upper_arm/ROT_BASE1_over.png
- share/pixmaps/makehuman/rotimg/240_left_upper_arm/ROT_BASE2.png
- share/pixmaps/makehuman/rotimg/240_left_upper_arm/ROT_BASE2_over.png
- share/pixmaps/makehuman/rotimg/240_left_upper_arm/ROT_BASE3.png
- share/pixmaps/makehuman/rotimg/240_left_upper_arm/ROT_BASE3_over.png
- share/pixmaps/makehuman/rotimg/240_left_upper_arm/ROT_BASE4.png
- share/pixmaps/makehuman/rotimg/240_left_upper_arm/ROT_BASE4_over.png
- share/pixmaps/makehuman/rotimg/240_left_upper_arm/ROT_BASE5.png
- share/pixmaps/makehuman/rotimg/240_left_upper_arm/ROT_BASE5_over.png
- share/pixmaps/makehuman/rotimg/240_left_upper_arm/ROT_BASE6.png
- share/pixmaps/makehuman/rotimg/240_left_upper_arm/ROT_BASE6_over.png
- share/pixmaps/makehuman/rotimg/260_right_collar/
- share/pixmaps/makehuman/rotimg/260_right_collar/ROT1.png
- share/pixmaps/makehuman/rotimg/260_right_collar/ROT1_over.png
- share/pixmaps/makehuman/rotimg/260_right_collar/ROT2.png
- share/pixmaps/makehuman/rotimg/260_right_collar/ROT2_over.png
- share/pixmaps/makehuman/rotimg/260_right_collar/ROT3.png
- share/pixmaps/makehuman/rotimg/260_right_collar/ROT3_over.png
- share/pixmaps/makehuman/rotimg/280_left_collar/
- share/pixmaps/makehuman/rotimg/280_left_collar/ROT1.png
- share/pixmaps/makehuman/rotimg/280_left_collar/ROT1_over.png
- share/pixmaps/makehuman/rotimg/280_left_collar/ROT2.png
- share/pixmaps/makehuman/rotimg/280_left_collar/ROT2_over.png
- share/pixmaps/makehuman/rotimg/280_left_collar/ROT3.png
- share/pixmaps/makehuman/rotimg/280_left_collar/ROT3_over.png
- share/pixmaps/makehuman/rotimg/300_head/
- share/pixmaps/makehuman/rotimg/300_head/ROT1.png
- share/pixmaps/makehuman/rotimg/300_head/ROT1_over.png
- share/pixmaps/makehuman/rotimg/300_head/ROT2.png
- share/pixmaps/makehuman/rotimg/300_head/ROT2_over.png
- share/pixmaps/makehuman/rotimg/300_head/ROT3.png
- share/pixmaps/makehuman/rotimg/300_head/ROT3_over.png
- share/pixmaps/makehuman/rotimg/320_neck/
- share/pixmaps/makehuman/rotimg/320_neck/ROT1.png
- share/pixmaps/makehuman/rotimg/320_neck/ROT1_over.png
- share/pixmaps/makehuman/rotimg/320_neck/ROT2.png
- share/pixmaps/makehuman/rotimg/320_neck/ROT2_over.png
- share/pixmaps/makehuman/rotimg/360_torso/
- share/pixmaps/makehuman/rotimg/360_torso/ROT1.png
- share/pixmaps/makehuman/rotimg/360_torso/ROT1_over.png
- share/pixmaps/makehuman/rotimg/360_torso/ROT2.png
- share/pixmaps/makehuman/rotimg/360_torso/ROT2_over.png
- share/pixmaps/makehuman/rotimg/360_torso/ROT3.png
- share/pixmaps/makehuman/rotimg/360_torso/ROT3_over.png
- share/pixmaps/makehuman/rotimg/380_pivot/
- share/pixmaps/makehuman/rotimg/380_pivot/ROT1.png
- share/pixmaps/makehuman/rotimg/380_pivot/ROT1_over.png
- share/pixmaps/makehuman/rotimg/380_pivot/ROT2.png
- share/pixmaps/makehuman/rotimg/380_pivot/ROT2_over.png
- share/pixmaps/makehuman/rotimg/380_pivot/ROT3.png
- share/pixmaps/makehuman/rotimg/380_pivot/ROT3_over.png
- share/pixmaps/makehuman/tgimg/
- share/pixmaps/makehuman/tgimg/cheek/
- share/pixmaps/makehuman/tgimg/cheek/cheek001.png
- share/pixmaps/makehuman/tgimg/cheek/cheek002.png
- share/pixmaps/makehuman/tgimg/cheek/cheek003.png
- share/pixmaps/makehuman/tgimg/cheek/cheek004.png
- share/pixmaps/makehuman/tgimg/chin_jaw/
- share/pixmaps/makehuman/tgimg/chin_jaw/chin_convex.png
- share/pixmaps/makehuman/tgimg/chin_jaw/chin_jaw001.png
- share/pixmaps/makehuman/tgimg/chin_jaw/chin_jaw002.png
- share/pixmaps/makehuman/tgimg/chin_jaw/chin_jaw002b.png
- share/pixmaps/makehuman/tgimg/chin_jaw/chin_jaw003.png
- share/pixmaps/makehuman/tgimg/chin_jaw/chin_jaw004.png
- share/pixmaps/makehuman/tgimg/chin_jaw/chin_jaw005.png
- share/pixmaps/makehuman/tgimg/chin_jaw/chin_jaw020.png
- share/pixmaps/makehuman/tgimg/chin_jaw/chin_prominent.png
- share/pixmaps/makehuman/tgimg/chin_jaw/chin_quadrangular.png
- share/pixmaps/makehuman/tgimg/chin_jaw/chin_recessed.png
- share/pixmaps/makehuman/tgimg/chin_jaw/chin_tapered.png
- share/pixmaps/makehuman/tgimg/chin_jaw/jaw_biprognathism_in.png
- share/pixmaps/makehuman/tgimg/chin_jaw/jaw_biprognathism_out.png
- share/pixmaps/makehuman/tgimg/chin_jaw/jaw_prognathism_in.png
- share/pixmaps/makehuman/tgimg/chin_jaw/jaw_prognathism_out.png
- share/pixmaps/makehuman/tgimg/ears/
- share/pixmaps/makehuman/tgimg/ears/ears001.png
- share/pixmaps/makehuman/tgimg/ears/ears002.png
- share/pixmaps/makehuman/tgimg/ears/ears003.png
- share/pixmaps/makehuman/tgimg/ears/ears004.png
- share/pixmaps/makehuman/tgimg/ears/ears_backward.png
- share/pixmaps/makehuman/tgimg/ears/ears_big.png
- share/pixmaps/makehuman/tgimg/ears/ears_darwin nodule_a.png
- share/pixmaps/makehuman/tgimg/ears/ears_darwin nodule_b.png
- share/pixmaps/makehuman/tgimg/ears/ears_down.png
- share/pixmaps/makehuman/tgimg/ears/ears_flap.png
- share/pixmaps/makehuman/tgimg/ears/ears_forward.png
- share/pixmaps/makehuman/tgimg/ears/ears_height_max.png
- share/pixmaps/makehuman/tgimg/ears/ears_lobe_height_max.png
- share/pixmaps/makehuman/tgimg/ears/ears_lobe_height_min.png
- share/pixmaps/makehuman/tgimg/ears/ears_no_wind.png
- share/pixmaps/makehuman/tgimg/ears/ears_rectangular.png
- share/pixmaps/makehuman/tgimg/ears/ears_rot_backward.png
- share/pixmaps/makehuman/tgimg/ears/ears_rot_forward.png
- share/pixmaps/makehuman/tgimg/ears/ears_round.png
- share/pixmaps/makehuman/tgimg/ears/ears_small.png
- share/pixmaps/makehuman/tgimg/ears/ears_triangular.png
- share/pixmaps/makehuman/tgimg/ears/ears_up.png
- share/pixmaps/makehuman/tgimg/ears/ears_wide_max.png
- share/pixmaps/makehuman/tgimg/ears/ears_wide_min.png
- share/pixmaps/makehuman/tgimg/ears/ears_wind.png
- share/pixmaps/makehuman/tgimg/eyes/
- share/pixmaps/makehuman/tgimg/eyes/eyes001.png
- share/pixmaps/makehuman/tgimg/eyes/eyes002.png
- share/pixmaps/makehuman/tgimg/eyes/eyes003.png
- share/pixmaps/makehuman/tgimg/eyes/eyes004.png
- share/pixmaps/makehuman/tgimg/eyes/eyes005.png
- share/pixmaps/makehuman/tgimg/eyes/eyes006.png
- share/pixmaps/makehuman/tgimg/eyes/eyes007.png
- share/pixmaps/makehuman/tgimg/eyes/eyes008.png
- share/pixmaps/makehuman/tgimg/eyes/eyes009.png
- share/pixmaps/makehuman/tgimg/eyes/eyes_big.png
- share/pixmaps/makehuman/tgimg/eyes/eyes_close.png
- share/pixmaps/makehuman/tgimg/eyes/eyes_distance_max.png
- share/pixmaps/makehuman/tgimg/eyes/eyes_distance_min.png
- share/pixmaps/makehuman/tgimg/eyes/eyes_down.png
- share/pixmaps/makehuman/tgimg/eyes/eyes_lower_up.png
- share/pixmaps/makehuman/tgimg/eyes/eyes_small.png
- share/pixmaps/makehuman/tgimg/eyes/eyes_up.png
- share/pixmaps/makehuman/tgimg/forehead/
- share/pixmaps/makehuman/tgimg/forehead/forehead001.png
- share/pixmaps/makehuman/tgimg/forehead/forehead002.png
- share/pixmaps/makehuman/tgimg/forehead/forehead003.png
- share/pixmaps/makehuman/tgimg/forehead/forehead004.png
- share/pixmaps/makehuman/tgimg/forehead/forehead005.png
- share/pixmaps/makehuman/tgimg/forehead/forehead006.png
- share/pixmaps/makehuman/tgimg/forehead/forehead_backward.png
- share/pixmaps/makehuman/tgimg/forehead/forehead_concave.png
- share/pixmaps/makehuman/tgimg/forehead/forehead_rectilinear.png
- share/pixmaps/makehuman/tgimg/hands/
- share/pixmaps/makehuman/tgimg/hands/hand001.png
- share/pixmaps/makehuman/tgimg/hands/hand002.png
- share/pixmaps/makehuman/tgimg/hands/hand003.png
- share/pixmaps/makehuman/tgimg/head/
- share/pixmaps/makehuman/tgimg/head/head001.png
- share/pixmaps/makehuman/tgimg/head/head002.png
- share/pixmaps/makehuman/tgimg/head/head003.png
- share/pixmaps/makehuman/tgimg/head/head004.png
- share/pixmaps/makehuman/tgimg/head/head_frontal_vertex.png
- share/pixmaps/makehuman/tgimg/head/head_occiput_flattened.png
- share/pixmaps/makehuman/tgimg/head/head_occiput_protruded.png
- share/pixmaps/makehuman/tgimg/head/head_ovoidal.png
- share/pixmaps/makehuman/tgimg/head/head_parietal_navicular.png
- share/pixmaps/makehuman/tgimg/head/head_parietal_saddled.png
- share/pixmaps/makehuman/tgimg/head/head_parietal_vertex.png
- share/pixmaps/makehuman/tgimg/head/head_pentagonoidal.png
- share/pixmaps/makehuman/tgimg/head/head_rectangular.png
- share/pixmaps/makehuman/tgimg/head/head_rhomboidal.png
- share/pixmaps/makehuman/tgimg/head/head_rounded.png
- share/pixmaps/makehuman/tgimg/head/head_segmented_line.png
- share/pixmaps/makehuman/tgimg/head/head_squarely.png
- share/pixmaps/makehuman/tgimg/head/head_trapezioidal.png
- share/pixmaps/makehuman/tgimg/head/head_trapezioidal_invert.png
- share/pixmaps/makehuman/tgimg/lower_arms/
- share/pixmaps/makehuman/tgimg/lower_arms/lowerarm_End-large.png
- share/pixmaps/makehuman/tgimg/mouth/
- share/pixmaps/makehuman/tgimg/mouth/mouth001.png
- share/pixmaps/makehuman/tgimg/mouth/mouth002.png
- share/pixmaps/makehuman/tgimg/mouth/mouth003.png
- share/pixmaps/makehuman/tgimg/mouth/mouth004.png
- share/pixmaps/makehuman/tgimg/mouth/mouth005.png
- share/pixmaps/makehuman/tgimg/mouth/mouth_line_deep.png
- share/pixmaps/makehuman/tgimg/mouth/mouth_line_removed.png
- share/pixmaps/makehuman/tgimg/mouth/mouth_lips_deflatten.png
- share/pixmaps/makehuman/tgimg/mouth/mouth_lips_inflatten.png
- share/pixmaps/makehuman/tgimg/mouth/mouth_lips_lower_V.png
- share/pixmaps/makehuman/tgimg/mouth/mouth_lips_lower_deflatten.png
- share/pixmaps/makehuman/tgimg/mouth/mouth_lips_upper_V.png
- share/pixmaps/makehuman/tgimg/mouth/mouth_lips_upper_deflatten.png
- share/pixmaps/makehuman/tgimg/mouth/mouth_lips_upper_inflatten.png
- share/pixmaps/makehuman/tgimg/mouth/mouth_wide_max.png
- share/pixmaps/makehuman/tgimg/mouth/mouth_wide_min.png
- share/pixmaps/makehuman/tgimg/neck/
- share/pixmaps/makehuman/tgimg/neck/neck001.png
- share/pixmaps/makehuman/tgimg/neck/neck_high.png
- share/pixmaps/makehuman/tgimg/neck/neck_large.png
- share/pixmaps/makehuman/tgimg/neck/neck_short.png
- share/pixmaps/makehuman/tgimg/neck/neck_slim.png
- share/pixmaps/makehuman/tgimg/nose/
- share/pixmaps/makehuman/tgimg/nose/nose001.png
- share/pixmaps/makehuman/tgimg/nose/nose002.png
- share/pixmaps/makehuman/tgimg/nose/nose003.png
- share/pixmaps/makehuman/tgimg/nose/nose004.png
- share/pixmaps/makehuman/tgimg/nose/nose005.png
- share/pixmaps/makehuman/tgimg/nose/nose006.png
- share/pixmaps/makehuman/tgimg/nose/nose007.png
- share/pixmaps/makehuman/tgimg/nose/nose008.png
- share/pixmaps/makehuman/tgimg/nose/nose009.png
- share/pixmaps/makehuman/tgimg/nose/nose010.png
- share/pixmaps/makehuman/tgimg/nose/nose011.png
- share/pixmaps/makehuman/tgimg/nose/nose012.png
- share/pixmaps/makehuman/tgimg/nose/nose013.png
- share/pixmaps/makehuman/tgimg/nose/nose014.png
- share/pixmaps/makehuman/tgimg/nose/nose015.png
- share/pixmaps/makehuman/tgimg/nose/nose016.png
- share/pixmaps/makehuman/tgimg/nose/nose017.png
- share/pixmaps/makehuman/tgimg/nose/nose018.png
- share/pixmaps/makehuman/tgimg/nose/nose019.png
- share/pixmaps/makehuman/tgimg/nose/nose020.png
- share/pixmaps/makehuman/tgimg/nose/nose021.png
- share/pixmaps/makehuman/tgimg/nose/nose022.png
- share/pixmaps/makehuman/tgimg/nose/nose023.png
- share/pixmaps/makehuman/tgimg/nose/nose024.png
- share/pixmaps/makehuman/tgimg/nose/nose025.png
- share/pixmaps/makehuman/tgimg/nose/nose026.png
- share/pixmaps/makehuman/tgimg/nose/nose027.png
- share/pixmaps/makehuman/tgimg/nose/nose028.png
- share/pixmaps/makehuman/tgimg/nose/nose029.png
- share/pixmaps/makehuman/tgimg/nose/nose030.png
- share/pixmaps/makehuman/tgimg/nose/nose031.png
- share/pixmaps/makehuman/tgimg/nose/nose_narrow.png
- share/pixmaps/makehuman/tgimg/nose/nose_nostril_down.png
- share/pixmaps/makehuman/tgimg/nose/nose_nostril_up.png
- share/pixmaps/makehuman/tgimg/nose/nose_short.png
- share/pixmaps/makehuman/tgimg/nose/nosebase001.png
- share/pixmaps/makehuman/tgimg/nose/nosebase002.png
- share/pixmaps/makehuman/tgimg/nose/nosebase003.png
- share/pixmaps/makehuman/tgimg/nose/nosebase004.png
- share/pixmaps/makehuman/tgimg/nose/nosebase005.png
- share/pixmaps/makehuman/ui/
- share/pixmaps/makehuman/ui/age_cursor.png
- share/pixmaps/makehuman/ui/age_selector.png
- share/pixmaps/makehuman/ui/background.png
- share/pixmaps/makehuman/ui/body_01.png
- share/pixmaps/makehuman/ui/body_01_over.png
- share/pixmaps/makehuman/ui/body_01over_.png
- share/pixmaps/makehuman/ui/body_02.png
- share/pixmaps/makehuman/ui/body_02_over.png
- share/pixmaps/makehuman/ui/body_03.png
- share/pixmaps/makehuman/ui/body_03_over.png
- share/pixmaps/makehuman/ui/body_04.png
- share/pixmaps/makehuman/ui/body_04_over.png
- share/pixmaps/makehuman/ui/body_05.png
- share/pixmaps/makehuman/ui/body_05_over.png
- share/pixmaps/makehuman/ui/body_06.png
- share/pixmaps/makehuman/ui/body_06_over.png
- share/pixmaps/makehuman/ui/body_07.png
- share/pixmaps/makehuman/ui/body_07_over.png
- share/pixmaps/makehuman/ui/body_08.png
- share/pixmaps/makehuman/ui/body_08_over.png
- share/pixmaps/makehuman/ui/body_09.png
- share/pixmaps/makehuman/ui/body_09_over.png
- share/pixmaps/makehuman/ui/body_10.png
- share/pixmaps/makehuman/ui/body_10_over.png
- share/pixmaps/makehuman/ui/body_11.png
- share/pixmaps/makehuman/ui/body_11_over.png
- share/pixmaps/makehuman/ui/body_12.png
- share/pixmaps/makehuman/ui/body_12_over.png
- share/pixmaps/makehuman/ui/body_13.png
- share/pixmaps/makehuman/ui/body_13_over.png
- share/pixmaps/makehuman/ui/body_14.png
- share/pixmaps/makehuman/ui/body_14_over.png
- share/pixmaps/makehuman/ui/body_15.png
- share/pixmaps/makehuman/ui/body_15_over.png
- share/pixmaps/makehuman/ui/body_16.png
- share/pixmaps/makehuman/ui/body_16_over.png
- share/pixmaps/makehuman/ui/body_17.png
- share/pixmaps/makehuman/ui/body_17_over.png
- share/pixmaps/makehuman/ui/body_18.png
- share/pixmaps/makehuman/ui/body_18_over.png
- share/pixmaps/makehuman/ui/body_color.png
- share/pixmaps/makehuman/ui/breast_cursor.png
- share/pixmaps/makehuman/ui/breast_selector.png
- share/pixmaps/makehuman/ui/characters1.png
- share/pixmaps/makehuman/ui/characters10.png
- share/pixmaps/makehuman/ui/characters10_disa.png
- share/pixmaps/makehuman/ui/characters10_over.png
- share/pixmaps/makehuman/ui/characters11.png
- share/pixmaps/makehuman/ui/characters11_disa.png
- share/pixmaps/makehuman/ui/characters11_over.png
- share/pixmaps/makehuman/ui/characters12.png
- share/pixmaps/makehuman/ui/characters12_disa.png
- share/pixmaps/makehuman/ui/characters12_over.png
- share/pixmaps/makehuman/ui/characters13.png
- share/pixmaps/makehuman/ui/characters13_disa.png
- share/pixmaps/makehuman/ui/characters13_over.png
- share/pixmaps/makehuman/ui/characters14.png
- share/pixmaps/makehuman/ui/characters14_disa.png
- share/pixmaps/makehuman/ui/characters14_over.png
- share/pixmaps/makehuman/ui/characters15.png
- share/pixmaps/makehuman/ui/characters15_disa.png
- share/pixmaps/makehuman/ui/characters15_over.png
- share/pixmaps/makehuman/ui/characters16.png
- share/pixmaps/makehuman/ui/characters16_disa.png
- share/pixmaps/makehuman/ui/characters16_over.png
- share/pixmaps/makehuman/ui/characters17.png
- share/pixmaps/makehuman/ui/characters17_disa.png
- share/pixmaps/makehuman/ui/characters17_over.png
- share/pixmaps/makehuman/ui/characters1_disa.png
- share/pixmaps/makehuman/ui/characters1_over.png
- share/pixmaps/makehuman/ui/characters2.png
- share/pixmaps/makehuman/ui/characters2_disa.png
- share/pixmaps/makehuman/ui/characters2_over.png
- share/pixmaps/makehuman/ui/characters3.png
- share/pixmaps/makehuman/ui/characters3_disa.png
- share/pixmaps/makehuman/ui/characters3_over.png
- share/pixmaps/makehuman/ui/characters4.png
- share/pixmaps/makehuman/ui/characters4_disa.png
- share/pixmaps/makehuman/ui/characters4_over.png
- share/pixmaps/makehuman/ui/characters5.png
- share/pixmaps/makehuman/ui/characters5_disa.png
- share/pixmaps/makehuman/ui/characters5_over.png
- share/pixmaps/makehuman/ui/characters6.png
- share/pixmaps/makehuman/ui/characters6_disa.png
- share/pixmaps/makehuman/ui/characters6_over.png
- share/pixmaps/makehuman/ui/characters7.png
- share/pixmaps/makehuman/ui/characters7_disa.png
- share/pixmaps/makehuman/ui/characters7_over.png
- share/pixmaps/makehuman/ui/characters8.png
- share/pixmaps/makehuman/ui/characters8_disa.png
- share/pixmaps/makehuman/ui/characters8_over.png
- share/pixmaps/makehuman/ui/characters9.png
- share/pixmaps/makehuman/ui/characters9_disa.png
- share/pixmaps/makehuman/ui/characters9_over.png
- share/pixmaps/makehuman/ui/close_panel.png
- share/pixmaps/makehuman/ui/close_panel_over.png
- share/pixmaps/makehuman/ui/console.png
- share/pixmaps/makehuman/ui/dummy_image.png
- share/pixmaps/makehuman/ui/eyes_color.png
- share/pixmaps/makehuman/ui/face_01.png
- share/pixmaps/makehuman/ui/face_01_over.png
- share/pixmaps/makehuman/ui/face_02.png
- share/pixmaps/makehuman/ui/face_02_over.png
- share/pixmaps/makehuman/ui/face_03.png
- share/pixmaps/makehuman/ui/face_03_over.png
- share/pixmaps/makehuman/ui/face_04.png
- share/pixmaps/makehuman/ui/face_04_over.png
- share/pixmaps/makehuman/ui/face_05.png
- share/pixmaps/makehuman/ui/face_05_over.png
- share/pixmaps/makehuman/ui/face_06.png
- share/pixmaps/makehuman/ui/face_06_over.png
- share/pixmaps/makehuman/ui/face_07.png
- share/pixmaps/makehuman/ui/face_07_over.png
- share/pixmaps/makehuman/ui/face_08.png
- share/pixmaps/makehuman/ui/face_08_over.png
- share/pixmaps/makehuman/ui/face_09.png
- share/pixmaps/makehuman/ui/face_09_over.png
- share/pixmaps/makehuman/ui/face_10.png
- share/pixmaps/makehuman/ui/face_10_over.png
- share/pixmaps/makehuman/ui/face_11.png
- share/pixmaps/makehuman/ui/face_11_over.png
- share/pixmaps/makehuman/ui/face_12.png
- share/pixmaps/makehuman/ui/face_12_over.png
- share/pixmaps/makehuman/ui/face_13.png
- share/pixmaps/makehuman/ui/face_13_over.png
- share/pixmaps/makehuman/ui/face_14.png
- share/pixmaps/makehuman/ui/face_14_over.png
- share/pixmaps/makehuman/ui/face_15.png
- share/pixmaps/makehuman/ui/face_15_over.png
- share/pixmaps/makehuman/ui/face_16.png
- share/pixmaps/makehuman/ui/face_16_over.png
- share/pixmaps/makehuman/ui/face_17.png
- share/pixmaps/makehuman/ui/face_17_over.png
- share/pixmaps/makehuman/ui/face_18.png
- share/pixmaps/makehuman/ui/face_18_over.png
- share/pixmaps/makehuman/ui/face_19.png
- share/pixmaps/makehuman/ui/face_19_over.png
- share/pixmaps/makehuman/ui/face_20.png
- share/pixmaps/makehuman/ui/face_20_over.png
- share/pixmaps/makehuman/ui/face_21.png
- share/pixmaps/makehuman/ui/face_21_over.png
- share/pixmaps/makehuman/ui/face_22.png
- share/pixmaps/makehuman/ui/face_22_over.png
- share/pixmaps/makehuman/ui/face_23.png
- share/pixmaps/makehuman/ui/face_23_over.png
- share/pixmaps/makehuman/ui/face_24.png
- share/pixmaps/makehuman/ui/face_24_over.png
- share/pixmaps/makehuman/ui/face_25.png
- share/pixmaps/makehuman/ui/face_25_over.png
- share/pixmaps/makehuman/ui/face_26.png
- share/pixmaps/makehuman/ui/face_27.png
- share/pixmaps/makehuman/ui/face_28.png
- share/pixmaps/makehuman/ui/face_28_over.png
- share/pixmaps/makehuman/ui/face_29.png
- share/pixmaps/makehuman/ui/face_29_over.png
- share/pixmaps/makehuman/ui/face_30.png
- share/pixmaps/makehuman/ui/face_31.png
- share/pixmaps/makehuman/ui/face_31_over.png
- share/pixmaps/makehuman/ui/face_32.png
- share/pixmaps/makehuman/ui/face_32_over.png
- share/pixmaps/makehuman/ui/face_33.png
- share/pixmaps/makehuman/ui/face_34.png
- share/pixmaps/makehuman/ui/face_35.png
- share/pixmaps/makehuman/ui/face_35_over.png
- share/pixmaps/makehuman/ui/face_36.png
- share/pixmaps/makehuman/ui/filler1.png
- share/pixmaps/makehuman/ui/filler_2.png
- share/pixmaps/makehuman/ui/frames_01.png
- share/pixmaps/makehuman/ui/frames_06.png
- share/pixmaps/makehuman/ui/frames_07.png
- share/pixmaps/makehuman/ui/frames_08.png
- share/pixmaps/makehuman/ui/gums_color.png
- share/pixmaps/makehuman/ui/hands_01.png
- share/pixmaps/makehuman/ui/hands_01_over.png
- share/pixmaps/makehuman/ui/hands_02.png
- share/pixmaps/makehuman/ui/hands_02_over.png
- share/pixmaps/makehuman/ui/hands_03.png
- share/pixmaps/makehuman/ui/hands_03_over.png
- share/pixmaps/makehuman/ui/hands_04.png
- share/pixmaps/makehuman/ui/hands_04_over.png
- share/pixmaps/makehuman/ui/hands_05.png
- share/pixmaps/makehuman/ui/hands_05_over.png
- share/pixmaps/makehuman/ui/hands_06.png
- share/pixmaps/makehuman/ui/hands_06_over.png
- share/pixmaps/makehuman/ui/hands_07.png
- share/pixmaps/makehuman/ui/hands_07_over.png
- share/pixmaps/makehuman/ui/hands_08.png
- share/pixmaps/makehuman/ui/hands_08_over.png
- share/pixmaps/makehuman/ui/hands_09.png
- share/pixmaps/makehuman/ui/hands_09_over.png
- share/pixmaps/makehuman/ui/hands_10.png
- share/pixmaps/makehuman/ui/hands_10_over.png
- share/pixmaps/makehuman/ui/hands_11.png
- share/pixmaps/makehuman/ui/hands_11_over.png
- share/pixmaps/makehuman/ui/hands_12.png
- share/pixmaps/makehuman/ui/hands_12_over.png
- share/pixmaps/makehuman/ui/hands_13.png
- share/pixmaps/makehuman/ui/hands_14.png
- share/pixmaps/makehuman/ui/hands_14_over.png
- share/pixmaps/makehuman/ui/hands_15.png
- share/pixmaps/makehuman/ui/hands_15_over.png
- share/pixmaps/makehuman/ui/hands_16.png
- share/pixmaps/makehuman/ui/hands_16_over.png
- share/pixmaps/makehuman/ui/hands_17.png
- share/pixmaps/makehuman/ui/hands_17_over.png
- share/pixmaps/makehuman/ui/hands_18.png
- share/pixmaps/makehuman/ui/head_color.png
- share/pixmaps/makehuman/ui/muscle_size_cursor.png
- share/pixmaps/makehuman/ui/muscle_size_selector.png
- share/pixmaps/makehuman/ui/mycharacters.png
- share/pixmaps/makehuman/ui/mycharacters_over.png
- share/pixmaps/makehuman/ui/myposes.png
- share/pixmaps/makehuman/ui/myposes_over.png
- share/pixmaps/makehuman/ui/page_next.png
- share/pixmaps/makehuman/ui/page_prev.png
- share/pixmaps/makehuman/ui/poses_bs_cat_1.png
- share/pixmaps/makehuman/ui/poses_bs_cat_10.png
- share/pixmaps/makehuman/ui/poses_bs_cat_10_disa.png
- share/pixmaps/makehuman/ui/poses_bs_cat_11.png
- share/pixmaps/makehuman/ui/poses_bs_cat_11_disa.png
- share/pixmaps/makehuman/ui/poses_bs_cat_12.png
- share/pixmaps/makehuman/ui/poses_bs_cat_12_disa.png
- share/pixmaps/makehuman/ui/poses_bs_cat_13.png
- share/pixmaps/makehuman/ui/poses_bs_cat_13_disa.png
- share/pixmaps/makehuman/ui/poses_bs_cat_14.png
- share/pixmaps/makehuman/ui/poses_bs_cat_14_disa.png
- share/pixmaps/makehuman/ui/poses_bs_cat_15.png
- share/pixmaps/makehuman/ui/poses_bs_cat_15_disa.png
- share/pixmaps/makehuman/ui/poses_bs_cat_16.png
- share/pixmaps/makehuman/ui/poses_bs_cat_16_disa.png
- share/pixmaps/makehuman/ui/poses_bs_cat_17.png
- share/pixmaps/makehuman/ui/poses_bs_cat_17_disa.png
- share/pixmaps/makehuman/ui/poses_bs_cat_1_disa.png
- share/pixmaps/makehuman/ui/poses_bs_cat_1_over.png
- share/pixmaps/makehuman/ui/poses_bs_cat_2.png
- share/pixmaps/makehuman/ui/poses_bs_cat_2_disa.png
- share/pixmaps/makehuman/ui/poses_bs_cat_3.png
- share/pixmaps/makehuman/ui/poses_bs_cat_3_disa.png
- share/pixmaps/makehuman/ui/poses_bs_cat_4.png
- share/pixmaps/makehuman/ui/poses_bs_cat_4_disa.png
- share/pixmaps/makehuman/ui/poses_bs_cat_5.png
- share/pixmaps/makehuman/ui/poses_bs_cat_5_disa.png
- share/pixmaps/makehuman/ui/poses_bs_cat_6.png
- share/pixmaps/makehuman/ui/poses_bs_cat_6_disa.png
- share/pixmaps/makehuman/ui/poses_bs_cat_7.png
- share/pixmaps/makehuman/ui/poses_bs_cat_7_disa.png
- share/pixmaps/makehuman/ui/poses_bs_cat_8.png
- share/pixmaps/makehuman/ui/poses_bs_cat_8_disa.png
- share/pixmaps/makehuman/ui/poses_bs_cat_9.png
- share/pixmaps/makehuman/ui/poses_bs_cat_9_disa.png
- share/pixmaps/makehuman/ui/rotations_01.png
- share/pixmaps/makehuman/ui/rotations_01_over.png
- share/pixmaps/makehuman/ui/rotations_02.png
- share/pixmaps/makehuman/ui/rotations_02_over.png
- share/pixmaps/makehuman/ui/rotations_03.png
- share/pixmaps/makehuman/ui/rotations_03_over.png
- share/pixmaps/makehuman/ui/rotations_04.png
- share/pixmaps/makehuman/ui/rotations_04_over.png
- share/pixmaps/makehuman/ui/rotations_05.png
- share/pixmaps/makehuman/ui/rotations_05_over.png
- share/pixmaps/makehuman/ui/rotations_06.png
- share/pixmaps/makehuman/ui/rotations_06_over.png
- share/pixmaps/makehuman/ui/rotations_07.png
- share/pixmaps/makehuman/ui/rotations_07_over.png
- share/pixmaps/makehuman/ui/rotations_08.png
- share/pixmaps/makehuman/ui/rotations_08_over.png
- share/pixmaps/makehuman/ui/rotations_09.png
- share/pixmaps/makehuman/ui/rotations_09_over.png
- share/pixmaps/makehuman/ui/rotations_10.png
- share/pixmaps/makehuman/ui/rotations_10_over.png
- share/pixmaps/makehuman/ui/rotations_11.png
- share/pixmaps/makehuman/ui/rotations_11_over.png
- share/pixmaps/makehuman/ui/rotations_12.png
- share/pixmaps/makehuman/ui/rotations_12_over.png
- share/pixmaps/makehuman/ui/rotations_13.png
- share/pixmaps/makehuman/ui/rotations_13_over.png
- share/pixmaps/makehuman/ui/rotations_14.png
- share/pixmaps/makehuman/ui/rotations_14_over.png
- share/pixmaps/makehuman/ui/rotations_15.png
- share/pixmaps/makehuman/ui/rotations_15_over.png
- share/pixmaps/makehuman/ui/rotations_16.png
- share/pixmaps/makehuman/ui/rotations_16_over.png
- share/pixmaps/makehuman/ui/rotations_17.png
- share/pixmaps/makehuman/ui/rotations_17_over.png
- share/pixmaps/makehuman/ui/rotations_18.png
- share/pixmaps/makehuman/ui/rotations_18_over.png
- share/pixmaps/makehuman/ui/rotations_19.png
- share/pixmaps/makehuman/ui/rotations_19_over.png
- share/pixmaps/makehuman/ui/rotations_20.png
- share/pixmaps/makehuman/ui/rotations_20_over.png
- share/pixmaps/makehuman/ui/rotations_21.png
- share/pixmaps/makehuman/ui/rotations_21_over.png
- share/pixmaps/makehuman/ui/rotations_22.png
- share/pixmaps/makehuman/ui/rotations_22_over.png
- share/pixmaps/makehuman/ui/rotations_23.png
- share/pixmaps/makehuman/ui/rotations_23_over.png
- share/pixmaps/makehuman/ui/rotations_24.png
- share/pixmaps/makehuman/ui/rotations_24_over.png
- share/pixmaps/makehuman/ui/rotations_25.png
- share/pixmaps/makehuman/ui/rotations_25_over.png
- share/pixmaps/makehuman/ui/rotations_26.png
- share/pixmaps/makehuman/ui/rotations_26_over.png
- share/pixmaps/makehuman/ui/rotations_27.png
- share/pixmaps/makehuman/ui/rotations_27_over.png
- share/pixmaps/makehuman/ui/rotations_28.png
- share/pixmaps/makehuman/ui/rotations_28_over.png
- share/pixmaps/makehuman/ui/rotations_29.png
- share/pixmaps/makehuman/ui/rotations_29_over.png
- share/pixmaps/makehuman/ui/rotations_30.png
- share/pixmaps/makehuman/ui/rotations_30_over.png
- share/pixmaps/makehuman/ui/rotations_31.png
- share/pixmaps/makehuman/ui/rotations_31_over.png
- share/pixmaps/makehuman/ui/rotations_32.png
- share/pixmaps/makehuman/ui/rotations_32_over.png
- share/pixmaps/makehuman/ui/rotations_33.png
- share/pixmaps/makehuman/ui/rotations_33_over.png
- share/pixmaps/makehuman/ui/rotations_34.png
- share/pixmaps/makehuman/ui/rotations_34_over.png
- share/pixmaps/makehuman/ui/rotations_35.png
- share/pixmaps/makehuman/ui/rotations_35_over.png
- share/pixmaps/makehuman/ui/rotations_36.png
- share/pixmaps/makehuman/ui/rotations_36_over.png
- share/pixmaps/makehuman/ui/rotations_37.png
- share/pixmaps/makehuman/ui/rotations_37_over.png
- share/pixmaps/makehuman/ui/rotations_38.png
- share/pixmaps/makehuman/ui/rotations_38_over.png
- share/pixmaps/makehuman/ui/rotations_39.png
- share/pixmaps/makehuman/ui/rotations_39_over.png
- share/pixmaps/makehuman/ui/rotations_40.png
- share/pixmaps/makehuman/ui/rotations_40_over.png
- share/pixmaps/makehuman/ui/rotations_41.png
- share/pixmaps/makehuman/ui/rotations_41_over.png
- share/pixmaps/makehuman/ui/rotations_42.png
- share/pixmaps/makehuman/ui/rotations_42_over.png
- share/pixmaps/makehuman/ui/rotations_43.png
- share/pixmaps/makehuman/ui/rotations_43_over.png
- share/pixmaps/makehuman/ui/rotations_44.png
- share/pixmaps/makehuman/ui/rotations_44_over.png
- share/pixmaps/makehuman/ui/rotations_45.png
- share/pixmaps/makehuman/ui/rotations_45_over.png
- share/pixmaps/makehuman/ui/rotations_46.png
- share/pixmaps/makehuman/ui/rotations_46_over.png
- share/pixmaps/makehuman/ui/rotations_47.png
- share/pixmaps/makehuman/ui/rotations_47_over.png
- share/pixmaps/makehuman/ui/rotations_48.png
- share/pixmaps/makehuman/ui/rotations_48_over.png
- share/pixmaps/makehuman/ui/rotations_49.png
- share/pixmaps/makehuman/ui/rotations_49_over.png
- share/pixmaps/makehuman/ui/rotations_50.png
- share/pixmaps/makehuman/ui/rotations_50_over.png
- share/pixmaps/makehuman/ui/rotations_51.png
- share/pixmaps/makehuman/ui/rotations_51_over.png
- share/pixmaps/makehuman/ui/rotations_52.png
- share/pixmaps/makehuman/ui/rotations_52_over.png
- share/pixmaps/makehuman/ui/rotations_53.png
- share/pixmaps/makehuman/ui/rotations_53_over.png
- share/pixmaps/makehuman/ui/rotations_54.png
- share/pixmaps/makehuman/ui/rotations_54_over.png
- share/pixmaps/makehuman/ui/rotations_55.png
- share/pixmaps/makehuman/ui/rotations_55_over.png
- share/pixmaps/makehuman/ui/rotations_56.png
- share/pixmaps/makehuman/ui/rotations_56_over.png
- share/pixmaps/makehuman/ui/rotations_57.png
- share/pixmaps/makehuman/ui/rotations_57_over.png
- share/pixmaps/makehuman/ui/rotations_58.png
- share/pixmaps/makehuman/ui/rotations_58_over.png
- share/pixmaps/makehuman/ui/rotations_59.png
- share/pixmaps/makehuman/ui/rotations_59_over.png
- share/pixmaps/makehuman/ui/rotations_60.png
- share/pixmaps/makehuman/ui/rotations_60_over.png
- share/pixmaps/makehuman/ui/rotations_61.png
- share/pixmaps/makehuman/ui/rotations_61_over.png
- share/pixmaps/makehuman/ui/rotations_62.png
- share/pixmaps/makehuman/ui/rotations_62_over.png
- share/pixmaps/makehuman/ui/rotations_63.png
- share/pixmaps/makehuman/ui/rotations_63_over.png
- share/pixmaps/makehuman/ui/rotations_64.png
- share/pixmaps/makehuman/ui/rotations_64_over.png
- share/pixmaps/makehuman/ui/rotations_65.png
- share/pixmaps/makehuman/ui/rotations_65_over.png
- share/pixmaps/makehuman/ui/rotations_66.png
- share/pixmaps/makehuman/ui/rotations_66_over.png
- share/pixmaps/makehuman/ui/rotations_67.png
- share/pixmaps/makehuman/ui/rotations_67_over.png
- share/pixmaps/makehuman/ui/rotations_68.png
- share/pixmaps/makehuman/ui/rotations_68_over.png
- share/pixmaps/makehuman/ui/rotations_69.png
- share/pixmaps/makehuman/ui/rotations_69_over.png
- share/pixmaps/makehuman/ui/rotations_70.png
- share/pixmaps/makehuman/ui/rotations_70_over.png
- share/pixmaps/makehuman/ui/rotations_71.png
- share/pixmaps/makehuman/ui/rotations_71_over.png
- share/pixmaps/makehuman/ui/rotations_72.png
- share/pixmaps/makehuman/ui/rotations_72_over.png
- share/pixmaps/makehuman/ui/rotations_73.png
- share/pixmaps/makehuman/ui/rotations_73_over.png
- share/pixmaps/makehuman/ui/rotations_74.png
- share/pixmaps/makehuman/ui/rotations_74_over.png
- share/pixmaps/makehuman/ui/rotations_75.png
- share/pixmaps/makehuman/ui/rotations_75_over.png
- share/pixmaps/makehuman/ui/rotations_76.png
- share/pixmaps/makehuman/ui/rotations_76_over.png
- share/pixmaps/makehuman/ui/rotations_77.png
- share/pixmaps/makehuman/ui/rotations_77_over.png
- share/pixmaps/makehuman/ui/rotations_78.png
- share/pixmaps/makehuman/ui/rotations_78_over.png
- share/pixmaps/makehuman/ui/rotations_79.png
- share/pixmaps/makehuman/ui/rotations_79_over.png
- share/pixmaps/makehuman/ui/rotations_80.png
- share/pixmaps/makehuman/ui/rotations_80_over.png
- share/pixmaps/makehuman/ui/rotations_81.png
- share/pixmaps/makehuman/ui/rotations_81_over.png
- share/pixmaps/makehuman/ui/rotations_82.png
- share/pixmaps/makehuman/ui/rotations_82_over.png
- share/pixmaps/makehuman/ui/rotations_83.png
- share/pixmaps/makehuman/ui/rotations_83_over.png
- share/pixmaps/makehuman/ui/rotations_84.png
- share/pixmaps/makehuman/ui/rotations_84_over.png
- share/pixmaps/makehuman/ui/shape_cursor.png
- share/pixmaps/makehuman/ui/shape_selector.png
- share/pixmaps/makehuman/ui/splash_01.png
- share/pixmaps/makehuman/ui/teeth_01.png
- share/pixmaps/makehuman/ui/teeth_01_over.png
- share/pixmaps/makehuman/ui/teeth_02.png
- share/pixmaps/makehuman/ui/teeth_02_over.png
- share/pixmaps/makehuman/ui/teeth_03.png
- share/pixmaps/makehuman/ui/teeth_04.png
- share/pixmaps/makehuman/ui/teeth_05.png
- share/pixmaps/makehuman/ui/teeth_06.png
- share/pixmaps/makehuman/ui/teeth_color.png
- share/pixmaps/makehuman/ui/tongue_color.png
- share/pixmaps/makehuman/ui/toolbar_06.png
- share/pixmaps/makehuman/ui/toolbar_06_over.png
- share/pixmaps/makehuman/ui/toolbar_07.png
- share/pixmaps/makehuman/ui/toolbar_07_over.png
- share/pixmaps/makehuman/ui/toolbar_09.png
- share/pixmaps/makehuman/ui/toolbar_09_over.png
- share/pixmaps/makehuman/ui/toolbar_10.png
- share/pixmaps/makehuman/ui/toolbar_10_over.png
- share/pixmaps/makehuman/ui/toolbar_11.png
- share/pixmaps/makehuman/ui/toolbar_11_over.png
- share/pixmaps/makehuman/ui/toolbar_12.png
- share/pixmaps/makehuman/ui/toolbar_12_over.png
- share/pixmaps/makehuman/ui/toolbar_13.png
- share/pixmaps/makehuman/ui/toolbar_13_over.png
- share/pixmaps/makehuman/ui/toolbar_body_det_real.png
- share/pixmaps/makehuman/ui/toolbar_body_det_real_over.png
- share/pixmaps/makehuman/ui/toolbar_body_settings.png
- share/pixmaps/makehuman/ui/toolbar_body_settings_over.png
- share/pixmaps/makehuman/ui/toolbar_charac_sett.png
- share/pixmaps/makehuman/ui/toolbar_charac_sett_over.png
- share/pixmaps/makehuman/ui/toolbar_exp.png
- share/pixmaps/makehuman/ui/toolbar_exp_collada.png
- share/pixmaps/makehuman/ui/toolbar_exp_collada_over.png
- share/pixmaps/makehuman/ui/toolbar_exp_over.png
- share/pixmaps/makehuman/ui/toolbar_load.png
- share/pixmaps/makehuman/ui/toolbar_load_bckgnd.png
- share/pixmaps/makehuman/ui/toolbar_load_bckgnd_over.png
- share/pixmaps/makehuman/ui/toolbar_load_over.png
- share/pixmaps/makehuman/ui/toolbar_morph_list.png
- share/pixmaps/makehuman/ui/toolbar_morph_list_over.png
- share/pixmaps/makehuman/ui/toolbar_pose_body_settings.png
- share/pixmaps/makehuman/ui/toolbar_pose_body_settings_over.png
- share/pixmaps/makehuman/ui/toolbar_poses.png
- share/pixmaps/makehuman/ui/toolbar_poses_over.png
- share/pixmaps/makehuman/ui/toolbar_rend.png
- share/pixmaps/makehuman/ui/toolbar_rend_over.png
- share/pixmaps/makehuman/ui/toolbar_rend_preview.png
- share/pixmaps/makehuman/ui/toolbar_rend_preview_over.png
- share/pixmaps/makehuman/ui/toolbar_reset.png
- share/pixmaps/makehuman/ui/toolbar_reset_over.png
- share/pixmaps/makehuman/ui/toolbar_save.png
- share/pixmaps/makehuman/ui/toolbar_save_over.png
- share/pixmaps/makehuman/ui/toolbar_util.png
- share/pixmaps/makehuman/ui/tooltips.png
- share/pixmaps/makehuman/ui/tooltips_label_1.png
- share/pixmaps/makehuman/ui/tooltips_label_2.png
- share/pixmaps/makehuman/ui/tooltips_label_3.png
- share/pixmaps/makehuman/ui/utilitiespanel_02.png
- share/pixmaps/makehuman/ui/utilitiespanel_05.png
- share/pixmaps/makehuman/ui/utilitiespanel_06.png
- share/pixmaps/makehuman/ui/utilitybar_01.png
- share/pixmaps/makehuman/ui/utilitybar_01_over.png
- share/pixmaps/makehuman/ui/utilitybar_02.png
- share/pixmaps/makehuman/ui/utilitybar_02_over.png
- share/pixmaps/makehuman/ui/utilitybar_03.png
- share/pixmaps/makehuman/ui/utilitybar_03_over.png
- share/pixmaps/makehuman/ui/utilitybar_04.png
- share/pixmaps/makehuman/ui/utilitybar_04_over.png
- share/pixmaps/makehuman/ui/utilitybar_05.png
- share/pixmaps/makehuman/ui/utilitybar_05_over.png
- share/pixmaps/makehuman/ui/utilitybar_06.png
- share/pixmaps/makehuman/ui/utilitybar_06_over.png
- share/pixmaps/makehuman/ui/utilitybar_07.png
- share/pixmaps/makehuman/ui/utilitybar_07_over.png
- share/pixmaps/makehuman/ui/utilitybar_08.png
- share/pixmaps/makehuman/ui/utilitybar_08_over.png
- share/pixmaps/makehuman/ui/zcornea_color.png
- share/pixmaps/makehuman/ui/zeyebrows_color.png
- share/pixmaps/makehuman/ui/zeyelashes_color.png
|