Jump to content

Recommended Posts

Hello guys,

 

I want to 3d print a part of my project, with an online service such as shapeways or 3dhub. Whats the correct way to do that?

 

I just export the BRep to a .stl file? Or should I first "translate" the BRep to a solid or something?

 

My closed BRep will be "understood" as a solid? (As I hope). Or it will print as walls with an empty filling?

 

Cheers!

 

Xavier

Share this post


Link to post
Share on other sites

Hi Xavier,

 

Exporting the brep as STL should be fine. You can import again your STL into CAESES to check whether everything is ok.

 

Cheers

Joerg

Share this post


Link to post
Share on other sites

Xavier

 

Stl does the trick as Joerg mentioned.

Personally I already 3D printed some stuff with Caeses.

I have the experience that it is way easier to control the tesselation with breps than with a solid a tesselation object. So you can control the 'triangle' size in the breps. Here under are the parameters I adjust:

 

 

.setAngleToleranceInDegrees(AngleTolRough)

.setChordHeightTolerance(ToleranceRough)

.setMax3DEdgeLength(MaxEdgeRough)

 

as you can see that the part of the 3D printed model that had the above parameters could be done with rough (large) triangles. The AngleTolRough and other parameters are defined globally.

When I combine all my different parts in a brep with a boolean 'union' operation. Don't define any of the above mentioned parameters or you will overwrite them for the whole brep.

 

Load this brep as a source for a solid. Do some post processing ( e.g. delete too small triangles, etc etc). Use this solid afterwards to be exported to an stl.

 

I did some printing and this method worked nicely. I used half of the precision of the printer as a maximum value for the Max3DEdgeLength. The ChordHeightTolerance is the tolerance it can deviate from the mathematical place, I used 0.1*precision of the printer. The angelToleranceInDegrees is the maximal angle whish is allowed between two triangles, which I take as 10 degrees.

You'll see that the Max3DEgdeLength will reeeaaaally make your stl file large :).

 

Hope my reply wasn't too late :).

 

B

Share this post


Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

×
×
  • Create New...