Showing posts with label mesh repair for 3D printing. Show all posts
Showing posts with label mesh repair for 3D printing. Show all posts

Working with Meshes in Rhino and Grasshopper

This posts discusses creating, modifying, smoothing and troubleshooting meshes in Rhino and Grasshopper. It also presents a number of plug-ins very useful in dealing with meshes. These are Weaverbird and Lunchbox

Mesh Overview

A mesh is a collection of vertices and polygons that define the shape of an object. Meshes in Rhino consist of triangles and quadrilaterals.

Rhino creates triangles and quadrilaterals meshes for export into various file formats. If a mesh is generated from a solid, the mesh will be seamless/watertight.

You can convert between NURBS objects and Meshes using the Mesh command:
Mesh (from the pull-down menus: Mesh > From NURBS Object). You have control over the detail, and thus smoothness, of the mesh. 

In the example below a NURBS object is shown at the left. To the right are three mesh representations of the same object. Each has a different resolution or face count. The first mesh to the left is low resolution and will have a faceted silhouette. The mesh to its right is quite high resolution and is smooth, but not as smooth as the NURBS surface. The example on the far right was created from the mesh to its left by running a face reduction algorithm.

You can reduce the complexity of a mesh object by using the ReduceMesh command:
ReduceMesh (Mesh > Mesh Edit Tools > Reduce Mesh)

Finding Mesh Problems

A common use for meshes is 3D printing. The printers require a mesh rather than a NURBS surface or polysurface. 3D printers can be quite fussy about the meshes they need. Essentially they need to be closed – no holes, with no extra faces present. Rhino provides tools to analyze NURBS objects and Meshes to find problems.

ShowEdges (Analyze > Edge Tools > Show Edges)
This command is particularly valuable as it shows what are know as “non-manifold edges” and “naked edges”. To 3D print you can’t have either of these issues.

Naked Edges: A naked edge is a surface, polysurface or mesh edge that is not connected to another edge. Solid objects have no naked edges.

In the example below two faces are missing. The edges of the holes are not connected to another edge and are thus naked.

To fix this problem you could use the FillMeshHoles command (Mesh > Mesh Repair Tools > Fill All Holes).

Non-Manifold Edges: Edges of polysurfaces or meshes that have more than two faces joined to a single edge are non-manifold.

In the example below a mesh object has an internal face spanning the center.

The edge in the middle of the yellow faces below is shared by three faces and is thus non-manifold.

The same is true for every side of the box because the internal face touches every side.

The internal face can be deleted to fix the problem. To do so use the DeleteMeshFaces command (Mesh > Mesh Edit Tools > Delete Mesh Faces). 

Rhino also has a Mesh Repair command. This functions like a wizard to guide you through the process of finding and fixing mesh problems. With imported data this command can be quite useful to take a sloppy mesh and make it usable. 

Building Meshes in Grasshopper

This example shows the Grasshopper components which generate triangle or quad meshes. These simple examples constructs one or two faces as shown below.

This example uses the Triangle component and specifies three indices to the corners of the triangle. These are numbers which indicate which position in the vertex list is used by each corner. One triangle is built using indices 0, 1 and 2. The other is built using 2, 1 and 3. The order is important. They should be ordered so that when viewed from the top the go in a counterclockwise direction. This will result in the surface normal of the face pointing upward.

A quadrilateral face is built using the Mesh Quad (Quad) component. In this case it takes a vertex list of four 3D points and four indices into that vertex list.

The vertices are specified using a Panel component which is set to Multiline Data (available from the right-click menu on the Panel). Unless you use Multiline Data you'll get an error. Each vertex is the 3D coordinate in world space and appears on its own line:

It's also possible to generate meshes from a set of points. Here's a simple definition which does so using Delaunay Triangulation.

Below the Populate 2D (Pop2D) component is used to generate random points inside a rectangle. The the Delaunay (Del) component is used to generate a mesh using them as the corner vertices. This method of triangulation is designed to minimize the number of "sliver" triangles (long skinny triangles). Sometimes these are unavoidable, for example along the edges. These skinny triangles are not ideal for analysis software (for example when evaluating structural performance of a design). 


In the example below a Voronoi component is wired in to create the Voronoi pattern.

Here's the Voronoi tessellation shown in green:

A Voronoi pattern is the dual of the Delaunay triangulation. The dual of a triangle is constructed by taking its center point (shown in green below) and running a line through the midpoint of each edge (shown in gray). Connect the ends of these lines with the corners of the triangle. This results in a hexagon (shown in blue). This hexagon is the dual of the triangle. A Voronoi pattern does not necissarily have to be a six-sided cell (it is dependent on the triangles, their shape, and their position in the overall mesh).

