亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? yuanjian.java

?? Java門電路畫圖器 基本功能: 1。文件的保存
?? JAVA
?? 第 1 頁 / 共 2 頁
字號:
  public void yjpaint(Graphics2D g) {
    g.setColor(Color.white);
    g.drawRect(x, y, width, height);
  }

  public void yjpaint(Graphics2D g, Color c) {
    g.setColor(c);
    g.drawRect(x, y, width, height);
  }

  // 設置值后,同時更新坐標范圍
  public void setValue(int setX, int setY, int setWidth, int setHeight) {
    x = setX;
    y = setY;
    width = setWidth;
    height = setHeight;
    //  計算范圍
    minX = x;
    minY = y;
    maxX = x + width;
    maxY = y + height;
  }

  public yjRec getValue() {
    yjRec tmpRec = new yjRec();
    tmpRec.x = this.x;
    tmpRec.y = this.y;
    tmpRec.width = this.width;
    tmpRec.height = this.height;
    tmpRec.minX = this.minX;
    tmpRec.minY = this.minY;
    tmpRec.maxX = this.maxX;
    tmpRec.maxY = this.maxY;
    return tmpRec;
  }

  public boolean yjMovie(int x0, int y0) {
    setValue(x0, y0, this.width, this.height);
    return true;
  }

}

/**************************************************/
class yjLine
    extends yjBase {
  public int x1, x2, y1, y2;

  public void setValue(int x1, int y1, int x2, int y2) {
    this.x1 = x1;
    this.x2 = x2;
    this.y1 = y1;
    this.y2 = y2;
    //  計算范圍
    if (x1 <= x2) {
      minX = x1;
      maxX = x2;
    }
    else {
      minX = x2;
      maxX = x1;
    }
    if (y1 <= y2) {
      minY = y1;
      maxY = y2;
    }
    else {
      minY = y2;
      maxY = y1;
    }
    this.x = minX;
    this.y = minY;
    if((minY == maxY)){
      minY=minY-5;
      maxY=maxY+5;
      minX=minX-5;
      maxX=maxX+3;
    }
    if((minX == maxX)){
      minY=minY-5;
      maxY=maxY+5;
      minX=minX-5;
      maxX=maxX+5;
    }

  }

  public void yjpaint(Graphics2D g) {
    g.setColor(Color.white);
    g.drawLine(x1, y1, x2, y2);
  }

  public void yjpaint(Graphics2D g, Color c) {
    g.setColor(c);
    g.drawLine(x1, y1, x2, y2);
  }

  public yjLine getValue() {
    yjLine tmpLine = new yjLine();
    tmpLine.x1 = this.x1;
    tmpLine.y1 = this.y1;
    tmpLine.x2 = this.x2;
    tmpLine.y2 = this.y2;
    tmpLine.x = this.x;
    tmpLine.y = this.y;
    tmpLine.minX = this.minX;
    tmpLine.minY = this.minY;
    tmpLine.maxX = this.maxX;
    tmpLine.maxY = this.maxY;
    return tmpLine;
  }

  public boolean yjMovie(int x, int y) {
    int xChg, yChg;
    xChg = x - this.x;
    yChg = y - this.y;
    setValue(x1 + xChg, y1 + yChg, x2 + xChg, y2 + yChg);
    return true;
  }

}

