(r = rect(100, 100, 200, 80), opacity = 1)
| 22 | } |
| 23 | |
| 24 | function visible(r = rect(100, 100, 200, 80), opacity = 1): FrameSample { |
| 25 | return { rect: r, opacity, visible: true }; |
| 26 | } |
| 27 | |
| 28 | const hidden: FrameSample = { rect: rect(0, 0, 0, 0), opacity: 0, visible: false }; |
| 29 |
no test coverage detected