public DataLogger(Vector2 startingpos, bool dragging = true)
        {
            Position = startingpos;
            Dragging = dragging;

            ImageSrc = "/DataLogger.png";
            Size     = new Vector2(320, 160);

            CalculationData = new AccelerationCalculationData();
            PortData        = new VelocityTimestampData[2];

            SetStyle();
        }
 public void ResetData()
 {
     CalculationData = new AccelerationCalculationData();
     PortData        = new VelocityTimestampData[2];
 }