Saturday, January 23, 2010

Rules & Powercopies

Here is a DP tutorial that includes powercopies and rules.  Instead of creating a range of powercopies with a uniform variation, I model it as lumber with specific sizes.  The rule then allows for specific shapes to be placed depending on the context of the framework.  The rule is also dynamic so as the context changes the rule is able to update the geometry.

Here is the simple text required to make the rule.  Both "depth" and "joist_length" are linked parameters.


if joist_length <= 110in
{depth=5.5in}

else if
joist_length >110in and joist_length<145in
{depth=7.25in}

else if
joist_length >145in and joist_length<185in
{depth=9.25in}

else if
joist_length >185in and joist_length<225in
{depth=11.25in}

else if
joist_length >=225in
{depth=.75in}



1 comment:

gdes said...

thanks to share Karl,

I'm doing my first steps in DP and your blog is resulting very helpfully.

I'm following the tutorials and I'm eager to see something about scripting in DP

regards
Carlos.