Commit dd7e816 1 parent ddc0dc4 commit dd7e816 Copy full SHA for dd7e816
File tree 3 files changed +9
-2
lines changed
tools/workspace/sdformat_internal
3 files changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -202,6 +202,9 @@ std::optional<std::unique_ptr<geometry::Shape>> MakeShapeFromSdfGeometry(
202
202
case sdf::GeometryType::POLYLINE: {
203
203
return std::unique_ptr<geometry::Shape>(nullptr );
204
204
}
205
+ case sdf::GeometryType::CONE: {
206
+ return std::unique_ptr<geometry::Shape>(nullptr );
207
+ }
205
208
}
206
209
207
210
DRAKE_UNREACHABLE ();
@@ -251,6 +254,7 @@ std::optional<std::unique_ptr<GeometryInstance>>
251
254
case sdf::GeometryType::HEIGHTMAP:
252
255
case sdf::GeometryType::BOX:
253
256
case sdf::GeometryType::CAPSULE:
257
+ case sdf::GeometryType::CONE:
254
258
case sdf::GeometryType::CYLINDER:
255
259
case sdf::GeometryType::ELLIPSOID:
256
260
case sdf::GeometryType::MESH:
@@ -421,6 +425,7 @@ RigidTransformd MakeGeometryPoseFromSdfCollision(
421
425
case sdf::GeometryType::HEIGHTMAP:
422
426
case sdf::GeometryType::BOX:
423
427
case sdf::GeometryType::CAPSULE:
428
+ case sdf::GeometryType::CONE:
424
429
case sdf::GeometryType::CYLINDER:
425
430
case sdf::GeometryType::ELLIPSOID:
426
431
case sdf::GeometryType::MESH:
Original file line number Diff line number Diff line change @@ -71,6 +71,7 @@ _MOST_HDRS = [
71
71
"include/sdf/Camera.hh" ,
72
72
"include/sdf/Capsule.hh" ,
73
73
"include/sdf/Collision.hh" ,
74
+ "include/sdf/Cone.hh" ,
74
75
"include/sdf/Console.hh" ,
75
76
"include/sdf/CustomInertiaCalcProperties.hh" ,
76
77
"include/sdf/Cylinder.hh" ,
@@ -168,6 +169,7 @@ _SRCS = [
168
169
"src/Camera.cc" ,
169
170
"src/Capsule.cc" ,
170
171
"src/Collision.cc" ,
172
+ "src/Cone.cc" ,
171
173
"src/Console.cc" ,
172
174
"src/Converter.cc" ,
173
175
"src/Converter.hh" ,
Original file line number Diff line number Diff line change @@ -9,9 +9,9 @@ def sdformat_internal_repository(
9
9
# drake/tools/workspace/new_release.py. When practical, all members
10
10
# of this cohort should be updated at the same time.
11
11
repository = "gazebosim/sdformat" ,
12
- commit = "sdformat14_14.2 .0" ,
12
+ commit = "sdformat14_14.5 .0" ,
13
13
build_file = ":package.BUILD.bazel" ,
14
- sha256 = "8ecfd48b5cd54a4c8a060a98fec16e2d8d42802d07445f234d608df813e624fc " , # noqa
14
+ sha256 = "44ff4916be63cad987c8ff2c21b3473e1e79c85a9b4fb83029536ed0ab0403e2 " , # noqa
15
15
patches = [
16
16
":patches/console.patch" ,
17
17
":patches/deprecation_unit_testing.patch" ,
You can’t perform that action at this time.
0 commit comments