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:31] – [Growing in several directions] 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 181: | 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. | + | 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 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 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 the order 1 will create | + | * A bud of order 1 creates |
- | * A bud of order 2 creates a shoot and a new bud of order 2 | + | * A bud of order 2 creates a shoot and a new bud of order 2. |
- | + | 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 | |
- | To use this rules, we first need the knowledge of the branching order for each bud. Therefore | + | |
<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 208: | 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 224: | 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 248: | Line 246: | ||
- | With the diameter our tree now looks like this: | + | With the diameter, our tree now looks like this: |
{{ : | {{ : | ||
Line 254: | 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.1731922310.txt.gz · Last modified: 2024/11/18 10:31 by tim