Tinav:fromwcspoint

提供:GizmoLabs - だいたい CAD LISP なサイト
構文
(Tinav:fromwcspoint ename pnt)


機能
入力点 pnt を WCS から ename VerticalAlignmentView エンティティ内の位置に変換して返す。


引数
  • ename : Tin VerticalAlignmentView のエンティティ。。
  • pnt : VerticalAlignmentView CS に変換される WCS 点。


戻り値
2次元点リスト(VerticalAlignmentView CS内)またはNIL


メモ


サンプル
(vl-load-tin)
(setq tin (tin:createTin '(0 0 0) '(100 100 100) 1000))
(setq points '((20 20)(60 20)(60 60)(20 60)))
(tin:addpoints tin '((10 80 5) (50 50 10) (10 10 2) (80 20 7) (70 60 3) (40 70 10) (25 25 6) (55 55 2) (75 45 5) ))

; 適当にアライメントビューを作ってから
(setq pnt (Tinav:fromwcspoint (car (entsel)) (getpoint)))
(70.0717672416233 8.53580343282815)
(command "_point" pnt)

関連事項