Projektordner für das Team Deutsches Museum (FORUM).
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.

greatWhole.cpp 981B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. //
  2. // greatWhole.cpp
  3. // emptyExample
  4. //
  5. // Created by Sebastian Holzki on 17.04.19.
  6. //
  7. #include "greatWhole.hpp"
  8. #include "avatar.hpp"
  9. GreatWhole::GreatWhole()
  10. {
  11. }
  12. // -----------------------------------
  13. GreatWhole::~GreatWhole()
  14. {
  15. }
  16. // -----------------------------------
  17. void GreatWhole::setup(){
  18. }
  19. // -----------------------------------------------
  20. void GreatWhole::update(vector<Avatar*> avatars){
  21. }
  22. // -----------------------------------------------
  23. void GreatWhole::draw(){
  24. /*
  25. draw the whole avatar vector
  26. */
  27. }
  28. // -----------------------------------------------
  29. void GreatWhole::addAvatar(Avatar avatar){
  30. // avatars.push_back(avatar);
  31. /*
  32. Set coordinates in abhängigkeit vom letzten also bei avatars at (max-1)
  33. clip avatar dann an den letzten, y und x angepasst an x und y von avatars.at(max-1)
  34. */
  35. }