Grasshopper

algorithmic modeling for Rhino

Bojan Mitrovic's Blog (1)

Spatial curves

Objects distributed along spacial curve

minU - minimal U value

maxU - maximal U value

dens - curve density (number of objects along curve path)



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) / dens

For i = minU To maxU + 0.0001 Step uStep

rv.Add(i)…

Continue

Added by Bojan Mitrovic on June 13, 2009 at 4:30am — No Comments

Latest Blog Posts

Most Popular Blog Posts

Monthly Archives

2009

About

Translate

Search

Photos

  • Add Photos
  • View All

Videos

  • Add Videos
  • View All

© 2024   Created by Scott Davidson.   Powered by

Badges  |  Report an Issue  |  Terms of Service