Skip to content

Commit

Permalink
[optimization] Remove deprecated code 2023-10 (#20291)
Browse files Browse the repository at this point in the history
  • Loading branch information
jwnimmer-tri authored Oct 2, 2023
1 parent 6d460b4 commit 1963244
Showing 1 changed file with 0 additions and 14 deletions.
14 changes: 0 additions & 14 deletions geometry/optimization/cspace_separating_plane.h
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@

#include <utility>

#include "drake/common/drake_deprecated.h"
#include "drake/common/symbolic/polynomial.h"
#include "drake/geometry/optimization/c_iris_collision_geometry.h"

Expand Down Expand Up @@ -61,19 +60,6 @@ struct CSpaceSeparatingPlane {
plane_degree{m_plane_degree},
decision_variables{m_decision_variables} {}

DRAKE_DEPRECATED("2023-10-01",
"The overload without plane_degree will be removed.")
CSpaceSeparatingPlane(
Vector3<symbolic::Polynomial> m_a, symbolic::Polynomial m_b,
const CIrisCollisionGeometry* m_positive_side_geometry,
const CIrisCollisionGeometry* m_negative_side_geometry,
multibody::BodyIndex m_expressed_body,
const Eigen::Ref<const VectorX<T>>& m_decision_variables)
: CSpaceSeparatingPlane(std::move(m_a), std::move(m_b),
m_positive_side_geometry,
m_negative_side_geometry, m_expressed_body,
1 /* plane_degree */, m_decision_variables) {}

/// Return the geometry on the specified side.
[[nodiscard]] const CIrisCollisionGeometry* geometry(
PlaneSide plane_side) const {
Expand Down

0 comments on commit 1963244

Please sign in to comment.