Module dxf

Class OBJFaceList

java.lang.Object
org.jagatoo.loaders.models.obj.OBJFaceList
Direct Known Subclasses:
OBJGroup

public class OBJFaceList extends Object
A list of the faces that build up the obj file
Author:
Kevin Glass, Marvin Froehlich (aka Qudus)
  • Constructor Details

    • OBJFaceList

      public OBJFaceList(List<float[]> verts, List<float[]> normals, List<float[]> texs)
  • Method Details

    • setFaces

      public void setFaces(List<OBJFace> faces)
    • getFaces

      public List<OBJFace> getFaces()
    • getVertexList

      public List<float[]> getVertexList()
    • getNormalList

      public List<float[]> getNormalList()
    • getTexList

      public List<float[]> getTexList()
    • setNormalsUsed

      public void setNormalsUsed(boolean used)
    • normalsUsed

      public boolean normalsUsed()
    • normalsSupported

      public boolean normalsSupported()
    • setTexturesUsed

      public void setTexturesUsed(boolean used)
    • texturesUsed

      public boolean texturesUsed()
    • texturesSupported

      public boolean texturesSupported()
    • add

      public void add(String line, OBJMaterial mat)