Why?be as short as possible
Just playing, without thinking (but sleeping ? ), I tried to add the ray:Semi-solution:
B4X:Sub DrawWave For i = 1 To 10000 Turtle.MoveForward(0.1).TurnLeft(CosD(i)) Next End Sub
Sub DrawWave(r As Float)
Turtle.SetX(10).SetAngle(0).SetSpeedFactor(2)
' For i = 1 To Turtle.Width - 20
For i = 1 To 5000
' Turtle.MoveForward(0.1).TurnLeft(CosD(i))
Turtle.MoveForward(1).TurnLeft(CosD(i) * r)
Next
End Sub
No, no games or apps. As I wrote, I have an extravagant idea to "apply" to your turtle.If you want to create a "real" game then use XUI2D.
This is impossible. Post the code.here's another example of what can be done with it
It looks like my 3D libraryI didn't had the time yet to have a look at this retro style programming/drawing tool.
But as I had to wait for some stuff to complete at work I though I'd give it a try.
It's easy to use even for regular drawings and the rabbit mode is extremely fast.
here's another example of what can be done with it... backflipper
only using rabbitmode,clearscreen,setPenSize,setPenColor,penUp,penDown,setX,setY,moveTo in an endless loop with sleep(1000/60) in it
View attachment 94740