Greetings,
I'm currently attempting to affix a circle to the cursor during an "add connect" command. However, I encounter an issue where the cline itself disappears, leaving only the small circle. Upon the first click, the cline reappears while the circle vanishes.
Is there a method to sustain visibility of both elements indefinitely?
Here's the function I'm utilizing (units in mm):
axlCmdRegister("tester" 'testfun ?cmdType "sub_cmd")
(defun testfun ()
axlClearDynamics() ; Clean out any existing cursor data
mypath = axlPathStart(list( 0.05:0)) ; Start arc
axlPathArcCenter(mypath, 0, 0:-0.05, nil, 0:0); Load path into the dynamic cursor buffer
axlAddSimpleMoveDynamics(0.25:0 mypath "path" ?ref_point 0:0)
)
Regards,