Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 11/26/2023 in all areas

  1. This : (if (= (cdr (assoc 70 (entget MyEnt))) 1)(setq PtCount 0)) ;;Counter to 0 if closed polyline Should be : (if (= 1 (logand 1 (cdr (assoc 70 (entget MyEnt))))) (setq PtCount 0)) ;;Counter to 0 if closed polyline
    1 point
×
×
  • Create New...