(a, b int)
| 155 | } |
| 156 | |
| 157 | func maxInt(a, b int) int { |
| 158 | if a > b { |
| 159 | return a |
| 160 | } |
| 161 | return b |
| 162 | } |
| 163 | |
| 164 | func rotate(x, y, theta float64) (rx, ry float64) { |
| 165 | rx = x*math.Cos(theta) - y*math.Sin(theta) |
no outgoing calls
no test coverage detected
searching dependent graphs…