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

/openjdk7/jdk/test/javax/swing/JScrollBar/4708809/
H A Dbug4708809.java104 private static Point getClickPoint(final double scaleX, final double scaleY) throws Exception { argument
114 (int) (p.y + scaleY * rect.height));
/openjdk7/jdk/src/share/classes/sun/print/
H A DPSPathGraphics.java327 * The computed values 'scaleX' and 'scaleY'
339 double scaleY = unitVectorY.distance(origin);
353 if (scaleY > devScaleY) scaleY = devScaleY;
359 if (scaleX != 0 && scaleY != 0) {
365 fullMatrix[1] / scaleY, //m10
367 fullMatrix[3] / scaleY, //m11
369 fullMatrix[5] / scaleY); //m12
372 * directly multiply by scaleX and scaleY.
380 * scaleY, //m1
637 redrawRegion(Rectangle2D region, double scaleX, double scaleY, Shape savedClip, AffineTransform savedTransform) argument
[all...]
H A DPathGraphics.java143 double scaleX, double scaleY,
142 redrawRegion(Rectangle2D region, double scaleX, double scaleY, Shape clip, AffineTransform devTransform) argument
/openjdk7/jdk/src/windows/classes/sun/awt/windows/
H A DWPathGraphics.java941 * The computed values 'scaleX' and 'scaleY'
952 double scaleY = unitVectorY.distance(origin);
966 if (scaleY > devScaleY) scaleY = devScaleY;
972 if (scaleX != 0 && scaleY != 0) {
978 fullMatrix[1] / scaleY, //m10
980 fullMatrix[3] / scaleY, //m11
982 fullMatrix[5] / scaleY); //m12
985 * directly multiply by scaleX and scaleY.
993 * scaleY, //m1
1330 redrawRegion(Rectangle2D region, double scaleX, double scaleY, Shape savedClip, AffineTransform savedTransform) argument
[all...]
/openjdk7/jdk/src/share/demo/applets/Fractal/
H A DCLSFractal.java338 float scaleY; field in class:CLSTurtle
346 scaleY = sy;
358 scaleY = turtle.scaleY;
369 Y += (float) Math.sin(angle) * scaleY;
374 float y = Y + (float) Math.sin(angle) * scaleY;
/openjdk7/jdk/src/share/classes/com/sun/imageio/plugins/bmp/
H A DBMPImageReader.java156 private int scaleX, scaleY; field in class:BMPImageReader
719 scaleY = param.getSourceYSubsampling();
973 sourceRegion.y + (destinationRegion.height - 1) * scaleY;
978 int skipLength = lineLength * (scaleY - 1);
1000 j < destinationRegion.height; j++, y+=scaleY) {
1055 sourceRegion.y + (destinationRegion.height - 1) * scaleY;
1060 int skipLength = lineLength * (scaleY - 1);
1082 j < destinationRegion.height; j++, y+=scaleY) {
1136 sourceRegion.y + (destinationRegion.height - 1) * scaleY;
1141 int skipLength = lineLength * (scaleY
[all...]

Completed in 68 milliseconds