Naked edges

Hello,

im quite new to grasshopper and python scripting. I need to do this project in my school and im running in some problems. So I found this python script for naked edges and i want to do some exercises… but somehow im not sure about inputs… can anybody help me, please.
naked_edges.gh (5.5 KB)

That script is designed to operate on the Rhino document. In GHPython you can simply do this:

190902_GetNakedMeshEdges_00.gh (4.0 KB)

Hello

The inputs are on the right of the components and the outputs on the left. You can right-click any input or output to rename it (at the top).
For the inputs you can also specify their type in that context menu (“Type Hint”, near the bottom) along with other options.
These inputs and outputs are defined within the python script as if they were local variables.
Here’s a short introduction.

~robin