Newer
Older
EPQ-3D-renderer / src / Point2D.java
@cory cory on 30 Nov 2022 526 bytes Many half implementations
import java.util.ArrayList;

public class Point2D {
    public int x;
    public int y;
    public double z;
    // contains a Z value so that projected points can have their Z values calculated efficiently
    public Point2D(int _x, int _y){
        x = _x;
        y = _y;
    }
    public void set(int _x, int _y){
        x = _x;
        y = _y;
    }
    public int[] get(){
        return new int[]{x, y};
    }

//    public int intX(){return (int)Math.round(x);}
//    public int intY(){return (int)Math.round(y);}

}