(PointF result, float t, PointF p0, PointF p1, PointF p2, PointF p3)
| 70 | } |
| 71 | |
| 72 | public static void catmullRomSpline(PointF result, float t, PointF p0, PointF p1, PointF p2, PointF p3) |
| 73 | { |
| 74 | if(BuildConfig.DEBUG && (result == null || p0 == null || p1 == null || p2 == null || p3 == null)) |
| 75 | throw new NullPointerException("PointF is null"); |
| 76 | |
| 77 | nativeCatmullRomSpline(result, t, p0, p1, p2, p3); |
| 78 | } |
| 79 | |
| 80 | /** |
| 81 | * Tone is a color term commonly used by painters. |
no test coverage detected