Skip to content

Commit 5d72b41

Browse files
committed
Update license
1 parent ed092ce commit 5d72b41

File tree

165 files changed

+199
-158
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

165 files changed

+199
-158
lines changed

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
MIT License
22

33
Copyright (c) 2017 Computer Vision Center (CVC) at the Universitat Autonoma de
4-
Barcelona (UAB), and the INTEL Visual Computing Lab.
4+
Barcelona (UAB).
55

66
Permission is hereby granted, free of charge, to any person obtaining a copy
77
of this software and associated documentation files (the "Software"), to deal

PythonClient/carla/benchmarks/agent.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env python2
22
# -*- coding: utf-8 -*-
33
# Copyright (c) 2017 Computer Vision Center (CVC) at the Universitat Autonoma de
4-
# Barcelona (UAB), and the INTEL Visual Computing Lab.
4+
# Barcelona (UAB).
55
#
66
# This work is licensed under the terms of the MIT license.
77
# For a copy, see <https://opensource.org/licenses/MIT>.

PythonClient/carla/benchmarks/benchmark.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env python3
22

33
# Copyright (c) 2017 Computer Vision Center (CVC) at the Universitat Autonoma de
4-
# Barcelona (UAB), and the INTEL Visual Computing Lab.
4+
# Barcelona (UAB).
55
#
66
# This work is licensed under the terms of the MIT license.
77
# For a copy, see <https://opensource.org/licenses/MIT>.

PythonClient/carla/benchmarks/corl_2017.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Copyright (c) 2017 Computer Vision Center (CVC) at the Universitat Autonoma de
2-
# Barcelona (UAB), and the INTEL Visual Computing Lab.
2+
# Barcelona (UAB).
33
#
44
# This work is licensed under the terms of the MIT license.
55
# For a copy, see <https://opensource.org/licenses/MIT>.

PythonClient/carla/benchmarks/experiment.py

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
# Copyright (c) 2017 Computer Vision Center (CVC) at the Universitat Autonoma de
2+
# 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>.
16

27
from carla.settings import CarlaSettings
38

PythonClient/carla/benchmarks/metrics.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Copyright (c) 2017 Computer Vision Center (CVC) at the Universitat Autonoma de
2-
# Barcelona (UAB), and the INTEL Visual Computing Lab.
2+
# Barcelona (UAB).
33
#
44
# This work is licensed under the terms of the MIT license.
55
# For a copy, see <https://opensource.org/licenses/MIT>.

PythonClient/carla/client.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Copyright (c) 2017 Computer Vision Center (CVC) at the Universitat Autonoma de
2-
# Barcelona (UAB), and the INTEL Visual Computing Lab.
2+
# Barcelona (UAB).
33
#
44
# This work is licensed under the terms of the MIT license.
55
# For a copy, see <https://opensource.org/licenses/MIT>.

PythonClient/carla/image_converter.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Copyright (c) 2017 Computer Vision Center (CVC) at the Universitat Autonoma de
2-
# Barcelona (UAB), and the INTEL Visual Computing Lab.
2+
# Barcelona (UAB).
33
#
44
# This work is licensed under the terms of the MIT license.
55
# For a copy, see <https://opensource.org/licenses/MIT>.

PythonClient/carla/planner/astar.py

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# Copyright (c) 2017 Computer Vision Center (CVC) at the Universitat Autonoma de
2+
# 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+
17
import heapq
28

39

PythonClient/carla/planner/city_track.py

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# Copyright (c) 2017 Computer Vision Center (CVC) at the Universitat Autonoma de
2+
# 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+
17
from carla.planner.graph import sldist
28

39
from carla.planner.astar import AStar

PythonClient/carla/planner/converter.py

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# Copyright (c) 2017 Computer Vision Center (CVC) at the Universitat Autonoma de
2+
# 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+
17
import math
28
import numpy as np
39

PythonClient/carla/planner/graph.py

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# Copyright (c) 2017 Computer Vision Center (CVC) at the Universitat Autonoma de
2+
# 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+
17
import math
28
import numpy as np
39

