「Tingr:set-cutslope」の版間の差分
(ページの作成:「{{BCAD_LISP_CIVIL}} ; 構文 : (Tingr:set-cutslope ''grading'' ''cutslope'' ) ; 機能 : グレーディング TinGrading エンティティで使用される cutSlope 切断勾配値を割り当てる。 ; 引数 :* grading : TinGrading のエンティティ名(ename または vla-object)。 :* cutslope: 割り当てられるカット勾配の角度(ラジアン)。 ; 戻り値 : 設定成功なら T それ以外は NIL ; サンプル <pre…」) |
編集の要約なし |
||
(同じ利用者による、間の1版が非表示) | |||
6行目: | 6行目: | ||
; 機能 | ; 機能 | ||
: グレーディング TinGrading エンティティで使用される cutSlope | : グレーディング TinGrading エンティティで使用される cutSlope 切削勾配角度値を割り当てる。 | ||
; 引数 | ; 引数 | ||
:* grading : TinGrading のエンティティ名(ename または vla-object)。 | :* grading : TinGrading のエンティティ名(ename または vla-object)。 | ||
:* cutslope: | :* cutslope: 割り当てられる切削勾配角度値(ラジアン)。 | ||
37行目: | 37行目: | ||
関連事項 | 関連事項 | ||
* [[tin:createTin]] | * [[tin:createTin]] | ||
* [[Tingr:get-fillslope]] | |||
* [[Tingr:set-fillslope]] | |||
* [[Tingr:get-cutslope]] | * [[Tingr:get-cutslope]] | ||
* [[Tingr:set-cutslope]] | * [[Tingr:set-cutslope]] |
2023年7月21日 (金) 07:24時点における最新版
BricsCADのLISP - Tin+Civil関数 - AutoLISP Home - AutoLISP 目次 - CAD&CGブログ - オンラインショップ- GizmoTools ヘルプセンター
- 構文
- (Tingr:set-cutslope grading cutslope )
- 機能
- グレーディング TinGrading エンティティで使用される cutSlope 切削勾配角度値を割り当てる。
- 引数
-
- grading : TinGrading のエンティティ名(ename または vla-object)。
- cutslope: 割り当てられる切削勾配角度値(ラジアン)。
- 戻り値
- 設定成功なら T それ以外は NIL
- サンプル
(vl-load-tin) (tingr:get-cutslope (car (entsel))) 0.523598775598299 (tingr:set-cutslope (car (entsel)) (gz:deg->rad 45)) T (tingr:get-cutslope (car (entsel))) 0.785398163397448 (tingr:get-cutslope (car (entsel))) ; グレーディングでない図形を選択した場合 nil
関連事項