User Tools

Site Tools


tutorials:architecture-model

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
tutorials:architecture-model [2024/11/18 10:36] – [Branching orders] timtutorials: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:'' Bud %%==>%% Shoot '' But with this rule the fun would soon be over, because we can only apply our rule once, after that there are no more buds in our scene.+Writing this in an rewriting rule is quite straightforward:'' Bud %%==>%% Shoot '' But with this rule the fun would soon be over, because we can only apply our rule once, after that there are no more buds in our scene.
  
  
Line 231: Line 231:
 ===== Diameter ===== ===== Diameter =====
  
-Now in the last real step of this tutorial we want to look at the diameters of our little tree. +Nowin the last real step of this tutorialwe 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: ''F(length,diameter)''. So we can just do the same thing as we did with the length and have a parameter d in our shoot hat is then forwarded to the F:+In the F class that our shoot extendsthe diameter can be given as second parameter: ''F(length,diameter)''. So we can just do the same as we did with the length and have a parameter d in our shoot that will be passed to the F:
 <code java> <code java>
  module Shoot(float l,float d) extends F(l,d);  module Shoot(float l,float d) extends F(l,d);
 </code> </code>
  
-Now for defining this value in our rules we will use a very simple estimation. Lets assume that the ratio between the length of a shoot and its diameter is 10:1. This means in all our rules we can just change the Shoots to ''Shoot(x,x/10)''.+To define this value in our ruleswe will use a very simple estimation. Let us assume that the ratio between the length of a shoot and its diameter is 10:1. This means that in all our rules we can simply change the Shoots to ''Shoot(x,x/10)''.
  
-Even so this gives our tree already a nicer first shape, there is another thing we want to do with the diameter: secondary thickness growth.  Therefore we add a new rule that states that every Shoot will be replaced by a new Shoot of the same length but a slightly larger diameter. +Even though this gives our tree a nicer initial shape, there is something else we want to do with the diameter: secondary thickness growth.  So we add a new rule which says that each shoot will be replaced by a new shoot of the same length but with a slightly larger diameter. 
  
 <code java> <code java>
Line 246: Line 246:
  
  
-With the diameter our tree now looks like this:+With the diameterour tree now looks like this:
 {{ :tutorials:ca_tut_diameter.png?direct&400 |}} {{ :tutorials:ca_tut_diameter.png?direct&400 |}}
  
Line 252: 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 fitting it to your needs adding more parameters and rotations.  +That is basically it for this tutorial. Below you will find the code for this little tree. Now you can start playing around with itadding more parameters and rotations to suit your needs.  
 <code java> <code java>
  
tutorials/architecture-model.1731922586.txt.gz · Last modified: 2024/11/18 10:36 by tim