| 123 | |
| 124 | |
| 125 | class CT_Transform2DBuilder(BaseBuilder): |
| 126 | __nspfxs__ = ("a",) |
| 127 | __attrs__ = ("rot", "flipH", "flipV") |
| 128 | |
| 129 | def __init__(self, tag): |
| 130 | self.__tag__ = tag |
| 131 | super(CT_Transform2DBuilder, self).__init__() |
| 132 | |
| 133 | |
| 134 | def a_cNvPr(): |