luminarycloud 0.19.0__py3-none-any.whl → 0.22.0__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 +5 -1
- luminarycloud/_client/client.py +7 -0
- luminarycloud/_client/http_client.py +10 -8
- luminarycloud/_feature_flag.py +22 -0
- luminarycloud/_helpers/_create_simulation.py +7 -2
- luminarycloud/_helpers/_upload_mesh.py +1 -0
- luminarycloud/_helpers/_wait_for_mesh.py +6 -5
- luminarycloud/_helpers/_wait_for_simulation.py +3 -3
- luminarycloud/_helpers/download.py +3 -1
- luminarycloud/_helpers/pagination.py +62 -0
- luminarycloud/_helpers/proto_decorator.py +13 -5
- luminarycloud/_helpers/upload.py +18 -12
- 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 +168 -124
- luminarycloud/_proto/api/v0/luminarycloud/geometry/geometry_pb2.pyi +133 -4
- luminarycloud/_proto/api/v0/luminarycloud/geometry/geometry_pb2_grpc.py +66 -0
- luminarycloud/_proto/api/v0/luminarycloud/geometry/geometry_pb2_grpc.pyi +20 -0
- luminarycloud/_proto/api/v0/luminarycloud/inference/inference_pb2.py +8 -8
- luminarycloud/_proto/api/v0/luminarycloud/inference/inference_pb2.pyi +5 -5
- luminarycloud/_proto/api/v0/luminarycloud/mesh/mesh_pb2.py +74 -73
- luminarycloud/_proto/api/v0/luminarycloud/mesh/mesh_pb2.pyi +17 -3
- luminarycloud/_proto/api/v0/luminarycloud/physics_ai/physics_ai_pb2.py +96 -25
- luminarycloud/_proto/api/v0/luminarycloud/physics_ai/physics_ai_pb2.pyi +235 -1
- luminarycloud/_proto/api/v0/luminarycloud/physics_ai/physics_ai_pb2_grpc.py +34 -0
- luminarycloud/_proto/api/v0/luminarycloud/physics_ai/physics_ai_pb2_grpc.pyi +12 -0
- luminarycloud/_proto/api/v0/luminarycloud/project/project_pb2.py +16 -16
- luminarycloud/_proto/api/v0/luminarycloud/project/project_pb2.pyi +7 -3
- luminarycloud/_proto/api/v0/luminarycloud/simulation/simulation_pb2.py +97 -61
- luminarycloud/_proto/api/v0/luminarycloud/simulation/simulation_pb2.pyi +77 -4
- 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/vis/vis_pb2.py +126 -27
- luminarycloud/_proto/api/v0/luminarycloud/vis/vis_pb2.pyi +183 -0
- luminarycloud/_proto/api/v0/luminarycloud/vis/vis_pb2_grpc.py +99 -0
- luminarycloud/_proto/api/v0/luminarycloud/vis/vis_pb2_grpc.pyi +30 -0
- luminarycloud/_proto/assistant/assistant_pb2.py +74 -41
- luminarycloud/_proto/assistant/assistant_pb2.pyi +64 -2
- luminarycloud/_proto/assistant/assistant_pb2_grpc.py +33 -0
- luminarycloud/_proto/assistant/assistant_pb2_grpc.pyi +10 -0
- luminarycloud/_proto/base/base_pb2.py +20 -7
- luminarycloud/_proto/base/base_pb2.pyi +38 -0
- luminarycloud/_proto/cad/shape_pb2.py +39 -19
- luminarycloud/_proto/cad/shape_pb2.pyi +86 -34
- luminarycloud/_proto/cad/transformation_pb2.py +60 -16
- luminarycloud/_proto/cad/transformation_pb2.pyi +138 -32
- luminarycloud/_proto/client/simulation_pb2.py +501 -348
- luminarycloud/_proto/client/simulation_pb2.pyi +607 -11
- luminarycloud/_proto/geometry/geometry_pb2.py +77 -63
- luminarycloud/_proto/geometry/geometry_pb2.pyi +42 -3
- luminarycloud/_proto/hexmesh/hexmesh_pb2.py +24 -18
- luminarycloud/_proto/hexmesh/hexmesh_pb2.pyi +23 -2
- luminarycloud/_proto/inferenceservice/inferenceservice_pb2.py +10 -10
- luminarycloud/_proto/inferenceservice/inferenceservice_pb2.pyi +5 -5
- luminarycloud/_proto/physicsaitrainingservice/physicsaitrainingservice_pb2.py +29 -0
- luminarycloud/_proto/physicsaitrainingservice/physicsaitrainingservice_pb2.pyi +7 -0
- luminarycloud/_proto/physicsaitrainingservice/physicsaitrainingservice_pb2_grpc.py +70 -0
- luminarycloud/_proto/physicsaitrainingservice/physicsaitrainingservice_pb2_grpc.pyi +30 -0
- luminarycloud/_proto/quantity/quantity_options_pb2.py +6 -6
- luminarycloud/_proto/quantity/quantity_options_pb2.pyi +10 -1
- luminarycloud/_proto/quantity/quantity_pb2.py +176 -167
- luminarycloud/_proto/quantity/quantity_pb2.pyi +11 -5
- luminarycloud/enum/__init__.py +1 -0
- luminarycloud/enum/gpu_type.py +2 -0
- luminarycloud/enum/quantity_type.py +9 -0
- luminarycloud/enum/vis_enums.py +23 -3
- luminarycloud/exceptions.py +7 -1
- luminarycloud/feature_modification.py +45 -35
- luminarycloud/geometry.py +107 -9
- luminarycloud/geometry_version.py +57 -3
- luminarycloud/mesh.py +1 -2
- luminarycloud/meshing/mesh_generation_params.py +8 -8
- luminarycloud/params/enum/_enum_wrappers.py +562 -30
- luminarycloud/params/simulation/adaptive_mesh_refinement_.py +4 -0
- luminarycloud/params/simulation/material/material_solid_.py +15 -1
- luminarycloud/params/simulation/physics/__init__.py +0 -1
- luminarycloud/params/simulation/physics/periodic_pair_.py +12 -31
- luminarycloud/physics_ai/architectures.py +58 -0
- luminarycloud/physics_ai/inference.py +13 -13
- luminarycloud/physics_ai/solution.py +3 -1
- luminarycloud/physics_ai/training_jobs.py +37 -0
- luminarycloud/pipelines/__init__.py +11 -3
- luminarycloud/pipelines/api.py +248 -16
- luminarycloud/pipelines/arguments.py +15 -0
- luminarycloud/pipelines/core.py +113 -96
- luminarycloud/pipelines/{operators.py → stages.py} +96 -39
- luminarycloud/project.py +15 -47
- luminarycloud/simulation.py +69 -5
- luminarycloud/simulation_param.py +0 -9
- luminarycloud/simulation_template.py +2 -1
- luminarycloud/types/matrix3.py +12 -0
- luminarycloud/vis/__init__.py +17 -0
- luminarycloud/vis/data_extraction.py +20 -4
- luminarycloud/vis/interactive_report.py +110 -0
- luminarycloud/vis/interactive_scene.py +29 -2
- luminarycloud/vis/report.py +252 -0
- luminarycloud/vis/visualization.py +127 -5
- luminarycloud/volume_selection.py +132 -69
- {luminarycloud-0.19.0.dist-info → luminarycloud-0.22.0.dist-info}/METADATA +1 -1
- {luminarycloud-0.19.0.dist-info → luminarycloud-0.22.0.dist-info}/RECORD +105 -97
- luminarycloud/params/simulation/physics/periodic_pair/__init__.py +0 -2
- luminarycloud/params/simulation/physics/periodic_pair/periodicity_type/__init__.py +0 -2
- luminarycloud/params/simulation/physics/periodic_pair/periodicity_type/rotational_periodicity_.py +0 -31
- luminarycloud/params/simulation/physics/periodic_pair/periodicity_type/translational_periodicity_.py +0 -29
- luminarycloud/params/simulation/physics/periodic_pair/periodicity_type_.py +0 -25
- {luminarycloud-0.19.0.dist-info → luminarycloud-0.22.0.dist-info}/WHEEL +0 -0
|
@@ -50,6 +50,12 @@ class _SubcodeEnumTypeWrapper(google.protobuf.internal.enum_type_wrapper._EnumTy
|
|
|
50
50
|
"""Set if a trial user attempts to access restricted features."""
|
|
51
51
|
SUBCODE_UNLIMITED_PLAN_EXCEEDS_QUOTA: _Subcode.ValueType # 9
|
|
52
52
|
"""Set if unlimited plan user exceeds quota for a given resource."""
|
|
53
|
+
SUBCODE_DATE_RANGE_TOO_LARGE: _Subcode.ValueType # 10
|
|
54
|
+
"""Set if a date range is too large (e.g. for usage records)"""
|
|
55
|
+
SUBCODE_GEO_ERROR_TO_USER: _Subcode.ValueType # 11
|
|
56
|
+
"""Set if the geometry error should be surfaced to the user."""
|
|
57
|
+
SUBCODE_GEO_UNSUPPORTED: _Subcode.ValueType # 12
|
|
58
|
+
"""Set if the provided CAD is not supported. Should be shown to the user."""
|
|
53
59
|
|
|
54
60
|
class Subcode(_Subcode, metaclass=_SubcodeEnumTypeWrapper):
|
|
55
61
|
"""Subcode is stored in StatusPayload.subcode. It classifies the error type in
|
|
@@ -79,6 +85,12 @@ SUBCODE_TRIAL_ACCOUNT_USER_BLOCKED: Subcode.ValueType # 8
|
|
|
79
85
|
"""Set if a trial user attempts to access restricted features."""
|
|
80
86
|
SUBCODE_UNLIMITED_PLAN_EXCEEDS_QUOTA: Subcode.ValueType # 9
|
|
81
87
|
"""Set if unlimited plan user exceeds quota for a given resource."""
|
|
88
|
+
SUBCODE_DATE_RANGE_TOO_LARGE: Subcode.ValueType # 10
|
|
89
|
+
"""Set if a date range is too large (e.g. for usage records)"""
|
|
90
|
+
SUBCODE_GEO_ERROR_TO_USER: Subcode.ValueType # 11
|
|
91
|
+
"""Set if the geometry error should be surfaced to the user."""
|
|
92
|
+
SUBCODE_GEO_UNSUPPORTED: Subcode.ValueType # 12
|
|
93
|
+
"""Set if the provided CAD is not supported. Should be shown to the user."""
|
|
82
94
|
global___Subcode = Subcode
|
|
83
95
|
|
|
84
96
|
class _JobStatusType:
|
|
@@ -581,3 +593,29 @@ class AdMatrix(google.protobuf.message.Message):
|
|
|
581
593
|
def ClearField(self, field_name: typing_extensions.Literal["row", b"row"]) -> None: ...
|
|
582
594
|
|
|
583
595
|
global___AdMatrix = AdMatrix
|
|
596
|
+
|
|
597
|
+
class AdMatrix3(google.protobuf.message.Message):
|
|
598
|
+
"""AD matrix bounded to 3x3"""
|
|
599
|
+
|
|
600
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
601
|
+
|
|
602
|
+
A_FIELD_NUMBER: builtins.int
|
|
603
|
+
B_FIELD_NUMBER: builtins.int
|
|
604
|
+
C_FIELD_NUMBER: builtins.int
|
|
605
|
+
@property
|
|
606
|
+
def a(self) -> global___AdVector3: ...
|
|
607
|
+
@property
|
|
608
|
+
def b(self) -> global___AdVector3: ...
|
|
609
|
+
@property
|
|
610
|
+
def c(self) -> global___AdVector3: ...
|
|
611
|
+
def __init__(
|
|
612
|
+
self,
|
|
613
|
+
*,
|
|
614
|
+
a: global___AdVector3 | None = ...,
|
|
615
|
+
b: global___AdVector3 | None = ...,
|
|
616
|
+
c: global___AdVector3 | None = ...,
|
|
617
|
+
) -> None: ...
|
|
618
|
+
def HasField(self, field_name: typing_extensions.Literal["a", b"a", "b", b"b", "c", b"c"]) -> builtins.bool: ...
|
|
619
|
+
def ClearField(self, field_name: typing_extensions.Literal["a", b"a", "b", b"b", "c", b"c"]) -> None: ...
|
|
620
|
+
|
|
621
|
+
global___AdMatrix3 = AdMatrix3
|
|
@@ -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
|
|
|
@@ -16,14 +16,16 @@ 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\x1eproto/cad/transformation.proto\x12\x12luminary.proto.cad\x1a\x15proto/base/base.proto\x1a\x1bproto/options/options.proto\"\
|
|
19
|
+
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1eproto/cad/transformation.proto\x12\x12luminary.proto.cad\x1a\x15proto/base/base.proto\x1a\x1bproto/options/options.proto\"\x85\x02\n\x0f\x41ugmentedMatrix\x12<\n\x0c\x61\x66\x66ine_float\x18\x01 \x01(\x0b\x32\x1c.luminary.proto.base.Matrix3B\x08\x18\x01\xb8\xb2\x19\xd4\x9a\x02\x12@\n\x11translation_float\x18\x02 \x01(\x0b\x32\x1c.luminary.proto.base.Vector3B\x07\x18\x01\xb8\xb2\x19\x80P\x12\x36\n\x06\x61\x66\x66ine\x18\x03 \x01(\x0b\x32\x1e.luminary.proto.base.AdMatrix3B\x06\xb8\xb2\x19\xd4\x9a\x02\x12:\n\x0btranslation\x18\x04 \x01(\x0b\x32\x1e.luminary.proto.base.AdVector3B\x05\xb8\xb2\x19\x80P\"e\n\x10MagnitudeVector3\x12\x37\n\tdirection\x18\x01 \x01(\x0b\x32\x1c.luminary.proto.base.Vector3B\x06\xb8\xb2\x19\xd4\x9a\x02\x12\x18\n\tmagnitude\x18\x02 \x01(\x01\x42\x05\xb8\xb2\x19\x80P\"\x8b\x01\n\x12MagnitudeAdVector3\x12\x39\n\tdirection\x18\x01 \x01(\x0b\x32\x1e.luminary.proto.base.AdVector3B\x06\xb8\xb2\x19\xd4\x9a\x02\x12:\n\tmagnitude\x18\x02 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\x05\xb8\xb2\x19\x80P\"\xb7\x02\n\x0bTranslation\x12=\n\x0cvector_float\x18\x01 \x01(\x0b\x32\x1c.luminary.proto.base.Vector3B\x07\x18\x01\xb8\xb2\x19\x80PH\x00\x12\x46\n\x16magnitude_vector_float\x18\x02 \x01(\x0b\x32$.luminary.proto.cad.MagnitudeVector3H\x00\x12\x37\n\x06vector\x18\x03 \x01(\x0b\x32\x1e.luminary.proto.base.AdVector3B\x05\xb8\xb2\x19\x80PH\x01\x12\x42\n\x10magnitude_vector\x18\x04 \x01(\x0b\x32&.luminary.proto.cad.MagnitudeAdVector3H\x01\x42\x14\n\x12\x64isplacement_floatB\x0e\n\x0c\x64isplacement\"\x83\x01\n\x0f\x41nchoredVector3\x12\x35\n\x06origin\x18\x01 \x01(\x0b\x32\x1c.luminary.proto.base.Vector3B\x07\x18\x01\xb8\xb2\x19\x80P\x12\x39\n\tdirection\x18\x02 \x01(\x0b\x32\x1c.luminary.proto.base.Vector3B\x08\x18\x01\xb8\xb2\x19\xd4\x9a\x02\"\x85\x01\n\x11\x41nchoredAdVector3\x12\x35\n\x06origin\x18\x01 \x01(\x0b\x32\x1e.luminary.proto.base.AdVector3B\x05\xb8\xb2\x19\x80P\x12\x39\n\tdirection\x18\x02 \x01(\x0b\x32\x1e.luminary.proto.base.AdVector3B\x06\xb8\xb2\x19\xd4\x9a\x02\"\xea\x01\n\x08Rotation\x12\x17\n\x0b\x61ngle_float\x18\x01 \x01(\x01\x42\x02\x18\x01\x12\x42\n\x0f\x61rbitrary_float\x18\x02 \x01(\x0b\x32#.luminary.proto.cad.AnchoredVector3B\x02\x18\x01H\x00\x12/\n\x05\x61ngle\x18\x03 \x01(\x0b\x32 .luminary.proto.base.AdFloatType\x12:\n\tarbitrary\x18\x04 \x01(\x0b\x32%.luminary.proto.cad.AnchoredAdVector3H\x01\x42\x0c\n\naxis_floatB\x06\n\x04\x61xis\"\x9f\x02\n\x07Scaling\x12@\n\x0f\x61rbitrary_float\x18\x01 \x01(\x0b\x32\x1c.luminary.proto.base.Vector3B\x07\x18\x01\xb8\xb2\x19\x80PH\x00\x12#\n\x0fisotropic_float\x18\x02 \x01(\x01\x42\x08\x18\x01\xb8\xb2\x19\xd4\x9a\x02H\x01\x12:\n\tarbitrary\x18\x03 \x01(\x0b\x32\x1e.luminary.proto.base.AdVector3B\x05\xb8\xb2\x19\x80PH\x02\x12=\n\tisotropic\x18\x04 \x01(\x0b\x32 .luminary.proto.base.AdFloatTypeB\x06\xb8\xb2\x19\xd4\x9a\x02H\x03\x42\x0e\n\x0corigin_floatB\x0e\n\x0c\x66\x61\x63tor_floatB\x08\n\x06originB\x08\n\x06\x66\x61\x63tor\"\xa4\x01\n\nReflection\x12\x42\n\x0f\x61rbitrary_float\x18\x01 \x01(\x0b\x32#.luminary.proto.cad.AnchoredVector3B\x02\x18\x01H\x00\x12:\n\tarbitrary\x18\x02 \x01(\x0b\x32%.luminary.proto.cad.AnchoredAdVector3H\x01\x42\r\n\x0bplane_floatB\x07\n\x05planeB\"Z luminarycloud.com/core/proto/cadb\x06proto3')
|
|
20
20
|
|
|
21
21
|
|
|
22
22
|
|
|
23
23
|
_AUGMENTEDMATRIX = DESCRIPTOR.message_types_by_name['AugmentedMatrix']
|
|
24
24
|
_MAGNITUDEVECTOR3 = DESCRIPTOR.message_types_by_name['MagnitudeVector3']
|
|
25
|
+
_MAGNITUDEADVECTOR3 = DESCRIPTOR.message_types_by_name['MagnitudeAdVector3']
|
|
25
26
|
_TRANSLATION = DESCRIPTOR.message_types_by_name['Translation']
|
|
26
27
|
_ANCHOREDVECTOR3 = DESCRIPTOR.message_types_by_name['AnchoredVector3']
|
|
28
|
+
_ANCHOREDADVECTOR3 = DESCRIPTOR.message_types_by_name['AnchoredAdVector3']
|
|
27
29
|
_ROTATION = DESCRIPTOR.message_types_by_name['Rotation']
|
|
28
30
|
_SCALING = DESCRIPTOR.message_types_by_name['Scaling']
|
|
29
31
|
_REFLECTION = DESCRIPTOR.message_types_by_name['Reflection']
|
|
@@ -41,6 +43,13 @@ MagnitudeVector3 = _reflection.GeneratedProtocolMessageType('MagnitudeVector3',
|
|
|
41
43
|
})
|
|
42
44
|
_sym_db.RegisterMessage(MagnitudeVector3)
|
|
43
45
|
|
|
46
|
+
MagnitudeAdVector3 = _reflection.GeneratedProtocolMessageType('MagnitudeAdVector3', (_message.Message,), {
|
|
47
|
+
'DESCRIPTOR' : _MAGNITUDEADVECTOR3,
|
|
48
|
+
'__module__' : 'proto.cad.transformation_pb2'
|
|
49
|
+
# @@protoc_insertion_point(class_scope:luminary.proto.cad.MagnitudeAdVector3)
|
|
50
|
+
})
|
|
51
|
+
_sym_db.RegisterMessage(MagnitudeAdVector3)
|
|
52
|
+
|
|
44
53
|
Translation = _reflection.GeneratedProtocolMessageType('Translation', (_message.Message,), {
|
|
45
54
|
'DESCRIPTOR' : _TRANSLATION,
|
|
46
55
|
'__module__' : 'proto.cad.transformation_pb2'
|
|
@@ -55,6 +64,13 @@ AnchoredVector3 = _reflection.GeneratedProtocolMessageType('AnchoredVector3', (_
|
|
|
55
64
|
})
|
|
56
65
|
_sym_db.RegisterMessage(AnchoredVector3)
|
|
57
66
|
|
|
67
|
+
AnchoredAdVector3 = _reflection.GeneratedProtocolMessageType('AnchoredAdVector3', (_message.Message,), {
|
|
68
|
+
'DESCRIPTOR' : _ANCHOREDADVECTOR3,
|
|
69
|
+
'__module__' : 'proto.cad.transformation_pb2'
|
|
70
|
+
# @@protoc_insertion_point(class_scope:luminary.proto.cad.AnchoredAdVector3)
|
|
71
|
+
})
|
|
72
|
+
_sym_db.RegisterMessage(AnchoredAdVector3)
|
|
73
|
+
|
|
58
74
|
Rotation = _reflection.GeneratedProtocolMessageType('Rotation', (_message.Message,), {
|
|
59
75
|
'DESCRIPTOR' : _ROTATION,
|
|
60
76
|
'__module__' : 'proto.cad.transformation_pb2'
|
|
@@ -80,6 +96,10 @@ if _descriptor._USE_C_DESCRIPTORS == False:
|
|
|
80
96
|
|
|
81
97
|
DESCRIPTOR._options = None
|
|
82
98
|
DESCRIPTOR._serialized_options = b'Z luminarycloud.com/core/proto/cad'
|
|
99
|
+
_AUGMENTEDMATRIX.fields_by_name['affine_float']._options = None
|
|
100
|
+
_AUGMENTEDMATRIX.fields_by_name['affine_float']._serialized_options = b'\030\001\270\262\031\324\232\002'
|
|
101
|
+
_AUGMENTEDMATRIX.fields_by_name['translation_float']._options = None
|
|
102
|
+
_AUGMENTEDMATRIX.fields_by_name['translation_float']._serialized_options = b'\030\001\270\262\031\200P'
|
|
83
103
|
_AUGMENTEDMATRIX.fields_by_name['affine']._options = None
|
|
84
104
|
_AUGMENTEDMATRIX.fields_by_name['affine']._serialized_options = b'\270\262\031\324\232\002'
|
|
85
105
|
_AUGMENTEDMATRIX.fields_by_name['translation']._options = None
|
|
@@ -88,28 +108,52 @@ if _descriptor._USE_C_DESCRIPTORS == False:
|
|
|
88
108
|
_MAGNITUDEVECTOR3.fields_by_name['direction']._serialized_options = b'\270\262\031\324\232\002'
|
|
89
109
|
_MAGNITUDEVECTOR3.fields_by_name['magnitude']._options = None
|
|
90
110
|
_MAGNITUDEVECTOR3.fields_by_name['magnitude']._serialized_options = b'\270\262\031\200P'
|
|
111
|
+
_MAGNITUDEADVECTOR3.fields_by_name['direction']._options = None
|
|
112
|
+
_MAGNITUDEADVECTOR3.fields_by_name['direction']._serialized_options = b'\270\262\031\324\232\002'
|
|
113
|
+
_MAGNITUDEADVECTOR3.fields_by_name['magnitude']._options = None
|
|
114
|
+
_MAGNITUDEADVECTOR3.fields_by_name['magnitude']._serialized_options = b'\270\262\031\200P'
|
|
115
|
+
_TRANSLATION.fields_by_name['vector_float']._options = None
|
|
116
|
+
_TRANSLATION.fields_by_name['vector_float']._serialized_options = b'\030\001\270\262\031\200P'
|
|
91
117
|
_TRANSLATION.fields_by_name['vector']._options = None
|
|
92
118
|
_TRANSLATION.fields_by_name['vector']._serialized_options = b'\270\262\031\200P'
|
|
93
119
|
_ANCHOREDVECTOR3.fields_by_name['origin']._options = None
|
|
94
|
-
_ANCHOREDVECTOR3.fields_by_name['origin']._serialized_options = b'\270\262\031\200P'
|
|
120
|
+
_ANCHOREDVECTOR3.fields_by_name['origin']._serialized_options = b'\030\001\270\262\031\200P'
|
|
95
121
|
_ANCHOREDVECTOR3.fields_by_name['direction']._options = None
|
|
96
|
-
_ANCHOREDVECTOR3.fields_by_name['direction']._serialized_options = b'\270\262\031\324\232\002'
|
|
122
|
+
_ANCHOREDVECTOR3.fields_by_name['direction']._serialized_options = b'\030\001\270\262\031\324\232\002'
|
|
123
|
+
_ANCHOREDADVECTOR3.fields_by_name['origin']._options = None
|
|
124
|
+
_ANCHOREDADVECTOR3.fields_by_name['origin']._serialized_options = b'\270\262\031\200P'
|
|
125
|
+
_ANCHOREDADVECTOR3.fields_by_name['direction']._options = None
|
|
126
|
+
_ANCHOREDADVECTOR3.fields_by_name['direction']._serialized_options = b'\270\262\031\324\232\002'
|
|
127
|
+
_ROTATION.fields_by_name['angle_float']._options = None
|
|
128
|
+
_ROTATION.fields_by_name['angle_float']._serialized_options = b'\030\001'
|
|
129
|
+
_ROTATION.fields_by_name['arbitrary_float']._options = None
|
|
130
|
+
_ROTATION.fields_by_name['arbitrary_float']._serialized_options = b'\030\001'
|
|
131
|
+
_SCALING.fields_by_name['arbitrary_float']._options = None
|
|
132
|
+
_SCALING.fields_by_name['arbitrary_float']._serialized_options = b'\030\001\270\262\031\200P'
|
|
133
|
+
_SCALING.fields_by_name['isotropic_float']._options = None
|
|
134
|
+
_SCALING.fields_by_name['isotropic_float']._serialized_options = b'\030\001\270\262\031\324\232\002'
|
|
97
135
|
_SCALING.fields_by_name['arbitrary']._options = None
|
|
98
136
|
_SCALING.fields_by_name['arbitrary']._serialized_options = b'\270\262\031\200P'
|
|
99
137
|
_SCALING.fields_by_name['isotropic']._options = None
|
|
100
138
|
_SCALING.fields_by_name['isotropic']._serialized_options = b'\270\262\031\324\232\002'
|
|
139
|
+
_REFLECTION.fields_by_name['arbitrary_float']._options = None
|
|
140
|
+
_REFLECTION.fields_by_name['arbitrary_float']._serialized_options = b'\030\001'
|
|
101
141
|
_AUGMENTEDMATRIX._serialized_start=107
|
|
102
|
-
_AUGMENTEDMATRIX._serialized_end=
|
|
103
|
-
_MAGNITUDEVECTOR3._serialized_start=
|
|
104
|
-
_MAGNITUDEVECTOR3._serialized_end=
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
142
|
+
_AUGMENTEDMATRIX._serialized_end=368
|
|
143
|
+
_MAGNITUDEVECTOR3._serialized_start=370
|
|
144
|
+
_MAGNITUDEVECTOR3._serialized_end=471
|
|
145
|
+
_MAGNITUDEADVECTOR3._serialized_start=474
|
|
146
|
+
_MAGNITUDEADVECTOR3._serialized_end=613
|
|
147
|
+
_TRANSLATION._serialized_start=616
|
|
148
|
+
_TRANSLATION._serialized_end=927
|
|
149
|
+
_ANCHOREDVECTOR3._serialized_start=930
|
|
150
|
+
_ANCHOREDVECTOR3._serialized_end=1061
|
|
151
|
+
_ANCHOREDADVECTOR3._serialized_start=1064
|
|
152
|
+
_ANCHOREDADVECTOR3._serialized_end=1197
|
|
153
|
+
_ROTATION._serialized_start=1200
|
|
154
|
+
_ROTATION._serialized_end=1434
|
|
155
|
+
_SCALING._serialized_start=1437
|
|
156
|
+
_SCALING._serialized_end=1724
|
|
157
|
+
_REFLECTION._serialized_start=1727
|
|
158
|
+
_REFLECTION._serialized_end=1891
|
|
115
159
|
# @@protoc_insertion_point(module_scope)
|