If you need the ribbon definition, I also posted a screenshot of the
component a while ago:
http://grasshopper3d.googlegroups.com/web/ribbon.jpg
It's only contains 3 components but one of them is a scripting
component that has some code.
If you don't want to copy the code by hand, you can edit the .ghx in
notepad and search for it....
...or i could paste it here:
Dim srf_list As New List(Of OnBrep)
For i As Integer = 0 To crvsA.count - 1
Dim nc(1) As OnNurbsCurve
nc(0) = New OnNurbsCurve()
nc(1) = New OnNurbsCurve()
crvsA(i).GetNurbForm(nc(0))
crvsB(i).GetNurbForm(nc(1))
srf_list.Add(RhUtil.RhinoCreateEdgeSrf(nc))
Next
A = srf_list
On Nov 13, 1:59 am, carter <[EMAIL PROTECTED]> wrote:
> i have been having difficulty opening some of the example files that
> people post. i've tried them as .gh as well as .ghx. some work and
> some don't. the ones that don't, always give the same
> message:http://groups.google.com/group/grasshopper3d/web/Event_log.png
>
> maybe i am doing something wrong?
>
> one that doesn't work is this
> one:http://grasshopper3d.googlegroups.com/web/ribbon.ghx?gda=tOva9jwAAABl...
>
> carter