ADORe
ADORe is a modular open source software library and toolkit for decision making, planning, control and simulation of automated vehicles
aconflictpoint.h
Go to the documentation of this file.
1 /********************************************************************************
2  * Copyright (C) 2017-2020 German Aerospace Center (DLR).
3  * Eclipse ADORe, Automated Driving Open Research https://eclipse.org/adore
4  *
5  * This program and the accompanying materials are made available under the
6  * terms of the Eclipse Public License 2.0 which is available at
7  * http://www.eclipse.org/legal/epl-2.0.
8  *
9  * SPDX-License-Identifier: EPL-2.0
10  *
11  * Contributors:
12  * Daniel Heß - initial API and implementation
13  ********************************************************************************/
14 #pragma once
16 
17 namespace adore
18 {
19 namespace view
20 {
22  {
23  double s,t0,t1;
24  ConflictPoint(double s,double t0,double t1)
25  :s(s),t0(t0),t1(t1){}
26  };
27 
29  {
30  public:
31  virtual int size() const =0;
32  virtual ConflictPoint getPoint(int i)const =0;
33  };
34 
35 }
36 }
Definition: aconflictpoint.h:29
virtual int size() const =0
virtual ConflictPoint getPoint(int i) const =0
Definition: areaofeffectconverter.h:20
Definition: aconflictpoint.h:22
double t1
Definition: aconflictpoint.h:23
ConflictPoint(double s, double t0, double t1)
Definition: aconflictpoint.h:24
double s
Definition: aconflictpoint.h:23
double t0
Definition: aconflictpoint.h:23