1
0
mirror of https://github.com/octoleo/plantuml.git synced 2024-06-10 04:02:27 +00:00
plantuml/src/net/sourceforge/plantuml/ugraphic/hand/HandJiggle.java
Arnaud Roques ebf1b1b622 wip
2022-03-19 13:48:23 +01:00

166 lines
4.6 KiB
Java

/* ========================================================================
* PlantUML : a free UML diagram generator
* ========================================================================
*
* (C) Copyright 2009-2023, Arnaud Roques
*
* Project Info: http://plantuml.com
*
* If you like this project or if you find it useful, you can support us at:
*
* http://plantuml.com/patreon (only 1$ per month!)
* http://plantuml.com/paypal
*
* This file is part of PlantUML.
*
* PlantUML is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* PlantUML 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 General Public
* License for more details.
*
* You should have received a copy of the GNU General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
* USA.
*
*
* Original Author: Adrian Vogt
*
*/
package net.sourceforge.plantuml.ugraphic.hand;
import java.awt.geom.CubicCurve2D;
import java.awt.geom.Point2D;
import java.util.ArrayList;
import java.util.Collection;
import java.util.Random;
import net.sourceforge.plantuml.ugraphic.UPath;
import net.sourceforge.plantuml.ugraphic.UPolygon;
public class HandJiggle {
private final Collection<Point2D> points = new ArrayList<>();
private double startX;
private double startY;
private final double defaultVariation;
private final Random rnd;
private double randomMe() {
return rnd.nextDouble();
}
public HandJiggle(double startX, double startY, double defaultVariation, Random rnd) {
this.startX = startX;
this.startY = startY;
this.defaultVariation = defaultVariation;
this.rnd = rnd;
points.add(new Point2D.Double(startX, startY));
}
public static HandJiggle create(Point2D start, double defaultVariation, Random rnd) {
return new HandJiggle(start.getX(), start.getY(), defaultVariation, rnd);
}
public void lineTo(Point2D end) {
lineTo(end.getX(), end.getY());
}
public void arcTo(double angle0, double angle1, double centerX, double centerY, double rx, double ry) {
lineTo(pointOnCircle(centerX, centerY, (angle0 + angle1) / 2, rx, ry));
lineTo(pointOnCircle(centerX, centerY, angle1, rx, ry));
}
private static Point2D pointOnCircle(double centerX, double centerY, double angle, double rx, double ry) {
final double x = centerX + Math.cos(angle) * rx;
final double y = centerY + Math.sin(angle) * ry;
return new Point2D.Double(x, y);
}
public void lineTo(final double endX, final double endY) {
final double diffX = Math.abs(endX - startX);
final double diffY = Math.abs(endY - startY);
final double distance = Math.sqrt(diffX * diffX + diffY * diffY);
if (distance < 0.001) {
return;
}
int segments = (int) Math.round(distance / 10);
double variation = defaultVariation;
if (segments < 5) {
segments = 5;
variation /= 3;
}
final double stepX = Math.signum(endX - startX) * diffX / segments;
final double stepY = Math.signum(endY - startY) * diffY / segments;
final double fx = diffX / distance;
final double fy = diffY / distance;
for (int s = 0; s < segments; s++) {
double x = stepX * s + startX;
double y = stepY * s + startY;
final double offset = (randomMe() - 0.5) * variation;
points.add(new Point2D.Double(x - offset * fy, y - offset * fx));
}
points.add(new Point2D.Double(endX, endY));
this.startX = endX;
this.startY = endY;
}
public void curveTo(CubicCurve2D curve) {
final double flatness = curve.getFlatness();
final double dist = curve.getP1().distance(curve.getP2());
if (flatness > 0.1 && dist > 20) {
final CubicCurve2D left = new CubicCurve2D.Double();
final CubicCurve2D right = new CubicCurve2D.Double();
curve.subdivide(left, right);
curveTo(left);
curveTo(right);
return;
}
lineTo(curve.getP2());
}
public UPolygon toUPolygon() {
final UPolygon result = new UPolygon();
for (Point2D p : points) {
result.addPoint(p.getX(), p.getY());
}
return result;
}
public UPath toUPath() {
UPath path = null;
for (Point2D p : points) {
if (path == null) {
path = new UPath();
path.moveTo(p);
} else {
path.lineTo(p);
}
}
if (path == null) {
throw new IllegalStateException();
}
return path;
}
public void appendTo(UPath result) {
for (Point2D p : points) {
result.lineTo(p);
}
}
}