Tinc:createbreaklinebyentity
BricsCADのLISP - Tin+Civil関数 - AutoLISP Home - AutoLISP 目次 - CAD&CGブログ - オンラインショップ- GizmoTools ヘルプセンター
- 構文
- (Tinc:createbreaklinebyentity tinEname type ent elevType )
- 機能
- tinEname TinSurfaceエンティティに対して、ent と elevType を使用した type のブレークライン制約を作成する。
- 引数
-
- tinEname : TinSurface エンティティのename または VLAオブジェクト。
- type : 作成されるブレークライン制約のタイプ (0 = bcTinBreaklineNomal, 1 = bcTinNonDestructive)
- ent : ブレークラインエンティティ(任意の曲線タイプ)。
- elevType : ブレークライン制約のための標高タイプの整数。(1=bcTinElevationMin , 2=bcTinElevationMax, 3=bcTinElevationMid )
- 戻り値
- ID識別子(integer)。失敗した場合は NIL。
- メモ
- モードについては、型定数を参照。
- サンプル
(vl-load-tin) (setq tin (tin:createTin '(0 0 0) '(100 100 100) 1000)) (setq points '((30 30)(50 30)(50 50)(30 50))) (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:createBreaklineByEntity tin bcTinBreaklineNomal (entlast) bcTinElevationMid)) (setq constraint (tinc:createBreaklineByEntity tin bcTinNonDestructive (entlast) bcTinElevationMid)) (setq constraint (tinc:createBreaklineByEntity tin bcTinBreaklineNomal (entlast) bcTinElevationMin)) (setq constraint (tinc:createBreaklineByEntity tin bcTinNonDestructive (entlast) bcTinElevationMin))
関連事項