#Inventor V2.1 ascii # draw unit axes with labels Separator { Font { name "Helvetica" size 10 # can change size here or the scaleFactors below } #### x axis purple Material { emissiveColor 1 0 0 diffuseColor 0 0 0 } Separator { Transform { translation .5 0 0 rotation 0 0 1 -1.5707963 } DEF Cyl Cylinder { height 1 radius 0.01 } } Separator { Transform { translation .5 -.1 0 scaleFactor .005 .005 .005 } Text3 { string "X axis" # edit label text as appropriate parts ALL #(FRONT | BACK) } } #### y axis red Material { emissiveColor 0 1 0 diffuseColor 0 0 0 } Separator { Transform { translation 0 .5 0 } USE Cyl } Separator { Transform { translation -.1 .5 0 scaleFactor .005 .005 .005 rotation 0 0 1 1.5707963 } Text3 { string "Y axis" parts ALL } } #### z axis green Material { emissiveColor 0 0 1 diffuseColor 0 0 0 } Separator { Transform { translation 0 0 .5 rotation 1 0 0 1.5707963 } USE Cyl } Separator { Transform { translation 0 -.1 .5 scaleFactor .005 .005 .005 rotation 0 1 0 1.5707963 } Text3 { string "Z axis" parts ALL } } }