/**************************************************/
class yjCircle
    extends yjBase {
  int r;
  public void setValue(int setX, int setY, int setR) {
    x = setX;
    y = setY;
    r = setR;
    //  計算范圍
    minX = x - r;
    minY = y - r;
    maxX = x + r*2;
    maxY = y + r*2;
  }
  public void setValue(int setX, int setY, int setR,int setfF) {
    x = setX;
    y = setY;
    r = setR;
    fillFlag = setfF;
    //  計算范圍
    minX = x - r;
    minY = y - r;
    maxX = x + r*3;
    maxY = y + r*3;
  }

  public void yjpaint(Graphics2D g) {
    g.setColor(Color.white);
    Arc2D.Float tmpCircle = new Arc2D.Float(x, y, r * 2, r * 2, 0, 360,
                                            Arc2D.OPEN);
    g.draw(tmpCircle);
  }

  public void yjpaint(Graphics2D g, Color c) {
    g.setColor(c);
    Arc2D.Float tmpCircle = new Arc2D.Float(x, y, r * 2, r * 2, 0, 360,
                                            Arc2D.OPEN);
    if(fillFlag==0){
      g.draw(tmpCircle);
    }else if(fillFlag==1){
      g.fill(tmpCircle);
    }
  }

  public yjCircle getValue() {
    yjCircle tmpCir = new yjCircle();
    tmpCir.x = this.x;
    tmpCir.y = this.y;
    tmpCir.r = this.r;
    tmpCir.minX = this.minX;
    tmpCir.minY = this.minY;
    tmpCir.maxX = this.maxX;
    tmpCir.maxY = this.maxY;
    tmpCir.fillFlag = this.fillFlag;
    return tmpCir;
  }

  public boolean yjMovie(int x, int y) {
    setValue(x, y, this.r);
    return true;
  }

}

class yjPoint extends yjCircle{
  public void yjpaint(Graphics2D g) {
   g.setColor(Color.white);
   Arc2D.Float tmpCircle = new Arc2D.Float(x, y, r * 2, r * 2, 0, 360,
                                           Arc2D.OPEN);
   g.draw(tmpCircle);
 }

 public void yjpaint(Graphics2D g, Color c) {
   g.setColor(c);
   Arc2D.Float tmpCircle = new Arc2D.Float(x, y, r * 2, r * 2, 0, 360,
                                           Arc2D.OPEN);
   g.draw(tmpCircle);
 }

}
/**************************************************/
class yjStr
    extends yjBase {
  String str;
  public void setValue(int setX, int setY, String setStr) {
    x = setX;
    y = setY;
    str = setStr;
    //  計算范圍
    minX = x;
    minY = y - 20;
    maxX = x + str.length() * 15;
    maxY = y;
  }

  public void yjpaint(Graphics2D g) {
    g.setColor(Color.white);
    Font tmpF = new Font("Dialog", Font.PLAIN, 24);
    g.setFont(tmpF);
    g.drawString(str, x, y);
  }

  public void yjpaint(Graphics2D g, Color c) {
    g.setColor(c);
    Font tmpF = new Font("Dialog", Font.PLAIN, 12);
    g.setFont(tmpF);
    g.drawString(str, x, y);
  }

  public void yjpaint(Graphics2D g, Font tmpF, Color c) {
    g.setColor(c);
    g.setFont(tmpF);
    g.drawString(str, x, y);
  }

  public yjStr getValue() {
    yjStr tmpStr = new yjStr();
    tmpStr.x = this.x;
    tmpStr.y = this.y;
    tmpStr.str = this.str;
    tmpStr.minX = this.minX;
    tmpStr.minY = this.minY;
    tmpStr.maxX = this.maxX;
    tmpStr.maxY = this.maxY;
    return tmpStr;
  }

  public boolean yjMovie(int x, int y) {
    setValue(x, y, this.str);
    return true;
  }
}

