File tree Expand file tree Collapse file tree 3 files changed +10
-10
lines changed
Expand file tree Collapse file tree 3 files changed +10
-10
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ namespace ipc {
77BarrierPotential::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
You can’t perform that action at this time.
0 commit comments