runelite-api: use lombok constructors for Vertex/Triangle
This commit is contained in:
@@ -36,13 +36,6 @@ public class Triangle
|
||||
private final Vertex b;
|
||||
private final Vertex c;
|
||||
|
||||
public Triangle(Vertex a, Vertex b, Vertex c)
|
||||
{
|
||||
this.a = a;
|
||||
this.b = b;
|
||||
this.c = c;
|
||||
}
|
||||
|
||||
/**
|
||||
* Rotates the triangle by the given orientation.
|
||||
*
|
||||
|
||||
@@ -37,13 +37,6 @@ public class Vertex
|
||||
private final int y;
|
||||
private final int z;
|
||||
|
||||
public Vertex(int x, int y, int z)
|
||||
{
|
||||
this.x = x;
|
||||
this.y = y;
|
||||
this.z = z;
|
||||
}
|
||||
|
||||
/**
|
||||
* Rotates the triangle by the given orientation.
|
||||
*
|
||||
|
||||
Reference in New Issue
Block a user