Tinvs:getboundingentity

提供:GizmoLabs - だいたい CAD LISP なサイト
構文
(Tinvs:getboundingentity tinEname )


機能
tinEname TinVolumeSurface エンティティに関連付けられた、バウンディング/クリッピング・エンティティを返す。


引数
  • tinEname : TinVolumeSurfaceエンティティ の ename または VLAオブジェクト。


戻り値
境界/クリッピングエンティティのename、または 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 tinvol (tinvs:createBySurfaceAndEntity  tin  bcTinVolumeToDepth  -5  (entlast)  0.2))
(Tinvs:getboundingentity tinvol)
<Entity name: 501dc760>

関連事項