
org.geomajas.graphics.client.shape.AnchoredCircle Maven / Gradle / Ivy
The newest version!
/*
* This is part of Geomajas, a GIS framework, http://www.geomajas.org/.
*
* Copyright 2008-2014 Geosparc nv, http://www.geosparc.com/, Belgium.
*
* The program is available in open source according to the Apache
* License, Version 2.0. All contributions in this program are covered
* by the Geomajas Contributors License Agreement. For full licensing
* details, see LICENSE.txt in the project root.
*/
package org.geomajas.graphics.client.shape;
import org.geomajas.graphics.client.object.Cloneable;
import org.vaadin.gwtgraphics.client.shape.Circle;
/**
* A non-scaling rectangle that is anchored to its world space location on a specific pixel or anchor location (useful
* for location markers).
*
* @author Jan De Moerloose
*
*/
public class AnchoredCircle extends Circle implements Cloneable {
private int anchorX;
private int anchorY;
/**
* Creates an rectangle at the specified world location with a specified size and anchor point. E.g., if
* (anchorX,anchorY)=(width/2, height/2), the center of the rectangle will be positioned at the world location.
*
* @param userX x-location in world coordinates
* @param userY y-location in world coordinates
* @param userRadius width in pixels
* @param anchorX x-location of the anchor point (rectangle-relative)
* @param anchorY y-location of the anchor point (rectangle-relative)
*/
public AnchoredCircle(double userX, double userY, double userRadius,
int anchorX, int anchorY) {
super(userX, userY, userRadius);
this.anchorX = anchorX;
this.anchorY = anchorY;
}
@Override
protected void drawTransformed() {
getImpl().setX(getElement(), (int) Math.round(getUserX() * getScaleX() + getDeltaX()) - anchorX, isAttached());
getImpl().setY(getElement(), (int) Math.round(getUserY() * getScaleY() + getDeltaY()) - anchorY, isAttached());
// don't scale, but have to set width/height here !
setRadius((int) getUserRadius());
}
@Override
public Object cloneObject() {
return new AnchoredCircle(getUserX(), getUserY(), getUserRadius(), anchorX, anchorY);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy