Releases: orbingol/ACIS-Python3
Releases · orbingol/ACIS-Python3
ACIS-Python3 v0.1.7
ACIS-Python3 v0.1.6
This release combines all implemented functionality under Modeler module and removes all other modules to eliminate confusion. The code base is also updated as well as the Python examples.
ACIS-Python3 v0.1.5
- Added Booleans component
- Added a routine to read license file
- Ported new classes to Python
- Added some utility functions
- Minor updates
ACIS-Python3 v0.1.4
ENTITY_LIST::array()
now returns a python iterator to be used in for loops.
Example:
block = Entity.BODY();
...
...
...
face_list = Lists.ENTITY_LIST()
Modeler.api_get_faces(block, face_list)
for face in face_list.array():
...
...
...
...
- Fixed some bugs in CMakeLists.txt causing problems in makefile generation
- Added more functions to
GeometricAtoms
module
ACIS-Python3 v0.1.3
- Bug fixes in list/tuple traversing
- Renamed
Topology
module toEntity
to eliminate confusion - Combined
Geometry
module withEntity
module to get rid of excessively complex structures - Combined
GeometricOperators
module withGeometricAtoms
module - Added a sweeping example; 03_sweeping.py
- Documentation updates
ACIS-Python3 v0.1.2
- Updated DOI badge
ACIS-Python3 v0.1.1
- Added DOI badge from Zenodo
- Updated README.md
ACIS-Python3 v0.1
- Initial release of the Python module