Subdivision Surfaces

Subdivision surfaces allow us to get smooth meshes from any given input mesh. An excellent Grasshopper plug-in for this purpose is Weaverbird.

Subdividing Triangle Meshes

A good method of subdividing triangle meshes is the Loop algorithm developed by Charles Loop. The algorithm is simple: Each edge of each triangle of the source mesh gets a new midpoint added. A new triangle is built by connecting these midpoints to create 4 sub-triangles.

Each iteration of the algorithm approaches what's known as the limit surface (the surface that would result if the algorithm were run infinite times).

In this example we start with an Icosahedron on the left. Loop subdivision is done 1, 2, and 3 iterations moving left to right. The mesh gets smoother and approaches the limit surface.

Subdividing Quadrangular Meshes

The Catmull-Clark subdivision method is a good choice for subdividing quad meshes (it also works well on triangle meshes). This method adds new vertices for each face in an iterative manner resulting in a smoother surface.

In the example below the mesh on the left is subdivided. From left to right L=1, 2 and 3 were used. The Fixed Naked Edges method (S=0) was used on each which is why the edges are all straight.

In the example below S=1 was used to smooth the edges (allow them to move like a spline rather than being locked as straight lines). Again, L values of 1,2 and 3 were used.

A closer look at L=2 and 3 with Smooth (S=1) versus Fixed Naked Edges (S=0).

Picture Frames and Thickening

Weaverbird has some interesting tools to make "picture frames" from each face of a mesh. A hole is placed in the center of each face with a solid edge around it. When combined with a Mesh Thicken component some interesting frame structures can be generated.


This produces clean meshes with no naked edges or self-intersections.

This has obvious advantages over using the Pipe component and winding up with unresolved intersections.

There's another way of doing this - see 3D Printed Cytoskeleton Figure Sculpt. That example is a figure sculpture but the method applies to any mesh.

Converting Rhino Surfaces and Solids to Meshes in Grasshopper

There are two key components used to convert surfaces and solids (BReps in Grasshopper terminology) into meshes in Grasshopper. These are: Mesh Brep and Settings (Custom):

The BRep is the source geometry to convert. The Settings provide control over the details of tesselation. Sockets Max Edge, Max Angle and Planes are key parameters:
  • Max Edge: Maximum allowed edge length. 
  • Max Angle: Maximum allowed angle (in degrees) between the normals of two adjacent quads. 
  • Planes: Planar faces are meshed with a minimum amount of triangles. 
Some forms, for example a sphere mesh quite cleanly and in an organized way. Other forms are triangulated in far less obviously rational ways:


Planarity

Triangle meshes are always planar - each face is perfectly flat. This is not necessarily so with quad meshes.

You can use a simple definition like this to show which faces are planar.

The example mesh below had some of the vertices pushed inward resulting is several warped faces.

The Face Boundaries (FaceB) and the Planar components are used. FaceB creates polyline curves for each face. Planar returns a list of True or False values for each face indicating if that curve is planar or not. The Cull Pattern component is used to remove those faces which are not planar. Then the Construct Mesh command is used to create a new mesh using only the planar faces. The results are shown below. As you can see, the newly constructed mesh is missing the non-planar faces.

Lunchbox Paneling

The Lunchbox Plug-In contains a series of components for paneling using triangles, quads, and hexagons.






Generating Frames from Triangle Panel Surfaces

The following definition can be used a take a polysurface composed of triangular surfaces and generate a frame:

This example was paneled with Lunchbox Triangle Panel C (TriC) then run through the above definition. The result is a water-tight mesh.


Here's a definition which tessellates any polysurface by adding a new vertex in the center of each surface then building triangles out to the edges. These triangles are combined and unified into a new mesh. That mesh is then run through Loop subdivision, converted to thickened frames. Try it on Polyhedra from the Rhino Polyhedra plug-in :)


Export of Meshes for Import into Other Programs or 3D Printing

After generating meshes it's common to want to export them out of Rhino. There are a few file formats which work well. The STL format is one. This is a very common format for use with 3D printers.

Another useful mesh format is OBJ. OBJ typically is defined with Y up instead of Z. To export you can simply use the SaveAs... command then use the Save as type drop-down to select a format.

There is a checkbox for Rhino export to swap these so the files go out (or come in during OBJ import) in the correct orientation.


Meshes and Kangaroo Physics

Meshes are important when it comes to physics simulation. See this post - Kangaroo Physics Simulation for Grasshopper - for details on using Meshes with Kangaroo.

Working with Meshes in Rhino and Grasshopper

