Jump to content

Leaderboard

Popular Content

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

  1. No thats not perspective, the true interpretation would include a vanishing point.
    1 point
  2. When a topic needs approval or rejection and I click the appropriate button, it takes ~30 seconds to process and refresh the page. This is one action that is still very slow. Thanks.
    1 point
  3. I suppose this is a starting point... (defun c:bound (/ cEnt cObj i j) (if (and (setq cEnt (car (entsel "\nSelect Curve: "))) (member (cdr (assoc 0 (entget cEnt))) '("POLYLINE" "LWPOLYLINE" "REGION"))) (progn (setq cObj (vlax-ename->vla-object cEnt) i (vlax-curve-getStartParam cObj) j 1) (while (<= i (- (vlax-curve-getEndParam cObj) (if (vlax-curve-isClosed cObj) 1 0))) (Make_Text (vlax-curve-getPointatParam cObj i) (itoa j) 0.0) (setq i (1+ i) j (1+ j)))) (princ "\n<!> Incompatible Curve Selected <!>")) (princ)) (defun Make_Text (pt val rot) (entmake (list '(0 . "TEXT") '(8 . "0") (cons 10 pt) (cons 40 (getvar "TEXTSIZE")) (cons 1 val) (cons 50 rot) (cons 7 (getvar "TEXTSTYLE")) '(71 . 0) '(72 . 1) '(73 . 2) (cons 11 pt))))
    1 point
×
×
  • Create New...