Tin:getminelevation
BricsCADのLISP - Tin+Civil関数 - AutoLISP Home - AutoLISP 目次 - CAD&CGブログ - オンラインショップ- GizmoTools ヘルプセンター
- 構文
- (Tin:getminelevation tinEname visibleOnly )
- 機能
- この関数は、tinEname TinSurface の最低高度を返す。
- 引数
-
- tinEname : (ename または vla-object) 問い合わせる TinSurface エンティティ
- visibleOnly : すべての点を使用するか(NIL)、可視点のみを使用するか(T)を指定する。
- 戻り値
- 指定された点のZ高度値の最大値。
- メモ : tin:getmaxelevation も参照。
- サンプル
(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 z-min ( (tin:getiimnelevation) tin T) 2.0 (setq z-max ( (tin:getmaxelevation) tin T) 10.0
関連事項