C# Class No.UI.Point

Represents a point within the Cartesian coordinate space.
Exibir arquivo Open project: hexafluoride/no

Public Properties

Property Type Description
Empty Point

Public Methods

Method Description
Point ( int x, int y ) : System

Creates a Point with the given coordinates.

operator ( ) : Point

Method Details

Point() public method

Creates a Point with the given coordinates.
public Point ( int x, int y ) : System
x int The X axis of the Point.
y int The Y axis of the Point.
return System

operator() public static method

public static operator ( ) : Point
return Point

Property Details

Empty public_oe static_oe property

A Point with the coordinates (0,0).
public static Point Empty
return Point