「Tin:getminorcontourscolor」の版間の差分

提供:GizmoLabs - だいたい CAD LISP なサイト
(ページの作成:「{{BCAD_LISP_CIVIL}} ; 構文 : (Tin:getminorcontourscolor ''tinEname'' ) ; 機能 : tinEname TinSurface エンティティの小輪郭線のカラーインデック…」)
 
編集の要約なし
 
(同じ利用者による、間の2版が非表示)
2行目: 2行目:


; 構文
; 構文
: (Tin:getminorcontourscolor ''tinEname'' )
: (Tin:getminorcontourscolor ''tinEname'' ''index'')




11行目: 11行目:
; 引数
; 引数
:* tinEname : 問い合わせる TinSurface エンティティの ename または vla-object
:* tinEname : 問い合わせる TinSurface エンティティの ename または vla-object
:* index : 0 から 225 のカラーインデックスの整数




16行目: 17行目:
: (0...255) 小輪郭線の色インデックス.
: (0...255) 小輪郭線の色インデックス.
   
   


* メモ :  [[tin:setminorcontourscolor]] 関数も参照。
* メモ :  [[tin:setminorcontourscolor]] 関数も参照。
30行目: 30行目:
7
7
(tin:setminorcontourscolor tin 120)
(tin:setminorcontourscolor tin 120)
 
T
(tin:getminorcontourscolor tin)
(tin:getminorcontourscolor tin)
120
120
</pre>
</pre>


51行目: 50行目:


[[Category:AutoLISP]]
[[Category:AutoLISP]]
[[Category:BricsCADのLISP]]

2023年1月28日 (土) 08:38時点における最新版

構文
(Tin:getminorcontourscolor tinEname index)


機能
tinEname TinSurface エンティティの小輪郭線のカラーインデックスを返す。


引数
  • tinEname : 問い合わせる TinSurface エンティティの ename または vla-object
  • index : 0 から 225 のカラーインデックスの整数


戻り値
(0...255) 小輪郭線の色インデックス.



サンプル
(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:getminorcontourscolor tin)
7
(tin:setminorcontourscolor tin 120)
T
(tin:getminorcontourscolor tin)
120

関連事項