Package org.metawb.ephemeris.lib

Examples of org.metawb.ephemeris.lib.DefaultEphResults


    }

    public Map<PlanetId, EphPlanet> calcPlanets(Event event,
                                                Set<CalcPlanetFlag> flags,
                                                Set<PlanetId> planets) {
        DefaultEphResults res = new DefaultEphResults();
        calcPlanets(event, flags, planets, res);
        return res.getPlanets();
    }
View Full Code Here


        calcPlanets(event, flags, planets, res);
        return res.getPlanets();
    }

    public Map<HouseId, EphHouse> calcHouses(Event event, HouseTypeId type) {
        DefaultEphResults res = new DefaultEphResults();
        calcHouses(event, type, res);
        return res.getHouses();
    }
View Full Code Here

TOP

Related Classes of org.metawb.ephemeris.lib.DefaultEphResults

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.