PythonClient/carla/planner/grid.py

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# Copyright (c) 2017 Computer Vision Center (CVC) at the Universitat Autonoma de
2+
# 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+
17
import copy
28
import numpy as np
39

PythonClient/carla/planner/map.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Copyright (c) 2017 Computer Vision Center (CVC) at the Universitat Autonoma de
2-
# Barcelona (UAB), and the INTEL Visual Computing Lab.
2+
# Barcelona (UAB).
33
#
44
# This work is licensed under the terms of the MIT license.
55
# For a copy, see <https://opensource.org/licenses/MIT>.

PythonClient/carla/planner/planner.py

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# Copyright (c) 2017 Computer Vision Center (CVC) at the Universitat Autonoma de
2+
# 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+
17
import collections
28
import math
39

PythonClient/carla/sensor.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Copyright (c) 2017 Computer Vision Center (CVC) at the Universitat Autonoma de
2-
# Barcelona (UAB), and the INTEL Visual Computing Lab.
2+
# Barcelona (UAB).
33
#
44
# This work is licensed under the terms of the MIT license.
55
# For a copy, see <https://opensource.org/licenses/MIT>.

PythonClient/carla/settings.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Copyright (c) 2017 Computer Vision Center (CVC) at the Universitat Autonoma de
2-
# Barcelona (UAB), and the INTEL Visual Computing Lab.
2+
# Barcelona (UAB).
33
#
44
# This work is licensed under the terms of the MIT license.
55
# For a copy, see <https://opensource.org/licenses/MIT>.

PythonClient/carla/tcp.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Copyright (c) 2017 Computer Vision Center (CVC) at the Universitat Autonoma de
2-
# Barcelona (UAB), and the INTEL Visual Computing Lab.
2+
# Barcelona (UAB).
33
#
44
# This work is licensed under the terms of the MIT license.
55
# For a copy, see <https://opensource.org/licenses/MIT>.

PythonClient/carla/util.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Copyright (c) 2017 Computer Vision Center (CVC) at the Universitat Autonoma de
2-
# Barcelona (UAB), and the INTEL Visual Computing Lab.
2+
# Barcelona (UAB).
33
#
44
# This work is licensed under the terms of the MIT license.
55
# For a copy, see <https://opensource.org/licenses/MIT>.

PythonClient/client_example.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env python3
22

33
# Copyright (c) 2017 Computer Vision Center (CVC) at the Universitat Autonoma de
4-
# Barcelona (UAB), and the INTEL Visual Computing Lab.
4+
# Barcelona (UAB).
55
#
66
# This work is licensed under the terms of the MIT license.
77
# For a copy, see <https://opensource.org/licenses/MIT>.

PythonClient/manual_control.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env python3
22

33
# Copyright (c) 2017 Computer Vision Center (CVC) at the Universitat Autonoma de
4-
# Barcelona (UAB), and the INTEL Visual Computing Lab.
4+
# Barcelona (UAB).
55
#
66
# This work is licensed under the terms of the MIT license.
77
# For a copy, see <https://opensource.org/licenses/MIT>.

PythonClient/run_benchmark.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env python3
22

33
# Copyright (c) 2017 Computer Vision Center (CVC) at the Universitat Autonoma de
4-
# Barcelona (UAB), and the INTEL Visual Computing Lab.
4+
# Barcelona (UAB).
55
#
66
# This work is licensed under the terms of the MIT license.
77
# For a copy, see <https://opensource.org/licenses/MIT>.

PythonClient/test/console.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Copyright (c) 2017 Computer Vision Center (CVC) at the Universitat Autonoma de
2-
# Barcelona (UAB), and the INTEL Visual Computing Lab.
2+
# Barcelona (UAB).
33
#
44
# This work is licensed under the terms of the MIT license.
55
# For a copy, see <https://opensource.org/licenses/MIT>.

PythonClient/test/test_client.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env python3
22

33
# Copyright (c) 2017 Computer Vision Center (CVC) at the Universitat Autonoma de
4-
# Barcelona (UAB), and the INTEL Visual Computing Lab.
4+
# Barcelona (UAB).
55
#
66
# This work is licensed under the terms of the MIT license.
77
# For a copy, see <https://opensource.org/licenses/MIT>.

