source: java/client_3D/src/com/framsticks/net/client3D/graphics/loaders/OBJFace.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: 357 bytes
Line 
1package com.framsticks.net.client3D.graphics.loaders;
2
3/**
4 * A single polygon being a part of a 3d mesh.
5 *
6 * @author vorg
7 */
8public class OBJFace {
9        private OBJFaceVertex[] vertices;
10
11        public OBJFaceVertex[] getVertices() {
12                return vertices;
13        }
14        public void setVertices(OBJFaceVertex[] vertices) {
15                this.vertices = vertices;
16        }
17       
18}
Note: See TracBrowser for help on using the repository browser.