2004-11-16 08:35 PM
2004-12-01 10:14 PM
Olivier wrote:None of your examples would trigger the warning.
Let's take this example about text position (old GV's names to make short).
IF (W~ > 90 AND W~ <= 270) THEN ROT2 180 ELSE ROT2 0
Currently, this script works, with some weaks for limt values, and i understand now, why.
Thanks to all the programmers for their explanations.
According to the new rules, i should write, if i understand correctly
eps=0.0001
IF (ABS(W~ -90) > eps AND ABS(W~ -270) <= eps) THEN ROT2 180 ELSE ROT2 0
it does'nt work.
If i write
IF ((W~ -90) > eps AND (W~ -270) <= eps) THEN ROT2 180 ELSE ROT2 0
this statement works perfectly.
2005-07-14 06:20 PM
2005-07-14 09:38 PM
Durval wrote:Hi Durval,Olivier wrote:
Let's take this example about text position (old GV's names to make short).
2018-11-08 05:23 PM