org.stathissideris.ascii2image.graphics.ShapePoint Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of plantuml-mit Show documentation
Show all versions of plantuml-mit Show documentation
PlantUML is a component that allows to quickly write diagrams from text.
// THIS FILE HAS BEEN GENERATED BY A PREPROCESSOR.
package org.stathissideris.ascii2image.graphics;
/**
*
* @author Efstathios Sideris
*/
public class ShapePoint extends java.awt.geom.Point2D.Float {
public static final int TYPE_NORMAL = 0;
public static final int TYPE_ROUND = 1;
private boolean locked = false;
private int type = 0;
public ShapePoint() {
super();
}
public ShapePoint(float x, float y) {
super(x, y);
this.type = TYPE_NORMAL;
}
public ShapePoint(float x, float y, int type) {
super(x, y);
this.type = type;
}
public ShapePoint(ShapePoint other){
this(other.x, other.y, other.type);
}
/**
* @return
*/
public int getType() {
return type;
}
/**
* @param i
*/
public void setType(int i) {
type = i;
}
public boolean isInLineWith(ShapePoint point){
if(this.x == point.x) return true;
if(this.y == point.y) return true;
return false;
}
public boolean isWithinEdge(ShapeEdge edge) {
if(edge.isHorizontal()) {
if(x >= edge.getStartPoint().x && x <= edge.getEndPoint().x) return true;
if(x >= edge.getEndPoint().x && x <= edge.getStartPoint().x) return true;
return false;
} else if(edge.isVertical()) {
if(y >= edge.getStartPoint().y && y <= edge.getEndPoint().y) return true;
if(y >= edge.getEndPoint().y && y <= edge.getStartPoint().y) return true;
return false;
}
throw new RuntimeException("Cannot calculate is ShapePoint is within sloped edge");
}
public boolean isNorthOf(ShapePoint point){
return (this.y < point.y);
}
public boolean isSouthOf(ShapePoint point){
return (this.y > point.y);
}
public boolean isWestOf(ShapePoint point){
return (this.x < point.x);
}
public boolean isEastOf(ShapePoint point){
return (this.x > point.x);
}
public String toString(){
return "("+x+", "+y+")";
}
public void assign(ShapePoint point){
this.x = point.x;
this.y = point.y;
}
/**
* Does the same as assign, but respects the
* locked attribute
*
* @param point
*/
public void moveTo(ShapePoint point){
if(locked) return;
this.x = point.x;
this.y = point.y;
}
/**
* @return
*/
public boolean isLocked() {
return locked;
}
/**
* @param b
*/
public void setLocked(boolean b) {
locked = b;
}
}