Get Steps FromD istance And Stride : Geometry « Development Class « C# / C Sharp
- C# / C Sharp
- Development Class
- Geometry
Get Steps FromD istance And Stride
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
public static class DataConversion
{
public static double GetStepsFromDistanceAndStride(double distance, int stride)
{
return (distance * 63360 / (double)stride);
}
}
Related examples in the same category