Searched refs:numPoints (Results 1 – 8 of 8) sorted by relevance
40 final int numPoints = (int) (pathLength / PRECISION) + 1; in PathInterpolatorDonut() local42 mX = new float[numPoints]; in PathInterpolatorDonut()43 mY = new float[numPoints]; in PathInterpolatorDonut()46 for (int i = 0; i < numPoints; ++i) { in PathInterpolatorDonut()47 final float distance = (i * pathLength) / (numPoints - 1); in PathInterpolatorDonut()
60 int numPoints = pointComponents.length / 3; in initPath() local67 mX = new float[numPoints]; in initPath()68 mY = new float[numPoints]; in initPath()69 mDist = new float[numPoints]; in initPath()73 for (int i = 0; i < numPoints; i++) { in initPath()97 for (int i = 0; i < numPoints; i++) { in initPath()
59 int numPoints = pointComponents.length / 3; in initPath() local61 mX = new float[numPoints]; in initPath()62 mY = new float[numPoints]; in initPath()68 for (int i = 0; i < numPoints; i++) { in initPath()
67 int numPoints = mKeyframeData.length / 3; in getValue() local71 return interpolateInRange(fraction, numPoints - 2, numPoints - 1); in getValue()75 return pointForIndex(numPoints - 1); in getValue()79 int high = numPoints - 1; in getValue()
160 int numPoints = pointComponents.length / 3; in initPath() local167 mX = new float[numPoints]; in initPath()168 mY = new float[numPoints]; in initPath()172 for (int i = 0; i < numPoints; i++) { in initPath()
268 public static float[] temporalSampling(GestureStroke stroke, int numPoints) { in temporalSampling() argument269 final float increment = stroke.length / (numPoints - 1); in temporalSampling()270 int vectorLength = numPoints * 2; in temporalSampling()
452 size_t numPoints = segmentPoints.size(); in approximate() local453 size_t approximationArraySize = numPoints * 3; in approximate()458 for (size_t i = 0; i < numPoints; i++) { in approximate()
797 int numPoints = count / 2; in instanceVertices() local799 dstBuffer.alloc<TYPE>(numPoints * verticesPerPoint + (numPoints - 1) * 2); in instanceVertices()