mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
Fix typo in proto
This commit is contained in:
parent
0ed0d81765
commit
491b0c3ff0
@ -78,7 +78,7 @@ message PolylineTestResponse
|
||||
|
||||
message CutAlongPolylineResponse
|
||||
{
|
||||
repeated FenceMeshSection feceMeshSections = 1;
|
||||
repeated FenceMeshSection fenceMeshSections = 1;
|
||||
PolylineTestResponse polylineTestResponse = 2;
|
||||
Vec3i gridDimensions = 3;
|
||||
}
|
||||
|
@ -53,7 +53,7 @@ cut_along_polyline_response: GridGeometryExtraction__pb2.CutAlongPolylineRespons
|
||||
grid_geometry_extraction_stub.CutAlongPolyline(cut_along_polyline_request)
|
||||
)
|
||||
|
||||
fence_mesh_sections = cut_along_polyline_response.feceMeshSections
|
||||
fence_mesh_sections = cut_along_polyline_response.fenceMeshSections
|
||||
print(f"Number of fence mesh sections: {len(fence_mesh_sections)}")
|
||||
|
||||
section_mesh_3d = []
|
||||
|
@ -223,7 +223,7 @@ grpc::Status RiaGrpcGridGeometryExtractionService::CutAlongPolyline( grpc::Serve
|
||||
const auto& polylineSegmentsMeshData = polylineIntersectionGenerator->polylineSegmentsMeshData();
|
||||
for ( const auto& segment : polylineSegmentsMeshData )
|
||||
{
|
||||
auto* fenceMeshSection = response->add_fecemeshsections();
|
||||
auto* fenceMeshSection = response->add_fencemeshsections();
|
||||
|
||||
// Set start UTM (x,y)
|
||||
rips::Vec2d* startUtmXY = new rips::Vec2d;
|
||||
|
Loading…
Reference in New Issue
Block a user