Searched refs:flatLeafCoefCache (Results 1 - 1 of 1) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/java2d/pisces/
H A DDasher.java392 private float[] flatLeafCoefCache = new float[] {0, 0, -1, 0}; field in class:Dasher.LengthIterator
417 if (flatLeafCoefCache[2] < 0) {
422 flatLeafCoefCache[0] = 3*(x - y) + z;
423 flatLeafCoefCache[1] = 3*(y - 2*x);
424 flatLeafCoefCache[2] = 3*x;
425 flatLeafCoefCache[3] = -z;
427 flatLeafCoefCache[0] = 0f;
428 flatLeafCoefCache[1] = y - 2*x;
429 flatLeafCoefCache[2] = 2*x;
430 flatLeafCoefCache[
[all...]

Completed in 29 milliseconds