Back to project page physics.
The source code is released under:
GNU General Public License
If you think the Android project physics listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
// Copyright 2003-2013 Adobe Systems Inc. All Rights Reserved. // This software is proprietary; use is subject to license terms. package com.nuaavee.physics.model; /* w ww.j a va 2 s .co m*/ /** * @author Adobe Systems Inc */ public class Coordinate { private final float x; private final float y; public Coordinate(float x, float y) { this.x = x; this.y = y; } public float getX() { return x; } public float getY() { return y; } }