Skip to content

Commit

Permalink
Update .gitignore and setup.py, add point_3d constructor
Browse files Browse the repository at this point in the history
  • Loading branch information
Brunner246 committed Mar 11, 2024
1 parent 56fb07d commit c3ba1c2
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@ __pycache__/
dist/
site/
venv/
.venv/
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

setup(
name='cwapi3d',
version='30.319.3',
version='30.319.4',
author='Cadwork',
author_email='[email protected]',
description='Python bindings for CwAPI3D',
Expand Down
3 changes: 3 additions & 0 deletions src/cadwork/point_3d.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
class point_3d:
def __init__(self, x: float, y: float, z: float) -> None:
pass

def dot(self, p: 'point_3d') -> float:
"""dot
Args:
Expand Down

0 comments on commit c3ba1c2

Please sign in to comment.