com.ng.gdxutils.model.Scale Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gdx-utils Show documentation
Show all versions of gdx-utils Show documentation
A java library that used over libGdx game framework.
The newest version!
package com.ng.gdxutils.model;
import com.badlogic.gdx.math.Vector2;
/**
* (c) 2016 Abhishek Aryan
*
* @author Abhishek Aryan
* @since 22-02-2016.
*
*/
public class Scale extends Vector2 {
public Scale(float x, float y) {
super(x,y);
}
public static Scale makeUnScale(){
return new Scale(1,1);
}
public static Scale makeScale(float x, float y) {
return new Scale(x, y);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy