Skip to content

Commit

Permalink
Moved portal and container into cqindustry
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesadams committed Jan 5, 2025
1 parent b89e1d6 commit a69d6e3
Show file tree
Hide file tree
Showing 155 changed files with 3,922 additions and 14 deletions.
60 changes: 59 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,13 +56,35 @@ show_object(tower_ex)

---

## Container

[![](./documentation/image/container/35.png)](documentation/container.md)<br /><br />

``` python
import cadquery as cq
from cqindustry.container import Container

bp_container = Container()
bp_container.bp_hinge.rotate_deg = -90

bp_container.make()

result = bp_container.build()
show_object(result)
```

* [Example](./example/container/container.py)
* [stl](./stl/container.stl)

---

## Dome

[![](./documentation/image/dome/cover.png)](documentation/dome.md)<br /><br />

``` python
import cadquery as cq
from cqdome import Dome, greeble
from cqindustry.dome import Dome, greeble

#init greebles
vent_bp = greeble.VentHexagon()
Expand Down Expand Up @@ -115,6 +137,33 @@ show_object(dome)

---

## Portal
[![](./documentation/image/portal/cover.png)](documentation/portal.md)<br /><br />

``` python
import cadquery as cq
from cqindustry.portal import Portal

bp_portal = Portal()
bp_portal.bp_frame.length = 150
bp_portal.bp_frame.width = 30
bp_portal.bp_frame.height = 150

bp_portal.render_base = False
bp_portal.render_hinges = True
bp_portal.bp_ramp.width = 10
bp_portal.make()


result_open = bp_portal.build()
show_object(result_open)
```

* [Example](./example/portal/portal.py)
* [stl](stl/portal_open.stl)

---

## Power Station

[![](./documentation/image/power/cover.png)](documentation/power.md)<br /><br />
Expand All @@ -137,11 +186,14 @@ cq.exporters.export(power,f"stl/powerStation_seed_{bp_power.bp_cladding.seed}.st

---


## Project Documention
* [Documentation](documentation/documentation.md)
* [Can](documentation/can.md)
* [Chip](documentation/chip.md)
* [Container](documentation/container.md)
* [Dome](documentation/dome.md)
* [Portal](documentation/portal.md)
* [Power](documentation/power.md)


Expand All @@ -156,7 +208,9 @@ cq.exporters.export(power,f"stl/powerStation_seed_{bp_power.bp_cladding.seed}.st
## 3d Printed Projects
* [Chip Tower](https://miniforall.com/chiptower)
* [Dome Terrain](https://miniforall.com/dometerrain)
* [Portal](https://miniforall.com/portal)
* [Power Station](https://miniforall.com/powerstation)
* [Shipping Container Terrain](https://miniforall.com/shippingcontainer)

---

Expand Down Expand Up @@ -189,3 +243,7 @@ C:\Users\<user>\home\3d\cqindustry>python example_runner.py
``` bash
C:\Users\<user>\home\3d\cqindustry>python ./example/ring.py
```

---


6 changes: 6 additions & 0 deletions changes.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

## Main wip

## 2.3.0
* Upped cqterrain version to 2.5.0
* Moved cqportal portal code over into cqindustry
* Moved cqportal container code over into cqindustry
* Updated README.md

## 2.2.0
* Upped cqterrain version to 2.1.0
* This includes spool code
Expand Down
Loading

0 comments on commit a69d6e3

Please sign in to comment.