com.github.megatronking.svg.generator.utils.Point Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of svg-generator Show documentation
Show all versions of svg-generator Show documentation
A SVG Support Library for Android
The newest version!
package com.github.megatronking.svg.generator.utils;
/**
* Point holds two float coordinates.
*
* @author Sundy
* @since 18/4/3 17:49
*/
public class Point {
public float x;
public float y;
public Point() {
}
public Point(float x, float y) {
this.x = x;
this.y = y;
}
public void set(float x, float y) {
this.x = x;
this.y = y;
}
public float getX() {
return x;
}
public void setX(float x) {
this.x = x;
}
public float getY() {
return y;
}
public void setY(float y) {
this.y = y;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy