Skip to content

Commit 40666ff

Browse files
Merge branch 'main' into release/0.4
2 parents 2b7ff94 + d169e99 commit 40666ff

File tree

4 files changed

+9
-11
lines changed

4 files changed

+9
-11
lines changed

ansys/api/geometry/v0/commands.proto

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -607,6 +607,7 @@ message ProjectCurvesRequest {
607607
Geometries curves=2;
608608
Direction direction=3;
609609
bool closest_face=4;
610+
Plane plane = 5;
610611
}
611612

612613
message ProjectCurvesResponse {
@@ -617,6 +618,7 @@ message ImprintCurvesRequest {
617618
string body=1;
618619
Geometries curves=2;
619620
repeated string faces=3;
621+
Plane plane = 4;
620622
}
621623

622624
message PowerSelectFacesByAreaRangeRequest {

ansys/api/geometry/v0/models.proto

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -736,17 +736,13 @@ message InspectGeometryResultIssue
736736
{
737737
InspectGeometryMessageType message_type = 1;
738738
InspectGeometryMessageId message_id = 2;
739-
repeated IssueEntityAndType issue_entities_and_type = 3;
740-
string message = 4;
741-
optional double scalar_value = 5;
739+
repeated Face faces = 3;
740+
repeated Edge edges = 4;
741+
string message = 5;
742+
optional double scalar_value = 6;
742743
}
743744

744745
message InspectGeometryResult {
745-
ansys.api.dbu.v0.EntityIdentifier body = 1;
746+
Body body = 1;
746747
repeated InspectGeometryResultIssue issues = 2;
747-
}
748-
749-
message IssueEntityAndType {
750-
ansys.api.dbu.v0.EntityIdentifier entity_id = 1;
751-
string entity_type = 2;
752748
}

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@ requires = [
33
"setuptools >= 42.0.0",
44
"wheel",
55
"ansys_tools_protoc_helper>=0.4.0",
6-
"ansys-api-dbu==0.3.11",
6+
"ansys-api-dbu==0.3.12",
77
]
88
build-backend = "setuptools.build_meta:__legacy__"

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
url=f"https://github.com/ansys/{package_name}",
4040
license="MIT",
4141
python_requires=">=3.10",
42-
install_requires=["grpcio~=1.44", "protobuf>=3.19,<6", "ansys-api-dbu==0.3.11"],
42+
install_requires=["grpcio~=1.44", "protobuf>=3.19,<6", "ansys-api-dbu==0.3.12"],
4343
packages=setuptools.find_namespace_packages(".", include=("ansys.*",)),
4444
package_data={
4545
"": ["*.proto", "*.pyi", "py.typed", "VERSION"],

0 commit comments

Comments
 (0)