@@ -371,13 +371,6 @@ message EnhancedRepairToolMessage {
371371 TrackerCommandResponse complete_command_response = 7 ; // this should become the only response in protos v1
372372}
373373
374- message RemoveLogoResponse {
375- bool success = 1 ;
376- repeated string created_faces_monikers = 2 ;
377- repeated string modified_faces_monikers = 3 ;
378- repeated string deleted_faces_monikers = 4 ;
379- }
380-
381374message Material {
382375 string name = 1 ;
383376 repeated MaterialProperty material_properties = 2 ;
@@ -809,15 +802,11 @@ message Separation {
809802 Point point_b = 3 ;
810803}
811804
812- message LogoDefinition {
813- repeated Face faces = 1 ;
814- }
815-
816- message RemoveLogoOptions {
817- google.protobuf.DoubleValue min_height = 1 ;
818- google.protobuf.DoubleValue max_height = 2 ;
819- google.protobuf.DoubleValue max_fillet_radio_as_sharp = 3 ;
820- google.protobuf.DoubleValue fit_error = 4 ;
805+ message FindLogoOptions {
806+ optional double min_height = 1 ;
807+ optional double max_height = 2 ;
808+ optional double max_fillet_radio_as_sharp = 3 ;
809+ optional double fit_error = 4 ;
821810}
822811
823812message TrackerCommandResponse {
@@ -846,3 +835,16 @@ enum AutomaticTrackingState {
846835message TrackerDefinition {
847836 ansys.api.dbu.v0.EntityIdentifier design_id = 1 ;
848837}
838+
839+ message TessellationOptions {
840+ double surface_deviation = 1 ;
841+ double angle_deviation = 2 ;
842+ double maximum_aspect_ratio = 3 ;
843+ double maximum_edge_length = 4 ;
844+ bool watertight = 5 ;
845+ }
846+
847+ message SetObjectNameRequest {
848+ ansys.api.dbu.v0.EntityIdentifier id = 1 ;
849+ string name = 2 ;
850+ }
0 commit comments