New to Grasshopper.
Trying to offset a curve multiple times (up to 50 times) while increasing the offset by 10% each time.
Example:
offset by 1 mm
Offset by 1.1 mm
Offset by 1.21 mm
offset by 1.33 mm
Offset by 1.46 mm
I tried using the series function but keep getting stuck as it uses the addition not multiplication.
Would appreciate any guidance.
Thank you.
res = []
sa = startAt
for i in range(reps):
res.append(sa)
sa = sa * incr
P.S. The Python version includes āstartAtā in the results, Anemone version does not. Either one could be modified slightly to match the other, depending on which you want?
The Anemone version results includes ā-1ā, which is surely not wanted, but itās a little harder to avoid. Python version is cleaner and shorter. Both tools are handy, for many things.
Python version is much simpler than C# version! (below) You decide.
using Rhino;
using Rhino.Geometry;
using Rhino.DocObjects;
using Rhino.Collections;
using GH_IO;
using GH_IO.Serialization;
using Grasshopper;
using Grasshopper.Kernel;
using Grasshopper.Kernel.Data;
using Grasshopper.Kernel.Types;
using System;
using System.IO;
using System.Xml;
using System.Xml.Linq;
using System.Linq;
using System.Data;
using System.Drawing;
using System.Reflection;
using System.Collections;
using System.Windows.Forms;
using System.Collections.Generic;
using System.Runtime.InteropServices;
/// <summary>
/// This class will be instantiated on demand by the Script component.
/// </summary>
public class Script_Instance : GH_ScriptInstance
{
#region Utility functions
/// <summary>Print a String to the [Out] Parameter of the Script component.</summary>
/// <param name="text">String to print.</param>
private void Print(string text) { /* Implementation hidden. */ }
/// <summary>Print a formatted String to the [Out] Parameter of the Script component.</summary>
/// <param name="format">String format.</param>
/// <param name="args">Formatting parameters.</param>
private void Print(string format, params object[] args) { /* Implementation hidden. */ }
/// <summary>Print useful information about an object instance to the [Out] Parameter of the Script component. </summary>
/// <param name="obj">Object instance to parse.</param>
private void Reflect(object obj) { /* Implementation hidden. */ }
/// <summary>Print the signatures of all the overloads of a specific method to the [Out] Parameter of the Script component. </summary>
/// <param name="obj">Object instance to parse.</param>
private void Reflect(object obj, string method_name) { /* Implementation hidden. */ }
#endregion
#region Members
/// <summary>Gets the current Rhino document.</summary>
private readonly RhinoDoc RhinoDocument;
/// <summary>Gets the Grasshopper document that owns this script.</summary>
private readonly GH_Document GrasshopperDocument;
/// <summary>Gets the Grasshopper script component that owns this script.</summary>
private readonly IGH_Component Component;
/// <summary>
/// Gets the current iteration count. The first call to RunScript() is associated with Iteration==0.
/// Any subsequent call within the same solution will increment the Iteration count.
/// </summary>
private readonly int Iteration;
#endregion
/// <summary>
/// This procedure contains the user code. Input parameters are provided as regular arguments,
/// Output parameters as ref arguments. You don't have to assign output parameters,
/// they will have a default value.
/// </summary>
private void RunScript(double s, double p, int c, ref object A)
{
List<double> result = new List<double>();
result.Add(s);
c = c - 1;
for (int i = 0; i < c; i++)
{
s = s * p;
result.Add(s);
}
A = result;
}
// <Custom additional code>
// </Custom additional code>
}
Arenāt we making this more complex than what it is?
Anyway, @Joseph_Oster i think your first answer might be the best one in some situations.
As the original question was about offsets (so not just a pure math riddle), as we know rhino, the offset of an offset (of an offsetā¦) might be different from a single offset with the same total distance.
For examples, rhino, with big values and self-intersecting theoretical offset results, often failsā¦ by doing āsmaller stepsā (anemone) one can reach the correct solution.
With the risk of going a little off-thread ā¦
Iāve never downloaded clipper, as I generally like to avoid plug-ins (working on many different machines, restarting rhino everytime is a problem, expecially with big filesā¦).
Iāll surely download and use it if iāll find myself in the situation where is strictly needed.
Butā¦ shouldnāt rhino/grasshopper ādeserveā a proper working offset function?
Out of all the plug-ins out there, clipper seems like the most absurd to need.
We are not talking about a complex specific function, but just the offset.
Usually it is: plug-in for a new function.
Clipper is: plug-in to fix a function.
Good pointā¦ well, it seems Iām not able to overcome the fact that I need a plug-in to fix a functionā¦ I usually prefer to fix my definitions until the normal offset just work all the times (ex by simplifying the logic).
Well, this make the situation even more absurd. Offset on rhino works the same (sometime bad) sinceā¦ years?
Who know what are the events during the development of a software ā¦ not me!
I know itās been discussed a lot before, but there might be some problems that are hard to solve. In fact, quite a few people expect to improve the Offset Curvefunctionality.
BTW, regarding clipper, itās superior functionally as oppose to native Offset Curve, but the problem is limited to polygon or polyline offset. The result is always polyline. On the other hand, the GHās case is more a broader curve in general.
but the problem is limited to polygon or polyline offset.
I typically rebuild the polygon result via the Kinky Curve component which seems to work well, keeping kinks at expected places and interpolating curves at others.