CARLA
 
载入中...
搜索中...
未找到
rpc/Transform.h
浏览该文件的文档.
1// Copyright (c) 2017 Computer Vision Center (CVC) at the Universitat Autonoma
2// de Barcelona (UAB).
3//
4// This work is licensed under the terms of the MIT license.
5// For a copy, see <https://opensource.org/licenses/MIT>.
6
7#pragma once// 预处理指令,通过#pragma once来确保该头文件在一个编译单元中只会被包含一次
8
9#include "carla/geom/Transform.h"// 推测这个头文件中定义了与几何变换相关的结构体、类或者函数等内容
10
11namespace carla {
12namespace rpc {
13
14 using Rotation = geom::Rotation;// 使用using关键字创建类型别名 Rotation,将其等同于 carla::geom::Rotation 类型
15
16 using Transform = geom::Transform;// 同样地,使用using关键字创建类型别名 Transform,使其等同于 carla::geom::Transform 类型。
17
18} // namespace rpc
19} // namespace carla
CARLA模拟器的主命名空间。
Definition Carla.cpp:139