Skip to content

Commit

Permalink
Merge branch 'main' into release/0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
RobPasMue committed Sep 8, 2023
2 parents 0985781 + 215d399 commit b3b1cb7
Show file tree
Hide file tree
Showing 4 changed files with 283 additions and 62 deletions.
2 changes: 1 addition & 1 deletion ansys/api/geometry/v0/commands.proto
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// ©2023, ANSYS Inc. Unauthorized use, distribution or duplication is prohibited.
// ©2023, ANSYS Inc. Unauthorized use, distribution or duplication is prohibited.

syntax = "proto3";

Expand Down
2 changes: 1 addition & 1 deletion ansys/api/geometry/v0/designs.proto
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// ©2023, ANSYS Inc. Unauthorized use, distribution or duplication is prohibited.
// ©2023, ANSYS Inc. Unauthorized use, distribution or duplication is prohibited.
syntax = "proto3";
package ansys.api.geometry.v0.Designs;

Expand Down
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 b3b1cb7

Please sign in to comment.