Dot.java
上传用户:gyyuli
上传日期:2013-07-09
资源大小:3050k
文件大小:1k
源码类别:

J2ME

开发平台:

Java

  1. public class Dot
  2. {
  3.     public Dot()
  4.     {
  5.         row = 0;
  6.         col = 0;
  7.     }
  8.     public Dot(int r, int c)
  9.     {
  10.         row = r;
  11.         col = c;
  12.     }
  13.     public Dot(int borderSize)
  14.     {
  15.         row = borderSize / 2;
  16.         col = borderSize / 2;
  17.     }
  18.     public void setRowCol(int r, int c)
  19.     {
  20.         row = r;
  21.         col = c;
  22.     }
  23.     public void copyFrom(Dot d)
  24.     {
  25.         row = d.row;
  26.         col = d.col;
  27.     }
  28.     public boolean inBorder(int borderSize)
  29.     {
  30.         return row >= 0 && row < borderSize && col >= 0 && col < borderSize;
  31.     }
  32.     public int row;
  33.     public int col;
  34. }