「Tin:getstyle」の版間の差分
(ページの作成:「{{BCAD_LISP_CIVIL}} ; 構文 : (Tin:getstyle ''tinEname'' ) ; 機能 : この関数は、tinEname TinSurfaceエンティティの実際の可視化スタイル(三…」) |
編集の要約なし |
||
19行目: | 19行目: | ||
* メモ : | * メモ : | ||
すべてのスタイルフラグに対応するシンボル定数がある。 | すべてのスタイルフラグに対応するシンボル定数がある。 | ||
bcTinStyleNone 0 | ** bcTinStyleNone 0 | ||
bcTinStyleBoundary 1 | ** bcTinStyleBoundary 1 | ||
bcTinStylePoints 2 | ** bcTinStylePoints 2 | ||
bcTinStyleTriangles 4 | ** bcTinStyleTriangles 4 | ||
bcTinStyleContours 8 | ** bcTinStyleContours 8 | ||
bcTinStyleElevationTooltip 16 | ** bcTinStyleElevationTooltip 16 | ||
[[tin:setstyle]] 関数も参照。 | [[tin:setstyle]] 関数も参照。 |
2022年10月2日 (日) 20:23時点における版
BricsCADのLISP - Tin+Civil関数 - AutoLISP Home - AutoLISP 目次 - CAD&CGブログ - オンラインショップ- GizmoTools ヘルプセンター
- 構文
- (Tin:getstyle tinEname )
- 機能
- この関数は、tinEname TinSurfaceエンティティの実際の可視化スタイル(三角形、輪郭線、境界線...など)を返す。
- 引数
-
- tinEname : TinSurface エンティティの ename または vla-object
- 戻り値
- スタイルフラグのビット和 組み合わせは、"タイプ定数 "を参照。
- メモ :
すべてのスタイルフラグに対応するシンボル定数がある。
- bcTinStyleNone 0
- bcTinStyleBoundary 1
- bcTinStylePoints 2
- bcTinStyleTriangles 4
- bcTinStyleContours 8
- bcTinStyleElevationTooltip 16
tin:setstyle 関数も参照。
- サンプル
(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) )) (tin:getStyle tin) 4 ; bcTinStyleTriangles
関連事項