PythonClient/test/test_suite.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env python3
22

33
# Copyright (c) 2017 Computer Vision Center (CVC) at the Universitat Autonoma de
4-
# Barcelona (UAB), and the INTEL Visual Computing Lab.
4+
# Barcelona (UAB).
55
#
66
# This work is licensed under the terms of the MIT license.
77
# For a copy, see <https://opensource.org/licenses/MIT>.

PythonClient/test/unit_tests/Basic.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Copyright (c) 2017 Computer Vision Center (CVC) at the Universitat Autonoma de
2-
# Barcelona (UAB), and the INTEL Visual Computing Lab.
2+
# Barcelona (UAB).
33
#
44
# This work is licensed under the terms of the MIT license.
55
# For a copy, see <https://opensource.org/licenses/MIT>.

PythonClient/test/unit_tests/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Copyright (c) 2017 Computer Vision Center (CVC) at the Universitat Autonoma de
2-
# Barcelona (UAB), and the INTEL Visual Computing Lab.
2+
# Barcelona (UAB).
33
#
44
# This work is licensed under the terms of the MIT license.
55
# For a copy, see <https://opensource.org/licenses/MIT>.

Unreal/CarlaUE4/Config/DefaultGame.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
ProjectID=675BF8694238308FA9368292CC440350
33
ProjectName=CARLA UE4
44
CompanyName=CVC
5-
CopyrightNotice="Copyright (c) 2017 Computer Vision Center (CVC) at the Universitat Autonomade Barcelona (UAB), and the INTEL Visual Computing Lab.This work is licensed under the terms of the MIT license.For a copy, see <https://opensource.org/licenses/MIT>."
5+
CopyrightNotice="Copyright (c) 2017 Computer Vision Center (CVC) at the Universitat Autonoma de Barcelona (UAB). This work is licensed under the terms of the MIT license. For a copy, see <https://opensource.org/licenses/MIT>."
66
ProjectVersion=0.7.0
77

88
[/Script/UnrealEd.ProjectPackagingSettings]

Unreal/CarlaUE4/Plugins/Carla/Source/Carla/AI/CarlaWheeledVehicleState.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright (c) 2017 Computer Vision Center (CVC) at the Universitat Autonoma
2-
// de Barcelona (UAB), and the INTEL Visual Computing Lab.
2+
// de Barcelona (UAB).
33
//
44
// This work is licensed under the terms of the MIT license.
55
// For a copy, see <https://opensource.org/licenses/MIT>.

Unreal/CarlaUE4/Plugins/Carla/Source/Carla/AI/RoutePlanner.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright (c) 2017 Computer Vision Center (CVC) at the Universitat Autonoma
2-
// de Barcelona (UAB), and the INTEL Visual Computing Lab.
2+
// de Barcelona (UAB).
33
//
44
// This work is licensed under the terms of the MIT license.
55
// For a copy, see <https://opensource.org/licenses/MIT>.

Unreal/CarlaUE4/Plugins/Carla/Source/Carla/AI/RoutePlanner.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright (c) 2017 Computer Vision Center (CVC) at the Universitat Autonoma
2-
// de Barcelona (UAB), and the INTEL Visual Computing Lab.
2+
// de Barcelona (UAB).
33
//
44
// This work is licensed under the terms of the MIT license.
55
// For a copy, see <https://opensource.org/licenses/MIT>.

Unreal/CarlaUE4/Plugins/Carla/Source/Carla/AI/TrafficLightBase.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright (c) 2017 Computer Vision Center (CVC) at the Universitat Autonoma
2-
// de Barcelona (UAB), and the INTEL Visual Computing Lab.
2+
// de Barcelona (UAB).
33
//
44
// This work is licensed under the terms of the MIT license.
55
// For a copy, see <https://opensource.org/licenses/MIT>.

Unreal/CarlaUE4/Plugins/Carla/Source/Carla/AI/TrafficLightBase.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright (c) 2017 Computer Vision Center (CVC) at the Universitat Autonoma
2-
// de Barcelona (UAB), and the INTEL Visual Computing Lab.
2+
// de Barcelona (UAB).
33
//
44
// This work is licensed under the terms of the MIT license.
55
// For a copy, see <https://opensource.org/licenses/MIT>.

