source: java/client_3D/src/pl/vorg/mowa/core/graphics/IndexBuffer.java @ 66

Last change on this file since 66 was 66, checked in by Maciej Komosinski, 13 years ago

set 'eol-style' to 'native'

  • Property svn:eol-style set to native
File size: 348 bytes
Line 
1package pl.vorg.mowa.core.graphics;
2
3/**
4 * A buffer with a list of indexes of sequent points of a figure (a type of a
5 * figure depends on PrimitiveType).
6 *
7 * @author vorg
8 */
9public class IndexBuffer {
10        private int[] buffer;
11
12        public int[] getBuffer() {
13                return buffer;
14        }
15
16        public void setBuffer(int[] buffer) {
17                this.buffer = buffer;
18        }
19}
Note: See TracBrowser for help on using the repository browser.