aboutsummaryrefslogtreecommitdiffstats
path: root/Software/PMR/.gitignore
blob: e10e727be5ce2dc48c7d4d86a401a2744e73c8c1 (plain)
1
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;
        }
    }
}