File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed
src/ansys/geometry/core/_grpc/_services/v1 Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -402,12 +402,11 @@ def offset_faces_set_radius(self, **kwargs) -> dict: # noqa: D102
402402 )
403403
404404 # Create the request - assumes all inputs are valid and of the proper type
405- # TODO: multiple faces?
406405 request = OffsetFacesSetRadiusRequest (
407406 request_data = [
408407 OffsetFacesSetRadiusRequestData (
409- id = [build_grpc_id (id ) for id in kwargs ["face_ids" ]],
410- radius = from_measurement_to_server_length (kwargs ["radius" ]),
408+ faces_ids = [build_grpc_id (id ) for id in kwargs ["face_ids" ]],
409+ radius = from_length_to_grpc_quantity (kwargs ["radius" ]),
411410 offset_mode = kwargs ["offset_mode" ].value ,
412411 copy = kwargs ["copy" ],
413412 extrude_type = kwargs ["extrude_type" ].value ,
You can’t perform that action at this time.
0 commit comments