Unreal/CarlaUE4/Plugins/Carla/Source/Carla/AI/TrafficLightState.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright (c) 2017 Computer Vision Center (CVC) at the Universitat Autonoma
2-
// de Barcelona (UAB), and the INTEL Visual Computing Lab.
2+
// de Barcelona (UAB).
33
//
44
// This work is licensed under the terms of the MIT license.
55
// For a copy, see <https://opensource.org/licenses/MIT>.

Unreal/CarlaUE4/Plugins/Carla/Source/Carla/AI/TrafficSignBase.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright (c) 2017 Computer Vision Center (CVC) at the Universitat Autonoma
2-
// de Barcelona (UAB), and the INTEL Visual Computing Lab.
2+
// de Barcelona (UAB).
33
//
44
// This work is licensed under the terms of the MIT license.
55
// For a copy, see <https://opensource.org/licenses/MIT>.

Unreal/CarlaUE4/Plugins/Carla/Source/Carla/AI/TrafficSignBase.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright (c) 2017 Computer Vision Center (CVC) at the Universitat Autonoma
2-
// de Barcelona (UAB), and the INTEL Visual Computing Lab.
2+
// de Barcelona (UAB).
33
//
44
// This work is licensed under the terms of the MIT license.
55
// For a copy, see <https://opensource.org/licenses/MIT>.

Unreal/CarlaUE4/Plugins/Carla/Source/Carla/AI/VehicleSpawnerBase.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright (c) 2017 Computer Vision Center (CVC) at the Universitat Autonoma
2-
// de Barcelona (UAB), and the INTEL Visual Computing Lab.
2+
// de Barcelona (UAB).
33
//
44
// This work is licensed under the terms of the MIT license.
55
// For a copy, see <https://opensource.org/licenses/MIT>.

Unreal/CarlaUE4/Plugins/Carla/Source/Carla/AI/VehicleSpawnerBase.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright (c) 2017 Computer Vision Center (CVC) at the Universitat Autonoma
2-
// de Barcelona (UAB), and the INTEL Visual Computing Lab.
2+
// de Barcelona (UAB).
33
//
44
// This work is licensed under the terms of the MIT license.
55
// For a copy, see <https://opensource.org/licenses/MIT>.

Unreal/CarlaUE4/Plugins/Carla/Source/Carla/AI/WalkerAIController.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright (c) 2017 Computer Vision Center (CVC) at the Universitat Autonoma
2-
// de Barcelona (UAB), and the INTEL Visual Computing Lab.
2+
// de Barcelona (UAB).
33
//
44
// This work is licensed under the terms of the MIT license.
55
// For a copy, see <https://opensource.org/licenses/MIT>.

Unreal/CarlaUE4/Plugins/Carla/Source/Carla/AI/WalkerAIController.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright (c) 2017 Computer Vision Center (CVC) at the Universitat Autonoma
2-
// de Barcelona (UAB), and the INTEL Visual Computing Lab.
2+
// de Barcelona (UAB).
33
//
44
// This work is licensed under the terms of the MIT license.
55
// For a copy, see <https://opensource.org/licenses/MIT>.

Unreal/CarlaUE4/Plugins/Carla/Source/Carla/AI/WalkerSpawnPoint.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright (c) 2017 Computer Vision Center (CVC) at the Universitat Autonoma
2-
// de Barcelona (UAB), and the INTEL Visual Computing Lab.
2+
// de Barcelona (UAB).
33
//
44
// This work is licensed under the terms of the MIT license.
55
// For a copy, see <https://opensource.org/licenses/MIT>.

Unreal/CarlaUE4/Plugins/Carla/Source/Carla/AI/WalkerSpawnerBase.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright (c) 2017 Computer Vision Center (CVC) at the Universitat Autonoma
2-
// de Barcelona (UAB), and the INTEL Visual Computing Lab.
2+
// de Barcelona (UAB).
33
//
44
// This work is licensed under the terms of the MIT license.
55
// For a copy, see <https://opensource.org/licenses/MIT>.

