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

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

added sources of the 3D client for the Framsticks server

File size: 367 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.