import processing.core.PVector; public class VectorQuad { PVector v1; PVector v2; PVector v3; PVector v4; public VectorQuad(PVector v1, PVector v2, PVector v3, PVector v4) { this.v1 = v1; this.v2 = v2; } }