You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

wavefrontobjfacevertex.h 411B

12345678910111213141516171819202122
  1. #ifndef WAVEFRONTOBJVERTEX_H
  2. #define WAVEFRONTOBJVERTEX_H
  3. class WaveFrontObjFaceVertex
  4. {
  5. public:
  6. WaveFrontObjFaceVertex();
  7. int vertexPosition() const;
  8. void setVertexPosition(int vertexPosition);
  9. int textureCoordPosition() const;
  10. void setTextureCoordPosition(int textureCoordPosition);
  11. private:
  12. int _vertexPosition;
  13. int _textureCoordPosition;
  14. };
  15. #endif // WAVEFRONTOBJVERTEX_H