MCPcopy Create free account
hub / github.com/KAlO2/PerfectShow / catmullRomSpline

Method catmullRomSpline

src/com/cloudream/ishow/algorithm/Effect.java:72–78  ·  view source on GitHub ↗
(PointF result, float t, PointF p0, PointF p1, PointF p2, PointF p3)

Source from the content-addressed store, hash-verified

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.

Callers 4

getClosedPathMethod · 0.95
getEyeBrowPathMethod · 0.95
lineToMethod · 0.95
getNosePathMethod · 0.95

Calls 1

Tested by

no test coverage detected