Back to project page non.
The source code is released under:
MIT License
If you think the Android project non listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package non; //from w w w . ja v a2 s. co m import com.badlogic.gdx.math.Shape2D; public class Line implements Shape2D { public float x1, y1, x2, y2; public Line(float x1, float y1, float x2, float y2) { this.x1 = x1; this.y1 = y1; this.x2 = x2; this.y2 = y2; } }