-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update menu controller, btl version, setup.py, text element type, sce…
…ne controller, cadwork, material controller, visualization controller, text object options, ifc options, and attribute controller
- Loading branch information
1 parent
5919e6a
commit d9fadcc
Showing
35 changed files
with
3,076 additions
and
1,680 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,7 @@ | |
|
||
setup( | ||
name='cwapi3d', | ||
version='30.319.1', | ||
version='30.319.2', | ||
author='Cadwork', | ||
author_email='[email protected]', | ||
description='Python bindings for CwAPI3D', | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
from cadwork import point_3d | ||
|
||
class coordinate_system_data: | ||
def getP2(self) -> point_3d: | ||
"""getP2 | ||
Args: | ||
Returns: | ||
point_3d | ||
""" | ||
|
||
def get_p2(self) -> point_3d: | ||
"""get_p2 | ||
Args: | ||
Returns: | ||
point_3d | ||
""" | ||
|
||
def getP3(self) -> point_3d: | ||
"""getP3 | ||
Args: | ||
Returns: | ||
point_3d | ||
""" | ||
|
||
def get_p3(self) -> point_3d: | ||
"""get_p3 | ||
Args: | ||
Returns: | ||
point_3d | ||
""" | ||
|
||
def getP1(self) -> point_3d: | ||
"""getP1 | ||
Args: | ||
Returns: | ||
point_3d | ||
""" | ||
|
||
def get_p1(self) -> point_3d: | ||
"""get_p1 | ||
Args: | ||
Returns: | ||
point_3d | ||
""" | ||
|
Oops, something went wrong.