-
Hi everyone! I'm someone who uses OpenSCAD for 3D printing and considering switching to another CAD program for my purposes below:
Looking at Replicad, it appears that it ticks all the boxes. However, though I was a programmer early in my career, I have not really worked so much on javascript and React js. I'm committed to learn Replicad but I want to make sure first if the library meets my needs. My OpenSCAD programs normally deal with text/fonts and importing SVGs. You can take a look at my OpenSCAD programs in the link below to get a feel of what type of programs I use OpenSCAD for. https://www.printables.com/search/models?o=latest&q=tag:openscad%20@chiz_m Questions:
TIA! |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 11 replies
-
As a workaround you could try to convert the SVG to STEP first with another converter such as
|
Beta Was this translation helpful? Give feedback.
-
@ch1z a quick note on working with STL with replicad. As it is now this is not the best - it will be very slow and cumbersome. There are two main different types of CAD models (and the software that goes with it). Mesh - which is what STL is and boundary representation (STEP files). As @raydeleu aluded to, replicad works best with boundary representation - while JSCAD (or Blender) works with meshes. So depending on your use case you might want to go with one or the other! |
Beta Was this translation helpful? Give feedback.
In my view Replicad has many features and compares well to Openscad. That said, there are things that Openscad is better in and things that Replicad is better in. Replicad is more CAD-like as it uses the Opencascade library as a basis.
According to the API documentation it should be possible to import STL and STEP. However, the documentation notes that sometimes it will not work. I have not tested these functions. The import of SVG was discussed around a year ago. It was implemented in a version of the "bling my thing" app by the same programmer, but not yet in Replicad. However, in the discussions it is mentioned that he is planning to include it in the drawing library of Replicad. T…