/* This file is part of the Gudhi Library - https://gudhi.inria.fr/ - which is released under MIT. * See file LICENSE or go to https://gudhi.inria.fr/licensing/ for full license details. * Author(s): Vincent Rouvreau * * Copyright (C) 2016 Inria * * Modification(s): * - YYYY/MM Author: Description of the modification */ #ifndef INCLUDE_OFF_READER_INTERFACE_H_ #define INCLUDE_OFF_READER_INTERFACE_H_ #include #include #include #include namespace Gudhi { std::vector> read_points_from_OFF_file(const std::string& off_file) { Gudhi::Points_off_reader> off_reader(off_file); return off_reader.get_point_cloud(); } } // namespace Gudhi #endif // INCLUDE_OFF_READER_INTERFACE_H_