事情是这样的
我写了一个自定义的结构 Angle
储存值是角度(degree),可以透过属性读径度(rad)、圈(round)
、弧分(arcmin)和弧秒(arcsec)(这些属性都是double)
现在想让Angle跟一般的double一样可以丢进三角函数中
像是Math.Sin(Angle)
而不是写Math.sin(Angle.rad)
目前看到比较适合的解决方法是使用Class Helper
但是我写了一个 MathHelper的Class
我试着写 Math.Sin(Angle)是没法编译过的
如果是写MathHelper.Sin(Angle)就没问题
不过这样我还不如就写Math.Sin(Angle.rad)比较省事
是System.Math本来就不能用Class Helper去多载新函式?
还是我写法不正确?
下面是程式码
using System;
namespace UnitSystem
{
public struct Angle//角度
{
public const double R2D = 57.29577951308232087680;
public const double D2R = 0.01745329251994329577;
double _degree;
public double degree //角度
{
get => _degree;
set => _degree = value;
}
public double round //圈数
{
get { return this._degree / 360; }
set { _degree = value * 360; }
}
public double rad //径度
{
get { return this._degree * D2R; }
set { _degree = value * R2D; }
}
public double arcmin //弧分
{
get { return this._degree * 60; }
set { _degree = value / 60; }
}
public double arcsec
{
get { return this._degree * 3600; }
set { _degree = value / 3600; }
}
public Angle(double value)
{
_degree = value*R2D;
}
}
public static class MathHelper
{
public static double Sin(Angle ang)
{
return Math.Sin(ang.rad);
}
public static double Cos(Angle ang)
{
return Math.Cos(ang.rad);
}
public static double Sinh(Angle ang)
{
return Math.Sinh(ang.rad);
}
public static double Cosh(Angle ang)
{
return Math.Cosh(ang.rad);
}
public static double Tan(Angle ang)
{
return Math.Tan(ang.rad);
}
public static double Tanh(Angle ang)
{
return Math.Tanh(ang.rad);
}
public static Angle aTan(Angle ang)
{
return Math.Atan(ang.rad);
}
}
}