tutorials:xl-turtle-geometry
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
tutorials:xl-turtle-geometry [2024/11/29 12:25] – [Transformation] tim | tutorials:xl-turtle-geometry [2024/12/18 10:02] (current) – [3D objects] Tim | ||
---|---|---|---|
Line 54: | Line 54: | ||
The **moving** part is already covered by the M node for now. | The **moving** part is already covered by the M node for now. | ||
- | You can **rotate** the turtle along the three axes x, y and z. We can see an example of the rotation tool on the right with the possible rotations in colors: x=red, y=blue and z=green. In the turtle geometry we can rotate these axes with the commands '' | + | You can **rotate** the turtle along the three axes x, y and z. We can see an example of the rotation tool on the right with the possible rotations in colors: x=red, y=blue and z=green. In the turtle geometry we can rotate these axes with the commands '' |
Following up on our little example above you could think about rotation the short cylinder 30 degrees up like: | Following up on our little example above you could think about rotation the short cylinder 30 degrees up like: | ||
Line 96: | Line 96: | ||
|{{: | |{{: | ||
- | Similarly the **Rotation** command is rotating around all 3 local axes at the same time: | + | Similarly the **Rotation** command is rotating around all 3 local axes at the same time. They do not influence each other that way so a rotation on the head axes would once again be not that impressive in our case. |
<code java> | <code java> | ||
protected void init () | protected void init () | ||
Line 104: | Line 105: | ||
</ | </ | ||
|{{: | |{{: | ||
- | ===== Local transformation ===== | ||
- | ===== Modules ===== | + | Finally the **scale** command can be used to change the size of all following commands, either proportionally or depending on the axes. For example if you want your howl model to be halve the size without chaining any parameter you could just add a Scale(0.5) in the beginning: |
+ | <code java> | ||
+ | protected void init () | ||
+ | [ | ||
+ | Axiom | ||
+ | ] | ||
+ | </ | ||
+ | This will give us the same result as before only a smaller... | ||
+ | Additionally, | ||
+ | <code java> | ||
+ | protected void init () | ||
+ | [ | ||
+ | Axiom | ||
+ | ] | ||
+ | </ | ||
- | ==== Instantiation rules ==== | + | |{{: |
- | ===== Edge types ===== | + | ===== 3D objects |
- | ==== Branches ==== | + | As mentioned above in GroIMP we are not limited to the turtle commands but we can also use geometrical objects. |
- | ==== Decomposition & custom ==== | ||
+ | <code java> | ||
+ | protected void init () | ||
+ | [ | ||
+ | Axiom ==> F Sphere(1); | ||
+ | ] | ||
+ | </ | ||
tutorials/xl-turtle-geometry.1732879549.txt.gz · Last modified: 2024/11/29 12:25 by tim