Turtle Graphics

Jim Hurley jhurley at infostations.com
Mon Aug 1 12:36:48 EDT 2005


>
>Message: 4
>Date: Mon, 1 Aug 2005 11:33:13 +0200
>From: david bovill <david at openpartnership.net>
>Subject: Re: Turtle Graphics
>To: How to use Revolution <use-revolution at lists.runrev.com>
>Message-ID: <B31DB68F-BDA7-41D3-BED5-899577B603A9 at openpartnership.net>
>Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed
>
>I have some simple scripts which draw trees etc based on l-systems, 
>which in turn are built on basic Turtle Graphic primitives - would be
>nice to collect this stuff in one place?
>

Dave,

I'm don't know what I-systems are. But by trees I presume you means 
things like:

on Tree L,dL
   if L > 5 then
     left 45
     forward L
     tree L/2
     back L
     right 90
     forward L
     tree L/2
     back L
     left 45
   end if
end Tree

There are some fractals in my basic TG stack on the Run Rev web site. 
But I think some people might like to see some more. Trees are 
interesting.

I don't know what to suggest. Maybe put your examples in the personal 
users' space in Rev OnLine?

Jim





More information about the use-livecode mailing list