Java Angle angle2degree(double angle)

Here you can find the source of angle2degree(double angle)

Description

angledegree

License

Open Source License

Declaration

public static double angle2degree(double angle) 

Method Source Code

//package com.java2s;
/**/*w  ww  . j ava 2s .c  o m*/
 * This file is part of VisiCut.
 * Copyright (C) 2011 - 2013 Thomas Oster <thomas.oster@rwth-aachen.de>
 * RWTH Aachen University - 52062 Aachen, Germany
 *
 *     VisiCut is free software: you can redistribute it and/or modify
 *     it under the terms of the GNU Lesser General Public License as published by
 *     the Free Software Foundation, either version 3 of the License, or
 *     (at your option) any later version.
 *
 *     VisiCut is distributed in the hope that it will be useful,
 *     but WITHOUT ANY WARRANTY; without even the implied warranty of
 *     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *     GNU Lesser General Public License for more details.
 *
 *     You should have received a copy of the GNU Lesser General Public License
 *     along with VisiCut.  If not, see <http://www.gnu.org/licenses/>.
 **/

public class Main {
    public static double angle2degree(double angle) {
        double w = -(angle * 180d / Math.PI);
        if (w < 0) {
            w += 360;
        }
        return w;
    }
}

Related

  1. angle(double x1, double y1, double x2, double y2)
  2. angle(double x1, double y1, double x2, double y2)
  3. angle(double[] vec1, double[] vec2)
  4. angle(float x, float y, float x1, float y1)
  5. angle(float x1, float y1, float x2, float y2)
  6. angle2pixels(double angle)
  7. angle360Limit(float angle)
  8. angleAdd(int i, final int i1)
  9. angleDistance(double angle1, double angle2)