mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-05-25 03:27:28 +00:00
trunk contents moved to root
This commit is contained in:
82
libsrc/ttf/src/fontastic/FPoint.java
Normal file
82
libsrc/ttf/src/fontastic/FPoint.java
Normal 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;
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user