algorithmic modeling for Rhino
VB Code
(creates a list of points for calculations)
Sub RunScript(ByVal minU As Double, ByVal maxU As Double, ByVal dens As Integer) Dim uStep, i As Double Dim rv As New List(Of Double) uStep = (maxU - minU) / densContinue
For i = minU To maxU + 0.0001 Step uStep
rv.Add(i)…
Posted on June 13, 2009 at 4:30am
Welcome to
Grasshopper
Added by Parametric House 0 Comments 0 Likes
Added by Parametric House 0 Comments 0 Likes
Added by Parametric House 0 Comments 0 Likes
Added by Parametric House 0 Comments 0 Likes
© 2024 Created by Scott Davidson. Powered by
Comment Wall
You need to be a member of Grasshopper to add comments!