Grasshopper
generative modeling for Rhino
I think the shutter component had a bug. It doesn't work x t values = 0 or 1 working on circle and closed polylines. I'm sure that it works with old version (very old .... 6.059).
See the attached image
Andrea
Tags:
Share Twitter Facebook Facebook
Views: 19
▶ Reply to This
Hi David
the bug is located inside the SolveInstance
double min = destination.Domain.Min;
double max = destination.Domain.Max;
for (int i = list.Count - 1; i >= 0; i--)
{
if ((list[i] >= max) || (list[i] <= min))
list.RemoveAt(i);
}
it should be if ((list[i] > max) || (list[i] < min))
cheers,
▶ Reply
RSS
Welcome toGrasshopper
Sign Upor Sign In
Or sign in with:
by ĐỒNG VIẾT NGỌC BẢO 0 Comments 0 Likes
© 2012 Created by Scott Davidson. Powered by
Badges | Report an Issue | Terms of Service
Please check your browser settings or contact your system administrator.