All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.sksamuel.scrimage.angles.Radians Maven / Gradle / Ivy

There is a newer version: 4.2.0
Show newest version
package com.sksamuel.scrimage.angles;

public class Radians {
   public final double value;

   public Radians(double value) {
      this.value = value;
   }

   public Degrees toDegrees() {
      return new Degrees((int) (value * 180.0 / Math.PI));
   }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy