Browse Source

feat: 存储动态计算非线性zoom为线形zoom公式,实现动态计算zoom

master
fajiao 2 years ago
parent
commit
4b125bbfd8
  1. 8
      Cis.Application/Core/Component/MarkSeacher/Seacher/MarkSearcherBase.cs

8
Cis.Application/Core/Component/MarkSeacher/Seacher/MarkSearcherBase.cs

@ -213,6 +213,14 @@ public abstract class MarkSearcherBase
return pointF; return pointF;
} }
/// <summary>
/// 将计算公式存储到数据库,实现动态计算公式
/// https://github.com/houlongchao/HLC.Expression
/// https://blog.csdn.net/cxb2011/article/details/100837168
/// https://github.com/zz1231118/Rabbit
/// </summary>
/// <param name="zoomPos"></param>
/// <returns></returns>
protected abstract double GetZoomTag(double zoomPos); protected abstract double GetZoomTag(double zoomPos);
#endregion Util #endregion Util

Loading…
Cancel
Save