Skip to content

Commit

Permalink
sync: add changes from local folder
Browse files Browse the repository at this point in the history
  • Loading branch information
tfs_caslservice committed Sep 7, 2023
1 parent 7452d23 commit 5d85474
Show file tree
Hide file tree
Showing 2 changed files with 281 additions and 60 deletions.
67 changes: 67 additions & 0 deletions ansys/api/geometry/v0/models.proto
Original file line number Diff line number Diff line change
Expand Up @@ -237,6 +237,73 @@ message ShrinkWrapOptions {
double curvature_angle =10;
}

message SplitEdgeProblemArea {
int32 id = 1;
repeated string edge_monikers = 2;
}

message FixSplitEdgeOptions {
double max_edge_length = 1;
double min_edge_angle = 2;
}

message ExtraEdgeProblemArea {
int32 id = 1;
repeated string edge_monikers = 2;
}

message InexactEdgeProblemArea {
int32 id = 1;
repeated string edge_monikers = 2;
}

message ShortEdgeProblemArea {
int32 id = 1;
repeated string edge_monikers = 2;
}

message DuplicateFaceProblemArea {
int32 id = 1;
repeated string face_monikers = 2;
}

message MissingFaceProblemArea {
int32 id = 1;
repeated string edge_monikers = 2;
}

message SmallFaceProblemArea {
int32 id = 1;
repeated string face_monikers = 2;
}

message StitchFaceProblemArea {
int32 id = 1;
repeated string body_monikers = 2;
}

message CurveGapProblemArea {
int32 id = 1;
repeated string curve_point_monikers = 2;
}

message DuplicateCurveProblemArea {
int32 id = 1;
repeated string curve_point_monikers = 2;
}

message SmallCurveProblemArea {
int32 id = 1;
repeated string curve_point_monikers = 2;
}

message RepairToolMessage {
bool success = 1;
repeated string created_bodies_monikers = 2;
repeated string modified_bodies_monikers = 3;
}


message Material{
string name=1;
repeated MaterialProperty material_properties=2;
Expand Down
Loading

0 comments on commit 5d85474

Please sign in to comment.