tutorials:architecture-model
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
tutorials:architecture-model [2024/11/18 10:17] – [Parameters] tim | tutorials:architecture-model [2024/11/19 13:06] (current) – [Apical growth] tim | ||
---|---|---|---|
Line 45: | Line 45: | ||
Looking at our two organs, we can define our very first rule: //a bud becomes a shoot//, or more precisely //every bud becomes a shoot// | Looking at our two organs, we can define our very first rule: //a bud becomes a shoot//, or more precisely //every bud becomes a shoot// | ||
- | Writing this in an XL query is quite straightforward:'' | + | Writing this in an rewriting rule is quite straightforward:'' |
Line 100: | Line 100: | ||
{{ : | {{ : | ||
- | Even so our little model improves, it can still only grow in one direction which is quite untypical | + | Although |
{{: | {{: | ||
- | Knowing that our first rule is turning | + | Knowing that our first rule is to turn a bud into a shoot and a bud, we can estimate what the first step towards |
- | This leads us to the task of updating our rule. We now want to //replace a but by a shoot, a but on top and two buds on the side//. | + | This brings |
==== Turtle Geometry ==== | ==== Turtle Geometry ==== | ||
- | For this new rule we have to get a little inside on how GroIMP | + | For this new rule we need to look at how GroIMP |
- | This chain of cylinders and the bud is stored in GroIMP in a graph, the project graph. This graph holds almost all information | + | This chain of cylinders and bud is stored in GroIMP in a graph, the project graph. This graph contains |
|{{: | |{{: | ||
| Left: Our apical shoot as a drawn image, a GroIMP 2d Graph and the GroIMP visualization, | | Left: Our apical shoot as a drawn image, a GroIMP 2d Graph and the GroIMP visualization, | ||
- | + | GroIMP comes with a set of commands | |
- | GroIMP comes with a howl set of commands | + | |
Line 124: | Line 123: | ||
{{: | {{: | ||
- | To first get a feeling | + | To get a feel for this turtle geometry, we will create a rule that turns the bud into a shoot with a bud on the right side. First we need the shoot and then we add the side bud. Knowing that the turtle will be at the end of the shoot after we draw it means that we have to move back from that position. |
- | Assuming our shoot growth with a length of $l$, the turtle will move l up with '' | + | Assuming our shoot has a length of $l$, the turtle will move l up with '' |
- | **Rotating** the turtle | + | 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 |
- | For our little shoot with the apical bud, this means we have to rotate it on y axis (up, if the branch would lay on the side). Therefore we need the RU command and come the following rule: | + | For our little shoot with the apical bud, this means that we have to rotate it on the y-axis (up, if the branch would lie on the side). Therefore we need the RU command and the following rule: |
'' | '' | ||
- | which,after 3 iterations, | + | |
+ | which, after 3 iterations, produces the " | ||
{{ : | {{ : | ||
- | === Growing in several directions === | + | ==== Growing in several directions |
- | We have already two possible rules to create our little plant, we either grow to the top or to the right. In the next step we want to do both in one rule. Doing this with one turtle | + | We already |
- | In L-Systems, and also in GroIMP, this is solved by using a stack of turtle states (the current position, rotation, scale color etc.). | + | In most L-Systems, and also in GroIMP, this is solved by using a stack of turtle states (the current position, rotation, scale color, etc.). |
- | " | + | " |
'' | '' | ||
- | + | The order of the elements (why we go back before | |
- | The order of the elements (why we move back before | + | |
| | ||
- | + | In GroIMP' | |
- | In GroIMP' | + | |
Line 158: | Line 156: | ||
- | As said above, the turtle state is stored in a stack, | + | As mentioned |
- | In our case this allows us to add some more lateral buds around (rotate by the head axes) the shoot: | + | In our case, this allows us to add some more lateral buds around |
< | < | ||
Line 173: | Line 171: | ||
</ | </ | ||
- | Which gives us an already quite nice little plant like structure: | + | This gives us a nice little plant-like structure: |
{{ : | {{ : | ||
- | You can now already | + | You can now play around with the values to change the shape of the tree, e.g. make the side branches shorter (x*0.5 |
===== Branching orders ===== | ===== Branching orders ===== | ||
Line 184: | Line 181: | ||
{{ : | {{ : | ||
- | Looking | + | If we look at trees, we can see that most of them have different growth behavior on the trunk and on the branches. To simulate this, we will use the concept of branching |
- | + | ||
- | We, as many other modelers before us, will use this concept to give our tree more structure by defining different growth rules for the different orders. | + | |
- | * A bud on the stem (of order 0) creates a shoot, a new apical bud with the order 0 and three lateral buds around it with the order 1 | + | |
- | * A bud of the order 1 will create a shoot a new apical bud with the order 1 and two lateral buds of order 2 to the left and the right | + | |
- | * A bud of order 2 creates a shoot and a new bud of order 2 | + | |
+ | We, like many other modelers before us, will use this concept to give our tree more structure by defining different growth rules for the different orders. | ||
+ | * A bud on the trunk (of order 0) creates a shoot, a new apical bud of order 0, and three lateral buds of order 1 around it. | ||
+ | * A bud of order 1 creates a shoot, a new apical bud of order 1, and two lateral buds of order 2 to the left and right. | ||
+ | * A bud of order 2 creates a shoot and a new bud of order 2. | ||
- | To use this rules, we first need the knowledge of the branching order for each bud. Therefore | + | To use these rules, we first need to know the branching order for each bud. To do this, we need to add an additional parameter |
<code java> | <code java> | ||
| | ||
</ | </ | ||
- | And now we learn a new trick, because on the left side of a XL rule it is also possible to specify which value the selected node should have: '' | + | And now we learn a new trick, because on the left side of an XL rule you can also specify which value a parameter of the selected node should have: '' |
<code java> | <code java> | ||
Line 211: | Line 207: | ||
</ | </ | ||
+ | We now replace only the buds of order 0 (the stem) and give the new buds the correct orders, the lateral buds get order 1 and the apical bud gets 0. | ||
- | I now only replaces the buds of order 0 (the stem) and gives the new buds the right orders, the lateral buds get order 1 and the apical bud get 0. | + | For the first-order branches, |
- | + | ||
- | For the branches of the first order the new rule is as following, using the rotation | + | |
<code java> | <code java> | ||
Bud(1, | Bud(1, | ||
Line 227: | Line 222: | ||
</ | </ | ||
- | finally the one for the second order is just as we know it from the very beginning. | + | Finally, |
<code java> | <code java> | ||
| | ||
</ | </ | ||
- | This three rules result in a already quite nice looking structure. (Don't be confused, I resized the radius of the buds a bit) | + | These three rules result in a pretty |
{{ : | {{ : | ||
===== Diameter ===== | ===== Diameter ===== | ||
- | Now in the last real step of this tutorial we want to look at the diameters of our little tree. | + | Now, in the last real step of this tutorial, we want to look at the diameters of our little tree. |
- | In the F class that our shoot extends the diameter can be given as an second parameter: '' | + | In the F class that our shoot extends, the diameter can be given as a second parameter: '' |
<code java> | <code java> | ||
| | ||
</ | </ | ||
- | Now for defining | + | To define |
- | Even so this gives our tree already | + | Even though |
<code java> | <code java> | ||
Line 251: | Line 246: | ||
- | With the diameter our tree now looks like this: | + | With the diameter, our tree now looks like this: |
{{ : | {{ : | ||
Line 257: | Line 252: | ||
===== Final ===== | ===== Final ===== | ||
- | This is basically it for this tutorial. Below you can get the code of this small tree. Now you can start playing around | + | That is basically it for this tutorial. Below you will find the code for this little |
<code java> | <code java> | ||
tutorials/architecture-model.1731921467.txt.gz · Last modified: 2024/11/18 10:17 by tim