mirror of
https://github.com/gumyr/build123d.git
synced 2025-12-06 02:30:55 -08:00
Read the docs changes
This commit is contained in:
parent
1b43b60401
commit
b536fa43c2
5 changed files with 19 additions and 12 deletions
|
|
@ -10,7 +10,3 @@ To install **build123d** from github:
|
|||
```
|
||||
python3 -m pip install git+https://github.com/gumyr/build123d.git#egg=build123d
|
||||
```
|
||||
To install the working `dev` branch:
|
||||
```
|
||||
python3 -m pip install git+https://github.com/gumyr/build123d.git@dev#egg=build123d
|
||||
```
|
||||
|
|
|
|||
|
|
@ -90,4 +90,4 @@ html_theme = "sphinx_rtd_theme"
|
|||
# Add any paths that contain custom static files (such as style sheets) here,
|
||||
# relative to this directory. They are copied after the builtin static files,
|
||||
# so a file named "default.css" will overwrite the builtin "default.css".
|
||||
html_static_path = ["_static"]
|
||||
#html_static_path = ["_static"]
|
||||
|
|
|
|||
|
|
@ -50,9 +50,13 @@ from cadquery import (
|
|||
)
|
||||
from cadquery.occ_impl.shapes import VectorLike
|
||||
import cq_warehouse.extensions
|
||||
from .build123d_common import *
|
||||
from .build_sketch import BuildSketch
|
||||
from .build_part import BuildPart
|
||||
|
||||
# from .build123d_common import *
|
||||
# from .build_sketch import BuildSketch
|
||||
# from .build_part import BuildPart
|
||||
from build123d.build123d_common import *
|
||||
from build123d.build_sketch import BuildSketch
|
||||
from build123d.build_part import BuildPart
|
||||
|
||||
|
||||
class BuildLine:
|
||||
|
|
|
|||
|
|
@ -60,7 +60,11 @@ from cadquery import (
|
|||
)
|
||||
from cadquery.occ_impl.shapes import VectorLike
|
||||
import cq_warehouse.extensions
|
||||
from .build123d_common import *
|
||||
|
||||
# from .build123d_common import *
|
||||
|
||||
from build123d.build123d_common import *
|
||||
|
||||
|
||||
|
||||
class BuildPart:
|
||||
|
|
|
|||
|
|
@ -59,8 +59,11 @@ from cadquery.hull import find_hull
|
|||
from cadquery import Edge, Face, Wire, Vector, Shape, Location, Vertex, Compound, Plane
|
||||
from cadquery.occ_impl.shapes import VectorLike
|
||||
import cq_warehouse.extensions
|
||||
from .build123d_common import *
|
||||
from .build_part import BuildPart
|
||||
|
||||
# from .build123d_common import *
|
||||
# from .build_part import BuildPart
|
||||
from build123d.build123d_common import *
|
||||
from build123d.build_part import BuildPart
|
||||
|
||||
|
||||
class BuildSketch:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue