move turtle to position end.
(self, end)
| 1611 | self._orient = self._orient.rotate(angle) |
| 1612 | |
| 1613 | def _goto(self, end): |
| 1614 | """move turtle to position end.""" |
| 1615 | self._position = end |
| 1616 | |
| 1617 | def forward(self, distance): |
| 1618 | """Move the turtle forward by the specified distance. |