Modelowanie_Wirtualnych_Swi.../Assets/LSystem/PipeModel.txt

20 lines
370 B
Plaintext
Raw Permalink Normal View History

2021-05-07 21:53:42 +02:00
#ignore + - \ / ^ &
#axiom
C(1,3)F(0)G
#rules
C(a,b) > F(x) : b<3 -> C(a,b+1)
C(a,b) > F(x) : b>=3 -> #stochastic
p=2 C(1,0)
p=1 C(2,0)
p=0.5 C(3,0)
#stochastic end
C(a,b) < F(x) : b>=3 -> F(a)
F(x) < F(y) : x>0 -> F(x)
F(x) : x>0 -> F(0)
F(x) < G : x==1 -> F(0)[+B]\(137.5)G
F(x) < B : x==2 -> #stochastic
p=3 B
p=1 G
#stochastic end
F(x) < G : x==3 -> F(x)W
#end rules