This posts discusses creating, modifying, smoothing and troubleshooting meshes in Rhino and Grasshopper. It also presents a number of plug-ins very useful in dealing with meshes. These are Weaverbird and Lunchbox

Mesh Overview

A mesh is a collection of vertices and polygons that define the shape of an object. Meshes in Rhino consist of triangles and quadrilaterals.

Rhino creates triangles and quadrilaterals meshes for export into various file formats. If a mesh is generated from a solid, the mesh will be seamless/watertight.

You can convert between NURBS objects and Meshes using the Mesh command:
Mesh (from the pull-down menus: Mesh > From NURBS Object). You have control over the detail, and thus smoothness, of the mesh. 

In the example below a NURBS object is shown at the left. To the right are three mesh representations of the same object. Each has a different resolution or face count. The first mesh to the left is low resolution and will have a faceted silhouette. The mesh to its right is quite high resolution and is smooth, but not as smooth as the NURBS surface. The example on the far right was created from the mesh to its left by running a face reduction algorithm.

You can reduce the complexity of a mesh object by using the ReduceMesh command:
ReduceMesh (Mesh > Mesh Edit Tools > Reduce Mesh)

Finding Mesh Problems

A common use for meshes is 3D printing. The printers require a mesh rather than a NURBS surface or polysurface. 3D printers can be quite fussy about the meshes they need. Essentially they need to be closed – no holes, with no extra faces present. Rhino provides tools to analyze NURBS objects and Meshes to find problems.

ShowEdges (Analyze > Edge Tools > Show Edges)
This command is particularly valuable as it shows what are know as “non-manifold edges” and “naked edges”. To 3D print you can’t have either of these issues.

Naked Edges: A naked edge is a surface, polysurface or mesh edge that is not connected to another edge. Solid objects have no naked edges.

In the example below two faces are missing. The edges of the holes are not connected to another edge and are thus naked.

To fix this problem you could use the FillMeshHoles command (Mesh > Mesh Repair Tools > Fill All Holes).

Non-Manifold Edges: Edges of polysurfaces or meshes that have more than two faces joined to a single edge are non-manifold.

In the example below a mesh object has an internal face spanning the center.

The edge in the middle of the yellow faces below is shared by three faces and is thus non-manifold.

The same is true for every side of the box because the internal face touches every side.

The internal face can be deleted to fix the problem. To do so use the DeleteMeshFaces command (Mesh > Mesh Edit Tools > Delete Mesh Faces). 

Rhino also has a Mesh Repair command. This functions like a wizard to guide you through the process of finding and fixing mesh problems. With imported data this command can be quite useful to take a sloppy mesh and make it usable. 

Building Meshes in Grasshopper

This example shows the Grasshopper components which generate triangle or quad meshes. These simple examples constructs one or two faces as shown below.

This example uses the Triangle component and specifies three indices to the corners of the triangle. These are numbers which indicate which position in the vertex list is used by each corner. One triangle is built using indices 0, 1 and 2. The other is built using 2, 1 and 3. The order is important. They should be ordered so that when viewed from the top the go in a counterclockwise direction. This will result in the surface normal of the face pointing upward.

A quadrilateral face is built using the Mesh Quad (Quad) component. In this case it takes a vertex list of four 3D points and four indices into that vertex list.

The vertices are specified using a Panel component which is set to Multiline Data (available from the right-click menu on the Panel). Unless you use Multiline Data you'll get an error. Each vertex is the 3D coordinate in world space and appears on its own line:

It's also possible to generate meshes from a set of points. Here's a simple definition which does so using Delaunay Triangulation.

Below the Populate 2D (Pop2D) component is used to generate random points inside a rectangle. The the Delaunay (Del) component is used to generate a mesh using them as the corner vertices. This method of triangulation is designed to minimize the number of "sliver" triangles (long skinny triangles). Sometimes these are unavoidable, for example along the edges. These skinny triangles are not ideal for analysis software (for example when evaluating structural performance of a design). 


In the example below a Voronoi component is wired in to create the Voronoi pattern.

Here's the Voronoi tessellation shown in green:

A Voronoi pattern is the dual of the Delaunay triangulation. The dual of a triangle is constructed by taking its center point (shown in green below) and running a line through the midpoint of each edge (shown in gray). Connect the ends of these lines with the corners of the triangle. This results in a hexagon (shown in blue). This hexagon is the dual of the triangle. A Voronoi pattern does not necissarily have to be a six-sided cell (it is dependent on the triangles, their shape, and their position in the overall mesh).

Subdivision Surfaces

Subdivision surfaces allow us to get smooth meshes from any given input mesh. An excellent Grasshopper plug-in for this purpose is Weaverbird.

