python - Translating entire files with gdsCAD -
i using gdscad merge 3 gds files together.
my imports :
import os.path gdscad import *
i have imported 3 files using gdsimport() function:
file1 = gdsimport('gdsfile1.gds') file2 = gdsimport('gdsfile2.gds') file3 = gdsimport('gdsfile3.gds')
my problem want translate , entire file new new location. not 1 shape in file. core.translate() function works groups , single elements. tried adding entire file group following:
group1 = core.element(file1)
but not work.
any advice or different approach can maybe try?
thanks
Comments
Post a Comment