,cnc machinist,cnc manufacturing,cnc mechanic,cnc mill,cnc milling center,cnc milling companies,cnc milling tools,cnc parts,cnc plasma cutter,cnc plasma cutting,cnc plasma table,cnc production,cnc router table,cnc screw machine,cnc service,cnc swiss,cnc turning,cnc turning center,cnc turning centers,cnc vertical lathe,horizontal cnc,how to cnc machine,machining cnc,manufacturing cnc machines,okuma cnc,plasma cnc machine,production cnc machining,troubleshooting cnc machines,used cnc machine tools,used cnc milling machines,vertical cnc lathe,what can a cnc machine make
This topic is an introduction to the Kangaroo plug-in for Grasshopper. Kangaroo is a set of Grasshopper components for form-finding, physics simulation, and geometric constraint solving.Installation
Kangaroo is fantastic - but it is something of a moving target. It's under development and has gone through a total rewrite. The new version, which is a huge step forward, still is assisted in some definitions with the earlier version. So, as of this writing (11/2016) you still want to install both. This will give you the ability to explore the largest set of sample files.You can download the various versions of Kangaroo here:
http://www.food4rhino.com/app/kangaroo-physics#downloads_list
Grab both the latest version, currently 2.14, and the earlier 0.099. Then follow the installations instructions in each Zip file:
With Kangaroo installed you are ready to build some definitions. As an easily accessible reference here's the Kangaroo PDF Help File.
First Example - Project to Plane
As a first example let's look at simply moving a set of vertices onto a plane. You don't need Kangaroo for this - because you can do it in Rhino. But it's a good example to get going and explain some basics.The first two components on the left, Box 2Pt and Populate 3D define a box and populate it with random points.
There are two Kangaroo components in this definition. One is a Goal and the other is the Solver.
The goal in this case is OnPlane. This moves a point to a given plane (and keeps it there). If you supply many points they are all pulled down to the plane. There are many goals supplied by Kangaroo. In general they take the current position of some points and output some target positions it "wants" the input points to move to. You can supply as many goals as you like and Kangaroo will adjust the points in order to meet all the goals.
The other component here is the Kangaroo Solver. This is the one which collects all the goals and solves the system. It outputs the "solved" vertex locations. In this particular example it outputs the points as moved to the plane.
There is also a Button component wired into the Reset socket. This resets the system and begins solving it again. The solver automatically runs over and over until it converges at a solution. Then it stops automatically. In some cases, such as this simple example, it converges so fast it stops immediately. That's because it can be mathematically calculated to instantly move points onto a plane. Other kinds of goals take iterations. For example making connected polygons all planar. That's an example we'll look at later - it often takes a few seconds to converge to a solution. Because the solver loops over and over converging towards a solution you can see it gradually solve the system.
In the simple definition above the Vertices output from the solver are wired into a Delaunay Mesh component which generates a mesh between all the points. If you press and hold the Reset button you'll see the mesh drawn through the original points. When you release the button the system is solved and the mesh is drawn through the planar points.
Meshed points before solution
Meshed points after being moved onto the ground plane
Catenary Mesh
This definition is slightly more complex but is much more useful. It's a form finding technique used to generate structures in pure tension or compression. The term catenary refers to a curve formed by a string, or chain hanging freely from two points and forming a U shape.
This can be expanded to process the vertices of a mesh into a three-dimensional form:
The definition operates on a mesh. In this example the start mesh is a rectangular grid as seen on the ground plane. Shown above it is the resulting catenary form as generated by Kangaroo:
The definition is below. Download Here.
It has three goals:
You can bake the O output of the Solver. This generates the set of lines of the form. You can use the Weaverbird Mesh From Lines component to create a Rhino mesh. Then use other tools such as Rhino's OffsetMesh command to turn the result into a mesh solid suitable for 3D printing or rendering.
This basic definition can be modified to use your own mesh. Here's an example of using a few tools to build a base mesh.
Use the Rhino menu Mesh > Polygon Mesh Primitives and choose something like a Truncated Cone.
Explode that mesh and delete the top and bottom faces:
Use the ProjectToCPlane command make the mesh flat: Mirror the mesh and Join it together into one.
Press F10 to turn on the mesh vertices, then select two and use the Gumball to scale them with a value of 0. Do this for both side:
You can use the MeshRepair command to weld the mesh together, leaving only the outside edges as naked.
This mesh can be wired into the definition. It works nicely with Weaverbird to subdivide the mesh prior to running. More information on LunchBox and Weaverbird can be found in Working with Meshes in Rhino and Grasshopper.
This results in a structure like this:
When you Bake the output of the Kangaroo Solver is only lines. It doesn't output a mesh.
To convert it to a mesh you can use a Curve component to collect the lines then the Weaverbird Mesh From Lines (Weave Back) component to generate the mesh:
If you bake the output of the Mesh From Lines you'll get a proper Rhino mesh.
By using a few anchor points on triangle meshes you can experiment with a surface that behaves a little like bending fabric. You can make a few Point entities that are snapped onto the mesh vertices. Kangaroo will find the matching mesh verts and anchor those. If you add the Grab component you can pull the points interactively to shape the form.
Here's the definition. Download Here. You can download a sample Rhino 3dm file here.
By holding the Alt key down and dragging on vertices in the mesh you can pull them:
Another use for tensile forces is to smooth, or relax meshes. The second definition in the above file does that.
These work best with Quad meshes - meshes composed of four sided polygons rather than the triangle meshes normally generated by Rhino. As of this writing (11/2016) if you are using the Rhino 6 WIP you can use the QuadMesh command to generate these from polysurfaces. Otherwise I'd recommend using a better quad mesh modeler like 3ds max, Maya, modo or ZBrush.
The original mesh is subdivided using Weaverbird. In this case using Catmull-Clark. The Weaverbird Join Meshes and Weld component makes sure there are no duplicate edges. The Weaverbird Mesh Edges component will output all the edges. These are wired into a Line component to ensure sure they are line entities. Then the Curve Length, multiplied by a factor, is wired into the Length goal (of Kangaroo).
The Weaverbird Naked Boundary component outputs all the open edge curves. These are Exploded then using the End Points component the start point of the lines are found. These become Anchor goals. By altering the strength of the anchor goal the form can remain closer to the original mesh or highly relaxed as shown below.
This can be expanded to process the vertices of a mesh into a three-dimensional form:
The definition operates on a mesh. In this example the start mesh is a rectangular grid as seen on the ground plane. Shown above it is the resulting catenary form as generated by Kangaroo:
The definition is below. Download Here.
It has three goals:
- Anchor: This will keep a point in its original location. This is used to lock the corners of the mesh in place.
- Length: This goal tries to keep two points (line endpoints) at a given distance form each other. With a higher Strength specified the points move less.
- Load: This goal applies a force to the points. The force is specified as a vector and the length of the vector is the magnitude of the applied load.
You can bake the O output of the Solver. This generates the set of lines of the form. You can use the Weaverbird Mesh From Lines component to create a Rhino mesh. Then use other tools such as Rhino's OffsetMesh command to turn the result into a mesh solid suitable for 3D printing or rendering.
This basic definition can be modified to use your own mesh. Here's an example of using a few tools to build a base mesh.
Use the Rhino menu Mesh > Polygon Mesh Primitives and choose something like a Truncated Cone.
Explode that mesh and delete the top and bottom faces:
Use the ProjectToCPlane command make the mesh flat: Mirror the mesh and Join it together into one.
Press F10 to turn on the mesh vertices, then select two and use the Gumball to scale them with a value of 0. Do this for both side:
You can use the MeshRepair command to weld the mesh together, leaving only the outside edges as naked.
This mesh can be wired into the definition. It works nicely with Weaverbird to subdivide the mesh prior to running. More information on LunchBox and Weaverbird can be found in Working with Meshes in Rhino and Grasshopper.
This results in a structure like this:
When you Bake the output of the Kangaroo Solver is only lines. It doesn't output a mesh.
To convert it to a mesh you can use a Curve component to collect the lines then the Weaverbird Mesh From Lines (Weave Back) component to generate the mesh:
If you bake the output of the Mesh From Lines you'll get a proper Rhino mesh.
Tensile Forces
Similar to the example above, but not using a Load, you can explore some tensile forces on meshes.By using a few anchor points on triangle meshes you can experiment with a surface that behaves a little like bending fabric. You can make a few Point entities that are snapped onto the mesh vertices. Kangaroo will find the matching mesh verts and anchor those. If you add the Grab component you can pull the points interactively to shape the form.
Here's the definition. Download Here. You can download a sample Rhino 3dm file here.
By holding the Alt key down and dragging on vertices in the mesh you can pull them:
Another use for tensile forces is to smooth, or relax meshes. The second definition in the above file does that.
These work best with Quad meshes - meshes composed of four sided polygons rather than the triangle meshes normally generated by Rhino. As of this writing (11/2016) if you are using the Rhino 6 WIP you can use the QuadMesh command to generate these from polysurfaces. Otherwise I'd recommend using a better quad mesh modeler like 3ds max, Maya, modo or ZBrush.
The original mesh is subdivided using Weaverbird. In this case using Catmull-Clark. The Weaverbird Join Meshes and Weld component makes sure there are no duplicate edges. The Weaverbird Mesh Edges component will output all the edges. These are wired into a Line component to ensure sure they are line entities. Then the Curve Length, multiplied by a factor, is wired into the Length goal (of Kangaroo).
The Weaverbird Naked Boundary component outputs all the open edge curves. These are Exploded then using the End Points component the start point of the lines are found. These become Anchor goals. By altering the strength of the anchor goal the form can remain closer to the original mesh or highly relaxed as shown below.
Circle Packing
This definition is a simple example that uses the SphereCollide Kangaroo component to pack circles onto a surface. The circles can be offset and extruded to achieve an effect similar to the one below. Note that in this definition all the circles have to be a uniform size. That's because the SphereCollide component is optimized for that condition.Pavilion made of cardboard hoops by students at ETH, Zurich, Switzerland
Here's the definition. Download Here.
Here's the same surface with 120 circle:
Here's a sample surface with 1000 circles:
You can add a few components to get a 3D effect. First each circle is offset using the Offset Curve component. The extrusion process is achieved by using the Weave component to create a list with a circle followed by its offset. So the list is doubled in length. But it runs in pairs of circles. The next component is Partition. That breaks up the list into a tree - where each branch contains a pair of inner and outer circles. Then Boundary Surface is used make a surface for these which contains the hole in the center. This is then Extruded along the normal of each circle pair. The Amplitude component lets you set the thickness.
Planarize Hexagons
This definition will take a surface, panel it with hexagonal cells, and attempt to planarize each cell. The process of taking a surface, paneling it and making it ready for fabrication is called rationalizaion. One of the nicest methods is to planarize the panels. They can then be easily manufactured from sheet goods (for example plywood).Here's an example that used planar panels and robotic fabrication for the edge joints.
Landesgartenschau Exhibition Hall / ICD/ITKE/IIGS University of Stuttgart
Here's the entire definition. Download Here.
This definition relies on LunchBox for the initial hexagon paneling. It generates a flat list of hex cells.
The next section gets things ready for planar paneling solving. The Explode component breaks each cell into individual segments. The output is a tree. The End Points component output start or end points of each segment. In this case we are only worried about the start points.
- CoPlanar: Pulls a set of points towards their best fit plane. This can act on any number of points.
- ClampLength: Keeps the distance between 2 points between the specified limits, but applies no force when the distance is within these limits.
The start points are wired into the CoPlanar goal.
We need to limit the amount the segments are allowed to move. This keeps the segments all reasonably sized relative to one another. This is done by using the Curve Length and Average components to generate the average length. These are divided by constants 0.4 and 2.0 to set lower and upper length limits.
If the Kangaroo Solver is able to solve the system it outputs the planarized curves. The Boundary Surface component is then used to surface these polygons. The Is Planar component is used to check if the surfaces are indeed planar. It outputs True for all the surfaces which are; otherwise False.
It's important to note that not all surfaces cannot be paneled with planar cells - it simply doesn't work geometrically. But this definition is remarkably successful.
When the surface is anticlastic (as indicated by negative Guassian curvature using the CurvatureAnalysis command in Rhino) the hexagons will look more like bowties as seen above and shown below:
In this example the surface is entirely synclastic and all internal panels are hexagons - although some have very shallow angles and are nearly rectilinear.
General Links to Forums and Component Code
Here's the main discussion forum for Kangaroo topics. This is a great source to find the latest definitions posted by Daniel Piker.http://www.grasshopper3d.com/group/kangaroo
Here are some videos by Daniel Piker using Kangaroo:
https://vimeo.com/album/199263
Here's the source for additional examples:
http://www.grasshopper3d.com/group/kangaroo/page/kangaroo2-additional-examples