5

I'm currently using FSL3d's RetinaCreate to prepare 3d-files for printing for research purposes. In this, I am relying on their Optimal Rotation feature which rotates the object by, as far as I can tell, judging models on their stability with regards to the printing direction. After rotating the model, supportstructures are generated to keep the model in place while printing without the bits and pieces floating about and to keep structural stability.

My question is, as I've neither found a manual nor any source-code (and admittedly I am terrrrrible at maths), how can I describe the kind of algorithm/logic used by the software here? This is essential for me, as I need to describe this in my research. Cheers, Jesse

  • Hard to say exactly what RetinaCreate is doing. You might try looking into other slicers and manipulation tools that might be documented better. Maybe MeshMixer has some info, for example. – Ryan Carlyle Aug 11 '16 at 21:14
  • It's closed source with no documentation available. This question is unanswerable bar by the makers of the software. – Tom van der Zanden Aug 12 '16 at 22:37

1 Answers1

3

Optimal rotation can be considered from different perspectives. For example

  • as little support as possible. This way app tries to orient object so as much surface as possible doesn't overhang and doesn't need support
  • bed only support. App tries to orient object so all overhanging parts can be supported directly from the heatbed (not from the object itself)

But have a look on Meshmixer as Ryan Carlyle suggested. In this app you can see 3 kinds of auto orientation procedures. Additionally Meshmixer can create angle support and tree-like support.

In terms of mathematics.

I cannot suggest any sources but you can imagine the way it calculates such optimal rotation. Let's say it will be dead simple explanation of the second approach:

Let's get all faces (facets) and let's project their center points on the "floor" (heatbed) or "ceiling". If imagined projection line slices any other faces then rotation is not optimal. App can calculate "a weight" of such orientation and then try to find the smallest weight of all possible orientations.

Of course it's not that simple. App has to manage concavity, which face requires support at all, and many other aspects but in general you can imagine the algorithm.

edit

  • "as little support as possible" could be considered as easier to imagine "as little shaddow as possible" and the problem can be simplified to projection and ray tracing

  • similarly "bed only support" could be simplified to "cast shaddows but not on itself"

darth pixel
  • 3,438
  • 1
  • 11
  • 20
  • This fails to answer the question in two ways: (1) the question is about resin printers (for which orientation considerations are quite different), not FDM (2) this is just speculation, not what the software actually does. – Tom van der Zanden Aug 16 '16 at 10:09
  • I was almost sure you will argue this way ;) and you are right in some way but he asked "how to describe..." and my answer tries to describe the way the app is doing it. Is it FDM or not - the principles are more or less the same. Maybe "floor" should become "ceiling" but it's still the same. I mean he asked more how it's done than how it's done in this particular app. – darth pixel Aug 16 '16 at 11:04
  • The principles are completely different for a resin machine. You don't care as much about the amount of support needed, but for instance, if you have a model with a large flat surface, you do not want that surface parallel with the build plate because it will be difficult to peel (but instead at an angle so the surface in contact with the build plate isn't as large each time). – Tom van der Zanden Aug 16 '16 at 12:28
  • Reading question literally I don't really feel the issue is a printer type dependant. jesbengradev hasn't mention it. According to my understanding of the question - he needs help to explain/describe algoritm in his research work. So he would like to understand and get principles of optimal rotation rather than apply to his application (especially to his printer). But I might be wrong of course. – darth pixel Aug 16 '16 at 12:42
  • 1
    He asks about the optimal rotation feature of the FSL3d software, and this software is specifically for resin printers. As I've explained, the orientation considerations for resin printers are different than those for FDM, but without knowing how the FSL3d software works you can't answer this question. As I understand, they need to explain in their research paper how FSL3d works because that's what they used to orient their models, and the orientation of the models probably affects the results of their experiments. – Tom van der Zanden Aug 16 '16 at 12:54
  • Thank you for your discussion, this is already helpful. While I do solely use resin printers, I habe been using other software besides RetinaCreate, but with Formlab's Preform it seems pretty much the same deal. Could we assume that the "logic" used here is either something worth protecting or so banal in the developers eyes that it doesn't need documenting? – jesbengradev Aug 16 '16 at 21:52
  • @jesbengradev definitely it's not such trivial task in terms of math. Does it need documenting? It depends on your research area :) I would say it's quite similar to projection in 3D or casting shadows by parallel rays (which is projection). And this is quite well documented. see here https://en.wikipedia.org/wiki/Projection_(mathematics) and here https://en.wikipedia.org/wiki/Ray_tracing_(graphics) – darth pixel Aug 19 '16 at 05:15
  • @darthpixel that's really good input, as I don't need to document an actual algorithm step by step but rather give a grounded idea of the general decision-making/logic that is at work here. – jesbengradev Aug 20 '16 at 08:41