Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 08/29/2018 in all areas

  1. Ascending x-coordinate: (vl-sort <point-list> '(lambda ( a b ) (< (car a) (car b)))) Ascending y-coordinate: (vl-sort <point-list> '(lambda ( a b ) (< (cadr a) (cadr b)))) Ascending x-coordinate, then y-coordinate: (vl-sort <point-list> '(lambda ( a b ) (if (equal (car a) (car b) 1e-8) (< (cadr a) (cadr b)) (< (car a) (car b)))))
    1 point
  2. It's a very large club. Us Boomers are all getting ripe at the same time.
    1 point
  3. I use QGIS to save fairly high res georeferenced images then import using mapiinsert in C3D. If you don't have C3D you could use THIS very old code to insert in CAD.
    1 point
  4. 1 point
  5. Ah! Yes, of course - thanks for reminding me. The scripts that run those blocks are still pointing to the old database, so they will now be out of synch with the new forum. It's on my to-do list. Feel like I should get that tattooed on my forehead
    1 point
  6. I believe hanhphuc is referring to the home page at cadtutor.net where it has recent and hottest posts not being connected to the forum now.
    1 point
×
×
  • Create New...