Skip to content

Commit 52a421e

Browse files
committed
try to fix clang-format
1 parent 36acb3f commit 52a421e

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

src/ipc/broad_phase/aabb.hpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ class AABB {
2020

2121
AABB(const AABB& aabb1, const AABB& aabb2, const AABB& aabb3)
2222
: AABB(
23-
aabb1.min.min(aabb2.min).min(aabb3.min),
24-
aabb1.max.max(aabb2.max).max(aabb3.max))
23+
aabb1.min.min(aabb2.min).min(aabb3.min),
24+
aabb1.max.max(aabb2.max).max(aabb3.max))
2525
{
2626
}
2727

@@ -103,4 +103,4 @@ void build_face_boxes(
103103
const Eigen::MatrixXi& faces,
104104
std::vector<AABB>& face_boxes);
105105

106-
} // namespace ipc
106+
} // namespace ipc

src/ipc/collision_mesh.cpp

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@ CollisionMesh::CollisionMesh(
1414
const Eigen::MatrixXi& faces,
1515
const Eigen::SparseMatrix<double>& displacement_map)
1616
: CollisionMesh(
17-
std::vector<bool>(rest_positions.rows(), true),
18-
rest_positions,
19-
edges,
20-
faces,
21-
displacement_map)
17+
std::vector<bool>(rest_positions.rows(), true),
18+
rest_positions,
19+
edges,
20+
faces,
21+
displacement_map)
2222
{
2323
}
2424

@@ -475,4 +475,4 @@ Eigen::MatrixXi CollisionMesh::construct_faces_to_edges(
475475
return faces_to_edges;
476476
}
477477

478-
} // namespace ipc
478+
} // namespace ipc

src/ipc/potentials/barrier_potential.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ namespace ipc {
77
BarrierPotential::BarrierPotential(
88
const double dhat, const bool use_physical_barrier)
99
: BarrierPotential(
10-
std::make_shared<ClampedLogBarrier>(), dhat, use_physical_barrier)
10+
std::make_shared<ClampedLogBarrier>(), dhat, use_physical_barrier)
1111
{
1212
}
1313

0 commit comments

Comments
 (0)