luminarycloud 0.21.2__py3-none-any.whl → 0.22.1__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.
- luminarycloud/__init__.py +3 -1
- luminarycloud/_client/authentication_plugin.py +49 -0
- luminarycloud/_client/client.py +38 -8
- luminarycloud/_client/http_client.py +1 -1
- luminarycloud/_client/retry_interceptor.py +64 -2
- luminarycloud/_feature_flag.py +22 -0
- luminarycloud/_helpers/_create_simulation.py +7 -2
- luminarycloud/_helpers/download.py +11 -0
- luminarycloud/_helpers/proto_decorator.py +13 -5
- luminarycloud/_proto/api/v0/luminarycloud/feature_flag/feature_flag_pb2.py +55 -0
- luminarycloud/_proto/api/v0/luminarycloud/feature_flag/feature_flag_pb2.pyi +52 -0
- luminarycloud/_proto/api/v0/luminarycloud/feature_flag/feature_flag_pb2_grpc.py +72 -0
- luminarycloud/_proto/api/v0/luminarycloud/feature_flag/feature_flag_pb2_grpc.pyi +35 -0
- luminarycloud/_proto/api/v0/luminarycloud/geometry/geometry_pb2.py +132 -132
- luminarycloud/_proto/api/v0/luminarycloud/geometry/geometry_pb2.pyi +36 -8
- luminarycloud/_proto/api/v0/luminarycloud/mesh/mesh_pb2.py +74 -73
- luminarycloud/_proto/api/v0/luminarycloud/mesh/mesh_pb2.pyi +8 -1
- luminarycloud/_proto/api/v0/luminarycloud/physics_ai/physics_ai_pb2.py +53 -23
- luminarycloud/_proto/api/v0/luminarycloud/physics_ai/physics_ai_pb2.pyi +54 -1
- luminarycloud/_proto/api/v0/luminarycloud/physicsaiinference/physicsaiinference_pb2.py +195 -0
- luminarycloud/_proto/api/v0/luminarycloud/physicsaiinference/physicsaiinference_pb2.pyi +361 -0
- luminarycloud/_proto/api/v0/luminarycloud/physicsaiinference/physicsaiinference_pb2_grpc.py +172 -0
- luminarycloud/_proto/api/v0/luminarycloud/physicsaiinference/physicsaiinference_pb2_grpc.pyi +66 -0
- luminarycloud/_proto/api/v0/luminarycloud/simulation/simulation_pb2.py +97 -61
- luminarycloud/_proto/api/v0/luminarycloud/simulation/simulation_pb2.pyi +68 -3
- luminarycloud/_proto/api/v0/luminarycloud/simulation/simulation_pb2_grpc.py +34 -0
- luminarycloud/_proto/api/v0/luminarycloud/simulation/simulation_pb2_grpc.pyi +12 -0
- luminarycloud/_proto/api/v0/luminarycloud/simulation_template/simulation_template_pb2.py +33 -31
- luminarycloud/_proto/api/v0/luminarycloud/simulation_template/simulation_template_pb2.pyi +23 -2
- luminarycloud/_proto/api/v0/luminarycloud/thirdpartyintegration/onshape/onshape_pb2.py +88 -65
- luminarycloud/_proto/api/v0/luminarycloud/thirdpartyintegration/onshape/onshape_pb2.pyi +42 -0
- luminarycloud/_proto/api/v0/luminarycloud/thirdpartyintegration/onshape/onshape_pb2_grpc.py +34 -0
- luminarycloud/_proto/api/v0/luminarycloud/thirdpartyintegration/onshape/onshape_pb2_grpc.pyi +12 -0
- luminarycloud/_proto/base/base_pb2.py +7 -6
- luminarycloud/_proto/base/base_pb2.pyi +4 -0
- luminarycloud/_proto/cad/shape_pb2.py +39 -19
- luminarycloud/_proto/cad/shape_pb2.pyi +86 -34
- luminarycloud/_proto/client/simulation_pb2.py +3 -3
- luminarycloud/_proto/geometry/geometry_pb2.py +77 -63
- luminarycloud/_proto/geometry/geometry_pb2.pyi +42 -3
- luminarycloud/_proto/hexmesh/hexmesh_pb2.py +22 -18
- luminarycloud/_proto/hexmesh/hexmesh_pb2.pyi +18 -2
- luminarycloud/_proto/physicsaiinferenceservice/physicsaiinferenceservice_pb2.py +30 -0
- luminarycloud/_proto/physicsaiinferenceservice/physicsaiinferenceservice_pb2.pyi +7 -0
- luminarycloud/_proto/physicsaitrainingservice/physicsaitrainingservice_pb2.py +2 -2
- luminarycloud/_proto/physicsaitrainingservice/physicsaitrainingservice_pb2_grpc.py +34 -0
- luminarycloud/_proto/physicsaitrainingservice/physicsaitrainingservice_pb2_grpc.pyi +12 -0
- luminarycloud/enum/vis_enums.py +6 -0
- luminarycloud/feature_modification.py +32 -1
- luminarycloud/geometry.py +67 -7
- luminarycloud/geometry_version.py +4 -0
- luminarycloud/mesh.py +4 -0
- luminarycloud/meshing/mesh_generation_params.py +13 -14
- luminarycloud/meshing/sizing_strategy/sizing_strategies.py +1 -2
- luminarycloud/physics_ai/solution.py +4 -0
- luminarycloud/pipelines/api.py +99 -8
- luminarycloud/pipelines/core.py +12 -2
- luminarycloud/pipelines/stages.py +22 -9
- luminarycloud/project.py +5 -8
- luminarycloud/simulation.py +57 -0
- luminarycloud/types/vector3.py +1 -2
- luminarycloud/vis/data_extraction.py +7 -7
- luminarycloud/vis/interactive_report.py +163 -7
- luminarycloud/vis/report.py +113 -1
- luminarycloud/volume_selection.py +71 -7
- {luminarycloud-0.21.2.dist-info → luminarycloud-0.22.1.dist-info}/METADATA +1 -1
- {luminarycloud-0.21.2.dist-info → luminarycloud-0.22.1.dist-info}/RECORD +68 -58
- {luminarycloud-0.21.2.dist-info → luminarycloud-0.22.1.dist-info}/WHEEL +1 -1
- luminarycloud/pipeline_util/dictable.py +0 -27
|
@@ -19,7 +19,7 @@ from luminarycloud._proto.quantity import quantity_pb2 as proto_dot_quantity_dot
|
|
|
19
19
|
from luminarycloud._proto.lcstatus import lcstatus_pb2 as proto_dot_lcstatus_dot_lcstatus__pb2
|
|
20
20
|
|
|
21
21
|
|
|
22
|
-
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x15proto/base/base.proto\x12\x13luminary.proto.base\x1a google/protobuf/descriptor.proto\x1a\x19google/protobuf/any.proto\x1a\x1dproto/quantity/quantity.proto\x1a\x1dproto/lcstatus/lcstatus.proto\"/\n\x08\x43hecksum\x12\x10\n\x06sha256\x18\x01 \x01(\x0cH\x00\x42\x0b\n\talgorithmJ\x04\x08\x02\x10\x03\"N\n\x06Status\x12\x0c\n\x04\x63ode\x18\x01 \x01(\x05\x12\x0f\n\x07message\x18\x02 \x01(\t\x12%\n\x07\x64\x65tails\x18\x03 \x03(\x0b\x32\x14.google.protobuf.Any\"x\n\rStatusPayload\x12-\n\x07subcode\x18\x01 \x01(\x0e\x32\x1c.luminary.proto.base.Subcode\x12\x38\n\x06\x64\x65tail\x18\x03 \x03(\x0b\x32(.luminary.proto.base.StatusPayloadDetail\"5\n\x13StatusPayloadDetail\x12\x0f\n\x07message\x18\x10 \x01(\t\x12\r\n\x05where\x18\x11 \x01(\t\"\xb3\x01\n\tJobStatus\x12/\n\x03typ\x18\x01 \x01(\x0e\x32\".luminary.proto.base.JobStatusType\x12-\n\x06status\x18\x02 \x01(\x0b\x32\x1b.luminary.proto.base.StatusH\x00\x12\x35\n\x08lcstatus\x18\x03 \x01(\x0b\x32!.luminary.proto.lcstatus.LCStatusH\x00\x42\x0f\n\rfailed_reason\"\x92\x01\n\tAdVector3\x12+\n\x01x\x18\x01 \x01(\x0b\x32 .luminary.proto.base.AdFloatType\x12+\n\x01y\x18\x02 \x01(\x0b\x32 .luminary.proto.base.AdFloatType\x12+\n\x01z\x18\x03 \x01(\x0b\x32 .luminary.proto.base.AdFloatType\"*\n\x07Vector3\x12\t\n\x01x\x18\x01 \x01(\x01\x12\t\n\x01y\x18\x02 \x01(\x01\x12\t\n\x01z\x18\x03 \x01(\x01\"-\n\nIntVector3\x12\t\n\x01x\x18\x01 \x01(\x03\x12\t\n\x01y\x18\x02 \x01(\x03\x12\t\n\x01z\x18\x03 \x01(\x03\"\x84\x01\n\x07Matrix3\x12\'\n\x01\x61\x18\x01 \x01(\x0b\x32\x1c.luminary.proto.base.Vector3\x12\'\n\x01\x62\x18\x02 \x01(\x0b\x32\x1c.luminary.proto.base.Vector3\x12\'\n\x01\x63\x18\x03 \x01(\x0b\x32\x1c.luminary.proto.base.Vector3\"C\n\x10\x46irstOrderAdType\x12\r\n\x05value\x18\x01 \x01(\x01\x12\x0f\n\x07tangent\x18\x02 \x03(\x01\x12\x0f\n\x07\x61\x64joint\x18\x03 \x03(\x01\"\xb9\x01\n\x11SecondOrderAdType\x12\x34\n\x05value\x18\x01 \x01(\x0b\x32%.luminary.proto.base.FirstOrderAdType\x12\x36\n\x07tangent\x18\x02 \x03(\x0b\x32%.luminary.proto.base.FirstOrderAdType\x12\x36\n\x07\x61\x64joint\x18\x03 \x03(\x0b\x32%.luminary.proto.base.FirstOrderAdType\"3\n\x0e\x45xpressionType\x12\r\n\x05value\x18\x01 \x01(\x01\x12\x12\n\nexpression\x18\x02 \x01(\t\"\xad\x02\n\x0b\x41\x64\x46loatType\x12\x0f\n\x05value\x18\x01 \x01(\x01H\x00\x12<\n\x0b\x66irst_order\x18\x02 \x01(\x0b\x32%.luminary.proto.base.FirstOrderAdTypeH\x00\x12>\n\x0csecond_order\x18\x03 \x01(\x0b\x32&.luminary.proto.base.SecondOrderAdTypeH\x00\x12\x37\n\x08variable\x18\x05 \x01(\x0b\x32#.luminary.proto.base.ExpressionTypeH\x00\x12>\n\rquantity_type\x18\x04 \x01(\x0e\x32%.luminary.proto.quantity.QuantityTypeH\x01\x42\n\n\x08\x61\x64_typesB\n\n\x08quantity\"\x14\n\x03Int\x12\r\n\x05value\x18\x01 \x01(\x03\"\x16\n\x05\x46loat\x12\r\n\x05value\x18\x01 \x01(\x01\"\x15\n\x04\x42ool\x12\r\n\x05value\x18\x01 \x01(\x08\":\n\x05\x41\x64Row\x12\x31\n\x07\x65lement\x18\x01 \x03(\x0b\x32 .luminary.proto.base.AdFloatType\"3\n\x08\x41\x64Matrix\x12\'\n\x03row\x18\x01 \x03(\x0b\x32\x1a.luminary.proto.base.AdRow\"\x8c\x01\n\tAdMatrix3\x12)\n\x01\x61\x18\x01 \x01(\x0b\x32\x1e.luminary.proto.base.AdVector3\x12)\n\x01\x62\x18\x02 \x01(\x0b\x32\x1e.luminary.proto.base.AdVector3\x12)\n\x01\x63\x18\x03 \x01(\x0b\x32\x1e.luminary.proto.base.AdVector3*\
|
|
22
|
+
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x15proto/base/base.proto\x12\x13luminary.proto.base\x1a google/protobuf/descriptor.proto\x1a\x19google/protobuf/any.proto\x1a\x1dproto/quantity/quantity.proto\x1a\x1dproto/lcstatus/lcstatus.proto\"/\n\x08\x43hecksum\x12\x10\n\x06sha256\x18\x01 \x01(\x0cH\x00\x42\x0b\n\talgorithmJ\x04\x08\x02\x10\x03\"N\n\x06Status\x12\x0c\n\x04\x63ode\x18\x01 \x01(\x05\x12\x0f\n\x07message\x18\x02 \x01(\t\x12%\n\x07\x64\x65tails\x18\x03 \x03(\x0b\x32\x14.google.protobuf.Any\"x\n\rStatusPayload\x12-\n\x07subcode\x18\x01 \x01(\x0e\x32\x1c.luminary.proto.base.Subcode\x12\x38\n\x06\x64\x65tail\x18\x03 \x03(\x0b\x32(.luminary.proto.base.StatusPayloadDetail\"5\n\x13StatusPayloadDetail\x12\x0f\n\x07message\x18\x10 \x01(\t\x12\r\n\x05where\x18\x11 \x01(\t\"\xb3\x01\n\tJobStatus\x12/\n\x03typ\x18\x01 \x01(\x0e\x32\".luminary.proto.base.JobStatusType\x12-\n\x06status\x18\x02 \x01(\x0b\x32\x1b.luminary.proto.base.StatusH\x00\x12\x35\n\x08lcstatus\x18\x03 \x01(\x0b\x32!.luminary.proto.lcstatus.LCStatusH\x00\x42\x0f\n\rfailed_reason\"\x92\x01\n\tAdVector3\x12+\n\x01x\x18\x01 \x01(\x0b\x32 .luminary.proto.base.AdFloatType\x12+\n\x01y\x18\x02 \x01(\x0b\x32 .luminary.proto.base.AdFloatType\x12+\n\x01z\x18\x03 \x01(\x0b\x32 .luminary.proto.base.AdFloatType\"*\n\x07Vector3\x12\t\n\x01x\x18\x01 \x01(\x01\x12\t\n\x01y\x18\x02 \x01(\x01\x12\t\n\x01z\x18\x03 \x01(\x01\"-\n\nIntVector3\x12\t\n\x01x\x18\x01 \x01(\x03\x12\t\n\x01y\x18\x02 \x01(\x03\x12\t\n\x01z\x18\x03 \x01(\x03\"\x84\x01\n\x07Matrix3\x12\'\n\x01\x61\x18\x01 \x01(\x0b\x32\x1c.luminary.proto.base.Vector3\x12\'\n\x01\x62\x18\x02 \x01(\x0b\x32\x1c.luminary.proto.base.Vector3\x12\'\n\x01\x63\x18\x03 \x01(\x0b\x32\x1c.luminary.proto.base.Vector3\"C\n\x10\x46irstOrderAdType\x12\r\n\x05value\x18\x01 \x01(\x01\x12\x0f\n\x07tangent\x18\x02 \x03(\x01\x12\x0f\n\x07\x61\x64joint\x18\x03 \x03(\x01\"\xb9\x01\n\x11SecondOrderAdType\x12\x34\n\x05value\x18\x01 \x01(\x0b\x32%.luminary.proto.base.FirstOrderAdType\x12\x36\n\x07tangent\x18\x02 \x03(\x0b\x32%.luminary.proto.base.FirstOrderAdType\x12\x36\n\x07\x61\x64joint\x18\x03 \x03(\x0b\x32%.luminary.proto.base.FirstOrderAdType\"3\n\x0e\x45xpressionType\x12\r\n\x05value\x18\x01 \x01(\x01\x12\x12\n\nexpression\x18\x02 \x01(\t\"\xad\x02\n\x0b\x41\x64\x46loatType\x12\x0f\n\x05value\x18\x01 \x01(\x01H\x00\x12<\n\x0b\x66irst_order\x18\x02 \x01(\x0b\x32%.luminary.proto.base.FirstOrderAdTypeH\x00\x12>\n\x0csecond_order\x18\x03 \x01(\x0b\x32&.luminary.proto.base.SecondOrderAdTypeH\x00\x12\x37\n\x08variable\x18\x05 \x01(\x0b\x32#.luminary.proto.base.ExpressionTypeH\x00\x12>\n\rquantity_type\x18\x04 \x01(\x0e\x32%.luminary.proto.quantity.QuantityTypeH\x01\x42\n\n\x08\x61\x64_typesB\n\n\x08quantity\"\x14\n\x03Int\x12\r\n\x05value\x18\x01 \x01(\x03\"\x16\n\x05\x46loat\x12\r\n\x05value\x18\x01 \x01(\x01\"\x15\n\x04\x42ool\x12\r\n\x05value\x18\x01 \x01(\x08\":\n\x05\x41\x64Row\x12\x31\n\x07\x65lement\x18\x01 \x03(\x0b\x32 .luminary.proto.base.AdFloatType\"3\n\x08\x41\x64Matrix\x12\'\n\x03row\x18\x01 \x03(\x0b\x32\x1a.luminary.proto.base.AdRow\"\x8c\x01\n\tAdMatrix3\x12)\n\x01\x61\x18\x01 \x01(\x0b\x32\x1e.luminary.proto.base.AdVector3\x12)\n\x01\x62\x18\x02 \x01(\x0b\x32\x1e.luminary.proto.base.AdVector3\x12)\n\x01\x63\x18\x03 \x01(\x0b\x32\x1e.luminary.proto.base.AdVector3*\xe7\x03\n\x07Subcode\x12\x17\n\x13SUBCODE_UNSPECIFIED\x10\x00\x12\x1a\n\x16SUBCODE_USER_NOT_FOUND\x10\x01\x12 \n\x1cSUBCODE_JOB_CANCELED_BY_USER\x10\x02\x12#\n\x1fSUBCODE_JOB_CANCELED_DIVERGENCE\x10\x03\x12$\n SUBCODE_JOB_CANCELED_SETUP_ERROR\x10\x04\x12\x1f\n\x1bSUBCODE_INCOMPATIBLE_CLIENT\x10\x05\x12\x1e\n\x1aSUBCODE_INSUFFICIENT_QUOTA\x10\x06\x12/\n+SUBCODE_EMAIL_DOMAIN_NOT_IN_ALLOWED_DOMAINS\x10\x07\x12&\n\"SUBCODE_TRIAL_ACCOUNT_USER_BLOCKED\x10\x08\x12(\n$SUBCODE_UNLIMITED_PLAN_EXCEEDS_QUOTA\x10\t\x12 \n\x1cSUBCODE_DATE_RANGE_TOO_LARGE\x10\n\x12\x1d\n\x19SUBCODE_GEO_ERROR_TO_USER\x10\x0b\x12\x1b\n\x17SUBCODE_GEO_UNSUPPORTED\x10\x0c\x12\x18\n\x14SUBCODE_RATE_LIMITED\x10\r*t\n\rJobStatusType\x12\x0b\n\x07Invalid\x10\x00\x12\n\n\x06\x41\x63tive\x10\x01\x12\r\n\tCompleted\x10\x02\x12\n\n\x06\x46\x61iled\x10\x03\x12\r\n\tSuspended\x10\x04\x12\x10\n\x0cPendingRetry\x10\x05\x12\x0e\n\nSuspending\x10\x06*\x80\x01\n\x10Vector3Component\x12\x1e\n\x1aVECTOR_3_COMPONENT_INVALID\x10\x00\x12\x18\n\x14VECTOR_3_COMPONENT_X\x10\x01\x12\x18\n\x14VECTOR_3_COMPONENT_Y\x10\x02\x12\x18\n\x14VECTOR_3_COMPONENT_Z\x10\x03\x42#Z!luminarycloud.com/core/proto/baseb\x06proto3')
|
|
23
23
|
|
|
24
24
|
_SUBCODE = DESCRIPTOR.enum_types_by_name['Subcode']
|
|
25
25
|
Subcode = enum_type_wrapper.EnumTypeWrapper(_SUBCODE)
|
|
@@ -40,6 +40,7 @@ SUBCODE_UNLIMITED_PLAN_EXCEEDS_QUOTA = 9
|
|
|
40
40
|
SUBCODE_DATE_RANGE_TOO_LARGE = 10
|
|
41
41
|
SUBCODE_GEO_ERROR_TO_USER = 11
|
|
42
42
|
SUBCODE_GEO_UNSUPPORTED = 12
|
|
43
|
+
SUBCODE_RATE_LIMITED = 13
|
|
43
44
|
Invalid = 0
|
|
44
45
|
Active = 1
|
|
45
46
|
Completed = 2
|
|
@@ -210,11 +211,11 @@ if _descriptor._USE_C_DESCRIPTORS == False:
|
|
|
210
211
|
DESCRIPTOR._options = None
|
|
211
212
|
DESCRIPTOR._serialized_options = b'Z!luminarycloud.com/core/proto/base'
|
|
212
213
|
_SUBCODE._serialized_start=1972
|
|
213
|
-
_SUBCODE._serialized_end=
|
|
214
|
-
_JOBSTATUSTYPE._serialized_start=
|
|
215
|
-
_JOBSTATUSTYPE._serialized_end=
|
|
216
|
-
_VECTOR3COMPONENT._serialized_start=
|
|
217
|
-
_VECTOR3COMPONENT._serialized_end=
|
|
214
|
+
_SUBCODE._serialized_end=2459
|
|
215
|
+
_JOBSTATUSTYPE._serialized_start=2461
|
|
216
|
+
_JOBSTATUSTYPE._serialized_end=2577
|
|
217
|
+
_VECTOR3COMPONENT._serialized_start=2580
|
|
218
|
+
_VECTOR3COMPONENT._serialized_end=2708
|
|
218
219
|
_CHECKSUM._serialized_start=169
|
|
219
220
|
_CHECKSUM._serialized_end=216
|
|
220
221
|
_STATUS._serialized_start=218
|
|
@@ -56,6 +56,8 @@ class _SubcodeEnumTypeWrapper(google.protobuf.internal.enum_type_wrapper._EnumTy
|
|
|
56
56
|
"""Set if the geometry error should be surfaced to the user."""
|
|
57
57
|
SUBCODE_GEO_UNSUPPORTED: _Subcode.ValueType # 12
|
|
58
58
|
"""Set if the provided CAD is not supported. Should be shown to the user."""
|
|
59
|
+
SUBCODE_RATE_LIMITED: _Subcode.ValueType # 13
|
|
60
|
+
"""Set if the request is rate limited."""
|
|
59
61
|
|
|
60
62
|
class Subcode(_Subcode, metaclass=_SubcodeEnumTypeWrapper):
|
|
61
63
|
"""Subcode is stored in StatusPayload.subcode. It classifies the error type in
|
|
@@ -91,6 +93,8 @@ SUBCODE_GEO_ERROR_TO_USER: Subcode.ValueType # 11
|
|
|
91
93
|
"""Set if the geometry error should be surfaced to the user."""
|
|
92
94
|
SUBCODE_GEO_UNSUPPORTED: Subcode.ValueType # 12
|
|
93
95
|
"""Set if the provided CAD is not supported. Should be shown to the user."""
|
|
96
|
+
SUBCODE_RATE_LIMITED: Subcode.ValueType # 13
|
|
97
|
+
"""Set if the request is rate limited."""
|
|
94
98
|
global___Subcode = Subcode
|
|
95
99
|
|
|
96
100
|
class _JobStatusType:
|
|
@@ -16,7 +16,7 @@ from luminarycloud._proto.base import base_pb2 as proto_dot_base_dot_base__pb2
|
|
|
16
16
|
from luminarycloud._proto.options import options_pb2 as proto_dot_options_dot_options__pb2
|
|
17
17
|
|
|
18
18
|
|
|
19
|
-
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x15proto/cad/shape.proto\x12\x12luminary.proto.cad\x1a\x15proto/base/base.proto\x1a\x1bproto/options/options.proto\"
|
|
19
|
+
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x15proto/cad/shape.proto\x12\x12luminary.proto.cad\x1a\x15proto/base/base.proto\x1a\x1bproto/options/options.proto\"\xd4\x01\n\x06Sphere\x12;\n\x0c\x63\x65nter_float\x18\x01 \x01(\x0b\x32\x1c.luminary.proto.base.Vector3B\x07\x18\x01\xb8\xb2\x19\x80P\x12\x1d\n\x0cradius_float\x18\x02 \x01(\x01\x42\x07\x18\x01\xb8\xb2\x19\x80P\x12\x35\n\x06\x63\x65nter\x18\x03 \x01(\x0b\x32\x1e.luminary.proto.base.AdVector3B\x05\xb8\xb2\x19\x80P\x12\x37\n\x06radius\x18\x04 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\x05\xb8\xb2\x19\x80P\"v\n\x0bSphereShell\x12\x33\n\x06\x63\x65nter\x18\x01 \x01(\x0b\x32\x1c.luminary.proto.base.Vector3B\x05\xb8\xb2\x19\x80P\x12\x15\n\x06radius\x18\x02 \x01(\x01\x42\x05\xb8\xb2\x19\x80P\x12\x1b\n\x0cradius_inner\x18\x03 \x01(\x01\x42\x05\xb8\xb2\x19\x80P\"\xce\x02\n\nHalfSphere\x12;\n\x0c\x63\x65nter_float\x18\x01 \x01(\x0b\x32\x1c.luminary.proto.base.Vector3B\x07\x18\x01\xb8\xb2\x19\x80P\x12\x1d\n\x0cradius_float\x18\x02 \x01(\x01\x42\x07\x18\x01\xb8\xb2\x19\x80P\x12<\n\x0cnormal_float\x18\x03 \x01(\x0b\x32\x1c.luminary.proto.base.Vector3B\x08\x18\x01\xb8\xb2\x19\xd4\x9a\x02\x12\x35\n\x06\x63\x65nter\x18\x04 \x01(\x0b\x32\x1e.luminary.proto.base.AdVector3B\x05\xb8\xb2\x19\x80P\x12\x37\n\x06radius\x18\x05 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\x05\xb8\xb2\x19\x80P\x12\x36\n\x06normal\x18\x06 \x01(\x0b\x32\x1e.luminary.proto.base.AdVector3B\x06\xb8\xb2\x19\xd4\x9a\x02\"\xe2\x01\n\x04\x43ube\x12\x38\n\tmin_float\x18\x01 \x01(\x0b\x32\x1c.luminary.proto.base.Vector3B\x07\x18\x01\xb8\xb2\x19\x80P\x12\x38\n\tmax_float\x18\x02 \x01(\x0b\x32\x1c.luminary.proto.base.Vector3B\x07\x18\x01\xb8\xb2\x19\x80P\x12\x32\n\x03min\x18\x03 \x01(\x0b\x32\x1e.luminary.proto.base.AdVector3B\x05\xb8\xb2\x19\x80P\x12\x32\n\x03max\x18\x04 \x01(\x0b\x32\x1e.luminary.proto.base.AdVector3B\x05\xb8\xb2\x19\x80P\"\x93\x02\n\x0cOrientedCube\x12\x30\n\x03min\x18\x01 \x01(\x0b\x32\x1c.luminary.proto.base.Vector3B\x05\xb8\xb2\x19\x80P\x12\x30\n\x03max\x18\x02 \x01(\x0b\x32\x1c.luminary.proto.base.Vector3B\x05\xb8\xb2\x19\x80P\x12\x33\n\x06origin\x18\x03 \x01(\x0b\x32\x1c.luminary.proto.base.Vector3B\x05\xb8\xb2\x19\x80P\x12\x34\n\x06x_axis\x18\x04 \x01(\x0b\x32\x1c.luminary.proto.base.Vector3B\x06\xb8\xb2\x19\xd4\x9a\x02\x12\x34\n\x06y_axis\x18\x05 \x01(\x0b\x32\x1c.luminary.proto.base.Vector3B\x06\xb8\xb2\x19\xd4\x9a\x02\"\xc2\x02\n\x08\x43ylinder\x12:\n\x0bstart_float\x18\x01 \x01(\x0b\x32\x1c.luminary.proto.base.Vector3B\x07\x18\x01\xb8\xb2\x19\x80P\x12\x38\n\tend_float\x18\x02 \x01(\x0b\x32\x1c.luminary.proto.base.Vector3B\x07\x18\x01\xb8\xb2\x19\x80P\x12\x1d\n\x0cradius_float\x18\x03 \x01(\x01\x42\x07\x18\x01\xb8\xb2\x19\x80P\x12\x34\n\x05start\x18\x04 \x01(\x0b\x32\x1e.luminary.proto.base.AdVector3B\x05\xb8\xb2\x19\x80P\x12\x32\n\x03\x65nd\x18\x05 \x01(\x0b\x32\x1e.luminary.proto.base.AdVector3B\x05\xb8\xb2\x19\x80P\x12\x37\n\x06radius\x18\x06 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\x05\xb8\xb2\x19\x80P\"\xab\x01\n\x0f\x41nnularCylinder\x12\x32\n\x05start\x18\x01 \x01(\x0b\x32\x1c.luminary.proto.base.Vector3B\x05\xb8\xb2\x19\x80P\x12\x30\n\x03\x65nd\x18\x02 \x01(\x0b\x32\x1c.luminary.proto.base.Vector3B\x05\xb8\xb2\x19\x80P\x12\x15\n\x06radius\x18\x03 \x01(\x01\x42\x05\xb8\xb2\x19\x80P\x12\x1b\n\x0cradius_inner\x18\x04 \x01(\x01\x42\x05\xb8\xb2\x19\x80P\"\xac\x01\n\x05Torus\x12\x33\n\x06\x63\x65nter\x18\x01 \x01(\x0b\x32\x1c.luminary.proto.base.Vector3B\x05\xb8\xb2\x19\x80P\x12\x34\n\x06normal\x18\x02 \x01(\x0b\x32\x1c.luminary.proto.base.Vector3B\x06\xb8\xb2\x19\xd4\x9a\x02\x12\x1b\n\x0cmajor_radius\x18\x03 \x01(\x01\x42\x05\xb8\xb2\x19\x80P\x12\x1b\n\x0cminor_radius\x18\x04 \x01(\x01\x42\x05\xb8\xb2\x19\x80P\"\x8f\x01\n\x04\x43one\x12\x31\n\x04\x61pex\x18\x01 \x01(\x0b\x32\x1c.luminary.proto.base.Vector3B\x05\xb8\xb2\x19\x80P\x12\x38\n\x0b\x62\x61se_center\x18\x02 \x01(\x0b\x32\x1c.luminary.proto.base.Vector3B\x05\xb8\xb2\x19\x80P\x12\x1a\n\x0b\x62\x61se_radius\x18\x03 \x01(\x01\x42\x05\xb8\xb2\x19\x80PB\"Z luminarycloud.com/core/proto/cadb\x06proto3')
|
|
20
20
|
|
|
21
21
|
|
|
22
22
|
|
|
@@ -96,6 +96,10 @@ if _descriptor._USE_C_DESCRIPTORS == False:
|
|
|
96
96
|
|
|
97
97
|
DESCRIPTOR._options = None
|
|
98
98
|
DESCRIPTOR._serialized_options = b'Z luminarycloud.com/core/proto/cad'
|
|
99
|
+
_SPHERE.fields_by_name['center_float']._options = None
|
|
100
|
+
_SPHERE.fields_by_name['center_float']._serialized_options = b'\030\001\270\262\031\200P'
|
|
101
|
+
_SPHERE.fields_by_name['radius_float']._options = None
|
|
102
|
+
_SPHERE.fields_by_name['radius_float']._serialized_options = b'\030\001\270\262\031\200P'
|
|
99
103
|
_SPHERE.fields_by_name['center']._options = None
|
|
100
104
|
_SPHERE.fields_by_name['center']._serialized_options = b'\270\262\031\200P'
|
|
101
105
|
_SPHERE.fields_by_name['radius']._options = None
|
|
@@ -106,12 +110,22 @@ if _descriptor._USE_C_DESCRIPTORS == False:
|
|
|
106
110
|
_SPHERESHELL.fields_by_name['radius']._serialized_options = b'\270\262\031\200P'
|
|
107
111
|
_SPHERESHELL.fields_by_name['radius_inner']._options = None
|
|
108
112
|
_SPHERESHELL.fields_by_name['radius_inner']._serialized_options = b'\270\262\031\200P'
|
|
113
|
+
_HALFSPHERE.fields_by_name['center_float']._options = None
|
|
114
|
+
_HALFSPHERE.fields_by_name['center_float']._serialized_options = b'\030\001\270\262\031\200P'
|
|
115
|
+
_HALFSPHERE.fields_by_name['radius_float']._options = None
|
|
116
|
+
_HALFSPHERE.fields_by_name['radius_float']._serialized_options = b'\030\001\270\262\031\200P'
|
|
117
|
+
_HALFSPHERE.fields_by_name['normal_float']._options = None
|
|
118
|
+
_HALFSPHERE.fields_by_name['normal_float']._serialized_options = b'\030\001\270\262\031\324\232\002'
|
|
109
119
|
_HALFSPHERE.fields_by_name['center']._options = None
|
|
110
120
|
_HALFSPHERE.fields_by_name['center']._serialized_options = b'\270\262\031\200P'
|
|
111
121
|
_HALFSPHERE.fields_by_name['radius']._options = None
|
|
112
122
|
_HALFSPHERE.fields_by_name['radius']._serialized_options = b'\270\262\031\200P'
|
|
113
123
|
_HALFSPHERE.fields_by_name['normal']._options = None
|
|
114
124
|
_HALFSPHERE.fields_by_name['normal']._serialized_options = b'\270\262\031\324\232\002'
|
|
125
|
+
_CUBE.fields_by_name['min_float']._options = None
|
|
126
|
+
_CUBE.fields_by_name['min_float']._serialized_options = b'\030\001\270\262\031\200P'
|
|
127
|
+
_CUBE.fields_by_name['max_float']._options = None
|
|
128
|
+
_CUBE.fields_by_name['max_float']._serialized_options = b'\030\001\270\262\031\200P'
|
|
115
129
|
_CUBE.fields_by_name['min']._options = None
|
|
116
130
|
_CUBE.fields_by_name['min']._serialized_options = b'\270\262\031\200P'
|
|
117
131
|
_CUBE.fields_by_name['max']._options = None
|
|
@@ -126,6 +140,12 @@ if _descriptor._USE_C_DESCRIPTORS == False:
|
|
|
126
140
|
_ORIENTEDCUBE.fields_by_name['x_axis']._serialized_options = b'\270\262\031\324\232\002'
|
|
127
141
|
_ORIENTEDCUBE.fields_by_name['y_axis']._options = None
|
|
128
142
|
_ORIENTEDCUBE.fields_by_name['y_axis']._serialized_options = b'\270\262\031\324\232\002'
|
|
143
|
+
_CYLINDER.fields_by_name['start_float']._options = None
|
|
144
|
+
_CYLINDER.fields_by_name['start_float']._serialized_options = b'\030\001\270\262\031\200P'
|
|
145
|
+
_CYLINDER.fields_by_name['end_float']._options = None
|
|
146
|
+
_CYLINDER.fields_by_name['end_float']._serialized_options = b'\030\001\270\262\031\200P'
|
|
147
|
+
_CYLINDER.fields_by_name['radius_float']._options = None
|
|
148
|
+
_CYLINDER.fields_by_name['radius_float']._serialized_options = b'\030\001\270\262\031\200P'
|
|
129
149
|
_CYLINDER.fields_by_name['start']._options = None
|
|
130
150
|
_CYLINDER.fields_by_name['start']._serialized_options = b'\270\262\031\200P'
|
|
131
151
|
_CYLINDER.fields_by_name['end']._options = None
|
|
@@ -154,22 +174,22 @@ if _descriptor._USE_C_DESCRIPTORS == False:
|
|
|
154
174
|
_CONE.fields_by_name['base_center']._serialized_options = b'\270\262\031\200P'
|
|
155
175
|
_CONE.fields_by_name['base_radius']._options = None
|
|
156
176
|
_CONE.fields_by_name['base_radius']._serialized_options = b'\270\262\031\200P'
|
|
157
|
-
_SPHERE._serialized_start=
|
|
158
|
-
_SPHERE._serialized_end=
|
|
159
|
-
_SPHERESHELL._serialized_start=
|
|
160
|
-
_SPHERESHELL._serialized_end=
|
|
161
|
-
_HALFSPHERE._serialized_start=
|
|
162
|
-
_HALFSPHERE._serialized_end=
|
|
163
|
-
_CUBE._serialized_start=
|
|
164
|
-
_CUBE._serialized_end=
|
|
165
|
-
_ORIENTEDCUBE._serialized_start=
|
|
166
|
-
_ORIENTEDCUBE._serialized_end=
|
|
167
|
-
_CYLINDER._serialized_start=
|
|
168
|
-
_CYLINDER._serialized_end=
|
|
169
|
-
_ANNULARCYLINDER._serialized_start=
|
|
170
|
-
_ANNULARCYLINDER._serialized_end=
|
|
171
|
-
_TORUS._serialized_start=
|
|
172
|
-
_TORUS._serialized_end=
|
|
173
|
-
_CONE._serialized_start=
|
|
174
|
-
_CONE._serialized_end=
|
|
177
|
+
_SPHERE._serialized_start=98
|
|
178
|
+
_SPHERE._serialized_end=310
|
|
179
|
+
_SPHERESHELL._serialized_start=312
|
|
180
|
+
_SPHERESHELL._serialized_end=430
|
|
181
|
+
_HALFSPHERE._serialized_start=433
|
|
182
|
+
_HALFSPHERE._serialized_end=767
|
|
183
|
+
_CUBE._serialized_start=770
|
|
184
|
+
_CUBE._serialized_end=996
|
|
185
|
+
_ORIENTEDCUBE._serialized_start=999
|
|
186
|
+
_ORIENTEDCUBE._serialized_end=1274
|
|
187
|
+
_CYLINDER._serialized_start=1277
|
|
188
|
+
_CYLINDER._serialized_end=1599
|
|
189
|
+
_ANNULARCYLINDER._serialized_start=1602
|
|
190
|
+
_ANNULARCYLINDER._serialized_end=1773
|
|
191
|
+
_TORUS._serialized_start=1776
|
|
192
|
+
_TORUS._serialized_end=1948
|
|
193
|
+
_CONE._serialized_start=1951
|
|
194
|
+
_CONE._serialized_end=2094
|
|
175
195
|
# @@protoc_insertion_point(module_scope)
|
|
@@ -20,21 +20,31 @@ class Sphere(google.protobuf.message.Message):
|
|
|
20
20
|
|
|
21
21
|
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
22
22
|
|
|
23
|
+
CENTER_FLOAT_FIELD_NUMBER: builtins.int
|
|
24
|
+
RADIUS_FLOAT_FIELD_NUMBER: builtins.int
|
|
23
25
|
CENTER_FIELD_NUMBER: builtins.int
|
|
24
26
|
RADIUS_FIELD_NUMBER: builtins.int
|
|
25
27
|
@property
|
|
26
|
-
def
|
|
27
|
-
"""Location of the
|
|
28
|
-
|
|
29
|
-
"""Radius of the sphere in meters."""
|
|
28
|
+
def center_float(self) -> luminarycloud._proto.base.base_pb2.Vector3:
|
|
29
|
+
"""(deprecated) Location of the sphere's center."""
|
|
30
|
+
radius_float: builtins.float
|
|
31
|
+
"""(deprecated) Radius of the sphere in meters."""
|
|
32
|
+
@property
|
|
33
|
+
def center(self) -> luminarycloud._proto.base.base_pb2.AdVector3:
|
|
34
|
+
"""Location of the sphere's center."""
|
|
35
|
+
@property
|
|
36
|
+
def radius(self) -> luminarycloud._proto.base.base_pb2.AdFloatType:
|
|
37
|
+
"""Radius of the sphere in meters."""
|
|
30
38
|
def __init__(
|
|
31
39
|
self,
|
|
32
40
|
*,
|
|
33
|
-
|
|
34
|
-
|
|
41
|
+
center_float: luminarycloud._proto.base.base_pb2.Vector3 | None = ...,
|
|
42
|
+
radius_float: builtins.float = ...,
|
|
43
|
+
center: luminarycloud._proto.base.base_pb2.AdVector3 | None = ...,
|
|
44
|
+
radius: luminarycloud._proto.base.base_pb2.AdFloatType | None = ...,
|
|
35
45
|
) -> None: ...
|
|
36
|
-
def HasField(self, field_name: typing_extensions.Literal["center", b"center"]) -> builtins.bool: ...
|
|
37
|
-
def ClearField(self, field_name: typing_extensions.Literal["center", b"center", "radius", b"radius"]) -> None: ...
|
|
46
|
+
def HasField(self, field_name: typing_extensions.Literal["center", b"center", "center_float", b"center_float", "radius", b"radius"]) -> builtins.bool: ...
|
|
47
|
+
def ClearField(self, field_name: typing_extensions.Literal["center", b"center", "center_float", b"center_float", "radius", b"radius", "radius_float", b"radius_float"]) -> None: ...
|
|
38
48
|
|
|
39
49
|
global___Sphere = Sphere
|
|
40
50
|
|
|
@@ -70,28 +80,45 @@ class HalfSphere(google.protobuf.message.Message):
|
|
|
70
80
|
|
|
71
81
|
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
72
82
|
|
|
83
|
+
CENTER_FLOAT_FIELD_NUMBER: builtins.int
|
|
84
|
+
RADIUS_FLOAT_FIELD_NUMBER: builtins.int
|
|
85
|
+
NORMAL_FLOAT_FIELD_NUMBER: builtins.int
|
|
73
86
|
CENTER_FIELD_NUMBER: builtins.int
|
|
74
87
|
RADIUS_FIELD_NUMBER: builtins.int
|
|
75
88
|
NORMAL_FIELD_NUMBER: builtins.int
|
|
76
89
|
@property
|
|
77
|
-
def
|
|
78
|
-
"""Location of the center of circular flat bottom of the hemisphere."""
|
|
79
|
-
|
|
80
|
-
"""Radius of the sphere in meters."""
|
|
90
|
+
def center_float(self) -> luminarycloud._proto.base.base_pb2.Vector3:
|
|
91
|
+
"""(deprecated) Location of the center of circular flat bottom of the hemisphere."""
|
|
92
|
+
radius_float: builtins.float
|
|
93
|
+
"""(deprecated) Radius of the sphere in meters."""
|
|
81
94
|
@property
|
|
82
|
-
def
|
|
83
|
-
"""Vector relative to the center pointing in the direction of the dome-size
|
|
95
|
+
def normal_float(self) -> luminarycloud._proto.base.base_pb2.Vector3:
|
|
96
|
+
"""(deprecated) Vector relative to the center pointing in the direction of the dome-size
|
|
84
97
|
of the hemisphere.
|
|
85
98
|
"""
|
|
99
|
+
@property
|
|
100
|
+
def center(self) -> luminarycloud._proto.base.base_pb2.AdVector3:
|
|
101
|
+
"""Location of the center of the circular flat bottom of the hemisphere."""
|
|
102
|
+
@property
|
|
103
|
+
def radius(self) -> luminarycloud._proto.base.base_pb2.AdFloatType:
|
|
104
|
+
"""Radius of the sphere in meters."""
|
|
105
|
+
@property
|
|
106
|
+
def normal(self) -> luminarycloud._proto.base.base_pb2.AdVector3:
|
|
107
|
+
"""Vector relative to the center pointing in the direction of the dome-size of
|
|
108
|
+
the hemisphere.
|
|
109
|
+
"""
|
|
86
110
|
def __init__(
|
|
87
111
|
self,
|
|
88
112
|
*,
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
113
|
+
center_float: luminarycloud._proto.base.base_pb2.Vector3 | None = ...,
|
|
114
|
+
radius_float: builtins.float = ...,
|
|
115
|
+
normal_float: luminarycloud._proto.base.base_pb2.Vector3 | None = ...,
|
|
116
|
+
center: luminarycloud._proto.base.base_pb2.AdVector3 | None = ...,
|
|
117
|
+
radius: luminarycloud._proto.base.base_pb2.AdFloatType | None = ...,
|
|
118
|
+
normal: luminarycloud._proto.base.base_pb2.AdVector3 | None = ...,
|
|
92
119
|
) -> None: ...
|
|
93
|
-
def HasField(self, field_name: typing_extensions.Literal["center", b"center", "normal", b"normal"]) -> builtins.bool: ...
|
|
94
|
-
def ClearField(self, field_name: typing_extensions.Literal["center", b"center", "normal", b"normal", "radius", b"radius"]) -> None: ...
|
|
120
|
+
def HasField(self, field_name: typing_extensions.Literal["center", b"center", "center_float", b"center_float", "normal", b"normal", "normal_float", b"normal_float", "radius", b"radius"]) -> builtins.bool: ...
|
|
121
|
+
def ClearField(self, field_name: typing_extensions.Literal["center", b"center", "center_float", b"center_float", "normal", b"normal", "normal_float", b"normal_float", "radius", b"radius", "radius_float", b"radius_float"]) -> None: ...
|
|
95
122
|
|
|
96
123
|
global___HalfSphere = HalfSphere
|
|
97
124
|
|
|
@@ -100,22 +127,32 @@ class Cube(google.protobuf.message.Message):
|
|
|
100
127
|
|
|
101
128
|
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
102
129
|
|
|
130
|
+
MIN_FLOAT_FIELD_NUMBER: builtins.int
|
|
131
|
+
MAX_FLOAT_FIELD_NUMBER: builtins.int
|
|
103
132
|
MIN_FIELD_NUMBER: builtins.int
|
|
104
133
|
MAX_FIELD_NUMBER: builtins.int
|
|
105
134
|
@property
|
|
106
|
-
def
|
|
135
|
+
def min_float(self) -> luminarycloud._proto.base.base_pb2.Vector3:
|
|
136
|
+
"""(deprecated) Location of the prism's corner closest to (-Inf, -Inf, -Inf)."""
|
|
137
|
+
@property
|
|
138
|
+
def max_float(self) -> luminarycloud._proto.base.base_pb2.Vector3:
|
|
139
|
+
"""(deprecated) Location of the prism's corner closest to (+Inf, +Inf, +Inf)."""
|
|
140
|
+
@property
|
|
141
|
+
def min(self) -> luminarycloud._proto.base.base_pb2.AdVector3:
|
|
107
142
|
"""Location of the prism's corner closest to (-Inf, -Inf, -Inf)."""
|
|
108
143
|
@property
|
|
109
|
-
def max(self) -> luminarycloud._proto.base.base_pb2.
|
|
144
|
+
def max(self) -> luminarycloud._proto.base.base_pb2.AdVector3:
|
|
110
145
|
"""Location of the prism's corner closest to (+Inf, +Inf, +Inf)."""
|
|
111
146
|
def __init__(
|
|
112
147
|
self,
|
|
113
148
|
*,
|
|
114
|
-
|
|
115
|
-
|
|
149
|
+
min_float: luminarycloud._proto.base.base_pb2.Vector3 | None = ...,
|
|
150
|
+
max_float: luminarycloud._proto.base.base_pb2.Vector3 | None = ...,
|
|
151
|
+
min: luminarycloud._proto.base.base_pb2.AdVector3 | None = ...,
|
|
152
|
+
max: luminarycloud._proto.base.base_pb2.AdVector3 | None = ...,
|
|
116
153
|
) -> None: ...
|
|
117
|
-
def HasField(self, field_name: typing_extensions.Literal["max", b"max", "min", b"min"]) -> builtins.bool: ...
|
|
118
|
-
def ClearField(self, field_name: typing_extensions.Literal["max", b"max", "min", b"min"]) -> None: ...
|
|
154
|
+
def HasField(self, field_name: typing_extensions.Literal["max", b"max", "max_float", b"max_float", "min", b"min", "min_float", b"min_float"]) -> builtins.bool: ...
|
|
155
|
+
def ClearField(self, field_name: typing_extensions.Literal["max", b"max", "max_float", b"max_float", "min", b"min", "min_float", b"min_float"]) -> None: ...
|
|
119
156
|
|
|
120
157
|
global___Cube = Cube
|
|
121
158
|
|
|
@@ -169,26 +206,41 @@ class Cylinder(google.protobuf.message.Message):
|
|
|
169
206
|
|
|
170
207
|
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
171
208
|
|
|
209
|
+
START_FLOAT_FIELD_NUMBER: builtins.int
|
|
210
|
+
END_FLOAT_FIELD_NUMBER: builtins.int
|
|
211
|
+
RADIUS_FLOAT_FIELD_NUMBER: builtins.int
|
|
172
212
|
START_FIELD_NUMBER: builtins.int
|
|
173
213
|
END_FIELD_NUMBER: builtins.int
|
|
174
214
|
RADIUS_FIELD_NUMBER: builtins.int
|
|
175
215
|
@property
|
|
176
|
-
def
|
|
216
|
+
def start_float(self) -> luminarycloud._proto.base.base_pb2.Vector3:
|
|
217
|
+
"""(deprecated) Location of the cylinder's first base's center."""
|
|
218
|
+
@property
|
|
219
|
+
def end_float(self) -> luminarycloud._proto.base.base_pb2.Vector3:
|
|
220
|
+
"""(deprecated) Location of the cylinder's second base's center."""
|
|
221
|
+
radius_float: builtins.float
|
|
222
|
+
"""(deprecated) Radius of the cylinder in meters."""
|
|
223
|
+
@property
|
|
224
|
+
def start(self) -> luminarycloud._proto.base.base_pb2.AdVector3:
|
|
177
225
|
"""Location of the cylinder's first base's center."""
|
|
178
226
|
@property
|
|
179
|
-
def end(self) -> luminarycloud._proto.base.base_pb2.
|
|
227
|
+
def end(self) -> luminarycloud._proto.base.base_pb2.AdVector3:
|
|
180
228
|
"""Location of the cylinder's second base's center."""
|
|
181
|
-
|
|
182
|
-
|
|
229
|
+
@property
|
|
230
|
+
def radius(self) -> luminarycloud._proto.base.base_pb2.AdFloatType:
|
|
231
|
+
"""Radius of the cylinder in meters."""
|
|
183
232
|
def __init__(
|
|
184
233
|
self,
|
|
185
234
|
*,
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
235
|
+
start_float: luminarycloud._proto.base.base_pb2.Vector3 | None = ...,
|
|
236
|
+
end_float: luminarycloud._proto.base.base_pb2.Vector3 | None = ...,
|
|
237
|
+
radius_float: builtins.float = ...,
|
|
238
|
+
start: luminarycloud._proto.base.base_pb2.AdVector3 | None = ...,
|
|
239
|
+
end: luminarycloud._proto.base.base_pb2.AdVector3 | None = ...,
|
|
240
|
+
radius: luminarycloud._proto.base.base_pb2.AdFloatType | None = ...,
|
|
189
241
|
) -> None: ...
|
|
190
|
-
def HasField(self, field_name: typing_extensions.Literal["end", b"end", "start", b"start"]) -> builtins.bool: ...
|
|
191
|
-
def ClearField(self, field_name: typing_extensions.Literal["end", b"end", "radius", b"radius", "start", b"start"]) -> None: ...
|
|
242
|
+
def HasField(self, field_name: typing_extensions.Literal["end", b"end", "end_float", b"end_float", "radius", b"radius", "start", b"start", "start_float", b"start_float"]) -> builtins.bool: ...
|
|
243
|
+
def ClearField(self, field_name: typing_extensions.Literal["end", b"end", "end_float", b"end_float", "radius", b"radius", "radius_float", b"radius_float", "start", b"start", "start_float", b"start_float"]) -> None: ...
|
|
192
244
|
|
|
193
245
|
global___Cylinder = Cylinder
|
|
194
246
|
|