123456789101112131415161718192021222324 |
- #ifndef IVXODRTOOL_H
- #define IVXODRTOOL_H
- #include "OpenDrive/OpenDrive.h"
- class ivxodrtool
- {
- public:
- ivxodrtool();
- public:
- static ivxodrtool& Inst();
- public:
- int GetRoadMaxMin(Road * pRoad,double & xmin,double & ymin,double & xmax,double & ymax);
- private:
- void ChangeMaxMin(double x,double y,double & xmin,double & ymin,double & xmax,double & ymax);
- };
- #define ServiceXODRTool ivxodrtool::Inst()
- #endif // IVXODRTOOL_H
|