samedi 16 mai 2015

Bien commenter son return

/**
 * Indique si un point est dans le cercle donné
 * @param centre du cercle
 * @param position du palet
 * @return vrai si oui sinon faux
 */
public boolean estDansCercle(Point centre, Point position) {
        if(centre.distance(position) <= Radar.RAYON_PALET) {
                return true;
        }

        return false;
}
Envoyé par Wescoeur.

via Code De Porc http://bit.ly/1cFZ7Hc

Aucun commentaire:

Enregistrer un commentaire

//Activation syntaxhilight