apply-rotation ( TURTLE ROTATION -- turtle ) (original) (raw)
apply-rotation ( TURTLE ROTATION -- turtle )
Vocabulary
L-system
Inputs
TURTLE | an object |
---|---|
ROTATION | an object |
Outputs
turtle | an object |
---|
Definition
USING: accessors math.matrices ;
:: apply-rotation ( TURTLE ROTATION -- turtle )
TURTLE TURTLE ori>> ROTATION mdot >>ori ;