Formula Student Autonomous Systems
The code for the main driverless system
Loading...
Searching...
No Matches
midpoint_generator_config.hpp
Go to the documentation of this file.
1#ifndef SRC_PLANNING_INCLUDE_CONFIG_MIDPOINT_GENERATOR_CONFIG_HPP_
2#define SRC_PLANNING_INCLUDE_CONFIG_MIDPOINT_GENERATOR_CONFIG_HPP_
3
12
17
22
30
37 MidpointGeneratorConfig(double min_distance, double max_distance, double window_radius)
38 : minimum_cone_distance_(min_distance),
39 maximum_cone_distance_(max_distance),
40 sliding_window_radius_(window_radius) {}
41};
42
43#endif // SRC_PLANNING_INCLUDE_CONFIG_MIDPOINT_GENERATOR_CONFIG_HPP_
Configuration parameters for the Midpoint Generator class.
double maximum_cone_distance_
Maximum distance between cones.
double sliding_window_radius_
Sliding window radius for midpoint generation.
MidpointGeneratorConfig(double min_distance, double max_distance, double window_radius)
Parameterized constructor.
double minimum_cone_distance_
Minimum distance between cones.
MidpointGeneratorConfig()
Default constructor.