bit:
Unable to load grasshopper.dll plug-in: Rhino version not specified.
I've also tried the current WIP grasshopper (0.7 rev 57) and I receive a slightly different error message:
Unable to load grasshopper.rhp plug-in: Rhino version not specified.
A similar thread: http://www.grasshopper3d.com/forum/topics/plugin-eror
…
Added by Koabi Brooks at 1:30pm on October 2, 2010
n before?
PointCloud PC = new PointCloud(); PC.AddRange(Pts); Vector3d n = Vector3d.ZAxis; if (VP == null) { Rhino.Geometry.BoundingBox BBox = PC.GetBoundingBox(false); Rhino.Geometry.Box BoundingB = new Rhino.Geometry.Box(BBox); VP = BoundingB.PointAt(0.5, 0.5, 1); VP.Z = BoundingB.Z.T1 * 100;
} List<Vector3d> Normals = new List<Vector3d>(); double Dev = 0; foreach (Point3d point in Pts) { List<Point3d> Neighbors = Pts.FindAll(V => V.DistanceTo(point) < D); Rhino.Geometry.Plane NP = Rhino.Geometry.Plane.WorldXY; Plane.FitPlaneToPoints(Neighbors, out NP, out Dev); if (Dev > MD) //FileSystem.Print("This computation Is Not As accurate As desired, Try lowering the distance tolerance or rasing your Maximum Deviation"); n = NP.Normal; if (n * (VP - point) > 0) { Normals.Add(n); } else { Normals.Add(-n); } } A = Normals;…
2_Remapping those heights to a 6 z values to simplify the surface
3_Getting the end point of each line to be able to interpolate a curve through each row in order to make a loft once I have all the curves by rows.
My problem is that, I am selecting by a sublist component each row, but I have to do sooo many sublists with domains that go from 0 to 100, then the next sublist from 101 to 201, the next from 202 to 303, and so on, and that is a pain.
I am sure there is a way to grab the rows in a much easier way, but I am stuck in the definition and cannot see it.
Thanks, I attach the file and the image for the sampling image (ranges from 0 to 0.5 for both x and y).
I appreciate it! Thanks in advance!…
extremely labour intensive, is there a way to create a favourite selections for the slider/inputs that I want to save in my save solutions?
Also, as I am saving different solutions with different name, would be awesome if I can rearrange them manually, currently there is no way I can rearrange them unless I recreate the whole solution save process with the right order, which is a nightmare already to think of it.
Can someone please shed some light?
If there are no apparent solutions, is there a way where i can save all the sliders/ inputs are one input so that I can just tick only one when im saving my solution?
Is there a way where I have a bunch of definitions in my GH to work as one definition? Something along that line? I'm trying to save time doing the labour intensive ticking and unticking during the save solution.
…
nent (new feature in the latest version) to read in the contents of this file. this gets activated everytime the file is updated. The parameter 0 to 1 relates to the normalised position of the mahining line, ie 0=start, 1=end. The tool is then dispatched to the appropriate x,y,z location along the tool path line.
Regards
WT4…
nce I'm not sure what you're actually looking to do with this, its hard for me to suggest any other options. What I would consider is trying to find a way to organize those segments so that you could then access them in some sort of logical manner. Beyond that I don't know what to suggest here.…
ype. Also you can type _UseExtrusions at the command line and it will let you use extrusion objects or polysurfaces. You can also create a lightweight plane by extruding a line. So far they work transparenetly in Rhino V5 for the most part and you can use the regular selection methods on them or the specialized command _selextrusion
RM…
cremental amont
then calling itself again...
http://www.grasshopper3d.com/forum/topics/recursion-error-in-rhinoc...
-Have a look at davids definition and comments
( 20101030_Elliptical_Rotation.ghx)…
Added by Madu Mohan at 8:44pm on November 13, 2010
double-curved.
It will still unroll to a straight strip, but it may not be quite the surface you are looking for. See yellow line in image below for correct loft line example:
…