document-svg 2.0.2

Convert PDF, Word, Excel, PowerPoint, diagram and CAD files into one SVG per page, locally — a Rust library and the docsvg command
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
// Safe OpenSCAD structure fixture
$fn = 32;
module rounded_box(size=[20,10,5]) {
  difference() {
    cube(size, center=true);
    translate([0,0,2]) sphere(r=3);
  }
}
function safe_radius(value) = value / 2;
use <private-library.scad>;
include <private-config.scad>;
import("private-model.stl");
translate([0,0,5]) rotate([0,0,15]) rounded_box();