Description
The output of Turtle.js.ToHTML does not render because of path errors
Reproducable Steps
### Case 1
turtle.forward( 10 )
console.log( turtle.steps )
[' l NaN NaN ']
`
### Case 2 
turtle.polygon( 10, 8 )
console.log( turtle.steps )
[ ' l NaN NaN ', ' l NaN NaN ', ' l NaN NaN ', ' l NaN NaN ', ' l NaN NaN ', ' l NaN NaN ', ' l NaN NaN ', ' l NaN NaN ']
 
Links
No response