Hi, I’m doing some tutorials from this site : http://designalyze.com/intro-c-scripting-grasshopper/scripting-gh-part-05. But as I as doing certain tutorials, I observed that forr example sometimes it doesn’t show the options after putting add. for exemple in the tutorial from the previously mentioned link, I am getting this error, although to my knowledge there arent any issues like “miss-spelling”. Do I need to add additional library to the C# or anything? I am using the C# just as it was after installing grasshopper so idk wheth
er I was supposed to modify or add certain things.You’ll have to rename the x
input to pts
, and you’ll also have to set its access to list and the type hint to Point3d. You can do all these things through the x
context menu.
although I think I followed thoroughly all the steps, however, the circles aren’t generating ( without any apparent error or anything of a kind)
is there anything else I can check? ( checked the list access as well for the pts )
You did not add circles to circles list.
In the loop you have to add circles.Add(circle);
or circles.Add(new Circle (pt,i,0) );
1 Like
thanks!!