source: trunk/greenstone3-extensions/vishnu/src/vishnu/testvis/visual/Ipoint2D.java@ 8189

Last change on this file since 8189 was 8189, checked in by kjdon, 20 years ago

first version of Imperial College's Visualiser code

  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
File size: 349 bytes
Line 
1package vishnu.testvis.visual;
2/** Integer point class
3* (minimal)
4* @author Matthew Carey */
5
6public class Ipoint2D
7{
8 /** x value */
9 public int x;
10 /** y value */
11 public int y;
12 /** constructor
13 * @param horizontal value
14 * @param vertical value
15 */
16 public Ipoint2D(int x, int y){this.x = x; this.y = y;}
17}
Note: See TracBrowser for help on using the repository browser.