Skip to content

Commit 233d969

Browse files
committed
remove unused/unimplemented APIs
1 parent 84d6577 commit 233d969

1 file changed

Lines changed: 0 additions & 13 deletions

File tree

3rd_party/easy3d/fileio/point_cloud_io.h

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -54,24 +54,11 @@ namespace easy3d {
5454

5555

5656
namespace io {
57-
// three blocks storing points, colors (optional), and normals (optional)
58-
bool load_bin(const std::string& file_name, PointCloud* cloud);
59-
bool save_bin(const std::string& file_name, const PointCloud* cloud);
60-
6157
// each line with only point: (x, y, z)
6258
bool load_xyz(const std::string& file_name, PointCloud* cloud);
6359
bool save_xyz(const std::string& file_name, const PointCloud* cloud);
6460
bool load_bxyz(const std::string& file_name, PointCloud* cloud);
6561
bool save_bxyz(const std::string& file_name, const PointCloud* cloud);
66-
67-
bool load_ply(const std::string& file_name, PointCloud* cloud);
68-
bool save_ply(const std::string& file_name, const PointCloud* cloud, bool binary = true);
69-
70-
// Read/Write both las and laz formats. Internally it uses the LASlib
71-
// of martin.isenburg@rapidlasso.com, see http://rapidlasso.com
72-
bool load_las(const std::string& file_name, PointCloud* cloud);
73-
bool save_las(const std::string& file_name, const PointCloud* cloud);
74-
7562
};
7663

7764

0 commit comments

Comments
 (0)