From c3df6b1b509425935ac0afc47eefadd390b5e237 Mon Sep 17 00:00:00 2001 From: Esteve Fernandez <33620+esteve@users.noreply.github.com> Date: Wed, 27 Nov 2024 13:14:34 +0100 Subject: [PATCH] chore(autoware_pyplot): move to visualization folder (#9489) Signed-off-by: Esteve Fernandez --- {common => visualization}/autoware_pyplot/CMakeLists.txt | 0 .../autoware_pyplot/include/autoware/pyplot/axes.hpp | 0 .../autoware_pyplot/include/autoware/pyplot/common.hpp | 0 .../autoware_pyplot/include/autoware/pyplot/figure.hpp | 0 .../autoware_pyplot/include/autoware/pyplot/legend.hpp | 0 .../autoware_pyplot/include/autoware/pyplot/loader.hpp | 0 .../autoware_pyplot/include/autoware/pyplot/patches.hpp | 0 .../autoware_pyplot/include/autoware/pyplot/pyplot.hpp | 0 .../autoware_pyplot/include/autoware/pyplot/quiver.hpp | 0 .../autoware_pyplot/include/autoware/pyplot/text.hpp | 0 {common => visualization}/autoware_pyplot/package.xml | 0 {common => visualization}/autoware_pyplot/src/axes.cpp | 0 {common => visualization}/autoware_pyplot/src/common.cpp | 0 {common => visualization}/autoware_pyplot/src/figure.cpp | 0 {common => visualization}/autoware_pyplot/src/legend.cpp | 0 {common => visualization}/autoware_pyplot/src/patches.cpp | 0 {common => visualization}/autoware_pyplot/src/pyplot.cpp | 0 {common => visualization}/autoware_pyplot/src/quiver.cpp | 0 {common => visualization}/autoware_pyplot/src/text.cpp | 0 {common => visualization}/autoware_pyplot/test/test_pyplot.cpp | 0 20 files changed, 0 insertions(+), 0 deletions(-) rename {common => visualization}/autoware_pyplot/CMakeLists.txt (100%) rename {common => visualization}/autoware_pyplot/include/autoware/pyplot/axes.hpp (100%) rename {common => visualization}/autoware_pyplot/include/autoware/pyplot/common.hpp (100%) rename {common => visualization}/autoware_pyplot/include/autoware/pyplot/figure.hpp (100%) rename {common => visualization}/autoware_pyplot/include/autoware/pyplot/legend.hpp (100%) rename {common => visualization}/autoware_pyplot/include/autoware/pyplot/loader.hpp (100%) rename {common => visualization}/autoware_pyplot/include/autoware/pyplot/patches.hpp (100%) rename {common => visualization}/autoware_pyplot/include/autoware/pyplot/pyplot.hpp (100%) rename {common => visualization}/autoware_pyplot/include/autoware/pyplot/quiver.hpp (100%) rename {common => visualization}/autoware_pyplot/include/autoware/pyplot/text.hpp (100%) rename {common => visualization}/autoware_pyplot/package.xml (100%) rename {common => visualization}/autoware_pyplot/src/axes.cpp (100%) rename {common => visualization}/autoware_pyplot/src/common.cpp (100%) rename {common => visualization}/autoware_pyplot/src/figure.cpp (100%) rename {common => visualization}/autoware_pyplot/src/legend.cpp (100%) rename {common => visualization}/autoware_pyplot/src/patches.cpp (100%) rename {common => visualization}/autoware_pyplot/src/pyplot.cpp (100%) rename {common => visualization}/autoware_pyplot/src/quiver.cpp (100%) rename {common => visualization}/autoware_pyplot/src/text.cpp (100%) rename {common => visualization}/autoware_pyplot/test/test_pyplot.cpp (100%) diff --git a/common/autoware_pyplot/CMakeLists.txt b/visualization/autoware_pyplot/CMakeLists.txt similarity index 100% rename from common/autoware_pyplot/CMakeLists.txt rename to visualization/autoware_pyplot/CMakeLists.txt diff --git a/common/autoware_pyplot/include/autoware/pyplot/axes.hpp b/visualization/autoware_pyplot/include/autoware/pyplot/axes.hpp similarity index 100% rename from common/autoware_pyplot/include/autoware/pyplot/axes.hpp rename to visualization/autoware_pyplot/include/autoware/pyplot/axes.hpp diff --git a/common/autoware_pyplot/include/autoware/pyplot/common.hpp b/visualization/autoware_pyplot/include/autoware/pyplot/common.hpp similarity index 100% rename from common/autoware_pyplot/include/autoware/pyplot/common.hpp rename to visualization/autoware_pyplot/include/autoware/pyplot/common.hpp diff --git a/common/autoware_pyplot/include/autoware/pyplot/figure.hpp b/visualization/autoware_pyplot/include/autoware/pyplot/figure.hpp similarity index 100% rename from common/autoware_pyplot/include/autoware/pyplot/figure.hpp rename to visualization/autoware_pyplot/include/autoware/pyplot/figure.hpp diff --git a/common/autoware_pyplot/include/autoware/pyplot/legend.hpp b/visualization/autoware_pyplot/include/autoware/pyplot/legend.hpp similarity index 100% rename from common/autoware_pyplot/include/autoware/pyplot/legend.hpp rename to visualization/autoware_pyplot/include/autoware/pyplot/legend.hpp diff --git a/common/autoware_pyplot/include/autoware/pyplot/loader.hpp b/visualization/autoware_pyplot/include/autoware/pyplot/loader.hpp similarity index 100% rename from common/autoware_pyplot/include/autoware/pyplot/loader.hpp rename to visualization/autoware_pyplot/include/autoware/pyplot/loader.hpp diff --git a/common/autoware_pyplot/include/autoware/pyplot/patches.hpp b/visualization/autoware_pyplot/include/autoware/pyplot/patches.hpp similarity index 100% rename from common/autoware_pyplot/include/autoware/pyplot/patches.hpp rename to visualization/autoware_pyplot/include/autoware/pyplot/patches.hpp diff --git a/common/autoware_pyplot/include/autoware/pyplot/pyplot.hpp b/visualization/autoware_pyplot/include/autoware/pyplot/pyplot.hpp similarity index 100% rename from common/autoware_pyplot/include/autoware/pyplot/pyplot.hpp rename to visualization/autoware_pyplot/include/autoware/pyplot/pyplot.hpp diff --git a/common/autoware_pyplot/include/autoware/pyplot/quiver.hpp b/visualization/autoware_pyplot/include/autoware/pyplot/quiver.hpp similarity index 100% rename from common/autoware_pyplot/include/autoware/pyplot/quiver.hpp rename to visualization/autoware_pyplot/include/autoware/pyplot/quiver.hpp diff --git a/common/autoware_pyplot/include/autoware/pyplot/text.hpp b/visualization/autoware_pyplot/include/autoware/pyplot/text.hpp similarity index 100% rename from common/autoware_pyplot/include/autoware/pyplot/text.hpp rename to visualization/autoware_pyplot/include/autoware/pyplot/text.hpp diff --git a/common/autoware_pyplot/package.xml b/visualization/autoware_pyplot/package.xml similarity index 100% rename from common/autoware_pyplot/package.xml rename to visualization/autoware_pyplot/package.xml diff --git a/common/autoware_pyplot/src/axes.cpp b/visualization/autoware_pyplot/src/axes.cpp similarity index 100% rename from common/autoware_pyplot/src/axes.cpp rename to visualization/autoware_pyplot/src/axes.cpp diff --git a/common/autoware_pyplot/src/common.cpp b/visualization/autoware_pyplot/src/common.cpp similarity index 100% rename from common/autoware_pyplot/src/common.cpp rename to visualization/autoware_pyplot/src/common.cpp diff --git a/common/autoware_pyplot/src/figure.cpp b/visualization/autoware_pyplot/src/figure.cpp similarity index 100% rename from common/autoware_pyplot/src/figure.cpp rename to visualization/autoware_pyplot/src/figure.cpp diff --git a/common/autoware_pyplot/src/legend.cpp b/visualization/autoware_pyplot/src/legend.cpp similarity index 100% rename from common/autoware_pyplot/src/legend.cpp rename to visualization/autoware_pyplot/src/legend.cpp diff --git a/common/autoware_pyplot/src/patches.cpp b/visualization/autoware_pyplot/src/patches.cpp similarity index 100% rename from common/autoware_pyplot/src/patches.cpp rename to visualization/autoware_pyplot/src/patches.cpp diff --git a/common/autoware_pyplot/src/pyplot.cpp b/visualization/autoware_pyplot/src/pyplot.cpp similarity index 100% rename from common/autoware_pyplot/src/pyplot.cpp rename to visualization/autoware_pyplot/src/pyplot.cpp diff --git a/common/autoware_pyplot/src/quiver.cpp b/visualization/autoware_pyplot/src/quiver.cpp similarity index 100% rename from common/autoware_pyplot/src/quiver.cpp rename to visualization/autoware_pyplot/src/quiver.cpp diff --git a/common/autoware_pyplot/src/text.cpp b/visualization/autoware_pyplot/src/text.cpp similarity index 100% rename from common/autoware_pyplot/src/text.cpp rename to visualization/autoware_pyplot/src/text.cpp diff --git a/common/autoware_pyplot/test/test_pyplot.cpp b/visualization/autoware_pyplot/test/test_pyplot.cpp similarity index 100% rename from common/autoware_pyplot/test/test_pyplot.cpp rename to visualization/autoware_pyplot/test/test_pyplot.cpp