Formula Student Autonomous Systems
The code for the main driverless system
Loading...
Searching...
No Matches
skidpad_config.hpp
Go to the documentation of this file.
1#ifndef SRC_PLANNING_INCLUDE_CONFIG_SKIDPAD_CONFIG_HPP_
2#define SRC_PLANNING_INCLUDE_CONFIG_SKIDPAD_CONFIG_HPP_
3
12
16 double tolerance_;
17
22
26 SkidpadConfig(int minimum_cones, double tolerance)
27 : minimum_cones_(minimum_cones), tolerance_(tolerance) {}
28};
29
30#endif // SRC_PLANNING_INCLUDE_CONFIG_SKIDPAD_CONFIG_HPP_
Configuration parameters for the Skidpad class.
SkidpadConfig(int minimum_cones, double tolerance)
Parameterized constructor.
double tolerance_
Maximum distance for matching cone pairs during ICP alignment.
SkidpadConfig()
Default constructor with sensible defaults.
int minimum_cones_
Minimum number of cones required.