#cad #openscad #3d #建模 #3D模型 #solidpython

solidrs

Rust库,用于生成openScad模型。受SolidPython启发。

6个版本 (3个重大更新)

0.4.0 2024年3月14日
0.3.1 2024年2月21日
0.2.0 2024年2月19日
0.1.1 2024年2月19日

#62 in 渲染

MIT/Apache

26KB
803

SolidRS

Rust库,用于生成openScad模型。受SolidPython启发。

目前只实现了非常少的命令,但我计划在我需要时添加它们。

示例

use solidrs::*;

fn main() {
    let a = cube(10, 20, 5).center();
    let b = cylinder(10, 5).translate(0, 0, 2.5);
    let c = a + b;
    c.save_as_scad("test");
}

变量

SolidRS能够生成结果的openSCAD脚本中的变量。这些变量可以在openSCAD编辑器中进行配置。

这个Rust文件

use solidrs::*;

fn main() {
    var!(width, 10, "cube width");
    var!(height, 20, "cube height");
    let a = cube(width, width / 2, height).center();
    // you can save calculated points
    // they will still be displayed as the calculation when rendering
    let cube_top = height / 2;
    // if you use var to save it, the calculation will also be written to a variable in openScad
    var!(cylinder_height, width / 2);
    let b = cylinder(cylinder_height, 5).translate(0, 0, cube_top);
    let c = a + b;
    // variable values can be changed at any point
    width.set(20);
    c.save_as_scad("vars");
}

生成这个scad文件

// cube width
width = 20;
// cube height
height = 20;
cylinder_height = width / 2;
union(){
    cube([width,width / 2,height],center = true);
    translate([0,0,height / 2]){
        cylinder(cylinder_height, r = 5);
    }
}

无运行时依赖