// 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 . #pragma once #include "carla/geom/Mesh.h" namespace carla { namespace geom { class Simplification { public: Simplification() = default; Simplification(float simplificationrate) : simplification_percentage(simplificationrate) {} float simplification_percentage; void Simplificate(const std::unique_ptr& pmesh); }; } // namespace geom } // namespace carla