예제 #1
0
 public int SweCalc(double tjd, int ipl, int iflag, ref double[] xx, ref string serr)
 {
     return(SwephDll.SweCalc(tjd, ipl, iflag, ref xx, ref serr));
 }
예제 #2
0
 public void SweSetTopo(double geolon, double geolat, double height)
 => SwephDll.SweSetTopo(geolon, geolat, height);
예제 #3
0
 public string SweGetPlanetName(int ipl)
 {
     return(SwephDll.SweGetPlanetName(ipl));
 }
예제 #4
0
 public double SweDeltaT(double tjd) => SwephDll.SweDeltaT(tjd);
예제 #5
0
 public void SweRevjul(double jd, bool gregorian, ref int year, ref int mon, ref int mday, ref double hour)
 {
     SwephDll.SweRevjul(jd, gregorian ? SwephDll.SE_GREG_CAL : SwephDll.SE_JUL_CAL, ref year, ref mon, ref mday, ref hour);
 }
예제 #6
0
 public double SweJulday(int year, int month, int day, double hour, bool gregorian)
 {
     return(SwephDll.SweJulday(year, month, day, hour, gregorian ? SwephDll.SE_GREG_CAL : SwephDll.SE_JUL_CAL));
 }
예제 #7
0
 public string GetVersion()
 {
     return(SwephDll.SweVersion());
 }