Java Rectangle randomSquare(int minW, int maxW)

Here you can find the source of randomSquare(int minW, int maxW)

Description

Returns a square with the given min/max side length.

License

Open Source License

Parameter

Parameter Description
minW a parameter
maxW a parameter

Return

a square with its origin at (0,0)

Declaration

public static Rectangle randomSquare(int minW, int maxW) 

Method Source Code

//package com.java2s;
/*//w  w  w .j  a  v a 2 s . c  om
 *   Neon, a roguelike engine.
 *   Copyright (C) 2013 - Maarten Driesen
 * 
 *   This program 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.
 *
 *   This program is 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 program.  If not, see <http://www.gnu.org/licenses/>.
 */

import java.awt.Rectangle;

public class Main {
    /**
     * Returns a square with the given min/max side length.
     * 
     * @param minW
     * @param maxW
     * @return   a square with its origin at (0,0)
     */
    public static Rectangle randomSquare(int minW, int maxW) {
        int w = random(minW, maxW);
        return new Rectangle(w, w);
    }

    /**
     * @param min
     * @param max
     * @return   a random int between min and max (min and max included)
     */
    public static int random(int min, int max) {
        return (int) (min + (max - min + 1) * Math.random());
    }
}

Related

  1. inflateRectangle(Rectangle r, int x, int y)
  2. interpolate(Rectangle r1, Rectangle r2, float f)
  3. mergeRects(Set prev, Set current)
  4. normalizeRect(Rectangle rect)
  5. randomRectangle(int minW, int maxW, int minH, int maxH)
  6. rectangleResize(Rectangle rect, int width, int height)
  7. rectCollide(final Rectangle a, final Rectangle b)
  8. rectDistance(final Rectangle r, final Rectangle q)
  9. rectFromArray(Rectangle2D aRectangle, double[] pts)