Lines Matching refs:x1
46 native void doLine(SurfaceData sData, float x1, float y1, float x2, float y2);
48 public void drawLine(SunGraphics2D sg2d, int x1, int y1, int x2, int y2) {
49 drawLine(sg2d, (float) x1, (float) y1, (float) x2, (float) y2);
54 public void drawLine(SunGraphics2D sg2d, float x1, float y1, float x2, float y2) {
57 surfaceData.doLine(this, sg2d, x1, y1, x2, y2);
67 lineToShape.setLine(x1, y1, x2, y2);
334 float x1 = (float) line.getX1();
339 drawLine(sg2d, x1, y1, x2, y2);
606 void doLine(SurfaceData sData, float x1, float y1, float x2, float y2) {
608 super.doLine(sData, x1, y1, x2, y2);