L-System to L-System SOP

   3419   3   0
User Avatar
Member
113 posts
Joined: July 2005
Offline
Hi,

I found that L-system expression on the web

$v = 90; $str=“FX”; $it = 5; $sc = 15;
%rules = (“X”, “FX+FX+FXFY-FY-”,
“Y”, “+FX+FXFY-FY-FY”, “F”, “”);

and I wonder how I can “translate” for the L-system SOP, I mean which
part is the premise, rule, etc …
Basically I'm trying to use that expression with the L-system SOP


Thanks in advance

Julien
User Avatar
Member
7714 posts
Joined: July 2005
Offline
I think something like this:
Angle = 90
Premise = FX
Generations = 5
Rules:
X = FX+FX+FXFY-FY-
Y = +FX+FXFY-FY-FY
F =

(I have no idea what $sc is)
User Avatar
Member
412 posts
Joined: July 2005
Offline
sc is stepsize
Dave Quirus
User Avatar
Member
113 posts
Joined: July 2005
Offline
thanks guys, it's working well
  • Quick Links