mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-08-10 12:11:15 +00:00
86 lines
2.1 KiB
Java
86 lines
2.1 KiB
Java
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)
|
|
*/
|
|
|
|
import fontastic.FPoint;
|
|
|
|
import java.util.ArrayList;
|
|
import java.util.List;
|
|
|
|
/**
|
|
* Class FContour
|
|
*
|
|
* Stores a contour (list of FPoint).
|
|
*
|
|
*/
|
|
public class FContour {
|
|
|
|
List<FPoint> points;
|
|
|
|
FContour() {
|
|
this.points = new ArrayList<>();
|
|
}
|
|
|
|
FContour(PVector[] points) {
|
|
this.points = new ArrayList<>();
|
|
for (PVector p : points) {
|
|
this.points.add(new FPoint(p));
|
|
}
|
|
}
|
|
|
|
FContour(PVector[] points, PVector[] controlpoints) {
|
|
this.points = new ArrayList<>();
|
|
for (int i=0; i<points.length; i++) {
|
|
this.points.add(new FPoint(points[i], controlpoints[i] ));
|
|
}
|
|
}
|
|
|
|
FContour(FPoint[] points) {
|
|
this.points = new ArrayList<>();
|
|
for (int i=0; i<points.length; i++) {
|
|
this.points.add(points[i]);
|
|
}
|
|
}
|
|
|
|
public List<FPoint> getPoints() {
|
|
return points;
|
|
}
|
|
|
|
public FPoint[] getPointsArray() {
|
|
FPoint[] pointsArray = points.toArray(new FPoint[points.size()]);
|
|
return pointsArray;
|
|
}
|
|
|
|
public void setPoints(PVector[] points) {
|
|
this.points = new ArrayList<>();
|
|
for (PVector p : points) {
|
|
this.points.add(new FPoint(p));
|
|
}
|
|
}
|
|
|
|
} |