Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 10/30/2018 in all areas

  1. ReMark, thank you for your help. I figured out my issues: The bearing precision requires that the seconds is actually the " key and not the ' twice. There was one line with one bearing direction wrong, which threw the rest of the project off. I guess after staring at it for long enough the frustration made me miss little things like that, I just needed someone else to look at it.
    1 point
  2. Kevin: Congrats on getting a score of 100 on the Oleson Village project and thank you for your kind words. You are most welcomed. I wish you continued success.
    1 point
  3. Hello everyone, first time posting here, gotta say, Remark Knows his stuff and thank you for sharing your knowledge, I followed this and several other threads to gain some insight on the P-F Oleson Village project, I read the recommendations and applied them to my project, Got a 100 on the project without even asking a question, I just looked and there they were with the answers that I needed to solve the issues I had, listen to this man, he knows his stuff........ once again Thank you very much. Kevin. P-F Student
    1 point
  4. Another: (defun c:arrow ( / di nm p1 p2 ) (if (and (setq p1 (getpoint "\nArrow Head: ")) (setq p2 (getpoint "\nTail Point: " p1)) (setq di (/ (distance p1 p2) 3.0) nm (trans '(0. 0. 1.) 1 0 t) ) ) (entmake (list '(0 . "LWPOLYLINE") '(100 . "AcDbEntity") '(100 . "AcDbPolyline") '(90 . 3) '(70 . 0) (cons 10 (trans p1 1 nm)) '(40 . 0.0) (cons 41 (/ di 2.0)) (cons 10 (trans (polar p1 (angle p1 p2) di) 1 nm)) (cons 10 (trans p2 1 nm)) (cons 210 nm) ) ) ) (princ) ) @pBe: Why convert to a VLA-Object?
    1 point
×
×
  • Create New...