Advertisement
Trainlover08

VEX_AI_SIM/robot_controller/include/libraries.h

Oct 29th, 2024
31
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.78 KB | None | 0 0
  1. // (VEX_AI_SIM/robot_controller/include/libraries.h)
  2.  
  3. // WEBOTS
  4. // webots libraries
  5. #include <webots/Camera.hpp>
  6. #include <webots/Emitter.hpp>
  7. #include <webots/GPS.hpp>
  8. #include <webots/Motor.hpp>
  9. #include <webots/Node.hpp>
  10. #include <webots/Receiver.hpp>
  11. #include <webots/Supervisor.hpp>
  12.  
  13. #define TIME_STEP 64
  14.  
  15. // webots namespace
  16. using namespace webots;
  17.  
  18. // OTHER
  19. // extra libraries
  20. #include <iostream>
  21. #include <fstream>
  22. #include <sstream>
  23. #include <vector>
  24. #include <string>
  25. #include <cstdlib>
  26. #include <cmath>
  27. #include <algorithm>
  28. #include <ctime>
  29. #include <utility>
  30. #include <cstring>
  31. #include <deque>
  32. #include <random>
  33. #include <tuple>
  34. #include <cmath>
  35. #include <fstream>
  36. #include <stdexcept>
  37. #include <cassert>
  38.  
  39. // extra namespaces
  40. using namespace std;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement