package pl.vorg.mowa.core.graphics; /** * A buffer with a list of indexes of sequent points of a figure (a type of a * figure depends on PrimitiveType). * * @author vorg */ public class IndexBuffer { private int[] buffer; public int[] getBuffer() { return buffer; } public void setBuffer(int[] buffer) { this.buffer = buffer; } }