Interpret the given tokens as 3D Turtle commands.
(self, tokens: Tokens)
| 62 | yield char |
| 63 | |
| 64 | def interpret(self, tokens: Tokens) -> Lines: |
| 65 | """Interpret the given tokens as 3D Turtle commands.""" |
| 66 | for line in self._interpret(tokens): |
| 67 | if line is not None: |
| 68 | yield line |
| 69 | |
| 70 | def _interpret(self, tokens: Tokens) -> Lines: |
| 71 | if self.commandset == "default": |