(self, font)
| 485 | setattr(self, f"fvar_axis{idx+1}", v) |
| 486 | |
| 487 | def features(self, font): |
| 488 | features = {} |
| 489 | for k, v in self.__annotations__.items(): |
| 490 | if k.startswith("fea_"): |
| 491 | features[k[4:]] = getattr(self, k) |
| 492 | return features |
| 493 | |
| 494 | def build_text(self, scene): |
| 495 | text = "" |