Skip to content

Commit b50177b

Browse files
committed
style fix #7014
1 parent 06c7c6f commit b50177b

1 file changed

Lines changed: 6 additions & 8 deletions

File tree

cpp/open3d/t/geometry/RaycastingScene.cpp

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -869,10 +869,9 @@ struct RaycastingScene::SYCLImpl : public RaycastingScene::Impl {
869869
rtcAttachGeometry(dst->scene_, geom);
870870
rtcReleaseGeometry(geom);
871871

872-
GeometryPtr geometry_ptr = {
873-
RTC_GEOMETRY_TYPE_TRIANGLE,
874-
static_cast<const void*>(vertex_buffer),
875-
static_cast<const void*>(index_buffer)};
872+
GeometryPtr geometry_ptr = {RTC_GEOMETRY_TYPE_TRIANGLE,
873+
static_cast<const void*>(vertex_buffer),
874+
static_cast<const void*>(index_buffer)};
876875
dst->geometry_ptrs_.push_back(geometry_ptr);
877876
}
878877
return copy;
@@ -1299,10 +1298,9 @@ struct RaycastingScene::CPUImpl : public RaycastingScene::Impl {
12991298
rtcAttachGeometry(copy->scene_, geom);
13001299
rtcReleaseGeometry(geom);
13011300

1302-
GeometryPtr geometry_ptr = {
1303-
RTC_GEOMETRY_TYPE_TRIANGLE,
1304-
static_cast<const void*>(vertex_buffer),
1305-
static_cast<const void*>(index_buffer)};
1301+
GeometryPtr geometry_ptr = {RTC_GEOMETRY_TYPE_TRIANGLE,
1302+
static_cast<const void*>(vertex_buffer),
1303+
static_cast<const void*>(index_buffer)};
13061304
copy->geometry_ptrs_.push_back(geometry_ptr);
13071305
}
13081306
return copy;

0 commit comments

Comments
 (0)