View Single Post
Old 8th July 2008, 11:43 AM   #2
Andy
Administrator
Professional user
 
Andy's Avatar
 
Join Date: Jun 2003
Posts: 4,565
Default Re: Getting the angle vectors ?

Here's a quick hack that will display the axis at the bottom of the main AC3D window (in the message area).

-no warranty-

With a text editor, edit tcl/ac3d.tcl and find:
Code:
 
 
proc set_custom_axis { var } {
after:

Code:
set cent [ac3d get_selection_centre]
(and before the next "}", insert a line:

Code:
display_message "axis: $axis"
If you would like the axis to appear in the console, use:

Code:
puts "axis: $axis"
instead

I'm not sure if this would be useful to others - why do you want this info?
Andy is offline   Reply With Quote