Class Vector2Utils

java.lang.Object
com.csse3200.game.utils.math.Vector2Utils

public class Vector2Utils extends Object
Contains additional utility constants and functions for common Vector2 operations.
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final com.badlogic.gdx.math.Vector2
     
    static final com.badlogic.gdx.math.Vector2
     
    static final com.badlogic.gdx.math.Vector2
     
    static final com.badlogic.gdx.math.Vector2
     
    static final com.badlogic.gdx.math.Vector2
     
    static final com.badlogic.gdx.math.Vector2
     
    static final com.badlogic.gdx.math.Vector2
     
    static final com.badlogic.gdx.math.Vector2
     
    static final com.badlogic.gdx.math.Vector2
     
    static final com.badlogic.gdx.math.Vector2
     
    static final com.badlogic.gdx.math.Vector2
     
    static final com.badlogic.gdx.math.Vector2
     
    static final com.badlogic.gdx.math.Vector2
     
    static final com.badlogic.gdx.math.Vector2
     
    static final com.badlogic.gdx.math.Vector2
     
  • Method Summary

    Modifier and Type
    Method
    Description
    static double
    angleFromTo(com.badlogic.gdx.math.Vector2 from, com.badlogic.gdx.math.Vector2 to)
    Calculate the angle in degrees between two vectors
    static double
    angleTo(com.badlogic.gdx.math.Vector2 vector)
    Calculate the angle in degrees of a vector.

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

    • LEFT

      public static final com.badlogic.gdx.math.Vector2 LEFT
    • UP

      public static final com.badlogic.gdx.math.Vector2 UP
    • DOWN

      public static final com.badlogic.gdx.math.Vector2 DOWN
    • UP_RIGHT

      public static final com.badlogic.gdx.math.Vector2 UP_RIGHT
    • UP_LEFT

      public static final com.badlogic.gdx.math.Vector2 UP_LEFT
    • DOWN_RIGHT

      public static final com.badlogic.gdx.math.Vector2 DOWN_RIGHT
    • DOWN_LEFT

      public static final com.badlogic.gdx.math.Vector2 DOWN_LEFT
    • DODGE_UP

      public static final com.badlogic.gdx.math.Vector2 DODGE_UP
    • DODGE_LEFT

      public static final com.badlogic.gdx.math.Vector2 DODGE_LEFT
    • DODGE_DOWN

      public static final com.badlogic.gdx.math.Vector2 DODGE_DOWN
    • DODGE_RIGHT

      public static final com.badlogic.gdx.math.Vector2 DODGE_RIGHT
    • ONE

      public static final com.badlogic.gdx.math.Vector2 ONE
    • MAX

      public static final com.badlogic.gdx.math.Vector2 MAX
    • MIN

      public static final com.badlogic.gdx.math.Vector2 MIN
  • Method Details

    • angleTo

      public static double angleTo(com.badlogic.gdx.math.Vector2 vector)
      Calculate the angle in degrees of a vector.
      Parameters:
      vector - The vector relative to the origin
      Returns:
      Angle in degrees from -180 to 180
    • angleFromTo

      public static double angleFromTo(com.badlogic.gdx.math.Vector2 from, com.badlogic.gdx.math.Vector2 to)
      Calculate the angle in degrees between two vectors
      Parameters:
      from - The vector from which angle is measured
      to - The vector to which angle is measured
      Returns:
      Angle in degrees from -180 to 180