Searched defs:Mxx (Results 1 - 1 of 1) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/java2d/pisces/
H A DTransformingPathConsumer2D.java39 float Mxx = (float) at.getScaleX();
46 if (Mxx == 1f && Myy == 1f) {
54 return new DeltaScaleFilter(out, Mxx, Myy);
56 return new ScaleFilter(out, Mxx, Myy, Mxt, Myt);
60 return new DeltaTransformFilter(out, Mxx, Mxy, Myx, Myy);
62 return new TransformFilter(out, Mxx, Mxy, Mxt, Myx, Myy, Myt);
73 float Mxx = (float) at.getScaleX();
78 if (Mxx == 1f && Myy == 1f) {
81 return new DeltaScaleFilter(out, Mxx, Myy);
84 return new DeltaTransformFilter(out, Mxx, Mx
221 private final float Mxx; field in class:TransformingPathConsumer2D.TransformFilter
228 TransformFilter(PathConsumer2D out, float Mxx, float Mxy, float Mxt, float Myx, float Myy, float Myt) argument
289 DeltaScaleFilter(PathConsumer2D out, float Mxx, float Myy) argument
334 private final float Mxx; field in class:TransformingPathConsumer2D.DeltaTransformFilter
339 DeltaTransformFilter(PathConsumer2D out, float Mxx, float Mxy, float Myx, float Myy) argument
[all...]

Completed in 22 milliseconds