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)); }
public void SweSetTopo(double geolon, double geolat, double height) => SwephDll.SweSetTopo(geolon, geolat, height);
public string SweGetPlanetName(int ipl) { return(SwephDll.SweGetPlanetName(ipl)); }
public double SweDeltaT(double tjd) => SwephDll.SweDeltaT(tjd);
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); }
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)); }
public string GetVersion() { return(SwephDll.SweVersion()); }