public class

Point

extends Object
java.lang.Object
   ↳ com.neomades.graphics.Point

Class Overview

Point is an object which has x, y coordinate and an anchor in order to define element position around the point coordinate.

Summary

Fields
public int x X-position
public int y Y-position
Public Constructors
Point(int x, int y)
Constructs a new point with the given x and y.
Point()
[Expand]
Inherited Methods
From class java.lang.Object

Fields

public int x

X-position

public int y

Y-position

Public Constructors

public Point (int x, int y)

Constructs a new point with the given x and y. The default anchor value is Top-Left

public Point ()