MoI discussion forum
MoI discussion forum

Full Version: DIM TOOL(s) increase or decrease fonts

Show messages: All  1-7  8-9

From: Michael Gibson
5 Jun   [#8] In reply to [#5]
Hi Marky,

re:
> Is there a way to make an Arrow to be screen aligned too?

There is a setting for it which isn't exposed in the UI but can be set through a script.

If you put in this for the command part of a shortcut key it should switch the property for making the arrowhead plane rotate to face the viewer on selected dims:

script:
var objs = moi.geometryDatabase.getSelectedObjects().getAnnotations();
if ( objs.length > 0 )
{
objs.setProperty( 'rotateArrowheadPlaneTowardsViewer', !objs.item(0).rotateArrowheadPlaneTowardsViewer );
}


- Michael
From: mk (MARKY)
5 Jun   [#9] In reply to [#8]
Hi Michael,

It works great.

Thanks a million,
Marek

Show messages: All  1-7  8-9