Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 04/28/2020 in Posts

  1. Hi Perfect! I installed the new version and everything works fine. Thanks to you, it was a pleasure to be able to help you!
    1 point
  2. Yes, I did a while ago. I don't remember what 98's DOS version was or event if it had 1. I do know it was more advanced than MS-DOS 3.1 ( i think that was the last stand alone. I really don't mind the Windows back ground if it behaved itself. Makes backups and file transfers much easier Thanks -David
    1 point
  3. Anyway (defun c:quickanddirty ( / lst ss pt1 pt2) (while (setq ss (ssget '((0 . "POINT")))) (setq lst '()) (setq pt1 (getpoint "\npick point inside")) (repeat (setq x (sslength ss)) (setq pt2 (cdr (assoc 10 (entget (ssname ss (setq x (- x 1))))))) (setq lst (cons (list (angle pt1 pt2) pt2) lst)) ) (setq lst (vl-sort lst '(lambda (x y) (< (car x)(car y))))) (command "_line") (while (= (getvar "cmdactive") 1 ) (repeat (setq x (length lst)) (command (cadr (nth (setq x (- x 1)) lst))) ) (command "C") ) ) )
    1 point
  4. For anyone this is a part two of the whosa post to do road kerbs. A similar request now solved. To whosa how many more questions are you really going to ask for ? This is standard day to day field survey stuff. The best solution is go back to the original data it will be some form of XYZ file hopefully it also has codes as well. Post that then we can really see how we can help. For Lrm like the other post the "point",s are the correct part to join not the mtext, so pick inside and do some form of ray trace angle to sort the join order, its easy for a rectang or always convex shape draw a "H" of points to test. This is from field survey auto strung, blocks added. This is what whosa wants. There are many answers out there start with Civ3D.
    1 point
×
×
  • Create New...