blob: 3b537deae00a92402a901f20a492ffd354a9e9d7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
package com.c2kernel.graph.model;
public class GraphPoint {
public int x;
public int y;
public GraphPoint() {
x=0; y=0;
}
public GraphPoint(int x, int y) {
this.x = x;
this.y = y;
}
}
|