Tingr:get-calculationmethod

提供:GizmoLabs - だいたい CAD LISP なサイト
構文
(Tingr:get-calculationmethod grading )


機能
グレーディング TinGrading エンティティが使用する計算方法を返す。


引数
  • grading : TinGrading のエンティティ名(ename または vla-object)。


戻り値
計算方法を表す整数。bcTinGradingAccurate=0 (精細)、bcTinGradingFast=1(高速)または NIL


MEMO


サンプル
(vl-load-tin)
(tingr:get-calculationmethod (car (entsel)))
0
(tingr:set-calculationmethod (car (entsel)) 1)
T
(tingr:get-calculationmethod (car (entsel)))
1

(tingr:get-calculationmethod (car (entsel))) ; グレーディングでない図形を選択した場合
nil



関連事項