using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tango.MachineStudio.Logging.Helpers
{
public static class TimelineHelper
{
public static double ConvertTimeToPixels(TimeSpan time, double scaleFactor)
{
return ((double)(0.05f * ((double)(time.TotalSeconds) * 20))) * scaleFactor;
}
}
}