Page 1 of 1

Make it stop!

Posted: Fri Aug 26, 2005 5:54 am
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 }
}

Posted: Fri Aug 26, 2005 6:30 am
by fbo
Hi,

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

fbo

Posted: Fri Aug 26, 2005 6:46 am
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.