This repository was archived by the owner on May 19, 2025. It is now read-only.
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
GeometricAtomsmodule