BIM World
A Professional BIM Learning Platform


BIM Q&A: How to Generate Uniform Points Along Curves in Rhino Grasshopper – A Beginner’s Guide

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;
  }
}

xuebim
Follow the latest BIM developments in the architecture industry, explore innovative building technologies, and discover cutting-edge industry insights.
← Scan with WeChat
Like(0) 打赏
BIM WORLD » BIM Q&A: How to Generate Uniform Points Along Curves in Rhino Grasshopper – A Beginner’s Guide

Comment Get first!

Must log in before commenting!

 

BIM World, A Professional BIM Learning Platform

Stay updated on the latest architecture trends and share new building technologies.

Contact UsAbout Us

觉得文章有用就打赏一下小编吧

非常感谢你的打赏,我们将继续提供更多优质内容,让我们一起创建更加美好的网络世界!

支付宝扫一扫

微信扫一扫

Account Login

By signing in, you agree toUser Agreement

Sign Up