Home | History | Annotate | Download | only in util

Lines Matching refs:pathData

41      * Interpret PathData as path commands and insert the commands to the given path.
43 * @param data The source PathData to be converted.
46 public static void createPathFromPathData(Path outPath, PathData data) {
51 * @param pathDataFrom The source path represented in PathData
52 * @param pathDataTo The target path represented in PathData
55 public static boolean canMorph(PathData pathDataFrom, PathData pathDataTo) {
60 * PathData class is a wrapper around the native PathData object, which contains
62 * associated with each verb stored in PathData. This data can then be used to
65 public static class PathData {
67 public PathData() {
71 public PathData(PathData data) {
75 public PathData(String pathString) {
78 throw new IllegalArgumentException("Invalid pathData: " + pathString);
90 * @param source The source path represented in PathData
92 public void setPathData(PathData source) {
110 * @param outData The resulting PathData of the interpolation
111 * @param fromData The start value as a PathData.
112 * @param toData The end value as a PathData
115 public static boolean interpolatePathData(PathData outData, PathData fromData, PathData toData,
129 private static native void nCreatePathFromPathData(long outPathPtr, long pathData);