Hello. We need to find a point that is located at a distance a from point A and from point B at a distance b.
I understand that you must first enter the data (A, a, B, b). But I don’t know what to do next.
I have just started. Wrote data entry
(defun fnc() (setq A (getpoint "Enter A(dot):")) (setq a (getdist A "Enter a(dist):")) (setq B (getpoint "Enter B(dot):")) (setq b (getpoint B "Enter b(dist):")) ) Can someone tell me what to do next?