C-Struct for AnimationStack See Macro/PixelMap/pixel.h
| 554 | |
| 555 | # Update struct to use read size in order to determine size of stack |
| 556 | class AnimationStack( Structure ): |
| 557 | ''' |
| 558 | C-Struct for AnimationStack |
| 559 | See Macro/PixelMap/pixel.h |
| 560 | ''' |
| 561 | |
| 562 | def __repr__(self): |
| 563 | val = "(size={}, stack={})".format( |
| 564 | self.size, |
| 565 | self.stack, |
| 566 | ) |
| 567 | return val |
| 568 | |
| 569 | # Dynamic size for stack |
| 570 | AnimationStack._fields_ = [ |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…