Subdividing Triangle Meshes

A good method of subdividing triangle meshes is the Loop algorithm developed by Charles Loop. The algorithm is simple: Each edge of each triangle of the source mesh gets a new midpoint added. A new triangle is built by connecting these midpoints to create 4 sub-triangles.

Each iteration of the algorithm approaches what's known as the limit surface (the surface that would result if the algorithm were run infinite times).

In this example we start with an Icosahedron on the left. Loop subdivision is done 1, 2, and 3 iterations moving left to right. The mesh gets smoother and approaches the limit surface.

Subdividing Quadrangular Meshes

The Catmull-Clark subdivision method is a good choice for subdividing quad meshes (it also works well on triangle meshes). This method adds new vertices for each face in an iterative manner resulting in a smoother surface.

In the example below the mesh on the left is subdivided. From left to right L=1, 2 and 3 were used. The Fixed Naked Edges method (S=0) was used on each which is why the edges are all straight.

In the example below S=1 was used to smooth the edges (allow them to move like a spline rather than being locked as straight lines). Again, L values of 1,2 and 3 were used.

A closer look at L=2 and 3 with Smooth (S=1) versus Fixed Naked Edges (S=0).

Picture Frames and Thickening

Weaverbird has some interesting tools to make "picture frames" from each face of a mesh. A hole is placed in the center of each face with a solid edge around it. When combined with a Mesh Thicken component some interesting frame structures can be generated.


This produces clean meshes with no naked edges or self-intersections.

This has obvious advantages over using the Pipe component and winding up with unresolved intersections.

Converting Rhino Surfaces and Solids to Meshes in Grasshopper

There are two key components used to convert surfaces and solids (BReps in Grasshopper terminology) into meshes in Grasshopper. These are: Mesh Brep and Settings (Custom):

The BRep is the source geometry to convert. The Settings provide control over the details of tesselation. Sockets Max Edge, Max Angle and Planes are key parameters:
  • Max Edge: Maximum allowed edge length. 
  • Max Angle: Maximum allowed angle (in degrees) between the normals of two adjacent quads. 
  • Planes: Planar faces are meshed with a minimum amount of triangles. 
Some forms, for example a sphere mesh quite cleanly and in an organized way. Other forms are triangulated in far less obviously rational ways:


Planarity

Triangle meshes are always planar - each face is perfectly flat. This is not necessarily so with quad meshes.

You can use a simple definition like this to show which faces are planar.

The example mesh below had some of the vertices pushed inward resulting is several warped faces.

The Face Boundaries (FaceB) and the Planar components are used. FaceB creates polyline curves for each face. Planar returns a list of True or False values for each face indicating if that curve is planar or not. The Cull Pattern component is used to remove those faces which are not planar. Then the Construct Mesh command is used to create a new mesh using only the planar faces. The results are shown below. As you can see, the newly constructed mesh is missing the non-planar faces.

Lunchbox Paneling

The Lunchbox Plug-In contains a series of components for paneling using triangles, quads, and hexagons.






Generating Frames from Triangle Panel Surfaces

The following definition can be used a take a polysurface composed of triangular surfaces and generate a frame:

This example was paneled with Lunchbox Triangle Panel C (TriC) then run through the above definition. The result is a water-tight mesh.


Here's a definition which tessellates any polysurface by adding a new vertex in the center of each surface then building triangles out to the edges. These triangles are combined and unified into a new mesh. That mesh is then run through Loop subdivision, converted to thickened frames. Try it on Polyhedra from the Rhino Polyhedra plug-in :)


Export of Meshes for Import into Other Programs or 3D Printing

After generating meshes it's common to want to export them out of Rhino. There are a few file formats which work well. The STL format is one. This is a very common format for use with 3D printers.

Another useful mesh format is OBJ. OBJ typically is defined with Y up instead of Z. To export you can simply use the SaveAs... command then use the Save as type drop-down to select a format.

There is a checkbox for Rhino export to swap these so the files go out (or come in during OBJ import) in the correct orientation.



CNC CODE

5 axis cnc mill,5 axis cnc router,cad cnc,cc machine,cnc cutter machine,cnc cutting system,cnc definition,cnc equipment manufacturers,cnc fabrication,cnc lathe retrofit,cnc machine accessories,cnc machine automation,cnc machine business,cnc machine companies,cnc machine description,cnc machine maker,cnc machine news,cnc machine repair,cnc machine services,cnc machine shop,cnc machiner,cnc maching,cnc machining companies,cnc machining equipment,cnc machining parts

Labels

