我的口齿不清有问题。 我会把这里放在你能找到问题的地方。
;values for debug
(setq l_max 2
delta_sup 60
phi_superiore 10
delta_inf 40
phi_inferiore 10
lunghezza 10.0)
;code starts here
(setq l_ferri_sup l_max
l_ferri_inf l_max
n 1
distanza l_max)
(while (> lunghezza distanza)
(setq distanza (- (+ distanza l_max) (/ (* delta_sup phi_superiore) 1000.0))
n (1+ n))
)
(setq l_ferri_sup (- (* n l_max) (- distanza lunghezza))
n 1
distanza l_max)
(while (> lunghezza distanza) ;WHEN "distanza" is 10.0, condition still true
(setq distanza (- (+ distanza l_max) (/ (* delta_inf phi_inferiore) 1000.0))
n (1+ n))
)
(setq l_ferri_inf (- (* n l_max) (- distanza lunghezza)))
如果您尝试运行这几行,您将在第二个条件下发现问题。 这很奇怪.. 有什么想法吗?
谢谢,丹尼斯
编辑:我已经纠正了问题中的错误
答案 0 :(得分:4)
l_max
是一个整数(32位),distanza
是一个实数(64位双精度浮点数)。这可能会导致一些舍入错误:
(- 3.6 2.4) ; Returns 1.2
(= 1.2 (- 3.6 2.4)) ; Returns nil
(equal 1.2 (- 3.6 2.4) 1e-6) ; Returns T
尝试使用real:
初始化l_max
(setq l_max 2.0)
或使用epsilon:
(> lunghezza (+ distanza 1e-10))
1e-10是AutoCAD默认用于比较2个实数的内容。