File tree Expand file tree Collapse file tree 1 file changed +16
-1
lines changed Expand file tree Collapse file tree 1 file changed +16
-1
lines changed Original file line number Diff line number Diff line change 22syntax = "proto3" ;
33package ansys.api.geometry.v0.Components ;
44
5+
56import "ansys/api/geometry/v0/models.proto" ;
67
78option csharp_namespace = "Ansys.Api.Geometry.V0.Components" ;
@@ -22,8 +23,22 @@ service Components{
2223 rpc GetRootComponent (Empty ) returns (GetRootComponentResponse );
2324
2425 rpc GetName (EntityIdentifier ) returns (GetComponentNameResponse );
25-
26+
2627 rpc GetUpdateState (EntityIdentifier ) returns (UpdateState );
28+
29+ rpc SetPlacement (SetPlacementRequest ) returns (SetPlacementResponse );
30+ }
31+
32+ message SetPlacementRequest {
33+ string id = 1 ;
34+ Direction translation = 2 ;
35+ Point rotation_axis_origin = 3 ;
36+ Direction rotation_axis_direction = 4 ;
37+ double rotation_angle = 5 ;
38+ }
39+
40+ message SetPlacementResponse {
41+ Matrix matrix = 1 ;
2742}
2843
2944message GetAllRequest {
You can’t perform that action at this time.
0 commit comments