Menu
RenderGuide.com
  • About
RenderGuide.com
Blender 3D Printing

Blender 3D Printing [2022]

This Blender 3D Printing Tutorial explains how to prepare your Blender models for 3d printing and how to fix appearing issues during that process.

3D Printing is modern technology that keeps on growing and becoming more popular each day. Blender is a free 3D modeling tool that allows creating objects for printing and to transform existing meshes. So it is a very fitting tool for 3D printing, that is why we will explain how you can handle this using Blender.

Blender 3D Printing Preparations

I am going to be using this chess pawn model that I made. It consists of two objects: the top and the bottom of the pawn.

blender 3d printing scene

Let’s prepare this object for printing and make all necessary changes to it. Firstly – modifiers. There should be no modifiers applied to an object. When exporting, they should apply automatically, but I would recommend you to apply them beforehand, so it would be easier to work with the mesh.

Both my objects have a Subdivision Surface modifier on them, so I just need to apply it.

blender 3d printing subdivision

After this, it would be a good idea to look at the polycount. You can see the exact numbers if you turn on the statics setting in the overlays.

blender 3d printing statistics

You can see that I have quite a lot of polygons. Both in numbers and on the mesh itself – a lot of faces can be seen. Generally, there is no need for so many. Simply because in the end, an object would be very small and such small details basically can’t be produced on the 3D printer anyway. So I would lower the polycount.

Yes, I could have just decreased the Subdivision Surface Modifier, but you can be in a situation when this is not possible, so what should you do? I will recommend you to use the Decimate modifier. 

blender 3d printing decimate

Using it, you can easily lower the polycount without changing the shape of an object too much. For example, I have managed to lower the number of faces 20 times and the object still looks almost the same. It would not make any difference on the printed result too.

Next – you need to connect everything. There should only be a single object on the scene and nothing more. In my case, there are clearly two – so this needs fixing. 

A simple solution would be to just join these two objects and that is it. But this won’t work, because with the X-ray we can see that the top and bottom of an object overlap – the sphere is inside the base. 

blender 3d printing overlap

This is bad and you should at all costs avoid situations like this. Your printer will try to print it like this and it would not be good. So what should you do instead is use the Boolean modifier on the Union setting.

blender 3d printing boolean

It will automatically connect two objects into one and delete all of the overlapping faces. So it should create a single object without any overlapping. On the screenshot, we can see that the sphere does not have faces inside the base anymore.

blender 3d printing overlapping

3D Printing Add-on – Your Best Friend

A very important thing that you need to know before proceeding any further is the 3D Printing add-on. It is an immensely useful tool that will help us in preparing an object for 3D Printing.

To activate this add-on, all you need to do is to find it in the Add-ons section of the Preferences menu and turn it on.

blender 3d printing add on

To then access this add-on, you need to open a side panel in the viewport and find it there. 

blender 3d printing analyze

Using the add-on we can check if the mesh is ready for exporting, see what problems it has, and even can help you to fix these problems. In the end, you can use the add-on to export the object too.

Fixing Mesh for 3D Printing

Before 3D printing, we need to make sure that the mesh is ready and will be printed without problems. This is where the 3D-Print tool comes to help us. It can automatically try to find any problems with the mesh that we have, just click on the Check All and it will tell you:

blender 3d printing analyze tool

In the Result we see that mesh has some problems, so let’s see them and try to fix them. By the way, in the Edit mode, these results are selectable. After clicking on them – it will even automatically select the faulty faces/edges/vertices.

blender 3d printing non manifold

As you can see, Non-Manifold edges are edges that are not connected into faces and thus they make “holes” in the mesh. All I need to do here to fix them is to Fill these edges.

blender 3d printing non manifold edge

Next is the Bad Contiguous Edges problem. It happens when there is a problem with Normals orientation. So if your normals are not how they are supposed to be – you will see this error.

It also can be a very noticeable problem even without the add-on. Here is how it can look:

blender 3d printing bad contiguous edges

This is a very easily fixed problem. You can select the whole object and go to the Mesh > Normals > Recalculate Inside. This will recalculate everything and is supposed to fix the problem.

