Here you can find the source of randomSquare(int minW, int maxW)
Parameter | Description |
---|---|
minW | a parameter |
maxW | a parameter |
public static Rectangle randomSquare(int minW, int maxW)
//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()); } }