Unreal/CarlaUE4/Plugins/Carla/Source/Carla/AI/WalkerSpawnerBase.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright (c) 2017 Computer Vision Center (CVC) at the Universitat Autonoma
2-
// de Barcelona (UAB), and the INTEL Visual Computing Lab.
2+
// de Barcelona (UAB).
33
//
44
// This work is licensed under the terms of the MIT license.
55
// For a copy, see <https://opensource.org/licenses/MIT>.

Unreal/CarlaUE4/Plugins/Carla/Source/Carla/AI/WheeledVehicleAIController.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright (c) 2017 Computer Vision Center (CVC) at the Universitat Autonoma
2-
// de Barcelona (UAB), and the INTEL Visual Computing Lab.
2+
// de Barcelona (UAB).
33
//
44
// This work is licensed under the terms of the MIT license.
55
// For a copy, see <https://opensource.org/licenses/MIT>.

Unreal/CarlaUE4/Plugins/Carla/Source/Carla/AI/WheeledVehicleAIController.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright (c) 2017 Computer Vision Center (CVC) at the Universitat Autonoma
2-
// de Barcelona (UAB), and the INTEL Visual Computing Lab.
2+
// de Barcelona (UAB).
33
//
44
// This work is licensed under the terms of the MIT license.
55
// For a copy, see <https://opensource.org/licenses/MIT>.

Unreal/CarlaUE4/Plugins/Carla/Source/Carla/CarlaWheeledVehicle.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright (c) 2017 Computer Vision Center (CVC) at the Universitat Autonoma
2-
// de Barcelona (UAB), and the INTEL Visual Computing Lab.
2+
// de Barcelona (UAB).
33
//
44
// This work is licensed under the terms of the MIT license.
55
// For a copy, see <https://opensource.org/licenses/MIT>.

Unreal/CarlaUE4/Plugins/Carla/Source/Carla/CarlaWheeledVehicle.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright (c) 2017 Computer Vision Center (CVC) at the Universitat Autonoma
2-
// de Barcelona (UAB), and the INTEL Visual Computing Lab.
2+
// de Barcelona (UAB).
33
//
44
// This work is licensed under the terms of the MIT license.
55
// For a copy, see <https://opensource.org/licenses/MIT>.

Unreal/CarlaUE4/Plugins/Carla/Source/Carla/CityMapGenerator.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright (c) 2017 Computer Vision Center (CVC) at the Universitat Autonoma
2-
// de Barcelona (UAB), and the INTEL Visual Computing Lab.
2+
// de Barcelona (UAB).
33
//
44
// This work is licensed under the terms of the MIT license.
55
// For a copy, see <https://opensource.org/licenses/MIT>.

Unreal/CarlaUE4/Plugins/Carla/Source/Carla/CityMapGenerator.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright (c) 2017 Computer Vision Center (CVC) at the Universitat Autonoma
2-
// de Barcelona (UAB), and the INTEL Visual Computing Lab.
2+
// de Barcelona (UAB).
33
//
44
// This work is licensed under the terms of the MIT license.
55
// For a copy, see <https://opensource.org/licenses/MIT>.

Unreal/CarlaUE4/Plugins/Carla/Source/Carla/DynamicWeather.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright (c) 2017 Computer Vision Center (CVC) at the Universitat Autonoma
2-
// de Barcelona (UAB), and the INTEL Visual Computing Lab.
2+
// de Barcelona (UAB).
33
//
44
// This work is licensed under the terms of the MIT license.
55
// For a copy, see <https://opensource.org/licenses/MIT>.

Unreal/CarlaUE4/Plugins/Carla/Source/Carla/DynamicWeather.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright (c) 2017 Computer Vision Center (CVC) at the Universitat Autonoma
2-
// de Barcelona (UAB), and the INTEL Visual Computing Lab.
2+
// de Barcelona (UAB).
33
//
44
// This work is licensed under the terms of the MIT license.
55
// For a copy, see <https://opensource.org/licenses/MIT>.

0 commit comments

Comments
 (0)