generated at
build123d
CadQuery上で動作する宣言的に立体を造形するライブラリ


フィレットを使った例
python
length, width, thickness = 80.0, 60.0, 10.0 with BuildPart() as ex9: Box(length, width, thickness) Chamfer(*ex9.edges().group_by(Axis.Z)[-1], length=4) Fillet(*ex9.edges().filter_by(Axis.Z), radius=5)