Skip to content
This repository was archived by the owner on May 19, 2025. It is now read-only.

ACIS-Python3 v0.1.4

Choose a tag to compare

@orbingol orbingol released this 21 Jul 05:30
· 52 commits to master since this release
  • 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