「Tin:setmajorcontoursinterval」の版間の差分

提供:GizmoLabs - だいたい CAD LISP なサイト
(ページの作成:「{{BCAD_LISP_CIVIL}} ; 構文 : (Tin:setmajorcontoursinterval ''tinEname'' ''Interval'') ; 機能 : tinEname TinSurface エンティティに対して、主要な輪…」)
 
編集の要約なし
 
50行目: 50行目:


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

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

構文
(Tin:setmajorcontoursinterval tinEname Interval)


機能
tinEname TinSurface エンティティに対して、主要な輪郭線の間隔を割り当てる。


引数
  • tinEname : 問い合わせる TinSurface エンティティの ename または vla-object
  • Interval : 主要な輪郭線に割り当てる間隔を指定。


戻り値
T or 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) ))

(tin:getmajorcontoursinterval tin)
10.0
(tin:setmajorcontoursinterval tin 12.5)
T
(tin:getmajorcontoursinterval tin)
12.5

関連事項