(a)
| 22 | return(math.cos(a), math.sin(a)) |
| 23 | |
| 24 | def pbis(a): # end point of one sun ray |
| 25 | return(math.cos(3*a - math.pi), (math.sin(3*a - math.pi))) |
| 26 | |
| 27 | # create new PDF with an empty square format page |
| 28 | doc = fitz.open() |
no test coverage detected