Make it stop!

If you're having trouble using Context Free or don't understand the language, ask for help here.

Moderators: MtnViewJohn, chris, mtnviewmark

Post Reply
CC

Make it stop!

Post by CC »

Hello,

I have just begun creating cdfgs myself though I have been tinkering with others files for a bit now. This is one of the first ones I have creted that actually does something I really like, only problem is that it runs on forever.

Is there a way I can stop this behavior without manually stopping it from rendering?

Thanks..

Code: Select all

startshape TREE

rule TREE {
   BRANCH {}

}

rule BRANCH {
   TWIG {}
   BRANCH { y 0.9 r 45 s 0.72 }
   BRANCH { y 0.9 r -45 s 0.72 }
}

rule TWIG {
   TRIANGLE { s 0.09 2 y 0.57 }
}

User avatar
fbo
Posts: 8
Joined: Sat Aug 13, 2005 2:54 am

Post by fbo »

Hi,

What do you mean exactly? On CF 1.2 v7 experimental it runs and stops ok.

fbo

CC

Post by CC »

fbo wrote:Hi,

What do you mean exactly? On CF 1.2 v7 experimental it runs and stops ok.

fbo

You are correct.

*smacks head*

I had 2 versions open, and one seemed to keep climbing in the number of expansions to complete, I missed something I think.

The final one does work, soory about that.

Post Reply