import numpy as np
from gdshelpers.parts.text import Text
from gdshelpers.geometry.chip import Cell

text = Text([0, 0], 10, 'gdshelpers.parts.text.Text', angle=np.pi/4)

cell = Cell('TEXT')
cell.add_to_layer(1, text)
cell.show()