blender-gdsimporter/gds/structure.py
Julian Daube 5d939157ed initial commit (work in progress)
python version of parser works, BUT
does not support AREF and SREF at the moment
2019-07-01 11:45:02 +02:00

11 lines
221 B
Python

from datetime import datetime
class Structure(object):
# metainfo
creation_date = datetime.now()
last_mod = datetime.now()
name = "NONAME"
# contains all the elements
elements = []