This code appears to throw an exception "Value was either too large or too small for a Decimal."
Somehow changing variables y1, y2, x removes an error. For example, y2 from 41 to 38.
How can I fix this?
Turtle.Speed = 10
x = 10
y1 = 42
y2 = 41
Turtle.Angle = 180
Turtle.MoveTo(x, y2)
Turtle.MoveTo(x, y1)
Error trace:
in System.Decimal..ctor(Double value)
in System.Decimal.op_Explicit(Double value)
in Microsoft.SmallBasic.Library.Primitive.op_Implicit(Double value)
in Microsoft.SmallBasic.Library.Turtle.MoveTo(Primitive x, Primitive y)
in _SmallBasicProgram._Main()
The same in both 1.0 and 1.2 versions.
The problem is the SmallBasic (in version 1.2) Primitive-from-double implementation is flawed. Here is how a double is converted to a Primitive.
However, this is an unsafe operation as not all values of a double can be (precisely) represented. In these cases the cast to a Decimal will throw an Exception.
Here is a trivial way to reproduce such an exception in C#:
This happens in the
MoveTo(x,y)
operation which does trigonometry math to turn theMoveTo
into aTurn
+Move
combination. For some inputs (and where the turtle is), such will result in doubles that cannot be [safely] turned into decimal values.Using
Turn
+Move
explicitly will avoid the problematic math and thus should avoid the problem - at least in this particular case.For reference, here is the decompiled source of MoveTo: