コード例 #1
0
ファイル: XY.java プロジェクト: kronick/SandboxSystem
 double distance(XY a, XY b) {
   a = new XY(a);
   a.subtract(b);
   return a.length();
 }