All Downloads are FREE. Search and download functionalities are using the official Maven repository.

br.com.etyllica.ui.button.ImageRoundButton Maven / Gradle / Ivy

package br.com.etyllica.ui.button;

import br.com.etyllica.layer.StaticLayer;
/**
 * 
 * @author yuripourre
 *
 */

public class ImageRoundButton extends ImageButton {

	public ImageRoundButton(int x, int y, StaticLayer normal,
			StaticLayer sobMouse) {
		super(x, y, normal, sobMouse);
	}

	public ImageRoundButton(int x, int y, int w, int h, String label) {
		super(x,y,w,h,label);
	}

	@Override
	public boolean onMouse(int mx, int my) {

		return colideCircleCircle(mx-w/2, my-w/2, 1, 1);
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy