package com.hygenics.facialrec; /** * Class that STores a Point for Our Spline in Cartesion (x,y) form * * @author aevans * */ public class PointObject { private float x; private float y; public PointObject(){ } public float getX() { return x; } public void setX(float x) { this.x = x; } public float getY() { return y; } public void setY(float y) { this.y = y; } }