CoCreate User Forum

CoCreate User Forum (https://www.cocreateusers.org/forum/index.php)
-   Annotation (https://www.cocreateusers.org/forum/forumdisplay.php?f=6)
-   -   dimension index number (https://www.cocreateusers.org/forum/showthread.php?t=8201)

gmatelich 03-05-2015 04:05 PM

dimension index number
 
I'm looking for a more convenient way to add dimension index numbers to my drawings.

In ME10 we created a bubble number creator:
Code:

DEFINE Bubnum
  READ 'Enter first bubble number' Numb
  LET Numb (STR Numb)
  LOOP
    READ PNT 'indicate point for Bubble number' P1
    TEXT_FRAME BALLOON
    TEXT_RATIO 0.75
    TEXT_SIZE 0.20
    TEXT
    YELLOW Numb P1
    TEXT_RATIO 1
    TEXT_SIZE 0.125
    TEXT_FRAME OFF
    READ PNT 'Pick Start Point of Line' P1
    READ PNT 'Pick End Point of Line' RUBBER_LINE P1 P2
    LINE
    SOLID
    YELLOW P1 P2
    LET N1 (VAL Numb)
    LET N2 (N1+1)
    LET Numb (STR N2)
  END_LOOP
END_DEFINE

Is there something similar I can leverage for Annotation?


All times are GMT -8. The time now is 07:58 PM.

Powered by vBulletin® Version 3.8.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.