blender-gdsimporter/gds/structure.py

13 lines
297 B
Python
Raw Normal View History

from datetime import datetime
class Structure(object):
# metainfo
creation_date = datetime.now()
last_mod = datetime.now()
name = "NONAME"
# contains all the low level elements
elements = []
2019-07-02 14:45:15 +02:00
# contains all sref and aref elements
2019-07-02 14:45:15 +02:00
references = []