Searched defs:scaleX (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
113 result[0] = new Point((int) (p.x + scaleX * rect.width),
/openjdk7/jdk/src/share/classes/sun/print/
H A DPSPathGraphics.java327 * The computed values 'scaleX' and 'scaleY'
338 double scaleX = unitVectorX.distance(origin);
352 if (scaleX > devScaleX) scaleX = devScaleX;
359 if (scaleX != 0 && scaleY != 0) {
364 fullMatrix[0] / scaleX, //m00
366 fullMatrix[2] / scaleX, //m01
368 fullMatrix[4] / scaleX, //m02
372 * directly multiply by scaleX and scaleY.
377 * scaleX, //m0
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.java843 * scaleX is the scale from user space to device space needed for this.
846 FontRenderContext frc, double scaleX) {
850 jdkAdvance = Math.round(jdkAdvance*scaleX);
941 * The computed values 'scaleX' and 'scaleY'
951 double scaleX = unitVectorX.distance(origin);
965 if (scaleX > devScaleX) scaleX = devScaleX;
972 if (scaleX != 0 && scaleY != 0) {
977 fullMatrix[0] / scaleX, //m00
979 fullMatrix[2] / scaleX, //m0
845 okGDIMetrics(String str, Font font, FontRenderContext frc, double scaleX) argument
1330 redrawRegion(Rectangle2D region, double scaleX, double scaleY, Shape savedClip, AffineTransform savedTransform) argument
[all...]
/openjdk7/jdk/src/share/demo/applets/Fractal/
H A DCLSFractal.java337 float scaleX; field in class:CLSTurtle
345 scaleX = sx;
357 scaleX = turtle.scaleX;
368 X += (float) Math.cos(angle) * scaleX;
373 float x = X + (float) Math.cos(angle) * scaleX;
/openjdk7/jdk/src/share/classes/com/sun/imageio/plugins/bmp/
H A DBMPImageReader.java156 private int scaleX, scaleY; field in class:BMPImageReader
718 scaleX = param.getSourceXSubsampling();
988 i++, j++, x += scaleX) {
1070 i++, j++, x += scaleX) {
1155 i < destinationRegion.width; i++, m += scaleX) {
1222 i < destinationRegion.width; i++, m += 3 * scaleX) {
1291 i < destinationRegion.width; i++, m += scaleX) {
1347 i < destinationRegion.width; i++, m += scaleX) {
1424 i += scaleX)
1553 i += scaleX) {
[all...]

Completed in 55 milliseconds