GOSVertex2UV.cpp 740 B

1234567891011121314151617181920212223242526272829
  1. //===========================================================================//
  2. // Copyright (C) Microsoft Corporation. All rights reserved. //
  3. //===========================================================================//
  4. #include "MLRHeaders.hpp"
  5. #include "MLR\GOSVertex2UV.hpp"
  6. //#############################################################################
  7. //########################## GOSVertex2UV ################################
  8. //#############################################################################
  9. GOSVertex2UV::GOSVertex2UV()
  10. {
  11. x = 0.0f;
  12. y = 0.0f;
  13. z = 0.0f;
  14. rhw = 1.0f;
  15. argb = 0xffffffff;
  16. u1 = 0.0f;
  17. v1 = 0.0f;
  18. u2 = 0.0f;
  19. v2 = 0.0f;
  20. frgb = 0xffffffff;
  21. }