2002-10-08 06:49:11 +00:00
|
|
|
// Gdk.Point.custom - Gdk Point class customizations
|
|
|
|
//
|
|
|
|
// Author: Jasper van Putten <Jaspervp@gmx.net>
|
2003-02-07 16:05:20 +00:00
|
|
|
// Author: Martin Willemoes Hansen <mwh@sysrq.dk>
|
2002-10-08 06:49:11 +00:00
|
|
|
//
|
|
|
|
// (c) 2002 Jasper van Putten
|
2003-02-07 16:05:20 +00:00
|
|
|
// (c) 2003 Martin Willemoes Hansen
|
2002-10-08 06:49:11 +00:00
|
|
|
//
|
|
|
|
// This code is inserted after the automatically generated code.
|
|
|
|
|
|
|
|
/// <summary>
|
2003-02-07 16:05:20 +00:00
|
|
|
/// ToString method
|
2002-10-08 06:49:11 +00:00
|
|
|
/// </summary>
|
|
|
|
///
|
|
|
|
/// <remarks>
|
2003-02-07 16:05:20 +00:00
|
|
|
/// returns a string representation of this point
|
2002-10-08 06:49:11 +00:00
|
|
|
/// </remarks>
|
|
|
|
|
|
|
|
public override string ToString ()
|
|
|
|
{
|
2002-10-08 16:26:24 +00:00
|
|
|
return String.Format ("({0},{1})", x, y);
|
2002-10-08 06:49:11 +00:00
|
|
|
}
|
|
|
|
|
2003-02-07 16:05:20 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Point Constructor
|
|
|
|
/// </summary>
|
|
|
|
///
|
|
|
|
/// <remarks>
|
|
|
|
/// Constructs a new Point with the specified
|
|
|
|
/// coordinates.
|
|
|
|
/// </remarks>
|
2002-10-08 06:49:11 +00:00
|
|
|
|
2003-02-07 16:05:20 +00:00
|
|
|
public Point (int x, int y)
|
|
|
|
{
|
|
|
|
this.x = x;
|
|
|
|
this.y = y;
|
|
|
|
}
|