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.

objectPhysics.cpp 715B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. //
  2. // objectPhysics.cpp
  3. // particle_combined
  4. //
  5. // Created by Sebastian Holzki on 11.06.19.
  6. //
  7. #include "objectPhysics.hpp"
  8. ObjectPhysics::ObjectPhysics(){
  9. cout<< "ObjectPhysics Konstruktor"<<endl;
  10. emitting = 0;
  11. attracting = 0;
  12. };
  13. // -----------------------------------
  14. ObjectPhysics::~ObjectPhysics()
  15. {
  16. };
  17. // -----------------------------------
  18. Attraktor::Attraktor(){
  19. emitting = false;
  20. attracting = true;
  21. cout << "Attraktor Konstruktor" << endl;
  22. };
  23. // -----------------------------------
  24. // -----------------------------------
  25. Emitter::Emitter(){
  26. };
  27. // -----------------------------------