Hello
I have a question if is it possible to select many faces objects in Tekla Grasshopper component? I see that in Grasshoper is it possible but in Grasshopper component I can see message than I can select only one face object.
Hello Oskar
Thank You for your info but I did as your sugestie but in Tekla Grasshopper component I get message that I can pick only one face.
Let me test now, give me 5 min.
Thank You for your test.
Seb, can explain why when he wakes up
Ok.We will waitđ
Morning!
Weâre up against a hard-coded API limitation here.
First, an input object for any Tekla plugin can be either a point or a model object identifier. These are the only types used internally. The input objects can be distributed over a maximum of 10 groups, where each group is a list of either points or identifiers. Often these groups correspond to something the user is asked to pick in the model (âPick 2 pointsâ, âPick N objectsâ, âŚ). The total number of objects allowed in all groups combined is 99.
A face doesnât have an identifier so it must be treated as a list of boundary points (similar to a polyline), and these lists will occupy one input group each. Thatâs why itâs only possible to ask for a single face from a Grasshopper face param when itâs used in a Tekla plugin (i.e. the Grasshopper Component). To ask for more you can add up to 10 of these params, but I appreciate that requires you to know how many faces you expect in advance.
If you know of any other Tekla plugin that has circumvented these limitations in some way please let me know and Iâll take a look at how theyâve done it.
Cheers,
Sebastian
Ok makes sense, kind of .
I donât have any issues with the above so, have nothing further to add.
Could use pick points together with the geometry pipeline to extract the face/surface closest to each point but not ideal from a user perspective perhaps.
Thank You for yours clarifications.