Back to project page aBusTripMK.
The source code is released under:
GNU General Public License
If you think the Android project aBusTripMK listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
// Created by plusminus on 17:27:54 - 30.09.2008 package org.andnav.osm.views.util.constants; /*from w w w . j av a 2 s. c o m*/ /** * * @author Nicolas Gramlich * */ public interface MathConstants { // =========================================================== // Final Fields // =========================================================== public static final float DEG2RAD = (float)(Math.PI / 180.0); public static final float RAD2DEG = (float)(180.0 / Math.PI); public static final float PI = (float)Math.PI; public static final float PI_2 = PI / 2.0f; public static final float PI_4 = PI / 4.0f; // =========================================================== // Methods // =========================================================== }