using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace RealTimeGraphX { /// /// Represents a graph transformation. /// public class GraphTransform { /// /// Gets or sets the horizontal scale factor. /// public double ScaleX { get; set; } /// /// Gets or sets the vertical scale factor. /// public double ScaleY { get; set; } /// /// Gets or sets the horizontal translate transformation. /// public double TranslateX { get; set; } /// /// Gets or sets the vertical translate transformation. /// public double TranslateY { get; set; } /// /// Initializes a new instance of the class. /// public GraphTransform() { ScaleX = 1; ScaleY = 1; TranslateX = 0; TranslateY = 0; } } }