Interface Trigonometry

All Known Implementing Classes:
JavaTrigonometry, LibGDXTrigonometry, MinecraftTrigonometry, OptifineD5Trigonometry, OptifineK4Trigonometry, RandomTrigonometry, RivensFullTrigonometry, RivensHalfTrigonometry, RivensTrigonometry, TaylorTrigonometry, TrigonometryFunctions

public interface Trigonometry
Implementation of a trigonometry calculator.
  • Method Summary

    Modifier and Type
    Method
    Description
    float
    cos(float x)
    Calculates the cosine of a given value.
    float
    sin(float x)
    Calculates the sine of a given value.
  • Method Details

    • sin

      float sin(float x)
      Calculates the sine of a given value.
      Parameters:
      x - The value.
      Returns:
      The sine.
    • cos

      float cos(float x)
      Calculates the cosine of a given value.
      Parameters:
      x - The value.
      Returns:
      The cosine.