gsohler / openscad

OpenSCAD - The Programmers Solid 3D CAD Modeller
https://www.openscad.org
Other
14 stars 6 forks source link

Is rotate(degrees, axis) supported? #18

Closed gandrewstone closed 4 months ago

gandrewstone commented 4 months ago

Is your feature request related to a problem? Please describe.

openscad language supports rotation around an arbitrary axis

Describe the solution you'd like API for rotation around an arbitrary axis

import openscad as ops tcube = ops.cube([10,10,10]) tc = tcube.rotate(45, [10,10,0]) output(tc)

gsohler commented 4 months ago

yes, its missing, will supply ASAP

gsohler commented 4 months ago

now the missed feature is there to comply with SCAD language. Let me check if its working for you, I was missing it myself ;)