Oup's ... finally it was just an issue of PATH declaration on my computer.
It works now ! (With basic file still have issue with some advanced SCad)
Â
Edited by CuqOup's ... finally it was just an issue of PATH declaration on my computer.
It works now ! (With basic file still have issue with some advanced SCad)
Â
Edited by CuqTips & Tricks : Using the OpenScad interface and the basic 'Text' function to create rapid custom support, without too many CAD effort.
Â
// Support text // Support V Y E TextParam = "Y"; // Text Text_Size = 12; // Text size Text_Thickness = 4; // Text thickness Radius = 0.5; // Text radius fnt = "Arial:style=Regular"; // Police texte $fn=100; color("Red") minkowski() { rotate([90,0,0]) { linear_extrude(height = Text_Thickness) { text(text = TextParam, size = Text_Size, font = fnt ); } } cylinder(r=Radius,h=0.5); }
Â
Using Letter : Y, V, E
I have installed the plugin and it seems to work. Looking for documentation I am not finding much of anything. I want to know are there actual benefits. Is this simply automating going from a scad file, through creating a mesh and if so what format of mesh? Does this actually reduce the probability of mesh defects?
I installed this without paying anything but when searching I come across statements that CAD integration involves payment. Is there an exception for OpenSCAD? Am I just using a trial? Is this from a different source?
Â
The CAD integration that Ultimaker offers for paying customers does not require the original CAD package to be installed.
Â
Other developers are free to create plugins to integrate with CAD applications. @thopiekar wrote a set of plugins that work with different CAD applications installed on the same system to automate the conversion and importing of models using those CAD packages. Those are entirely free to use. But they don't come with support from Ultimaker.
Recommended Posts
Cuq 205
Could be a great Plugin if it was possible to load a Scad File. But with every SCAD file ( Except the sample file present in your source code) I always get the same Message :  File Not valid ! .Â
Even with a basic Script (A calibration cube creation)Â I've got an error message and this script is not very different from the sample file.
Note this script run fine on OpenSCAD version 2019.05 . Herewith the script and the STL generated from OpenSCAD
CalibrationCube.scad.zip CalibrationCube.stl
Link to post
Share on other sites