Jump to content
Developer Wiki and Function Reference Links ×

Radius Dimension - Arrows Inside


Recommended Posts

Hi,

 

After drawing a radius dimension, I want the dimension size to be text and the arrows inside.

 

The script below does this, except that it doesn't display correctly on the screen.

 

Even though the "Arrows Inside" is ticked in the OI, there is not a line projecting to the center point.

 

Is there any screen refresh I should be adding?

 

procedure Fetch;

	procedure Dimension_Text (h3 : handle);
		begin
		SetDimText (h3, Concat ('R ', GetDimText (h3)));
		SetObjectVariableBoolean (h3, 3, True);
		end;

begin
ForEachObject (Dimension_Text, (T = Dimension) & (Sel = True));
end;
run (Fetch);

 

Link to comment

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...