Does anyone have a lisp routine to draw a circle given the circumference?
If you do it infrequently, draw the circle. Double-click on it. Enter the circumference in the properties window.
Something like this, if you're content to specify a center point: [CircCircum]^C^C(setq cntr (getpoint "Center point: ")) \+ (setq circum (getreal "Circumference: ")) \+ CIRCLE !cntr D (/ circum pi) If you want to it by other means, it would be more complicated (e.g. you could do a sort-of 3-point variety where you give it 2 points and it calculates one of the two circles of the desired circumference that go through them, or you could do a 2-point where the distance to the second point is constrained to the diameter calculated from the circumference, and the user inputs the direction across the diameter).