source: java/client_3D/src/com/framsticks/net/client3D/graphics/loaders/OBJFace.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: 339 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.