()
| 109 | CX = CY = Inches(0.375) |
| 110 | |
| 111 | def iter_corner(): |
| 112 | y = Y_ORIG |
| 113 | while True: |
| 114 | for i in range(20): |
| 115 | x = X_ORIG + (X_INCR * i) |
| 116 | yield x, y |
| 117 | y += Y_INCR |
| 118 | |
| 119 | shapes = context.shapes |
| 120 | corners = iter_corner() |
no outgoing calls
no test coverage detected
searching dependent graphs…