HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

openscad — Software for creating solid 3D CAD objects. More information: <https://manned.org/openscad>.

Submitted by: @import:tldr-pages··
0
Viewed 0 times
solidcommandsoftwarecadclicreatingforopenscad

Problem

How to use the openscad command: Software for creating solid 3D CAD objects. More information: <https://manned.org/openscad>.

Solution

openscad — Software for creating solid 3D CAD objects. More information: <https://manned.org/openscad>.

Open a file:
openscad {{path/to/button.scad}}


Convert a file to STL:
openscad -o {{path/to/button.stl}} {{path/to/button.scad}}


Render a file to PNG in a specific colorscheme:
openscad -o {{path/to/button.png}} --colorscheme {{Sunset}} {{path/to/button.scad}}

Code Snippets

Open a file

openscad {{path/to/button.scad}}

Convert a file to STL

openscad -o {{path/to/button.stl}} {{path/to/button.scad}}

Render a file to PNG in a specific colorscheme

openscad -o {{path/to/button.png}} --colorscheme {{Sunset}} {{path/to/button.scad}}

Context

tldr-pages: common/openscad

Revisions (0)

No revisions yet.