Skip to content

Releases: orbingol/ACIS-Python3

ACIS-Python3 v0.1.7

18 Dec 07:24
244b53c
Compare
Choose a tag to compare
  • Completed api_boolean_chop_body wrapper
  • Added BoolOptions and SPAboxing_options class wrappers.
  • Added new ACIS API function wrappers. Please check the function reference for details.

ACIS-Python3 v0.1.6

10 Dec 09:24
eee323c
Compare
Choose a tag to compare

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

30 Aug 13:50
Compare
Choose a tag to compare
  • 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

21 Jul 05:30
Compare
Choose a tag to compare
  • 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

19 Jul 03:36
Compare
Choose a tag to compare
  • Bug fixes in list/tuple traversing
  • Renamed Topology module to Entity to eliminate confusion
  • Combined Geometry module with Entity module to get rid of excessively complex structures
  • Combined GeometricOperators module with GeometricAtoms module
  • Added a sweeping example; 03_sweeping.py
  • Documentation updates

ACIS-Python3 v0.1.2

17 Jul 08:17
Compare
Choose a tag to compare
  • Updated DOI badge

ACIS-Python3 v0.1.1

17 Jul 08:08
Compare
Choose a tag to compare
  • Added DOI badge from Zenodo
  • Updated README.md

ACIS-Python3 v0.1

17 Jul 08:01
Compare
Choose a tag to compare
  • Initial release of the Python module