Tinc:getwallheight

提供:GizmoLabs - だいたい CAD LISP なサイト
構文
(tinc:getwallheight ename constraint)


機能
TinSurfaceエンティティに対するすべての制約(整数ID値のリスト)またはNILを返す。


引数
  • ename : TinSurface エンティティの ename または VLAオブジェクト。
  • constraint : 問い合わせる 制約オブジェクトの ID または ename


戻り値
壁の高さの実数。constraint が壁タイプでない場合は、NIL


サンプル
(vl-load-tin)
(setq tin (tin:createTin '(0 0 0) '(100 100 100) 1000))
(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 constraint (tinc:getAllConstraints tin))
(tinc:getwallheight tin (car constraint))
5.5
 

関連事項