export class Quad extends APC implements IHiccupShape {
    constructor(points: Iterable<Vec>, attribs?: Attribs) {
        super(points, attribs);
        __ensureNumVerts(this.points.length, 4);
    }