hackclub / blot

🤖 ✍️ blot, the plotting bot from hack club

Home Page:http://blot.hackclub.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

No position function outwards facing

evan-gan opened this issue · comments

Could we add an outwards facing position function to blot? Currently there is nothing that does this to my knowledge, and the position is already stored in the class. This should only take a few lines of code.
I believe the function below could be added to virtual-gallery/drawing-functions/Turtle.js to implement this functionality.

pos() {
    return this.location
  }

I believe it should be added to astro/src/lib/drawingToolkit
/turtle.ts, not the virtual gallery one

This is a great idea though! I was hoping to have it a couple of times while working on my art.

also i think t.end sort of does this?

@BrightTheBackpack that's a little confusing. Should this be an alias of that function or does it do something else?

If it a method returned this.location from the turtles internals that should be better, because it would work if the turtle had not path. (I believe t.end only works when a path has been made)