60 lines
1.8 KiB
C#
60 lines
1.8 KiB
C#
//============================================================================
|
|
//ZedGraph Class Library - A Flexible Line Graph/Bar Graph Library in C#
|
|
//Copyright ?2005 John Champion
|
|
//
|
|
//This library is free software; you can redistribute it and/or
|
|
//modify it under the terms of the GNU Lesser General Public
|
|
//License as published by the Free Software Foundation; either
|
|
//version 2.1 of the License, or (at your option) any later version.
|
|
//
|
|
//This library is distributed in the hope that it will be useful,
|
|
//but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
//MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
//Lesser General Public License for more details.
|
|
//
|
|
//You should have received a copy of the GNU Lesser General Public
|
|
//License along with this library; if not, write to the Free Software
|
|
//Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
//=============================================================================
|
|
|
|
using System;
|
|
using System.Drawing;
|
|
using System.Drawing.Drawing2D;
|
|
using System.Collections;
|
|
using System.Runtime.Serialization;
|
|
using System.Security.Permissions;
|
|
|
|
namespace DrawGraph
|
|
{
|
|
/// <summary>
|
|
/// Simple struct that stores X and Y coordinates as doubles.
|
|
/// </summary>
|
|
///
|
|
/// <author> John Champion </author>
|
|
/// <version> $Revision: 3.1 $ $Date: 2006/06/24 20:26:44 $ </version>
|
|
[Serializable]
|
|
public struct PointD
|
|
{
|
|
/// <summary>
|
|
/// The X coordinate
|
|
/// </summary>
|
|
public double X;
|
|
/// <summary>
|
|
/// The Y coordinate
|
|
/// </summary>
|
|
public double Y;
|
|
|
|
/// <summary>
|
|
/// Construct a <see cref="PointD" /> object from two double values.
|
|
/// </summary>
|
|
/// <param name="x">The X coordinate</param>
|
|
/// <param name="y">The Y coordinate</param>
|
|
public PointD( double x, double y )
|
|
{
|
|
X = x;
|
|
Y = y;
|
|
}
|
|
}
|
|
}
|
|
|