Apollo  6.0
Open source self driving car software
st_point.h
Go to the documentation of this file.
1 /******************************************************************************
2  * Copyright 2017 The Apollo Authors. All Rights Reserved.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  *****************************************************************************/
16 
21 #pragma once
22 
23 #include <string>
24 
26 
27 namespace apollo {
28 namespace planning {
29 
30 class STPoint : public common::math::Vec2d {
31  // x-axis: t; y-axis: s.
32  public:
33  STPoint() = default;
34  STPoint(const double s, const double t);
35  explicit STPoint(const common::math::Vec2d& vec2d_point);
36 
37  double x() const = delete;
38  double y() const = delete;
39 
40  double s() const;
41  double t() const;
42  void set_s(const double s);
43  void set_t(const double t);
44  std::string DebugString() const;
45 };
46 
47 } // namespace planning
48 } // namespace apollo
Defines the Vec2d class.
PlanningContext is the runtime context in planning. It is persistent across multiple frames...
Definition: atomic_hash_map.h:25
double y() const =delete
double x() const =delete
Planning module main class. It processes GPS and IMU as input, to generate planning info...
Definition: st_point.h:30
Implements a class of 2-dimensional vectors.
Definition: vec2d.h:42
void set_t(const double t)
std::string DebugString() const
void set_s(const double s)