get Rectangle2D low right corner - Java 2D Graphics

Java examples for 2D Graphics:Rectangle

Description

get Rectangle2D low right corner

Demo Code


//package com.java2s;
import java.awt.geom.Point2D;
import java.awt.geom.Rectangle2D;

public class Main {
    public static Point2D LR(Rectangle2D rect) {
        return new Point2D.Double(rect.getX() + rect.getWidth(),
                rect.getY());/*from   w  ww  .  java 2 s  .  c o  m*/
    }
}

Related Tutorials