"7-Axis Robot" "Digital Fabrication" "Planar Polygons" "Rhino" "Rhinoscript" 2007. 2013 2014 2016 2d printing 2d to 3d 3-axis CNC 3-axis CNC Kit 30c3 3d capture 3d carving 3d cnc router 3d company 3d copy 3d display 3d drawing pen 3d model 3d piracy 3d print farms 3d print platform 3d print quality 3d printed 3d printed airoplane 3d printed airplane 3d printed buildings 3d printed car dashboard 3d printed car part 3d printed car parts 3d printed clothing 3d printed cyborg 3D Printed Figure Sculpture 3d printed food 3D Printed for in Ceramic 3d printed gun 3d printed machines 3d printed music instrument 3d printed music record 3d printed organs 3d printed parts 3D printed relief 3d printed rifle 3d printed robot 3d printed sensors 3d printed skateboard 3d printed toys 3d printed uav 3d printed vehicles 3d printed weapons 3d printer 3d printer accessory 3d printer crime 3d printer desk 3d printer eclosure 3d printer review 3d printer stand 3d printer table 3d printers comparison 3D printing 3d printing filament 3d printing in cement 3d printing materials 3d printing myths 3d printing on battery power 3d printing photographs 3D printing piracy 3D printing portraits 3d printing primer 3d printing systems 3d printing with carbon fiber 3d printing wood 3D printing ZBrush sculpts 3d printshow 3d puzzle 3d scanner 3d sensors 3d shaping cnc router 3d startup 3d systems 3d ui 3dea 3dMonstr 3doodler 3dPrinting 3dprintmi 3dprn 3dr 3dsimo 3ntr 4 Jaw Chuck 4-axis 4-axis CNC 4-axis cnc woodworking 4d printing 4th dimension 5 axis 5 axis cnc router china 5-axis 5-axis CNC 5-Axis CNC woodworking 5-axis router operating procedure 5d print d8 6 axis 7-axis robot 7512 abs abs juice acetal acetone acp cnc router acrylic acrylic board cut machine acrylic cut acrylic cutting activism adafruit Adafruit NeoPixel Strip adapto adobe advanced afinia africa Agilus Workcell Agilus Workcell Tutorial aio robotics air airbus aircraft airwolf3d alabaster aleph objects all-in-one aluhotendv4 aluminatus aluminum Amazon ampersand sign cutting AMRI amsterdam android animal antenna ao-101 app apple appropedia arburg archery Architectural Robotic Fabrication architecture architecutre hollow out. arduino Arduino Micro LED Arduino NeoPixels argentina armour arrow art artec artificial stone arxterra asia asiga astronomy atm australia austria Autodesk automation automotive b3 innovations baboi bacteria baddevices badprinter bag balance baluster process batteries beaglebone beams bebopr bed leveling bee Beer Caddies belgium Belle Kogan ben heck bendable bending bicycle big objects big printers bike biohacking bioprinter bitcoin blacksmith blade blade 1 blender blimp blind blizzident Block Delete blog blokify bluetooth board cut boeing bomb bone book Books boot Boring Cycle bottle bow bowden box bracets braille Bre Pettis bridging bronze brook drumm buccaneer build bukibot bukito bukobot burning man business busybotz buy china cnc router buy cnc router buy cnc router from china buy laser machine buy modillion carving machine buy router cnc bycicle parts cad calibration camera canada Canned Cycle canon car carbomorph carbon carbon fiber cardboard carmine cartesio cartouches carved architecture carving carving machine carving with gouges and rasps case cashier board cut casting Cathy Lewis cb printer ccc cell cellphone cellstruder central overhead elements. centrifuge cerajet ceramic ceramic tiles engraving cerberus CES ces 2012 CES 2013 ces 2014 ces 2015 cff chain maille chair chamber chart chefjet chemistry children china china cnc router china laser machine chipfuzer chocolate choose cnc router chopmeister chopper chris anderson Cincinnati circular platform clay clear figure sculpture clone closed loop cloud cnc CNC 4th axis CNC 5 Axis CNC Box CNC Coordintes CNC Corner Fix CNC cut acrylic figure sculpture CNC Cut Guitars cnc engraving machine. CNC Joints cnc mill CNC Rotary Axis cnc router cnc router aluminium cnc router art work cnc router copper cnc router cut acrylic cnc router factory cnc router foam cnc router importer CNC Router Kit cnc router manufacturer cnc router mdf cnc router modeling and prototyping cnc router mold cnc router packing CNC Router Parts Build CNC Router Parts Rotary Axis cnc router problem cnc router review cnc router type3 cnc router video cnc router work CNC routing file preparation CNC routing ZBrush CNC Tool Holders CNC Tools CNC walnut CNC Wood Joinery cnc wood router CNC Woodworking CNC Woodworking 5-axis Digital Fabrication Taubman College CNC Woodworking Sleigh Bed Digital Fabrication Tabuman College CNC-Woodworking co cody wilson coffee color changing filament colorfabb comic community company tour complex 3d print composite Composite Filament Fabrication concept concrete conductive ink consultancy Consumer Electronics Show contour crafting contouring Control control unit controller cool things to 3d print cooling copyright Corner Fix cosplay cost reduction cottle boards creaform creative commons Credit card fraud crime criminals croatia crowdfunding CT cube cubejet cubesat cubex cubify cubify invent cubify.com cups cura curaengine customized cut cut acrylic cutting cyberpunk Cycloidal Gyro Czech Republic d3d da vinci daily use dart gun data data matching tutorial data tree tutorial. dc motor decimation master deezmaker dell delta delta 3d printer delta forge deltaprintr demonstration denmark dental 3d printing desert design desktop 3d printing desktop cnc router desktop printer desktop production Developable Surfaces dglass 3d Digital Design digital fabrication Digital fabrication of figure sculpture Digital Fabrication Slip Casting digital figure sculpture Digital Portrait Sculpture Digital Sculpting Digital Sculpting Renders Digital Sculpting with Two Models Digital Woodworking dilbert disabled disney Display Conduit diy diy 3d metal printer diy 3d printing diy 3d printing companies diy science dlp dmls documentary double decker 3d printer Doubly Curved Surfaces dremel drill Drilling Cycle drivers DRM drone dual extruder dual extrusion duct tape duo e3d ecology economy edc education eff Egypt ejection electron beam electronics elon musk enclosure encryption energy generation engine Engraved Signs engraver engraving enrico dini environment envisiontec EOS epoxy EPS Foam EPS shaping ESA etching etsy euromold 2011 Euromold 2012 euromold 2013 euromold 2014 europe event eventorbot events evo exoskeleton experiment experimental 3d printing extended platform extruder eye glasses eyewear fabbot fablab fablab berlin fabtotum Face Grooving Cycle Facing Cycle fail fan fantasy figure Fanuc farm fashion Fasteners fdm Feed Rate felix festival fff fiberglass figulo. video Figure Sculpting in ZBrush figure sculpture in acrylic. filabot filaflex filament filament extruder filament winder filawinder Finishing Cycle finland fire firmware flexible flexible pla Flip cut flomio flower foam foam dart focus foldable food food safe foodini ford form 1 form 2 formlabs Formula foundry FRAC exhibition fractal frame framework France freed friction welding Front Drilling Cycle fuel3d fumes fun fundable furniture Furniture Design Future G Codes g-code G00 G01 G02 G02.1 G03.1 G07.1 G32 G33 G40 G41 G42 G70 G72 G73 G74 G75 G76 G77 G78 G79 G80 G83 G84 G85 G87 G88 G89 G90 G92 G94 gallium game gamechanger gaming Garage shop garage tool layout garden gartner ge gears geeks gemma geodesic geomagic germany gigabot github glass glass engraving cnc router glazing techniques glue gmax golemD google google glass gopro gpl granite Grasshopper Grasshopper attractor point Grasshopper data matching Grasshopper data trees Grasshopper Graph Mapper Grasshopper grids Grasshopper Image Sampler Grasshopper Light Painting Grasshopper Physics Simulation grasshopper planes tutorial Grasshopper tabs Grasshopper unroll tabs green guardian guerrilla gardening GUI guide Guitar Stand guitar stands gun magazines h-bot h480 Haas Vertical Mill hack hacking Hand carved rocking horse hand carving handheld handrail process haptic harvard Hass hbot hdpa health heat chamber heat gun heated 3d printing chamber heated build platform Helical Interpolation hexapod high strength HIPS history hollow out holograph Home Home CNC machine home manufacturing Home Shop CNC hot end hot glue Hot News hot to Hot-wire cutting hotend house household items how is china laser machine how is chinese cnc router how to HP humor huxley hybrid hype hyrel i2 i3 ice 3d printing idea lab ikea implant improv india indiegogo industrial industrial 3d printer infill infographic infrastructs injection molding ink inkjet 3d printer insects instructables instruction intel Intel Galileo intellectual property interior decoration interior decoration ceramic tiles interior design Interlocking Joint internet interview introduction to 3d printing Inventables ios ip ip rights ipad IR bed leveling irapid iron man Israel italy japan jet engine jewelry jinan laser jinan laser machine job jrx k8200 kai parthy kamermaker Kangaroo 2 Kangaroo 2 Catenary Kangaroo 2 Circle Pack Kangaroo 2 Planarize Kangaroo for Grasshopper Kangaroo Physics Kangaroo Tensile Forces kevlar key keyboard kickstarter kikai kinect kinetic sculpture kitchen cabinet process knife Korea kossel kossel air kraken Kuka PRC Kuka prc programming Kuka Robots KUKA|prc Kuka|prc sample l5 lamp large models large printer laser laser cut leather laser cutter laser cutting laser cutting foam laser cutting machine laser engraving machine laser machine laser machine sign laser machine video laser sintering lasercusing lasercut lasersaur latex lathe law lcd leap leapofrog leather led LED lights on figure sculpture leg lego lens lenticular printing letter cut letter cutting letter sign leveling leweb lewis LG liability library light bulb Light Painting Light Painting Stick limestone linear actuator Linear Bearings Linear Rails Linear Rails Upgrade link linux liquid Liquid Metal Jet Printing lisa lisa harouni lix lmd load bearing lock logo LOHAN london Longitudinal roughing cycle lost foam lost foam making lost foam mold making lost pla casting low cost low cost. LP lulzbot lumia lumifold lunavast lunchbox lyman lywood M Codes mach3 machine Machine Zero machinekit Machining machining wax madrid magazine magma magnetic filament magnets Mail (armour) maintenance make make magazine maker faire 2013 makeraser makerbot MakerBot Industries makerbotPLA MakerCon makerfaire makerfarm prusa makerslide makerware makible makibox making money with 3d printing maksim3d Malaysia mandel Manhattan manufacturer manufacturer video manufacturing map marble Mark Meier mark one mark34 market Marlin material materialise math plug-in mathematical object mathematics matsuura matterform Mazak mcor MDF Mebotics media medical applications of 3d printing medicine melamine mendel mendel90 mendelmax mendelmax 2 mesh related grasshopper plug-ins mesh related rhino plug-ins mesh repair for 3D printing meshes meshes in grasshopper meshes in rhino MeshUp metal 3d printing metal casting metal clay metal extruder metal filament metal hot end micro Microfactory microrax microscope microsoft MIG milestone military milkrap mill Milling mind interface mini cnc router miniFactory Mirror Image On / Off MIT mix MkMrA2 MkMrA2 shop mobile mobile 3d print control mobile factory moddler studios model quality modeling carving modification modillion carve modillion cnc router modillion engrave modillion engraving modillion machine modular mojo 3d printer mold molds molecule moon morgan mori motion motor motorola MRI mrrf MTU mug muli color multi color multi jet fusion multi materials multimod multiple guitar stands MULTIPLE REPETITIVE CYCLE Multiple Thread Cutting Cycle multitool museum music n nano nanobots nanoparticles NASA natural machines nature nerf gun nesting Netherlands new diy 3d printer new valence robotics new york newel post produce news newzealand cnc router nfc ninjaflex noisebridge nokia non cartesian Norway nozzle number cutting NV nyc nylon object Objet Objet Connex 500 octo extruder off topic office sign Offset Okuma Onsrud 5-axis router open sls open source open source 3d printer open source hardware openRail OpenSCAD optics optomec ordsolutions organic organic printing organovo orion ornament ornithopter os OS X otherfab othermachine othermill outdoor outdoor advertising p2p pandabot Panel Keys paper paper cut parametric parametric object by function parc Part Program partitioning partners past paste patent pbs pc pcb pcb milling Peck Drilling Cycle PEEK pellet pen people personal pet pet+ pets phantom desktop philips phoenix phone photo Photoformance photography photoshop pick and place pico piracy piratebay pirx PLA pla/pha plane components in grasshopper plant plasma cutter plastic mold plastic welding plasticine Plastics Plastics Overview play-doh plexy plotter plywood pocket poland polar polishing polyamide polycarbonate polyjet polypropylene polystyrene shaping polyurethane pongsat pop culture popfab porcelain poro-lay portabee portable 3d printer portable device portrait portrait sculpt portugal powder 3d printing power power supply precission cutter presentation preview price princeton print bed printhead Printrbot printrbot jr printxel problem problemsolving process products Profile turning Programmed Data Setting G10 project biped projet promotion prosthetic prosumer protoforge prototype prusa prusa i4 Publishing and Printing pump purse puzzle pva pvc pipes pwdr pypy python qr qu-bd quad extruder quadcopter quantum ord bot r360 Ra Ra radiant radio rail RAMBo RAMBo 1.2 ramps rapide raspberry pi re3d Recap recording Recreus recycling reddit relief sculpture repair repetier replacement part replacement parts replicator replicator2 reprap reprap wally reprappro repstrap resin retraction retro review RFID Rhino rhino math Rhino math plug-in Rhino meshes Rhino Nesting Grasshopper Sectioning Layout Rhino Python Rhino Python Scripting Rhino Python User Interface Rhino UI Rhino Unroll Rhino UnrollSrf Rhinoscript Rhombic Triacontahedron Fabrication; CNC Woodworking; 5-axis CNC richrap rings risk robo 3d robohand robot Robot Motion Study Robot Programming setup Robotic Digital Fabrication Robotic Light Paint Robotic Light Painting Robotic Motion Analysis robotic painting with light robots robox rocket rocking horse carved by hand ROFI rolls royce rostock rostock max rotary Rotating Model Stand Rotite rotomaak router rubber rubber band ruled surfaces russia safety sailplane Sainsmart sale samsung sand sand casting sander Sandvik Sanjay Mortimer satellite SAV scam scara school sciaky science screw sculpteo Sculpture Pedestals sea sectioning security sedgwick seed seemecnc selective laser sintering self assembly. sense sensor sensprout service servo setup KUKA|prc tutorial seuffer sf shandong laser Shapeoko shapeshop shapeways shapeways 3d printing sharing ship shoes shop Shop Built Side Table sieg siemens sign sign cut sign laser machine signage signature signing silicon silicone silk silver simpson Singapore single arm 3d printer singularity sintering Six-N-Sticks Skanect skimmer skull skylar tibbids sla slashdot slate slic3r slicer slip casting Slip Casting 3D Printed Objects slotted Slovenia sls smartphone smartrap Smoothieboard smoothing sneakey snowflake soapstone software soild concepts solar solder solid concepts solidator solidoodle solidoodle 2 solidoodle 4 solidus labs solution sony sound south africa space spaceX Spain spark speakers Spectrometer speed spider spin casting Spindle spoolhead sport spray 3d printing square carved rosettes Stack Lamination stair machine stair parts stair parts equipment stair parts processing stairparts machine Stamps School of Art & Design stanford star trek startups steampunk steel stepper stereolithography steve purdham stone stone carving store stratasys strength strong stuck students styrofoam block shaping styrofoam shaping subdivision mesh SubProgram success story sugar sugru suitcase sun Super Matter Tools support material surface surgery suspended deposition sweden swisspen Switzerland syringe table numbers cutting tablet tabletop tactile taiwan talk tangibot tantillus Tapping Cycle tattoo Taubman Colledge Taubman College Taubman college Agilus Workcell Taubman College FabLab taz 2 taz 3 taz 4 TED ted talks telescope temperature temperature measurement test testing textile the pirate bay theta thingiverse Thread threeform tiertime TIG tiger maple Tips Tips and Techniques titanium tool tool chain Tool Data Tool Nose Radius Compensation tools torrent Torus Knot Torus Knot Table touch touch x toy toyota TPE Transverse Cut-Off Cycle G75 trident trinitylabs trinityone trinket tu wien Turning turpentine tutorial tv Twist Table two color 3d printing type a machines Types of Plastic uav uformia UK ultem 2300 UltiController ultimaker ultimaker 2 ultimaker 3 ultrasonic unboxing university university of sauthampton unrolling up mini up plus 2 upgrade urethane USA usb user interface using a router to produce a ZBrush model using china cnc router uv 3d printing v-slot vader vapor velleman veterinary video vietnam viki lcd virtual reality virus visualization volumental voronator voronoi meshes voxeljet VR Vulture 2 vw Wallace Detroit Guitars wally Walnut Table wanhao warping wasp wasp 3d printer waste watch water water cooling wax way finding sign WCC CNC WCC NCT weapon wearable weaverbird web web app web interface wedding sign cutting wedding sign decoration cutting weistek Welding West Huron Sculptors what cnc router can do whiteant wideboy wifi wikiwep wind generator windows windows 8.1 Windows Keyboard Shortcuts windows mobile phone wire wire bender wired wireless 3d printing wobbleworks wood wood carving wood engraving wood frame 3d printer Wood Information Wood Joint Fabrication wood portrait Wood Species woodworking workflow working with planes in kuka|prc workspace x winder xeed xmass xt xyzprinting yale yeggi youth z axis zach hoeken ZBrush Basics ZBrush Decimation Master ZBrush Figure Sculpture ZBrush for Rhino users ZBrush Import and Export to and from Rhino ZBrush Portrait Sculpting ZBrush sculpting tutorial ZBrush Shaders Test ZBrush ZRemesher zeus zmorph zortrax китайский фрезерный станок с чпу фрезерный станок с чпу