Python library for making 3d printable Industrial terrain using cadquery.
import cadquery as cq
from cqindustry import ChipTower
bp_tower = ChipTower()
bp_tower.stories = 3
bp_tower.story_height = 75
bp_platform = bp_tower.bp_platform
bp_platform.render_floor = True
bp_tower.make()
tower_ex = bp_tower.build()
show_object(tower_ex)
To install cqindustry directly from GitHub, run the following pip
command:
pip install git+https://github.com/medicationforall/cqindustry
OR
From the cloned cqindustry directory run.
pip install ./
example_runner.py runs all examples.
C:\Users\<user>\home\3d\cqindustry>python example_runner.py
OR
- From the root of the project run one of the example scripts:
C:\Users\<user>\home\3d\cqindustry>python ./example/ring.py