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

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  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. };
  20. // -----------------------------------
  21. // -----------------------------------
  22. Emitter::Emitter(){
  23. };
  24. // -----------------------------------