The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more
123456789101112131415161718192021 #!/usr/bin/rubyinclude('LSystem/LSystem.sf')var rules = Hash( F => 'F+F--F+F',)var lsys = LSystem( width: 800, height: 800, xoff: -210, yoff: -90, len: 8, angle: 60, color: 'dark green',)lsys.execute('F--F--F', 4, "koch_snowflake.png", rules)
#!/usr/bin/ruby
include('LSystem/LSystem.sf')
var rules = Hash(
F => 'F+F--F+F',
)
var lsys = LSystem(
width: 800,
height: 800,
xoff: -210,
yoff: -90,
len: 8,
angle: 60,
color: 'dark green',
lsys.execute('F--F--F', 4, "koch_snowflake.png", rules)