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 08:08] – [XL turtle geometry and graph construction] tim | tutorials:xl-turtle-geometry [2024/12/18 10:02] (current) – [3D objects] Tim | ||
---|---|---|---|
Line 16: | Line 16: | ||
===== Turtle commands ===== | ===== Turtle commands ===== | ||
+ | That if we replace the Axiom with an F, a F node appears in the 2d graph is quite strait forward. | ||
+ | The fact that this turns into a Cylinder in 3d is a bit more of a stretch. | ||
+ | Each turtle command is interpreted for the creation of the 3d model. | ||
- | ===== Local transformation ===== | + | <code java> |
+ | protected void init () | ||
+ | [ | ||
+ | Axiom | ||
+ | ] | ||
+ | </ | ||
+ | |{{: | ||
+ | |The 3D and 2D representation of two F's one after another| | ||
- | ===== Modules ===== | + | Now looking at the list of turtle commands, we can see that F is suppose to have a parameter, which we did not give yet. If no parameter is provided most turtle commands will fall back to a default value, which means in the most cases that they do just nothing. Yet in the case of an F the default value is a length of 1 meter and a diameter of 10 cm. |
+ | Meaning '' | ||
- | ==== Instantiation rules ==== | + | To bring in a second command, you can try '' |
+ | You can combine them in any way you want | ||
- | ===== Edge types ===== | + | <code java> |
+ | protected void init () | ||
+ | [ | ||
+ | Axiom ==> F M F(0.2,2); | ||
+ | ] | ||
+ | </ | ||
- | ==== Branches | + | |{{: |
+ | | One F followed by a M and then a short F with a large diameter | ||
+ | ==== Transformation | ||
- | ==== Decomposition & custom ==== | ||
+ | {{ : | ||
+ | |||
+ | In the classic turtle geometry approach the F is the only visible object (no worries we will see a fix for that later), all other turtle commands are only giving instructions to the turtle on how and where to draw future cylinders. This instruction are mainly about transforming (moving, rotation, scaling) the F. | ||
+ | |||
+ | 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 '' | ||
+ | |||
+ | Following up on our little example above you could think about rotation the short cylinder 30 degrees up like: | ||
+ | <code java> | ||
+ | protected void init () | ||
+ | [ | ||
+ | Axiom ==> F RU(30) F(0.2,2); | ||
+ | ] | ||
+ | </ | ||
+ | |||
+ | |{{: | ||
+ | |The result of rotating the second cylinder up 30 degrees| | ||
+ | |||
+ | You can try this also with the RL command and will a very similar result, with RH on the other hand you will see nothing because a cylinder is round and you cant see if it is rotated on the head axes. | ||
+ | |||
+ | That brings us to the next step: **combining transformations**, | ||
+ | <code java> | ||
+ | protected void init () | ||
+ | [ | ||
+ | Axiom ==> F RH(150)RU(30) F(0.2,2); | ||
+ | ] | ||
+ | </ | ||
+ | |||
+ | |{{: | ||
+ | |The result of rotating the turtle first on the head axes and then rotate it up| | ||
+ | |||
+ | You can now try to switch the order of the commands to '' | ||
+ | |||
+ | Looking at the list of turtle commands, you can see that there are more rotations such as RV or RD you can explore. | ||
+ | |||
+ | |||
+ | There are also more computer graphics oriented approaches embedded in the GroIMP turtle commands: Translate(x, | ||
+ | |||
+ | **Translate** is moving the turtle for the given values on the local x,y,z axes: | ||
+ | <code java> | ||
+ | protected void init () | ||
+ | [ | ||
+ | Axiom ==> F Translate(3, | ||
+ | ] | ||
+ | </ | ||
+ | |{{: | ||
+ | |||
+ | 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> | ||
+ | protected void init () | ||
+ | [ | ||
+ | Axiom ==> F Rotate(20, | ||
+ | ] | ||
+ | </ | ||
+ | |{{: | ||
+ | |||
+ | 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 ==> Scale(0.5) F Rotate(20, | ||
+ | ] | ||
+ | </ | ||
+ | This will give us the same result as before only a smaller... | ||
+ | Additionally, | ||
+ | <code java> | ||
+ | protected void init () | ||
+ | [ | ||
+ | Axiom ==> F Rotate(20, | ||
+ | ] | ||
+ | </ | ||
+ | |||
+ | |{{: | ||
+ | |||
+ | ===== 3D objects ===== | ||
+ | |||
+ | As mentioned above in GroIMP we are not limited to the turtle commands but we can also use geometrical objects. | ||
+ | |||
+ | |||
+ | <code java> | ||
+ | protected void init () | ||
+ | [ | ||
+ | Axiom ==> F Sphere(1); | ||
+ | ] | ||
+ | </ | ||
tutorials/xl-turtle-geometry.1732864114.txt.gz · Last modified: 2024/11/29 08:08 by tim