luminarycloud 0.22.2__py3-none-any.whl → 0.22.3__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (26) hide show
  1. luminarycloud/_client/retry_interceptor.py +13 -2
  2. luminarycloud/_proto/api/v0/luminarycloud/named_variable_set/named_variable_set_pb2.py +25 -3
  3. luminarycloud/_proto/api/v0/luminarycloud/named_variable_set/named_variable_set_pb2.pyi +30 -0
  4. luminarycloud/_proto/api/v0/luminarycloud/named_variable_set/named_variable_set_pb2_grpc.py +34 -0
  5. luminarycloud/_proto/api/v0/luminarycloud/named_variable_set/named_variable_set_pb2_grpc.pyi +12 -0
  6. luminarycloud/_proto/api/v0/luminarycloud/physics_ai/physics_ai_pb2.py +62 -40
  7. luminarycloud/_proto/api/v0/luminarycloud/physics_ai/physics_ai_pb2.pyi +86 -16
  8. luminarycloud/_proto/api/v0/luminarycloud/physics_ai/physics_ai_pb2_grpc.py +34 -0
  9. luminarycloud/_proto/api/v0/luminarycloud/physics_ai/physics_ai_pb2_grpc.pyi +12 -0
  10. luminarycloud/_proto/lcstatus/details/geometry/geometry_pb2.py +256 -0
  11. luminarycloud/_proto/lcstatus/details/geometry/geometry_pb2.pyi +472 -0
  12. luminarycloud/_proto/physicsaitrainingservice/physicsaitrainingservice_pb2.py +2 -2
  13. luminarycloud/_proto/physicsaitrainingservice/physicsaitrainingservice_pb2_grpc.py +34 -0
  14. luminarycloud/_proto/physicsaitrainingservice/physicsaitrainingservice_pb2_grpc.pyi +12 -0
  15. luminarycloud/_proto/quantity/quantity_pb2.pyi +1 -1
  16. luminarycloud/physics_ai/__init__.py +8 -0
  17. luminarycloud/physics_ai/architectures.py +1 -1
  18. luminarycloud/physics_ai/datasets.py +246 -0
  19. luminarycloud/pipelines/__init__.py +11 -0
  20. luminarycloud/pipelines/api.py +61 -0
  21. luminarycloud/pipelines/core.py +358 -45
  22. luminarycloud/pipelines/flowables.py +138 -0
  23. luminarycloud/pipelines/stages.py +7 -31
  24. {luminarycloud-0.22.2.dist-info → luminarycloud-0.22.3.dist-info}/METADATA +1 -1
  25. {luminarycloud-0.22.2.dist-info → luminarycloud-0.22.3.dist-info}/RECORD +26 -22
  26. {luminarycloud-0.22.2.dist-info → luminarycloud-0.22.3.dist-info}/WHEEL +0 -0
@@ -40,6 +40,11 @@ class PhysicsAiServiceStub(object):
40
40
  request_serializer=proto_dot_api_dot_v0_dot_luminarycloud_dot_physics__ai_dot_physics__ai__pb2.CreateDatasetRequest.SerializeToString,
41
41
  response_deserializer=proto_dot_api_dot_v0_dot_luminarycloud_dot_physics__ai_dot_physics__ai__pb2.CreateDatasetResponse.FromString,
42
42
  )
43
+ self.ListDatasets = channel.unary_unary(
44
+ '/luminary.proto.api.v0.luminarycloud.physics_ai.PhysicsAiService/ListDatasets',
45
+ request_serializer=proto_dot_api_dot_v0_dot_luminarycloud_dot_physics__ai_dot_physics__ai__pb2.ListDatasetsRequest.SerializeToString,
46
+ response_deserializer=proto_dot_api_dot_v0_dot_luminarycloud_dot_physics__ai_dot_physics__ai__pb2.ListDatasetsResponse.FromString,
47
+ )
43
48
 
44
49
 
45
50
  class PhysicsAiServiceServicer(object):
@@ -81,6 +86,13 @@ class PhysicsAiServiceServicer(object):
81
86
  context.set_details('Method not implemented!')
82
87
  raise NotImplementedError('Method not implemented!')
83
88
 
89
+ def ListDatasets(self, request, context):
90
+ """Lists datasets for the current user
91
+ """
92
+ context.set_code(grpc.StatusCode.UNIMPLEMENTED)
93
+ context.set_details('Method not implemented!')
94
+ raise NotImplementedError('Method not implemented!')
95
+
84
96
 
85
97
  def add_PhysicsAiServiceServicer_to_server(servicer, server):
86
98
  rpc_method_handlers = {
@@ -109,6 +121,11 @@ def add_PhysicsAiServiceServicer_to_server(servicer, server):
109
121
  request_deserializer=proto_dot_api_dot_v0_dot_luminarycloud_dot_physics__ai_dot_physics__ai__pb2.CreateDatasetRequest.FromString,
110
122
  response_serializer=proto_dot_api_dot_v0_dot_luminarycloud_dot_physics__ai_dot_physics__ai__pb2.CreateDatasetResponse.SerializeToString,
111
123
  ),
124
+ 'ListDatasets': grpc.unary_unary_rpc_method_handler(
125
+ servicer.ListDatasets,
126
+ request_deserializer=proto_dot_api_dot_v0_dot_luminarycloud_dot_physics__ai_dot_physics__ai__pb2.ListDatasetsRequest.FromString,
127
+ response_serializer=proto_dot_api_dot_v0_dot_luminarycloud_dot_physics__ai_dot_physics__ai__pb2.ListDatasetsResponse.SerializeToString,
128
+ ),
112
129
  }
113
130
  generic_handler = grpc.method_handlers_generic_handler(
114
131
  'luminary.proto.api.v0.luminarycloud.physics_ai.PhysicsAiService', rpc_method_handlers)
@@ -204,3 +221,20 @@ class PhysicsAiService(object):
204
221
  proto_dot_api_dot_v0_dot_luminarycloud_dot_physics__ai_dot_physics__ai__pb2.CreateDatasetResponse.FromString,
205
222
  options, channel_credentials,
206
223
  insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
224
+
225
+ @staticmethod
226
+ def ListDatasets(request,
227
+ target,
228
+ options=(),
229
+ channel_credentials=None,
230
+ call_credentials=None,
231
+ insecure=False,
232
+ compression=None,
233
+ wait_for_ready=None,
234
+ timeout=None,
235
+ metadata=None):
236
+ return grpc.experimental.unary_unary(request, target, '/luminary.proto.api.v0.luminarycloud.physics_ai.PhysicsAiService/ListDatasets',
237
+ proto_dot_api_dot_v0_dot_luminarycloud_dot_physics__ai_dot_physics__ai__pb2.ListDatasetsRequest.SerializeToString,
238
+ proto_dot_api_dot_v0_dot_luminarycloud_dot_physics__ai_dot_physics__ai__pb2.ListDatasetsResponse.FromString,
239
+ options, channel_credentials,
240
+ insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
@@ -35,6 +35,11 @@ class PhysicsAiServiceStub:
35
35
  luminarycloud._proto.api.v0.luminarycloud.physics_ai.physics_ai_pb2.CreateDatasetResponse,
36
36
  ]
37
37
  """Creates a new Physics AI dataset"""
38
+ ListDatasets: grpc.UnaryUnaryMultiCallable[
39
+ luminarycloud._proto.api.v0.luminarycloud.physics_ai.physics_ai_pb2.ListDatasetsRequest,
40
+ luminarycloud._proto.api.v0.luminarycloud.physics_ai.physics_ai_pb2.ListDatasetsResponse,
41
+ ]
42
+ """Lists datasets for the current user"""
38
43
 
39
44
  class PhysicsAiServiceServicer(metaclass=abc.ABCMeta):
40
45
  """Manages physics ai architectures."""
@@ -74,5 +79,12 @@ class PhysicsAiServiceServicer(metaclass=abc.ABCMeta):
74
79
  context: grpc.ServicerContext,
75
80
  ) -> luminarycloud._proto.api.v0.luminarycloud.physics_ai.physics_ai_pb2.CreateDatasetResponse:
76
81
  """Creates a new Physics AI dataset"""
82
+ @abc.abstractmethod
83
+ def ListDatasets(
84
+ self,
85
+ request: luminarycloud._proto.api.v0.luminarycloud.physics_ai.physics_ai_pb2.ListDatasetsRequest,
86
+ context: grpc.ServicerContext,
87
+ ) -> luminarycloud._proto.api.v0.luminarycloud.physics_ai.physics_ai_pb2.ListDatasetsResponse:
88
+ """Lists datasets for the current user"""
77
89
 
78
90
  def add_PhysicsAiServiceServicer_to_server(servicer: PhysicsAiServiceServicer, server: grpc.Server) -> None: ...
@@ -0,0 +1,256 @@
1
+ # -*- coding: utf-8 -*-
2
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
3
+ # source: proto/lcstatus/details/geometry/geometry.proto
4
+ """Generated protocol buffer code."""
5
+ from google.protobuf import descriptor as _descriptor
6
+ from google.protobuf import descriptor_pool as _descriptor_pool
7
+ from google.protobuf import message as _message
8
+ from google.protobuf import reflection as _reflection
9
+ from google.protobuf import symbol_database as _symbol_database
10
+ # @@protoc_insertion_point(imports)
11
+
12
+ _sym_db = _symbol_database.Default()
13
+
14
+
15
+ from luminarycloud._proto.base import base_pb2 as proto_dot_base_dot_base__pb2
16
+
17
+
18
+ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n.proto/lcstatus/details/geometry/geometry.proto\x12(luminary.proto.lcstatus.details.geometry\x1a\x15proto/base/base.proto\"]\n\x06Vertex\x12\x19\n\x11\x61\x64jacent_surfaces\x18\x01 \x03(\t\x12,\n\x06\x63oords\x18\x02 \x01(\x0b\x32\x1c.luminary.proto.base.Vector3\x12\n\n\x02id\x18\x03 \x01(\t\"-\n\x04\x45\x64ge\x12\x19\n\x11\x61\x64jacent_surfaces\x18\x01 \x03(\t\x12\n\n\x02id\x18\x02 \x01(\t\"\xa3\x01\n\x19GeoVertexDuplicateDetails\x12\x42\n\x08vertex_1\x18\x01 \x01(\x0b\x32\x30.luminary.proto.lcstatus.details.geometry.Vertex\x12\x42\n\x08vertex_2\x18\x02 \x01(\x0b\x32\x30.luminary.proto.lcstatus.details.geometry.Vertex\"X\n\x18GeoEdgeUnmeshableDetails\x12<\n\x04\x65\x64ge\x18\x01 \x01(\x0b\x32..luminary.proto.lcstatus.details.geometry.Edge\"W\n\x17GeoEdgeNotSmoothDetails\x12<\n\x04\x65\x64ge\x18\x01 \x01(\x0b\x32..luminary.proto.lcstatus.details.geometry.Edge\"o\n\x1cGeoEdgeLargeToleranceDetails\x12<\n\x04\x65\x64ge\x18\x01 \x01(\x0b\x32..luminary.proto.lcstatus.details.geometry.Edge\x12\x11\n\ttolerance\x18\x02 \x01(\x01\".\n\x18GeoFaceUnmeshableDetails\x12\x12\n\nsurface_id\x18\x01 \x01(\t\"G\n\x1bGeoFaceEdgesTooCloseDetails\x12\x12\n\nsurface_id\x18\x01 \x01(\t\x12\x14\n\x0c\x61spect_ratio\x18\x02 \x01(\x01\"0\n\x1aGeoFaceEdgeTooSmallDetails\x12\x12\n\nsurface_id\x18\x01 \x01(\t\"L\n\x1eGeoFaceFaceIntersectionDetails\x12\x14\n\x0csurface_1_id\x18\x01 \x01(\t\x12\x14\n\x0csurface_2_id\x18\x02 \x01(\t\"4\n\x1eGeoFaceSelfIntersectionDetails\x12\x12\n\nsurface_id\x18\x01 \x01(\t\"-\n\x17GeoFaceNotSmoothDetails\x12\x12\n\nsurface_id\x18\x01 \x01(\t\"E\n\x1cGeoFaceLargeToleranceDetails\x12\x12\n\nsurface_id\x18\x01 \x01(\t\x12\x11\n\ttolerance\x18\x02 \x01(\x01\"\xad\x01\n\x17GeoFaceEdgeCrossDetails\x12\x12\n\nsurface_id\x18\x01 \x01(\t\x12>\n\x06\x65\x64ge_1\x18\x02 \x01(\x0b\x32..luminary.proto.lcstatus.details.geometry.Edge\x12>\n\x06\x65\x64ge_2\x18\x03 \x01(\x0b\x32..luminary.proto.lcstatus.details.geometry.Edge\"0\n\x1aGeoFaceNeedsImprintDetails\x12\x12\n\nsurface_id\x18\x01 \x01(\t\"<\n\x1dGeoContactNeedsImprintDetails\x12\x1b\n\x13geometry_contact_id\x18\x01 \x01(\t\">\n\x18GeoFacePoorApproxDetails\x12\x12\n\nsurface_id\x18\x01 \x01(\t\x12\x0e\n\x06\x61pprox\x18\x02 \x01(\x01\"n\n\x14GeoVolumeOpenDetails\x12\x12\n\nvolumes_id\x18\x01 \x01(\r\x12\x42\n\nopen_edges\x18\x02 \x03(\x0b\x32..luminary.proto.lcstatus.details.geometry.Edge\"|\n\x1bGeoVolumeNonManifoldDetails\x12\x11\n\tvolume_id\x18\x01 \x01(\r\x12J\n\x12non_manifold_edges\x18\x02 \x03(\x0b\x32..luminary.proto.lcstatus.details.geometry.Edge\"/\n\x1aGeoVolumeUnmeshableDetails\x12\x11\n\tvolume_id\x18\x01 \x01(\r\"0\n\x1dGeoFeatureUnknownErrorDetails\x12\x0f\n\x07message\x18\x01 \x01(\t\"2\n\x1fGeoFeatureOnshapeWarningDetails\x12\x0f\n\x07message\x18\x01 \x01(\t\"1\n\x1eGeoWorkerInvalidRequestDetails\x12\x0f\n\x07message\x18\x01 \x01(\tB8Z6luminarycloud.com/core/proto/lcstatus/details/geometryb\x06proto3')
19
+
20
+
21
+
22
+ _VERTEX = DESCRIPTOR.message_types_by_name['Vertex']
23
+ _EDGE = DESCRIPTOR.message_types_by_name['Edge']
24
+ _GEOVERTEXDUPLICATEDETAILS = DESCRIPTOR.message_types_by_name['GeoVertexDuplicateDetails']
25
+ _GEOEDGEUNMESHABLEDETAILS = DESCRIPTOR.message_types_by_name['GeoEdgeUnmeshableDetails']
26
+ _GEOEDGENOTSMOOTHDETAILS = DESCRIPTOR.message_types_by_name['GeoEdgeNotSmoothDetails']
27
+ _GEOEDGELARGETOLERANCEDETAILS = DESCRIPTOR.message_types_by_name['GeoEdgeLargeToleranceDetails']
28
+ _GEOFACEUNMESHABLEDETAILS = DESCRIPTOR.message_types_by_name['GeoFaceUnmeshableDetails']
29
+ _GEOFACEEDGESTOOCLOSEDETAILS = DESCRIPTOR.message_types_by_name['GeoFaceEdgesTooCloseDetails']
30
+ _GEOFACEEDGETOOSMALLDETAILS = DESCRIPTOR.message_types_by_name['GeoFaceEdgeTooSmallDetails']
31
+ _GEOFACEFACEINTERSECTIONDETAILS = DESCRIPTOR.message_types_by_name['GeoFaceFaceIntersectionDetails']
32
+ _GEOFACESELFINTERSECTIONDETAILS = DESCRIPTOR.message_types_by_name['GeoFaceSelfIntersectionDetails']
33
+ _GEOFACENOTSMOOTHDETAILS = DESCRIPTOR.message_types_by_name['GeoFaceNotSmoothDetails']
34
+ _GEOFACELARGETOLERANCEDETAILS = DESCRIPTOR.message_types_by_name['GeoFaceLargeToleranceDetails']
35
+ _GEOFACEEDGECROSSDETAILS = DESCRIPTOR.message_types_by_name['GeoFaceEdgeCrossDetails']
36
+ _GEOFACENEEDSIMPRINTDETAILS = DESCRIPTOR.message_types_by_name['GeoFaceNeedsImprintDetails']
37
+ _GEOCONTACTNEEDSIMPRINTDETAILS = DESCRIPTOR.message_types_by_name['GeoContactNeedsImprintDetails']
38
+ _GEOFACEPOORAPPROXDETAILS = DESCRIPTOR.message_types_by_name['GeoFacePoorApproxDetails']
39
+ _GEOVOLUMEOPENDETAILS = DESCRIPTOR.message_types_by_name['GeoVolumeOpenDetails']
40
+ _GEOVOLUMENONMANIFOLDDETAILS = DESCRIPTOR.message_types_by_name['GeoVolumeNonManifoldDetails']
41
+ _GEOVOLUMEUNMESHABLEDETAILS = DESCRIPTOR.message_types_by_name['GeoVolumeUnmeshableDetails']
42
+ _GEOFEATUREUNKNOWNERRORDETAILS = DESCRIPTOR.message_types_by_name['GeoFeatureUnknownErrorDetails']
43
+ _GEOFEATUREONSHAPEWARNINGDETAILS = DESCRIPTOR.message_types_by_name['GeoFeatureOnshapeWarningDetails']
44
+ _GEOWORKERINVALIDREQUESTDETAILS = DESCRIPTOR.message_types_by_name['GeoWorkerInvalidRequestDetails']
45
+ Vertex = _reflection.GeneratedProtocolMessageType('Vertex', (_message.Message,), {
46
+ 'DESCRIPTOR' : _VERTEX,
47
+ '__module__' : 'proto.lcstatus.details.geometry.geometry_pb2'
48
+ # @@protoc_insertion_point(class_scope:luminary.proto.lcstatus.details.geometry.Vertex)
49
+ })
50
+ _sym_db.RegisterMessage(Vertex)
51
+
52
+ Edge = _reflection.GeneratedProtocolMessageType('Edge', (_message.Message,), {
53
+ 'DESCRIPTOR' : _EDGE,
54
+ '__module__' : 'proto.lcstatus.details.geometry.geometry_pb2'
55
+ # @@protoc_insertion_point(class_scope:luminary.proto.lcstatus.details.geometry.Edge)
56
+ })
57
+ _sym_db.RegisterMessage(Edge)
58
+
59
+ GeoVertexDuplicateDetails = _reflection.GeneratedProtocolMessageType('GeoVertexDuplicateDetails', (_message.Message,), {
60
+ 'DESCRIPTOR' : _GEOVERTEXDUPLICATEDETAILS,
61
+ '__module__' : 'proto.lcstatus.details.geometry.geometry_pb2'
62
+ # @@protoc_insertion_point(class_scope:luminary.proto.lcstatus.details.geometry.GeoVertexDuplicateDetails)
63
+ })
64
+ _sym_db.RegisterMessage(GeoVertexDuplicateDetails)
65
+
66
+ GeoEdgeUnmeshableDetails = _reflection.GeneratedProtocolMessageType('GeoEdgeUnmeshableDetails', (_message.Message,), {
67
+ 'DESCRIPTOR' : _GEOEDGEUNMESHABLEDETAILS,
68
+ '__module__' : 'proto.lcstatus.details.geometry.geometry_pb2'
69
+ # @@protoc_insertion_point(class_scope:luminary.proto.lcstatus.details.geometry.GeoEdgeUnmeshableDetails)
70
+ })
71
+ _sym_db.RegisterMessage(GeoEdgeUnmeshableDetails)
72
+
73
+ GeoEdgeNotSmoothDetails = _reflection.GeneratedProtocolMessageType('GeoEdgeNotSmoothDetails', (_message.Message,), {
74
+ 'DESCRIPTOR' : _GEOEDGENOTSMOOTHDETAILS,
75
+ '__module__' : 'proto.lcstatus.details.geometry.geometry_pb2'
76
+ # @@protoc_insertion_point(class_scope:luminary.proto.lcstatus.details.geometry.GeoEdgeNotSmoothDetails)
77
+ })
78
+ _sym_db.RegisterMessage(GeoEdgeNotSmoothDetails)
79
+
80
+ GeoEdgeLargeToleranceDetails = _reflection.GeneratedProtocolMessageType('GeoEdgeLargeToleranceDetails', (_message.Message,), {
81
+ 'DESCRIPTOR' : _GEOEDGELARGETOLERANCEDETAILS,
82
+ '__module__' : 'proto.lcstatus.details.geometry.geometry_pb2'
83
+ # @@protoc_insertion_point(class_scope:luminary.proto.lcstatus.details.geometry.GeoEdgeLargeToleranceDetails)
84
+ })
85
+ _sym_db.RegisterMessage(GeoEdgeLargeToleranceDetails)
86
+
87
+ GeoFaceUnmeshableDetails = _reflection.GeneratedProtocolMessageType('GeoFaceUnmeshableDetails', (_message.Message,), {
88
+ 'DESCRIPTOR' : _GEOFACEUNMESHABLEDETAILS,
89
+ '__module__' : 'proto.lcstatus.details.geometry.geometry_pb2'
90
+ # @@protoc_insertion_point(class_scope:luminary.proto.lcstatus.details.geometry.GeoFaceUnmeshableDetails)
91
+ })
92
+ _sym_db.RegisterMessage(GeoFaceUnmeshableDetails)
93
+
94
+ GeoFaceEdgesTooCloseDetails = _reflection.GeneratedProtocolMessageType('GeoFaceEdgesTooCloseDetails', (_message.Message,), {
95
+ 'DESCRIPTOR' : _GEOFACEEDGESTOOCLOSEDETAILS,
96
+ '__module__' : 'proto.lcstatus.details.geometry.geometry_pb2'
97
+ # @@protoc_insertion_point(class_scope:luminary.proto.lcstatus.details.geometry.GeoFaceEdgesTooCloseDetails)
98
+ })
99
+ _sym_db.RegisterMessage(GeoFaceEdgesTooCloseDetails)
100
+
101
+ GeoFaceEdgeTooSmallDetails = _reflection.GeneratedProtocolMessageType('GeoFaceEdgeTooSmallDetails', (_message.Message,), {
102
+ 'DESCRIPTOR' : _GEOFACEEDGETOOSMALLDETAILS,
103
+ '__module__' : 'proto.lcstatus.details.geometry.geometry_pb2'
104
+ # @@protoc_insertion_point(class_scope:luminary.proto.lcstatus.details.geometry.GeoFaceEdgeTooSmallDetails)
105
+ })
106
+ _sym_db.RegisterMessage(GeoFaceEdgeTooSmallDetails)
107
+
108
+ GeoFaceFaceIntersectionDetails = _reflection.GeneratedProtocolMessageType('GeoFaceFaceIntersectionDetails', (_message.Message,), {
109
+ 'DESCRIPTOR' : _GEOFACEFACEINTERSECTIONDETAILS,
110
+ '__module__' : 'proto.lcstatus.details.geometry.geometry_pb2'
111
+ # @@protoc_insertion_point(class_scope:luminary.proto.lcstatus.details.geometry.GeoFaceFaceIntersectionDetails)
112
+ })
113
+ _sym_db.RegisterMessage(GeoFaceFaceIntersectionDetails)
114
+
115
+ GeoFaceSelfIntersectionDetails = _reflection.GeneratedProtocolMessageType('GeoFaceSelfIntersectionDetails', (_message.Message,), {
116
+ 'DESCRIPTOR' : _GEOFACESELFINTERSECTIONDETAILS,
117
+ '__module__' : 'proto.lcstatus.details.geometry.geometry_pb2'
118
+ # @@protoc_insertion_point(class_scope:luminary.proto.lcstatus.details.geometry.GeoFaceSelfIntersectionDetails)
119
+ })
120
+ _sym_db.RegisterMessage(GeoFaceSelfIntersectionDetails)
121
+
122
+ GeoFaceNotSmoothDetails = _reflection.GeneratedProtocolMessageType('GeoFaceNotSmoothDetails', (_message.Message,), {
123
+ 'DESCRIPTOR' : _GEOFACENOTSMOOTHDETAILS,
124
+ '__module__' : 'proto.lcstatus.details.geometry.geometry_pb2'
125
+ # @@protoc_insertion_point(class_scope:luminary.proto.lcstatus.details.geometry.GeoFaceNotSmoothDetails)
126
+ })
127
+ _sym_db.RegisterMessage(GeoFaceNotSmoothDetails)
128
+
129
+ GeoFaceLargeToleranceDetails = _reflection.GeneratedProtocolMessageType('GeoFaceLargeToleranceDetails', (_message.Message,), {
130
+ 'DESCRIPTOR' : _GEOFACELARGETOLERANCEDETAILS,
131
+ '__module__' : 'proto.lcstatus.details.geometry.geometry_pb2'
132
+ # @@protoc_insertion_point(class_scope:luminary.proto.lcstatus.details.geometry.GeoFaceLargeToleranceDetails)
133
+ })
134
+ _sym_db.RegisterMessage(GeoFaceLargeToleranceDetails)
135
+
136
+ GeoFaceEdgeCrossDetails = _reflection.GeneratedProtocolMessageType('GeoFaceEdgeCrossDetails', (_message.Message,), {
137
+ 'DESCRIPTOR' : _GEOFACEEDGECROSSDETAILS,
138
+ '__module__' : 'proto.lcstatus.details.geometry.geometry_pb2'
139
+ # @@protoc_insertion_point(class_scope:luminary.proto.lcstatus.details.geometry.GeoFaceEdgeCrossDetails)
140
+ })
141
+ _sym_db.RegisterMessage(GeoFaceEdgeCrossDetails)
142
+
143
+ GeoFaceNeedsImprintDetails = _reflection.GeneratedProtocolMessageType('GeoFaceNeedsImprintDetails', (_message.Message,), {
144
+ 'DESCRIPTOR' : _GEOFACENEEDSIMPRINTDETAILS,
145
+ '__module__' : 'proto.lcstatus.details.geometry.geometry_pb2'
146
+ # @@protoc_insertion_point(class_scope:luminary.proto.lcstatus.details.geometry.GeoFaceNeedsImprintDetails)
147
+ })
148
+ _sym_db.RegisterMessage(GeoFaceNeedsImprintDetails)
149
+
150
+ GeoContactNeedsImprintDetails = _reflection.GeneratedProtocolMessageType('GeoContactNeedsImprintDetails', (_message.Message,), {
151
+ 'DESCRIPTOR' : _GEOCONTACTNEEDSIMPRINTDETAILS,
152
+ '__module__' : 'proto.lcstatus.details.geometry.geometry_pb2'
153
+ # @@protoc_insertion_point(class_scope:luminary.proto.lcstatus.details.geometry.GeoContactNeedsImprintDetails)
154
+ })
155
+ _sym_db.RegisterMessage(GeoContactNeedsImprintDetails)
156
+
157
+ GeoFacePoorApproxDetails = _reflection.GeneratedProtocolMessageType('GeoFacePoorApproxDetails', (_message.Message,), {
158
+ 'DESCRIPTOR' : _GEOFACEPOORAPPROXDETAILS,
159
+ '__module__' : 'proto.lcstatus.details.geometry.geometry_pb2'
160
+ # @@protoc_insertion_point(class_scope:luminary.proto.lcstatus.details.geometry.GeoFacePoorApproxDetails)
161
+ })
162
+ _sym_db.RegisterMessage(GeoFacePoorApproxDetails)
163
+
164
+ GeoVolumeOpenDetails = _reflection.GeneratedProtocolMessageType('GeoVolumeOpenDetails', (_message.Message,), {
165
+ 'DESCRIPTOR' : _GEOVOLUMEOPENDETAILS,
166
+ '__module__' : 'proto.lcstatus.details.geometry.geometry_pb2'
167
+ # @@protoc_insertion_point(class_scope:luminary.proto.lcstatus.details.geometry.GeoVolumeOpenDetails)
168
+ })
169
+ _sym_db.RegisterMessage(GeoVolumeOpenDetails)
170
+
171
+ GeoVolumeNonManifoldDetails = _reflection.GeneratedProtocolMessageType('GeoVolumeNonManifoldDetails', (_message.Message,), {
172
+ 'DESCRIPTOR' : _GEOVOLUMENONMANIFOLDDETAILS,
173
+ '__module__' : 'proto.lcstatus.details.geometry.geometry_pb2'
174
+ # @@protoc_insertion_point(class_scope:luminary.proto.lcstatus.details.geometry.GeoVolumeNonManifoldDetails)
175
+ })
176
+ _sym_db.RegisterMessage(GeoVolumeNonManifoldDetails)
177
+
178
+ GeoVolumeUnmeshableDetails = _reflection.GeneratedProtocolMessageType('GeoVolumeUnmeshableDetails', (_message.Message,), {
179
+ 'DESCRIPTOR' : _GEOVOLUMEUNMESHABLEDETAILS,
180
+ '__module__' : 'proto.lcstatus.details.geometry.geometry_pb2'
181
+ # @@protoc_insertion_point(class_scope:luminary.proto.lcstatus.details.geometry.GeoVolumeUnmeshableDetails)
182
+ })
183
+ _sym_db.RegisterMessage(GeoVolumeUnmeshableDetails)
184
+
185
+ GeoFeatureUnknownErrorDetails = _reflection.GeneratedProtocolMessageType('GeoFeatureUnknownErrorDetails', (_message.Message,), {
186
+ 'DESCRIPTOR' : _GEOFEATUREUNKNOWNERRORDETAILS,
187
+ '__module__' : 'proto.lcstatus.details.geometry.geometry_pb2'
188
+ # @@protoc_insertion_point(class_scope:luminary.proto.lcstatus.details.geometry.GeoFeatureUnknownErrorDetails)
189
+ })
190
+ _sym_db.RegisterMessage(GeoFeatureUnknownErrorDetails)
191
+
192
+ GeoFeatureOnshapeWarningDetails = _reflection.GeneratedProtocolMessageType('GeoFeatureOnshapeWarningDetails', (_message.Message,), {
193
+ 'DESCRIPTOR' : _GEOFEATUREONSHAPEWARNINGDETAILS,
194
+ '__module__' : 'proto.lcstatus.details.geometry.geometry_pb2'
195
+ # @@protoc_insertion_point(class_scope:luminary.proto.lcstatus.details.geometry.GeoFeatureOnshapeWarningDetails)
196
+ })
197
+ _sym_db.RegisterMessage(GeoFeatureOnshapeWarningDetails)
198
+
199
+ GeoWorkerInvalidRequestDetails = _reflection.GeneratedProtocolMessageType('GeoWorkerInvalidRequestDetails', (_message.Message,), {
200
+ 'DESCRIPTOR' : _GEOWORKERINVALIDREQUESTDETAILS,
201
+ '__module__' : 'proto.lcstatus.details.geometry.geometry_pb2'
202
+ # @@protoc_insertion_point(class_scope:luminary.proto.lcstatus.details.geometry.GeoWorkerInvalidRequestDetails)
203
+ })
204
+ _sym_db.RegisterMessage(GeoWorkerInvalidRequestDetails)
205
+
206
+ if _descriptor._USE_C_DESCRIPTORS == False:
207
+
208
+ DESCRIPTOR._options = None
209
+ DESCRIPTOR._serialized_options = b'Z6luminarycloud.com/core/proto/lcstatus/details/geometry'
210
+ _VERTEX._serialized_start=115
211
+ _VERTEX._serialized_end=208
212
+ _EDGE._serialized_start=210
213
+ _EDGE._serialized_end=255
214
+ _GEOVERTEXDUPLICATEDETAILS._serialized_start=258
215
+ _GEOVERTEXDUPLICATEDETAILS._serialized_end=421
216
+ _GEOEDGEUNMESHABLEDETAILS._serialized_start=423
217
+ _GEOEDGEUNMESHABLEDETAILS._serialized_end=511
218
+ _GEOEDGENOTSMOOTHDETAILS._serialized_start=513
219
+ _GEOEDGENOTSMOOTHDETAILS._serialized_end=600
220
+ _GEOEDGELARGETOLERANCEDETAILS._serialized_start=602
221
+ _GEOEDGELARGETOLERANCEDETAILS._serialized_end=713
222
+ _GEOFACEUNMESHABLEDETAILS._serialized_start=715
223
+ _GEOFACEUNMESHABLEDETAILS._serialized_end=761
224
+ _GEOFACEEDGESTOOCLOSEDETAILS._serialized_start=763
225
+ _GEOFACEEDGESTOOCLOSEDETAILS._serialized_end=834
226
+ _GEOFACEEDGETOOSMALLDETAILS._serialized_start=836
227
+ _GEOFACEEDGETOOSMALLDETAILS._serialized_end=884
228
+ _GEOFACEFACEINTERSECTIONDETAILS._serialized_start=886
229
+ _GEOFACEFACEINTERSECTIONDETAILS._serialized_end=962
230
+ _GEOFACESELFINTERSECTIONDETAILS._serialized_start=964
231
+ _GEOFACESELFINTERSECTIONDETAILS._serialized_end=1016
232
+ _GEOFACENOTSMOOTHDETAILS._serialized_start=1018
233
+ _GEOFACENOTSMOOTHDETAILS._serialized_end=1063
234
+ _GEOFACELARGETOLERANCEDETAILS._serialized_start=1065
235
+ _GEOFACELARGETOLERANCEDETAILS._serialized_end=1134
236
+ _GEOFACEEDGECROSSDETAILS._serialized_start=1137
237
+ _GEOFACEEDGECROSSDETAILS._serialized_end=1310
238
+ _GEOFACENEEDSIMPRINTDETAILS._serialized_start=1312
239
+ _GEOFACENEEDSIMPRINTDETAILS._serialized_end=1360
240
+ _GEOCONTACTNEEDSIMPRINTDETAILS._serialized_start=1362
241
+ _GEOCONTACTNEEDSIMPRINTDETAILS._serialized_end=1422
242
+ _GEOFACEPOORAPPROXDETAILS._serialized_start=1424
243
+ _GEOFACEPOORAPPROXDETAILS._serialized_end=1486
244
+ _GEOVOLUMEOPENDETAILS._serialized_start=1488
245
+ _GEOVOLUMEOPENDETAILS._serialized_end=1598
246
+ _GEOVOLUMENONMANIFOLDDETAILS._serialized_start=1600
247
+ _GEOVOLUMENONMANIFOLDDETAILS._serialized_end=1724
248
+ _GEOVOLUMEUNMESHABLEDETAILS._serialized_start=1726
249
+ _GEOVOLUMEUNMESHABLEDETAILS._serialized_end=1773
250
+ _GEOFEATUREUNKNOWNERRORDETAILS._serialized_start=1775
251
+ _GEOFEATUREUNKNOWNERRORDETAILS._serialized_end=1823
252
+ _GEOFEATUREONSHAPEWARNINGDETAILS._serialized_start=1825
253
+ _GEOFEATUREONSHAPEWARNINGDETAILS._serialized_end=1875
254
+ _GEOWORKERINVALIDREQUESTDETAILS._serialized_start=1877
255
+ _GEOWORKERINVALIDREQUESTDETAILS._serialized_end=1926
256
+ # @@protoc_insertion_point(module_scope)