Tin:isupdateneeded
BricsCADのLISP - Tin+Civil関数 - AutoLISP Home - AutoLISP 目次 - CAD&CGブログ - オンラインショップ- GizmoTools ヘルプセンター
- 構文
- (tin:isupdateneeded tinEname)
- 機能
- Tinサーフェスエンティティ tinEname (enameまたはvla-object)の表示更新が必要かどうか(または保留中かどうか)を返す。
- 引数
-
- tinEname : 問い合わせる TinSurface エンティティの ename または vla-object。
- 戻り値
- 表示更新が必要なら T、それ以外は 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) )) (if (and (tin:isrebuildpossible tin) (tin:isupdateneeded tin)) (tin:rebuild tin T) ) T
関連事項