trunk contents moved to root

This commit is contained in:
Jindra Petřík
2014-05-10 20:50:57 +02:00
parent 1b851e66a8
commit 199a4d0c2b
2296 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,82 @@
package fontastic;
/**
* Fontastic
* A font file writer to create TTF and WOFF (Webfonts).
* http://code.andreaskoller.com/libraries/fontastic
*
* Copyright (C) 2013 Andreas Koller http://andreaskoller.com
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General
* Public License along with this library; if not, write to the
* Free Software Foundation, Inc., 59 Temple Place, Suite 330,
* Boston, MA 02111-1307 USA
*
* @author Andreas Koller http://andreaskoller.com
* @modified 06/19/2013
* @version 0.4 (4)
*/
/**
* Class FPoint extends PVector
*
* Stores a point with x and y coordinates and optional PVector controlPoint1 and controlPoint2.
*
*/
public class FPoint extends PVector {
public PVector controlPoint;
private boolean hasControlPoint;
public FPoint() {
}
public FPoint(PVector point) {
this.x = point.x;
this.y = point.y;
this.hasControlPoint = false;
}
public FPoint(float x, float y) {
this.x = x;
this.y = y;
this.hasControlPoint = false;
}
public FPoint(PVector point, PVector controlPoint) {
this.x = point.x;
this.y = point.y;
this.controlPoint = controlPoint;
this.hasControlPoint = true;
}
public void setControlPoint(PVector controlPoint1) {
this.controlPoint = controlPoint1;
this.hasControlPoint = true;
}
public void setControlPoint(float x, float y) {
this.controlPoint = new PVector(x,y);
this.hasControlPoint = true;
}
public boolean hasControlPoint1() {
return hasControlPoint;
}
}