blender 3d printing recalculate normals

Or you can do this manually, by selecting the problematic faces and selecting the Flip option in the same Normals settings. This will flip normals only for selected faces.

blender 3d printing flip normals

Next, we have Intersect Face. It is when you have overlapping geometry – it is the problem that I explained and fixed at the beginning of the tutorial. So remember to use the Union Boolean instead of joining objects and that is it.

After that are Zero Faces and Zero Edges. They are faces and edges that can be considered “too small”. As I said, there is no need for high-poly models, because it would not print all these polygons anyway. 

So these two results say to us that there are these kinds of small faces. They are not the problem and it will print normally even with them, but it can be a good idea to look at them closer.

blender 3d printing zero faces

So add-on tells me that these faces are problematic. So maybe I would want to Decimate it again to fix this problem. But it is important to understand that this is a suggestion, not a requirement. You can leave it as is and it should be fine.

Though I listened to this advice from the add-on and decimated a bit more. Now I have no zero edges or faces. 

blender 3d printing zero edges

We still have a Non-flat Face. As it comes from the name, it is a face that is not flat, which should not be possible in real life. Thus, a problem.

blender 3d printing non flat face

Here is this face. It may be hard to see on a screenshot, but it is not flat. Some vertices are further than others, which creates a bend, which should not be possible. You can fix this by manually moving vertices around or by turning this n-gon into two triangles by adding an edge.

This can be done either manually by selecting vertex and connecting them with the Blender tools.

blender 3d printing connect vertex

Or this also can be done by selecting this face and using the add-on’s Clean-up section to do the same thing I just did, but automatically.

blender 3d printing clean up

Thin Faces and Sharp Edge should be pretty self-explanatory. The first one is when you have a thin face without any support. This means that this part of the object can’t exist in the real world.

And the Sharp Edge is when there are edges that create a too sharp shape. Most likely, it could not be printed like this, so you need to either manually fix it or add a bit of detail, like subdivision, to this place.

Lastly, we have Overhang Faces. These are faces that are hanging above the ground at the angle of 45° or higher.

blender 3d printing overhang faces

Parts of the object like this will probably fall, when being printed. This is just how gravity works. But worry not, because it is not a big problem. All you need to do is to add supports. Doing this manually in Blender would be difficult and I don’t recommend anyone doing it. But there is plenty of third-party software, where you can import this object later and add supports much easier. Probably even with a single press of a button. For example, the FreeCad, which is, well, free.

We are done with Analyzing an object, but it is not yet ready to be printed. One more thing you need to do is scale it, so it will fit your 3D printer device. And again, the 3D-Print add-on helps us with this, as it has a Transform section.

blender 3d printing scale

Here you can scale the selected objects in Volume and in Bounds. So, for example, I know that my printer can print objects only up to 0.5 meters in length. Using Bounds transform, I can set this value and it will automatically change the object, so it would fit. 

blender 3d printing scale to bounds

After this, it would be a good idea to again analyze the object with the add-on to make sure that everything scaled fine. Though there may be a lot of new Zero faces, but don’t worry as I previously said – it is not a requirement to fix them. Just because you made an object much smaller, it now considers a lower value as the threshold for the Zero Face.

Daz3D Figures That You Can Print

In addition to Blender articles, we also make ones about Daz Studio – another free 3D Design software. One of the big things about Daz3D company is the very diverse marketplace that they have. There you can find a lot of interesting figures that you may want to 3D print. And as Daz Studio is free and there is a Daz to Blender Bridge free add-on – it is possible to do this easily. 

For example, you can get a Sci-Fi Gravity Suit Outfit for Genesis 8 and 8.1 Males by Yura. It can be applied to a figure that is built-in in the program. So, in the end, you can have a very nice sci-fi figurine.

blender 3d printing sci fi gravity suit

Source Sci-Fi Gravity Suit Outfit for Genesis 8 and 8.1 Males by Yura

Or you can just get a model of a lion – Felidae by AM – Lion. It is a very nice and detailed model of a realistic lion.

blender 3d printing felidae by am

Source Felidae by AM – Lion

Also there you can find bundles like Monsters and Wheels Bundle

Monsters and Wheels Bundle by Daz Originals. By getting this one product, you will receive a lot of different stuff, such as characters, monsters, poses, outfits, and vehicles. All of which can be printed and used as awesome figures.

blender 3d printing wheels bundle monsters and wheels

Source Wheels Bundle

Monsters and Wheels Bundle by Daz Originals

Conclusion – Blender 3D Printing

After everything is done and the add-on does not see any major problems in your object – you can export it using regular Blender exporting or the add-on tool. Then it is a matter of adding supports and printing an object.

blender 3d printing export

Receive our latest 3D Tutorials and 3D Model Reviews when they come out.

RenderGuide.com

RenderGuide.com is the place to find the Best 3D Models, learn 3D rendering with our step by step Daz3D Tutorials as well as our detailed Blender Tutorials. Take a look around and we hope you find some great inspiration for your next creative render projects.

Categories

  • 3d Models
  • Blender Tutorials
  • Daz3d Tutorials
  • Popular Posts

Popular Posts

  • how to use daz3dHow to Use Daz3d: Daz Beginner Tutorial [2022]
    This is a tutorial article. ...
  • best office 3d models6 Best Office 3d Models [2022]
    Check out the best office 3d ...
  • what is daz3dWhat is Daz3d: An Introduction to Daz Studio
    This article answers ...
  • house 3d model8 Best House 3d Models [2022]
    Are you seeking the best ...
  • dazd depth of fieldDaz3d Depth of Field: How to Use it
    This article explains ...
  • daz studio animation tutorialDaz Studio Animation Tutorial: Step by Step
    This article is a dedicated ...
  • daz3d iray lighting tutorialDaz3d Iray Lighting Tutorial
    This Daz3d Iray Lighting ...
  • 11 Best Car 3d Models [2022]
    What car 3d model do you want ...
  • daz3d render settingsDaz3d Render Settings: Basics & Tips
    In this article we are going ...
  • Daz dForce: Basics, Tutorials & More
    Daz dForce is an exclusive ...
  • how to install daz studioDaz Install Manager DIM vs DazCentral vs Daz3d Man…
    This article how to install ...
  • what is daz3d used forWhat Is Daz3d Used For?
    What is daz3d used for or may ...

Free 3d Models

Join our Newsletter

Renderguide Newsletter
  • Legal Notice & Affiliate Disclaimer
  • DMCA Notice
  • Privacy Policy
©2022 RenderGuide.com
We use cookies on our website to personalise your experience, to analyse website usage and for ad purposes.
In case of sale of your personal information, you may opt out by using the link Do not sell my personal information.
Read MoreCookie settingsACCEPT
Privacy & Cookies Policy

Privacy Overview

This website uses cookies to improve your experience while you navigate through the website. Out of these cookies, the cookies that are categorized as necessary are stored on your browser as they are essential for the working of basic functionalities of the website. We also use third-party cookies that help us advertize, analyze and understand how you use this website. These cookies will be stored in your browser only with your consent. You also have the option to opt-out of these cookies. But opting out of some of these cookies may have an effect on your browsing experience.
Necessary
Always Enabled
Necessary cookies are absolutely essential for the website to function properly. This category only includes cookies that ensures basic functionalities and security features of the website. These cookies do not store any personal information.
Non Necessary
Any cookies that may not be particularly necessary for the website to function and is used specifically to collect user personal data via analytics, ads, other embedded contents are termed as non-necessary cookies. It is mandatory to procure user consent prior to running these cookies on your website.
Analytics
Analytical cookies are used to understand how visitors interact with the website. These cookies help provide information on metrics the number of visitors, bounce rate, traffic source, etc.
Performance
Performance cookies are used to understand and analyze the key performance indexes of the website which helps in delivering a better user experience for the visitors.
Advertisement
Advertisement cookies are used to provide visitors with relevant ads and marketing campaigns. These cookies track visitors across websites and collect information to provide customized ads.
Save & Accept