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 540B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. //
  2. // objectPhysics.cpp
  3. // particle_combined
  4. //
  5. // Created by Sebastian Holzki on 11.06.19.
  6. //
  7. #include "objectPhysics.h"
  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. };
  20. // -----------------------------------
  21. Emitter::Emitter(){
  22. };
  23. // -----------------------------------