Paths should be (more) efficient #50
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
If a turtle is "walking" in a straight line, say, 4 pixels per tick for 100 pixels, we would end up telling p5 to draw 25 4px lines instead of one single 100px line. This is inefficient.
It's reasonably easy to do the math here, so do it. (In
pkg/ludus.js
.)