(p:P, pos, _)
| 192 | ad = None |
| 193 | |
| 194 | def walker(p:P, pos, _): |
| 195 | if pos == 0: |
| 196 | ameta = p.data("aximeta") |
| 197 | if ameta: |
| 198 | fn = ameta.get("fn") |
| 199 | if fn: |
| 200 | fn(NextDrawChainable(ad)) |
| 201 | return |
| 202 | |
| 203 | p = p.cond(flatten, |
| 204 | lambda p: p.flatten( |
| 205 | flatten, segmentLines=False)) |
| 206 | ap = NextDrawPen(p, Rect(0, 0, 1100, 850)) |
| 207 | ap.draw(ad=ad, |
| 208 | move_delay=move_delay, |
| 209 | zero=False) |
| 210 | |
| 211 | res = self.frame_result(frame, post=True) |
| 212 | if self.vertical: |
nothing calls this directly
no test coverage detected