using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace IStation.Model { /// /// 坐标系 /// public interface IAxisCalculator { /// /// 计算 /// double Calculate(double v); /// /// 反算 /// double RevCalculate(double v); } }