package pl.vorg.mowa.core.graphics; /** * A buffer of a vertice's attributes (e.g., position, color) represented with * floats. * * @author vorg */ public class FloatVertexAttrib extends VertexAttrib { private float[] buffer; public FloatVertexAttrib(String name) { super(name); } public float[] getBuffer() { return buffer; } public void setBuffer(float[] buffer) { this.buffer = buffer; } }