| 187 | self.cell.insert(pya.CellInstArray(cc, t)) |
| 188 | |
| 189 | class PCellTestLib3(pya.Library): |
| 190 | |
| 191 | def __init__(self): |
| 192 | |
| 193 | # set the description |
| 194 | self.description = "PCell test lib3" |
| 195 | |
| 196 | # create the PCell declarations |
| 197 | self.layout().register_pcell("RecursivePCell", RecursivePCell()) |
| 198 | |
| 199 | # register us with the name "PCellTestLib3" |
| 200 | self.register("PCellTestLib3") |
| 201 | |
| 202 | |
| 203 |