Table of Contents
Arc Point Distribution
Developer: RhinoScript
Summary: Discusses arc point distribution.
Question
I have have a series of points that are equally spaced along an arc curve. I would like these points projected onto the line that connects the starting and ending points of the arc. For example:
Is there a way that I can do this mathematically, or do I have to do some kind of projection or intersection?
Answer
The following example script should do what you want.
Option Explicit Sub ArcPointDistribution ' Local variables Dim arc, cnt, rads Dim n_t(), n, i, a0, a1 Dim line, dom, t ' Select arc curve arc = Rhino.GetObject("Select arc", 4) If IsNull(arc) Then Exit Sub If Not Rhino.IsArc(arc) Then Exit Sub ' Get number of points to calculate cnt = Rhino.GetInteger("Number of points", 2) If IsNull(cnt) Then Exit Sub rads = Rhino.ToRadians(Rhino.ArcAngle(arc)) n = cnt - 1 ReDim n_t(n) ' Calculate normalized parameters For i = 0 To n a0 = Sin(rads/2) a1 = Sin(i*rads/n - rads/2) n_t(i) = (a0+a1)/(2*a0) Next Rhino.EnableRedraw False line = Rhino.AddLine(Rhino.CurveStartPoint(arc), Rhino.CurveEndPoint(arc)) dom = Rhino.CurveDomain(line) For i = 0 To n ' Convert normalized parameter to domain value t = (1.0 - n_t(i)) * dom(0) + n_t(i) * dom(1) Rhino.AddPoint Rhino.EvaluateCurve(line, t) Next 'Rhino.DeleteObject line Rhino.EnableRedraw True End Sub