/**************************************************/
class yjArc
    extends yjBase {
  /**
   * 圓弧的高度:構成該圓弧的橢圓的高度
   * 圓弧的寬度:構成該圓弧的橢圓的寬度
   */
  int width, height, startDu, Du, typeDu;
  public yjArc() {

  }

  public void setValue(int x, int y, int width, int height, int startDu, int Du,
                       int typeDu) {
    this.x = x;
    this.y = y;
    this.width = width;
    this.height = height;
    this.startDu = startDu;
    this.Du = Du;
    this.typeDu = typeDu;
    minX = x;
    minY = y;
    maxX = x + width;
    maxY = y + height;
  }

  public void yjpaint(Graphics2D g) {
    g.setColor(Color.white);
    Arc2D.Float tmpCircle = new Arc2D.Float(x, y, width, height, startDu, Du,
                                            typeDu);
    g.draw(tmpCircle);
  }

  public void yjpaint(Graphics2D g, Color c) {
    g.setColor(c);
    Arc2D.Float tmpCircle = new Arc2D.Float(x, y, width, height, startDu, Du,
                                            typeDu);
    g.draw(tmpCircle);
  }

  public yjArc getValue() {
    yjArc tmpArc = new yjArc();
    tmpArc.x = this.x;
    tmpArc.y = this.y;
    tmpArc.width = this.width;
    tmpArc.height = this.height;
    tmpArc.startDu = this.startDu;
    tmpArc.Du = this.Du;
    tmpArc.typeDu = this.typeDu;
    tmpArc.minX = this.minX;
    tmpArc.minY = this.minY;
    tmpArc.maxX = this.maxX;
    tmpArc.maxY = this.maxY;
    return tmpArc;
  }

  public boolean yjMovie(int x, int y) {
    setValue(x, y, this.width, this.height, this.startDu, this.Du, this.typeDu);
    return true;
  }
}

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
日本vs亚洲vs韩国一区三区 | 久久国产精品99久久久久久老狼| 在线欧美一区二区| 午夜久久久影院| 91精品国产aⅴ一区二区| 51精品秘密在线观看| 久久精品亚洲精品国产欧美| 国产欧美精品在线观看| 久久精品噜噜噜成人av农村| 激情综合色综合久久| 蜜桃视频一区二区三区| 欧美一级理论片| 国产伦精品一区二区三区在线观看| 欧美电影一区二区三区| 蜜臀av亚洲一区中文字幕| 精品伦理精品一区| 99精品欧美一区二区三区小说| 亚洲三级在线免费| 久久精品无码一区二区三区 | 国产在线一区二区综合免费视频| 欧美精品一二三四| 免费在线欧美视频| 亚洲最新在线观看| 欧美激情中文不卡| 91精品蜜臀在线一区尤物| 成人性色生活片免费看爆迷你毛片| 中文字幕一区二区5566日韩| 91麻豆精品国产综合久久久久久 | 国产精品欧美综合在线| 精品久久久久av影院| 欧美日韩免费视频| 在线看一区二区| 在线看一区二区| 色综合久久久久综合| 99在线热播精品免费| 国产精品伊人色| 久久国产精品区| 久久国产免费看| 蜜桃av一区二区| 另类的小说在线视频另类成人小视频在线| 一区二区三区四区亚洲| 亚洲美腿欧美偷拍| 亚洲精品欧美在线| 亚洲国产日韩一级| 奇米888四色在线精品| 国产麻豆精品在线观看| 成人永久看片免费视频天堂| 成人av在线看| 9i在线看片成人免费| 欧美日韩一区二区三区免费看| 欧美日韩三级视频| 国产亚洲欧美一级| 中文字幕视频一区二区三区久| 一区二区三区欧美在线观看| 午夜欧美大尺度福利影院在线看| 韩国欧美国产一区| 色婷婷国产精品久久包臀| 91精品国产品国语在线不卡| 国产欧美日韩中文久久| 亚洲成人av免费| fc2成人免费人成在线观看播放| 91麻豆国产自产在线观看| 日韩女优毛片在线| 午夜久久电影网| 在线观看一区二区精品视频| 337p粉嫩大胆噜噜噜噜噜91av| 亚洲综合免费观看高清完整版在线| 久久精品国内一区二区三区| 欧美无乱码久久久免费午夜一区| 精品国产乱码久久久久久牛牛| 一区二区三区在线观看视频| 粉嫩高潮美女一区二区三区| 91精品久久久久久蜜臀| 亚洲精品视频在线| av不卡免费电影| 欧美大片免费久久精品三p| 亚洲尤物在线视频观看| 国产成人午夜视频| 成人动漫一区二区| 日韩三级电影网址| 美美哒免费高清在线观看视频一区二区 | 亚洲在线视频免费观看| 国产不卡高清在线观看视频| 亚洲日本在线视频观看| 亚洲bt欧美bt精品| 日本久久精品电影| 欧美国产1区2区| 欧美精品一区二区三区在线播放| 亚洲欧美日韩国产成人精品影院| 成人久久18免费网站麻豆| 中文字幕亚洲电影| 91国偷自产一区二区开放时间| 亚洲自拍与偷拍| 91麻豆精品国产91久久久久| 国产一区二区三区不卡在线观看| 日本一区二区成人| 欧美午夜精品电影| 国产福利不卡视频| 国产精品久久看| 日韩欧美专区在线| 一本色道a无线码一区v| 久久精品国产在热久久| 国产精品国产精品国产专区不蜜 | 成人午夜在线免费| 日本亚洲视频在线| 悠悠色在线精品| 精品欧美一区二区在线观看 | 亚洲欧美一区二区久久| 欧美精品久久99久久在免费线 | 国产成人综合自拍| 午夜国产不卡在线观看视频| 日本一区二区三区高清不卡| 精品日韩在线观看| 欧美日韩三级在线| 欧美在线观看你懂的| 成人av在线电影| 国产**成人网毛片九色| 激情图区综合网| 91女人视频在线观看| 国产精品911| 国产一区二区电影| 婷婷国产v国产偷v亚洲高清| 亚洲国产婷婷综合在线精品| 亚洲乱码国产乱码精品精98午夜| 欧美—级在线免费片| 中文字幕的久久| 亚洲靠逼com| 日本欧洲一区二区| 久久国产精品99精品国产| 韩国欧美一区二区| caoporn国产一区二区| 色综合天天综合色综合av| 91丝袜美女网| 欧美日韩精品专区| 久久久激情视频| 亚洲美女免费在线| 蜜桃一区二区三区在线观看| 国产毛片精品一区| 欧美中文字幕亚洲一区二区va在线| 欧美三区在线视频| 国产亚洲欧美日韩在线一区| 亚洲欧美激情一区二区| 日本中文一区二区三区| 成人av网站免费观看| 欧美私人免费视频| 国产欧美日韩不卡免费| 日韩av在线播放中文字幕| www.成人在线| 欧美精品一区二区三区久久久| 亚洲男人的天堂av| 国产激情一区二区三区四区 | 日本一区二区三区久久久久久久久不 | 不卡一区二区在线| 日韩精品一区二区三区swag| 综合激情成人伊人| 国产成都精品91一区二区三| 日韩欧美一级在线播放| 亚洲成人免费在线观看| 欧美视频一二三区| 亚洲精品乱码久久久久久| 成人av影院在线| 最新高清无码专区| 一本到不卡免费一区二区| 中文字幕一区二区在线观看| 国产伦精一区二区三区| 国产欧美日韩视频一区二区| 国产精品白丝av| 中文字幕视频一区| 在线视频一区二区三| 日韩精品午夜视频| 日韩欧美电影一二三| 国产盗摄女厕一区二区三区| 国产精品国产三级国产| 欧美亚洲日本一区| 九一九一国产精品| 欧美激情中文字幕| 7777女厕盗摄久久久| 国产成a人无v码亚洲福利| ●精品国产综合乱码久久久久 | 99视频精品免费视频| 亚洲成av人片一区二区三区| 精品1区2区在线观看| 色综合激情久久| 青青青伊人色综合久久| 91免费视频观看| 男女性色大片免费观看一区二区| 精品国产乱码久久久久久图片| av男人天堂一区| 久久超级碰视频| 亚洲不卡在线观看| 中文文精品字幕一区二区| 欧美日韩免费一区二区三区| a级高清视频欧美日韩| 国产在线一区二区| 激情六月婷婷综合| 理论片日本一区| 日韩电影免费一区| 五月天激情综合网| 日韩高清在线一区| 亚洲午夜av在线|