Home | History | Annotate | Download | only in util

Lines Matching defs:term

672      * Return the major solar term on or after December 15 of the given
730 * Return the major solar term on or before a given date. This
740 int term = ((int) Math.floor(6 * astro.getSunLongitude() / Math.PI) + 2) % 12;
741 if (term < 1) {
742 term += 12;
744 return term;
748 * Return true if the given month lacks a major solar term.