| 198 | // Actually the same as radial. Just for compatibility |
| 199 | public: |
| 200 | static AGG_INLINE int calculate(int x, int y, int) |
| 201 | { |
| 202 | return int(fast_sqrt(x * x + y * y)); |
| 203 | } |
| 204 | }; |
| 205 | |
| 206 | //==========================================================gradient_radial |
nothing calls this directly
no test coverage detected