本文整理汇总了Java中org.jhotdraw.draw.Figure.getBounds方法的典型用法代码示例。如果您正苦于以下问题:Java Figure.getBounds方法的具体用法?Java Figure.getBounds怎么用?Java Figure.getBounds使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.jhotdraw.draw.Figure
的用法示例。
在下文中一共展示了Figure.getBounds方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: alignFigures
import org.jhotdraw.draw.Figure; //导入方法依赖的package包/类
@Override
protected void alignFigures(Collection selectedFigures, Rectangle2D.Double selectionBounds) {
double y = selectionBounds.y;
for (Iterator i=getView().getSelectedFigures().iterator(); i.hasNext(); ) {
Figure f = (Figure) i.next();
if (f.isTransformable()) {
f.willChange();
Rectangle2D.Double b = f.getBounds();
AffineTransform tx = new AffineTransform();
tx.translate(0, y - b.y);
f.transform(tx);
f.changed();
fireUndoableEditHappened(new TransformEdit(f, tx));
}
}
}
示例2: getSelectionBounds
import org.jhotdraw.draw.Figure; //导入方法依赖的package包/类
/**
* Returns the bounds of the selected figures.
*/
protected Rectangle2D.Double getSelectionBounds() {
Rectangle2D.Double bounds = null;
for (Iterator i=getView().getSelectedFigures().iterator(); i.hasNext(); ) {
Figure f = (Figure) i.next();
if (bounds == null) {
bounds = f.getBounds();
} else {
bounds.add(f.getBounds());
}
}
return bounds;
}