Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
//License from project: Apache License 

import java.awt.*;

public class Main {
    public static Point getRectCenterPoint(Rectangle r) {
        return new Point(r.x + r.width / 2, r.y + r.height / 2);
    }
}