Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package de.finalspace.engine.geometry;
- public class Face {
- // TODO: Material
- private final long index; // Starting index of the mesh indices
- private final long count; // Count of indices (Triangle = 3, Quad = 6, etc)
- public Face(final long index, final long count) {
- this.index = index;
- this.count = count;
- }
- public long getIndex() {
- return index;
- }
- public long getCount() {
- return count;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment