Created
April 27, 2015 14:13
-
-
Save rcurtis/4ba9a3b648a25c39fe84 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
VertexArray _verts = new VertexArray(PrimitiveType.Quads, 4); | |
_verts.Append(new Vertex(new Vector2f(100, 200), Color.Red)); | |
_verts.Append(new Vertex(new Vector2f(100, 0), Color.Red)); | |
_verts.Append(new Vertex(new Vector2f(200, 100), Color.Red)); | |
_verts.Append(new Vertex(new Vector2f(200, 200), Color.Red)); | |
_window.Draw(_verts); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment