Skip to content

medicationforall/cqindustry

Repository files navigation

cqindustry

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)

Project Documention

Changes

Dependencies

Projects


Installation

To install cqindustry directly from GitHub, run the following pip command:

pip install git+https://github.com/medicationforall/cqindustry

OR

Local Installation

From the cloned cqindustry directory run.

pip install ./

Running Example Scripts

example_runner.py runs all examples.

C:\Users\<user>\home\3d\cqindustry>python example_runner.py

OR

Running individual examples

  • From the root of the project run one of the example scripts:
C:\Users\<user>\home\3d\cqindustry>python ./example/ring.py