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.cpp 514B

12345678910111213141516171819202122232425
  1. #include "wavefrontobjfacevertex.h"
  2. WaveFrontObjFaceVertex::WaveFrontObjFaceVertex()
  3. {
  4. }
  5. int WaveFrontObjFaceVertex::textureCoordPosition() const
  6. {
  7. return _textureCoordPosition;
  8. }
  9. void WaveFrontObjFaceVertex::setTextureCoordPosition(int textureCoordPosition)
  10. {
  11. _textureCoordPosition = textureCoordPosition;
  12. }
  13. int WaveFrontObjFaceVertex::vertexPosition() const
  14. {
  15. return _vertexPosition;
  16. }
  17. void WaveFrontObjFaceVertex::setVertexPosition(int vertexPosition)
  18. {
  19. _vertexPosition = vertexPosition;
  20. }