Everything can now be drawn

This commit is contained in:
Quinn
2023-05-02 10:28:06 -05:00
parent 3321e77061
commit 1a4d6e6909
9 changed files with 59 additions and 72 deletions

View File

@@ -10,7 +10,7 @@ public class PointVertex extends Vertex {
* @param xPos the x position of the vertex
* @param yPos the y posiiton of the vertex
*/
PointVertex(float xPos, float yPos){
public PointVertex(float xPos, float yPos){
super();
this.position = new Vector(xPos, yPos);
}