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

com.harium.etyl.ui.theme.cursor.arrow.PolygonalArrow Maven / Gradle / Ivy

There is a newer version: 1.0.18
Show newest version
package com.harium.etyl.ui.theme.cursor.arrow;

import java.awt.Polygon;

public class PolygonalArrow {

	protected Polygon polygon;
	
	public PolygonalArrow() {
		super();
		
		polygon = new Polygon();
	}
		
	protected void addPoint(int x, int y) {
		polygon.addPoint(x, y);
	}
	
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy