1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- syntax = "proto3";
- package google.cloud.documentai.v1beta2;
- option csharp_namespace = "Google.Cloud.DocumentAI.V1Beta2";
- option go_package = "google.golang.org/genproto/googleapis/cloud/documentai/v1beta2;documentai";
- option java_multiple_files = true;
- option java_outer_classname = "GeometryProto";
- option java_package = "com.google.cloud.documentai.v1beta2";
- option php_namespace = "Google\\Cloud\\DocumentAI\\V1beta2";
- option ruby_package = "Google::Cloud::DocumentAI::V1beta2";
- message Vertex {
-
- int32 x = 1;
-
- int32 y = 2;
- }
- message NormalizedVertex {
-
- float x = 1;
-
- float y = 2;
- }
- message BoundingPoly {
-
- repeated Vertex vertices = 1;
-
- repeated NormalizedVertex normalized_vertices = 2;
- }
|