Back to project page HzGrapher.
The source code is released under:
Apache License
If you think the Android project HzGrapher listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.handstudio.android.hzgrapherlib.util; // www .ja v a2 s .c o m public class EuclidPoint { private float mX = 0.0f; private float mY = 0.0f; public EuclidPoint ( float x , float y ) { mX = x; mY = y; } public float getX () { return mX; } public float getY () { return mY; } public void setX ( float x ) { mX = x; } public void setY ( float y ) { mY = y; } }