.. _program_listing_file_fields2cover_path_planning_reeds_shepp_curves.h: Program Listing for File reeds_shepp_curves.h ============================================= |exhale_lsh| :ref:`Return to documentation for file ` (``fields2cover/path_planning/reeds_shepp_curves.h``) .. |exhale_lsh| unicode:: U+021B0 .. UPWARDS ARROW WITH TIP LEFTWARDS .. code-block:: cpp //============================================================================= // Copyright (C) 2021-2024 Wageningen University - All Rights Reserved // Author: Gonzalo Mier // BSD-3 License //============================================================================= #pragma once #ifndef FIELDS2COVER_PATH_PLANNING_REEDS_SHEPP_CURVES_H_ #define FIELDS2COVER_PATH_PLANNING_REEDS_SHEPP_CURVES_H_ #include "fields2cover/types.h" #include "fields2cover/path_planning/turning_base.h" namespace f2c::pp { class ReedsSheppCurves : public TurningBase { public: F2CPath createSimpleTurn(const F2CRobot& robot, double dist_start_pos, double start_angle, double end_angle) override; }; } // namespace f2c::pp #endif // FIELDS2COVER_PATH_PLANNING_REEDS_SHEPP_CURVES_H_