Skip to content

Commit 582e868

Browse files
committed
fix constructor
1 parent 31deb2d commit 582e868

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/cupoch/geometry/pointcloud.cu

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,8 @@ PointCloud::PointCloud(const PointCloud &other)
132132
: GeometryBase3D(Geometry::GeometryType::PointCloud),
133133
points_(other.points_),
134134
normals_(other.normals_),
135-
colors_(other.colors_) {}
135+
colors_(other.colors_),
136+
covariances_(other.covariances_) {}
136137

137138
PointCloud::~PointCloud() {}
138139

0 commit comments

Comments
 (0)