Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 
 

35 řádky
604 B

  1. //
  2. // Lol Engine
  3. //
  4. // Copyright: (c) 2010-2013 Sam Hocevar <sam@hocevar.net>
  5. // This program is free software; you can redistribute it and/or
  6. // modify it under the terms of the Do What The Fuck You Want To
  7. // Public License, Version 2, as published by Sam Hocevar. See
  8. // http://www.wtfpl.net/ for more details.
  9. //
  10. #include <lol/engine-internal.h>
  11. #include <cstring>
  12. #include <cstdlib>
  13. namespace lol
  14. {
  15. /*
  16. * Primitive class
  17. */
  18. Primitive::Primitive(SubMesh *submesh, mat4 const &matrix)
  19. : m_submesh(submesh),
  20. m_matrix(matrix)
  21. {
  22. }
  23. Primitive::~Primitive()
  24. {
  25. }
  26. } /* namespace lol */