Guest User

Untitled

a guest
Jul 3rd, 2012
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.42 KB | None | 0 0
  1. package de.finalspace.engine.geometry;
  2.  
  3. public class Face {
  4.     // TODO: Material
  5.     private final long index; // Starting index of the mesh indices
  6.     private final long count; // Count of indices (Triangle = 3, Quad = 6, etc)
  7.    
  8.     public Face(final long index, final long count) {
  9.         this.index = index;
  10.         this.count = count;
  11.     }
  12.  
  13.     public long getIndex() {
  14.         return index;
  15.     }
  16.  
  17.     public long getCount() {
  18.         return count;
  19.     }
  20. }
Advertisement
Add Comment
Please, Sign In to add comment