File tree Expand file tree Collapse file tree 2 files changed +8
-4
lines changed
src/ipc/smooth_contact/primitives Expand file tree Collapse file tree 2 files changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -449,7 +449,8 @@ Edge3::Edge3(
449449 vertices.row (m_vertex_ids[1 ]), vertices.row (m_vertex_ids[2 ]),
450450 vertices.row (m_vertex_ids[3 ]), params, otypes, orientable);
451451 } else {
452- log_and_throw_error (" Codimensional objects in 3D are not supported yet!" );
452+ log_and_throw_error (
453+ " Codimensional objects in 3D are not supported yet!" );
453454
454455 if (has_neighbor_1 || has_neighbor_2) {
455456 m_vertex_ids = { { neighbors[0 ], neighbors[1 ],
Original file line number Diff line number Diff line change @@ -22,11 +22,14 @@ class Edge3 : public Primitive {
2222 int n_dofs () const override { return n_vertices () * DIM; }
2323
2424 double potential (
25- Eigen::ConstRef<Eigen::Vector3d> d, Eigen::ConstRef<VectorMax12d> x) const ;
25+ Eigen::ConstRef<Eigen::Vector3d> d,
26+ Eigen::ConstRef<VectorMax12d> x) const ;
2627 Vector15d grad (
27- Eigen::ConstRef<Eigen::Vector3d> d, Eigen::ConstRef<VectorMax12d> x) const ;
28+ Eigen::ConstRef<Eigen::Vector3d> d,
29+ Eigen::ConstRef<VectorMax12d> x) const ;
2830 Matrix15d hessian (
29- Eigen::ConstRef<Eigen::Vector3d> d, Eigen::ConstRef<VectorMax12d> x) const ;
31+ Eigen::ConstRef<Eigen::Vector3d> d,
32+ Eigen::ConstRef<VectorMax12d> x) const ;
3033
3134private:
3235 OrientationTypes otypes;
You can’t perform that action at this time.
0 commit comments