All Downloads are FREE. Search and download functionalities are using the official Maven repository.

jogamp.graph.font.typecast.ot.Point Maven / Gradle / Ivy

The newest version!
/*****************************************************************************
 * Copyright (C) The Apache Software Foundation. All rights reserved.        *
 * ------------------------------------------------------------------------- *
 * This software is published under the terms of the Apache Software License *
 * version 1.1, a copy of which has been included with this distribution in  *
 * the LICENSE file.                                                         *
 *****************************************************************************/

package jogamp.graph.font.typecast.ot;

/**
 * @version $Id: Point.java,v 1.1.1.1 2004-12-05 23:14:31 davidsch Exp $
 * @author David Schweinsberg
 */
public class Point {

    public int x = 0;
    public int y = 0;
    public boolean onCurve = true;
    public boolean endOfContour = false;

    public Point(final int x, final int y, final boolean onCurve, final boolean endOfContour) {
        this.x = x;
        this.y = y;
        this.onCurve = onCurve;
        this.endOfContour = endOfContour;
    }

    public String toString() {
        return "P["+x+"/"+y+", on "+onCurve+", end "+endOfContour+"]";
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy