namespace RealTimeGraphX
{
///
/// Represents a graph transformation.
///
public class GraphTransform
{
///
/// Gets or sets the horizontal scale factor.
///
public float ScaleX { get; set; }
///
/// Gets or sets the vertical scale factor.
///
public float ScaleY { get; set; }
///
/// Gets or sets the horizontal translate transformation.
///
public float TranslateX { get; set; }
///
/// Gets or sets the vertical translate transformation.
///
public float TranslateY { get; set; }
///
/// Initializes a new instance of the class.
///
public GraphTransform()
{
ScaleX = 1;
ScaleY = 1;
TranslateX = 0;
TranslateY = 0;
}
}
}