BIM Q&A | How to Use Rhino’s Grasshopper to Generate Uniform Points Along Existing Curves
Could someone please explain how to generate uniform points along an existing curve using Rhinoceros’s Grasshopper? Are there specific commands for this? I’m a beginner and find the process a bit confusing. Thank you in advance for your help!
static void(int[] group)
{
int temp;
int pos = 0;
for (int i = 0; i < group.Length – 1; i++)
{
pos = i;
for (int j = i + 1; j < group.Length; j++)
{
if (group[j] < group[pos])
{
pos = j;
}
}
// Swap the i-th element with the smallest element found
temp = group[i];
group[i] = group[pos];
group[pos] = temp;
}
}















Must log in before commenting!
Sign Up