luminarycloud 0.15.1__py3-none-any.whl → 0.15.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 (53) hide show
  1. luminarycloud/_client/client.py +3 -0
  2. luminarycloud/_helpers/_code_representation.py +44 -19
  3. luminarycloud/_proto/api/v0/luminarycloud/geometry/geometry_pb2.py +81 -81
  4. luminarycloud/_proto/api/v0/luminarycloud/geometry/geometry_pb2.pyi +7 -1
  5. luminarycloud/_proto/api/v0/luminarycloud/inference/inference_pb2.py +61 -0
  6. luminarycloud/_proto/api/v0/luminarycloud/inference/inference_pb2.pyi +76 -0
  7. luminarycloud/_proto/api/v0/luminarycloud/inference/inference_pb2_grpc.py +67 -0
  8. luminarycloud/_proto/api/v0/luminarycloud/inference/inference_pb2_grpc.pyi +26 -0
  9. luminarycloud/_proto/api/v0/luminarycloud/mesh/mesh_pb2.py +29 -27
  10. luminarycloud/_proto/api/v0/luminarycloud/mesh/mesh_pb2.pyi +5 -1
  11. luminarycloud/_proto/api/v0/luminarycloud/simulation/simulation_pb2.py +46 -46
  12. luminarycloud/_proto/api/v0/luminarycloud/simulation/simulation_pb2.pyi +7 -1
  13. luminarycloud/_proto/assistant/assistant_pb2.py +23 -23
  14. luminarycloud/_proto/assistant/assistant_pb2.pyi +21 -11
  15. luminarycloud/_proto/assistant/assistant_pb2_grpc.py +13 -13
  16. luminarycloud/_proto/assistant/assistant_pb2_grpc.pyi +6 -6
  17. luminarycloud/_proto/client/simulation_pb2.py +333 -324
  18. luminarycloud/_proto/client/simulation_pb2.pyi +26 -1
  19. luminarycloud/_proto/geometry/geometry_pb2.py +69 -61
  20. luminarycloud/_proto/geometry/geometry_pb2.pyi +30 -3
  21. luminarycloud/_proto/hexmesh/hexmesh_pb2.py +41 -37
  22. luminarycloud/_proto/hexmesh/hexmesh_pb2.pyi +18 -8
  23. luminarycloud/_proto/inferenceservice/inferenceservice_pb2.py +69 -0
  24. luminarycloud/_proto/inferenceservice/inferenceservice_pb2.pyi +80 -0
  25. luminarycloud/_proto/luminarycloud/luminarycloud_api.pb +0 -0
  26. luminarycloud/_proto/named_variable_set/named_variable_set_pb2.py +49 -0
  27. luminarycloud/_proto/named_variable_set/named_variable_set_pb2.pyi +53 -0
  28. luminarycloud/_proto/quantity/quantity_pb2.py +8 -5
  29. luminarycloud/_proto/quantity/quantity_pb2.pyi +2 -0
  30. luminarycloud/enum/__init__.py +3 -0
  31. luminarycloud/meshing/mesh_generation_params.py +6 -5
  32. luminarycloud/meshing/sizing_strategy/sizing_strategies.py +2 -1
  33. luminarycloud/named_variable_set.py +3 -1
  34. luminarycloud/physics_ai/inference.py +55 -0
  35. luminarycloud/pipeline_util/dictable.py +27 -0
  36. luminarycloud/pipeline_util/yaml.py +55 -0
  37. luminarycloud/pipelines/__init__.py +29 -0
  38. luminarycloud/pipelines/core.py +225 -0
  39. luminarycloud/pipelines/operators.py +197 -0
  40. luminarycloud/pipelines/parameters.py +42 -0
  41. luminarycloud/project.py +6 -6
  42. luminarycloud/simulation.py +35 -4
  43. luminarycloud/simulation_param.py +16 -12
  44. luminarycloud/simulation_template.py +10 -6
  45. luminarycloud/types/vector3.py +2 -1
  46. luminarycloud/vis/__init__.py +0 -3
  47. luminarycloud/vis/display.py +3 -2
  48. luminarycloud/vis/filters.py +1 -2
  49. luminarycloud/vis/interactive_scene.py +1 -1
  50. luminarycloud/vis/visualization.py +17 -1
  51. {luminarycloud-0.15.1.dist-info → luminarycloud-0.15.3.dist-info}/METADATA +2 -1
  52. {luminarycloud-0.15.1.dist-info → luminarycloud-0.15.3.dist-info}/RECORD +53 -37
  53. {luminarycloud-0.15.1.dist-info → luminarycloud-0.15.3.dist-info}/WHEEL +0 -0
@@ -23,6 +23,27 @@ else:
23
23
 
24
24
  DESCRIPTOR: google.protobuf.descriptor.FileDescriptor
25
25
 
26
+ class _HeatFluxConvention:
27
+ ValueType = typing.NewType("ValueType", builtins.int)
28
+ V: typing_extensions.TypeAlias = ValueType
29
+
30
+ class _HeatFluxConventionEnumTypeWrapper(google.protobuf.internal.enum_type_wrapper._EnumTypeWrapper[_HeatFluxConvention.ValueType], builtins.type): # noqa: F821
31
+ DESCRIPTOR: google.protobuf.descriptor.EnumDescriptor
32
+ INVALID_HEAT_FLUX_CONVENTION: _HeatFluxConvention.ValueType # 0
33
+ CONVENTION_HEAT_FLUX_OUT: _HeatFluxConvention.ValueType # 25387
34
+ """Heat leaving the domain is positive."""
35
+ CONVENTION_HEAT_FLUX_IN: _HeatFluxConvention.ValueType # 7699
36
+ """Heat entering the domain is positive"""
37
+
38
+ class HeatFluxConvention(_HeatFluxConvention, metaclass=_HeatFluxConventionEnumTypeWrapper): ...
39
+
40
+ INVALID_HEAT_FLUX_CONVENTION: HeatFluxConvention.ValueType # 0
41
+ CONVENTION_HEAT_FLUX_OUT: HeatFluxConvention.ValueType # 25387
42
+ """Heat leaving the domain is positive."""
43
+ CONVENTION_HEAT_FLUX_IN: HeatFluxConvention.ValueType # 7699
44
+ """Heat entering the domain is positive"""
45
+ global___HeatFluxConvention = HeatFluxConvention
46
+
26
47
  class _UnitSystem:
27
48
  ValueType = typing.NewType("ValueType", builtins.int)
28
49
  V: typing_extensions.TypeAlias = ValueType
@@ -2781,6 +2802,7 @@ class Units(google.protobuf.message.Message):
2781
2802
 
2782
2803
  DESCRIPTOR: google.protobuf.descriptor.Descriptor
2783
2804
 
2805
+ HEAT_FLUX_CONVENTION_FIELD_NUMBER: builtins.int
2784
2806
  UNIT_SYSTEM_FIELD_NUMBER: builtins.int
2785
2807
  TEMPERATURE_UNIT_FIELD_NUMBER: builtins.int
2786
2808
  MASS_UNIT_FIELD_NUMBER: builtins.int
@@ -2799,6 +2821,8 @@ class Units(google.protobuf.message.Message):
2799
2821
  VISCOSITY_UNIT_FIELD_NUMBER: builtins.int
2800
2822
  CONDUCTIVITY_UNIT_FIELD_NUMBER: builtins.int
2801
2823
  MOLECULAR_WEIGHT_UNIT_FIELD_NUMBER: builtins.int
2824
+ heat_flux_convention: global___HeatFluxConvention.ValueType
2825
+ """Convention for the direction of positive heat flux."""
2802
2826
  unit_system: global___UnitSystem.ValueType
2803
2827
  """Collection of units used for all quantities."""
2804
2828
  temperature_unit: global___TemperatureUnit.ValueType
@@ -2838,6 +2862,7 @@ class Units(google.protobuf.message.Message):
2838
2862
  def __init__(
2839
2863
  self,
2840
2864
  *,
2865
+ heat_flux_convention: global___HeatFluxConvention.ValueType = ...,
2841
2866
  unit_system: global___UnitSystem.ValueType = ...,
2842
2867
  temperature_unit: global___TemperatureUnit.ValueType = ...,
2843
2868
  mass_unit: global___MassUnit.ValueType = ...,
@@ -2857,7 +2882,7 @@ class Units(google.protobuf.message.Message):
2857
2882
  conductivity_unit: global___ConductivityUnit.ValueType = ...,
2858
2883
  molecular_weight_unit: global___MolecularWeightUnit.ValueType = ...,
2859
2884
  ) -> None: ...
2860
- def ClearField(self, field_name: typing_extensions.Literal["angle_unit", b"angle_unit", "angular_velocity_unit", b"angular_velocity_unit", "conductivity_unit", b"conductivity_unit", "energy_unit", b"energy_unit", "force_unit", b"force_unit", "length_unit", b"length_unit", "mass_unit", b"mass_unit", "molecular_weight_unit", b"molecular_weight_unit", "moment_unit", b"moment_unit", "power_unit", b"power_unit", "pressure_unit", b"pressure_unit", "temperature_unit", b"temperature_unit", "time_unit", b"time_unit", "unit_system", b"unit_system", "velocity_unit", b"velocity_unit", "viscosity_unit", b"viscosity_unit", "volume_unit", b"volume_unit", "volumetric_flow_unit", b"volumetric_flow_unit"]) -> None: ...
2885
+ def ClearField(self, field_name: typing_extensions.Literal["angle_unit", b"angle_unit", "angular_velocity_unit", b"angular_velocity_unit", "conductivity_unit", b"conductivity_unit", "energy_unit", b"energy_unit", "force_unit", b"force_unit", "heat_flux_convention", b"heat_flux_convention", "length_unit", b"length_unit", "mass_unit", b"mass_unit", "molecular_weight_unit", b"molecular_weight_unit", "moment_unit", b"moment_unit", "power_unit", b"power_unit", "pressure_unit", b"pressure_unit", "temperature_unit", b"temperature_unit", "time_unit", b"time_unit", "unit_system", b"unit_system", "velocity_unit", b"velocity_unit", "viscosity_unit", b"viscosity_unit", "volume_unit", b"volume_unit", "volumetric_flow_unit", b"volumetric_flow_unit"]) -> None: ...
2861
2886
 
2862
2887
  global___Units = Units
2863
2888
 
@@ -17,16 +17,19 @@ from luminarycloud._proto.base import base_pb2 as proto_dot_base_dot_base__pb2
17
17
  from luminarycloud._proto.cad import boolean_pb2 as proto_dot_cad_dot_boolean__pb2
18
18
  from luminarycloud._proto.cad import shape_pb2 as proto_dot_cad_dot_shape__pb2
19
19
  from luminarycloud._proto.cad import transformation_pb2 as proto_dot_cad_dot_transformation__pb2
20
+ from luminarycloud._proto.named_variable_set import named_variable_set_pb2 as proto_dot_named__variable__set_dot_named__variable__set__pb2
20
21
  from luminarycloud._proto.parametricworker import parametricworker_pb2 as proto_dot_parametricworker_dot_parametricworker__pb2
21
22
  from luminarycloud._proto.lcstatus import lcstatus_pb2 as proto_dot_lcstatus_dot_lcstatus__pb2
22
23
 
23
24
 
24
- DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1dproto/geometry/geometry.proto\x12\x17luminary.proto.geometry\x1a\x15proto/base/base.proto\x1a\x17proto/cad/boolean.proto\x1a\x15proto/cad/shape.proto\x1a\x1eproto/cad/transformation.proto\x1a-proto/parametricworker/parametricworker.proto\x1a\x1dproto/lcstatus/lcstatus.proto\"\x87\x01\n\x06Import\x12\x14\n\x0cgeometry_url\x18\x01 \x01(\t\x12\x0f\n\x07scaling\x18\x02 \x01(\x01\x12\x16\n\x0e\x66orce_discrete\x18\x03 \x01(\x08\x12>\n\nparameters\x18\x04 \x03(\x0b\x32*.luminary.proto.parametricworker.Parameter\"\xc0\x02\n\x06\x43reate\x12,\n\x06sphere\x18\x01 \x01(\x0b\x32\x1a.luminary.proto.cad.SphereH\x00\x12\'\n\x03\x62ox\x18\x02 \x01(\x0b\x32\x18.luminary.proto.cad.CubeH\x00\x12\x30\n\x08\x63ylinder\x18\x03 \x01(\x0b\x32\x1c.luminary.proto.cad.CylinderH\x00\x12*\n\x05torus\x18\x04 \x01(\x0b\x32\x19.luminary.proto.cad.TorusH\x00\x12(\n\x04\x63one\x18\x05 \x01(\x0b\x32\x18.luminary.proto.cad.ConeH\x00\x12\x35\n\x0bhalf_sphere\x18\x06 \x01(\x0b\x32\x1e.luminary.proto.cad.HalfSphereH\x00\x12\x17\n\x0fresult_body_tag\x18\x07 \x01(\tB\x07\n\x05shape\"V\n\x06\x44\x65lete\x12\x31\n\x04type\x18\x01 \x01(\x0e\x32#.luminary.proto.geometry.EntityType\x12\x0b\n\x03ids\x18\x02 \x03(\x04\x12\x0c\n\x04tags\x18\x03 \x03(\t\"\x83\x02\n\x07\x42oolean\x12\x35\n\treg_union\x18\x01 \x01(\x0b\x32 .luminary.proto.cad.RegularUnionH\x00\x12\x41\n\x0freg_subtraction\x18\x02 \x01(\x0b\x32&.luminary.proto.cad.RegularSubtractionH\x00\x12\x43\n\x10reg_intersection\x18\x03 \x01(\x0b\x32\'.luminary.proto.cad.RegularIntersectionH\x00\x12\x33\n\x08reg_chop\x18\x04 \x01(\x0b\x32\x1f.luminary.proto.cad.RegularChopH\x00\x42\x04\n\x02op\"\xa2\x01\n\x07Imprint\x12\x42\n\x08\x62\x65havior\x18\x01 \x01(\x0e\x32\x30.luminary.proto.geometry.Imprint.ImprintBehavior\x12\x0c\n\x04\x62ody\x18\x02 \x03(\x04\x12\x0b\n\x03tag\x18\x03 \x03(\t\"8\n\x0fImprintBehavior\x12\x0f\n\x0bIMPRINT_ALL\x10\x00\x12\x14\n\x10IMPRINT_SELECTED\x10\x01\"\xc0\x02\n\tTransform\x12\x0c\n\x04\x62ody\x18\x01 \x03(\x04\x12\x0b\n\x03tag\x18\x08 \x03(\t\x12\x35\n\x06matrix\x18\x02 \x01(\x0b\x32#.luminary.proto.cad.AugmentedMatrixH\x00\x12\x36\n\x0btranslation\x18\x03 \x01(\x0b\x32\x1f.luminary.proto.cad.TranslationH\x00\x12\x30\n\x08rotation\x18\x04 \x01(\x0b\x32\x1c.luminary.proto.cad.RotationH\x00\x12.\n\x07scaling\x18\x05 \x01(\x0b\x32\x1b.luminary.proto.cad.ScalingH\x00\x12\x34\n\nreflection\x18\x06 \x01(\x0b\x32\x1e.luminary.proto.cad.ReflectionH\x00\x12\x0c\n\x04keep\x18\x07 \x01(\x08\x42\x03\n\x01t\"\xcf\x01\n\nShrinkwrap\x12\x0c\n\x04\x62ody\x18\x01 \x03(\x04\x12\x10\n\x08tag_body\x18\x07 \x03(\t\x12\x0c\n\x04tool\x18\x06 \x03(\x04\x12\x10\n\x08tag_tool\x18\x08 \x03(\t\x12\x35\n\x04mode\x18\x02 \x01(\x0e\x32\'.luminary.proto.geometry.ShrinkwrapMode\x12\x16\n\x0eresolution_min\x18\x03 \x01(\x01\x12\x16\n\x0eresolution_max\x18\x04 \x01(\x01\x12\x1a\n\x12resolution_uniform\x18\x05 \x01(\x01\"\xb2\x01\n\x08\x46\x61rfield\x12/\n\x06\x63reate\x18\x01 \x01(\x0b\x32\x1f.luminary.proto.geometry.Create\x12\x0e\n\x06\x62odies\x18\x02 \x03(\x04\x12\x12\n\ntag_bodies\x18\x06 \x03(\t\x12\x1a\n\x12keep_source_bodies\x18\x03 \x01(\x08\x12\x18\n\x10keep_tool_bodies\x18\x04 \x01(\x08\x12\x1b\n\x13propagate_tool_tags\x18\x05 \x01(\x08\"\xf9\x02\n\x07Pattern\x12\x0c\n\x04\x62ody\x18\x01 \x03(\x04\x12\x0b\n\x03tag\x18\x03 \x03(\t\x12=\n\tdirection\x18\x02 \x01(\x0b\x32*.luminary.proto.geometry.Pattern.Direction\x1a\x93\x02\n\tDirection\x12\x10\n\x08quantity\x18\x01 \x01(\r\x12\x11\n\tsymmetric\x18\x02 \x01(\x08\x12\x39\n\x0elinear_spacing\x18\x03 \x01(\x0b\x32\x1f.luminary.proto.cad.TranslationH\x00\x12T\n\x15\x63ircular_distribution\x18\x04 \x01(\x0b\x32\x33.luminary.proto.geometry.Pattern.Direction.CircularH\x00\x1aH\n\x08\x43ircular\x12.\n\x08rotation\x18\x01 \x01(\x0b\x32\x1c.luminary.proto.cad.Rotation\x12\x0c\n\x04\x66ull\x18\x02 \x01(\x08\x42\x06\n\x04type\"\x8c\x02\n\x0e\x43onfigurations\x12Q\n\rconfiguration\x18\x01 \x03(\x0b\x32:.luminary.proto.geometry.Configurations.ConfigurationEntry\x12\x0e\n\x06\x61\x63tive\x18\x02 \x01(\t\x1a*\n\rConfiguration\x12\x0c\n\x04\x62ody\x18\x01 \x03(\x04\x12\x0b\n\x03tag\x18\x02 \x03(\t\x1ak\n\x12\x43onfigurationEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\x44\n\x05value\x18\x02 \x01(\x0b\x32\x35.luminary.proto.geometry.Configurations.Configuration:\x02\x38\x01\"V\n\rFeatureIssues\x12\x31\n\x06issues\x18\x01 \x03(\x0b\x32!.luminary.proto.lcstatus.LCStatus\x12\x12\n\nfeature_id\x18\x02 \x01(\t\"\xde\x04\n\x07\x46\x65\x61ture\x12\x31\n\x06import\x18\x01 \x01(\x0b\x32\x1f.luminary.proto.geometry.ImportH\x00\x12\x31\n\x06\x63reate\x18\x02 \x01(\x0b\x32\x1f.luminary.proto.geometry.CreateH\x00\x12\x31\n\x06\x64\x65lete\x18\x03 \x01(\x0b\x32\x1f.luminary.proto.geometry.DeleteH\x00\x12\x33\n\x07\x62oolean\x18\x04 \x01(\x0b\x32 .luminary.proto.geometry.BooleanH\x00\x12\x33\n\x07imprint\x18\x07 \x01(\x0b\x32 .luminary.proto.geometry.ImprintH\x00\x12\x37\n\ttransform\x18\x0c \x01(\x0b\x32\".luminary.proto.geometry.TransformH\x00\x12\x39\n\nshrinkwrap\x18\r \x01(\x0b\x32#.luminary.proto.geometry.ShrinkwrapH\x00\x12\x35\n\x08\x66\x61rfield\x18\x0e \x01(\x0b\x32!.luminary.proto.geometry.FarfieldH\x00\x12\x33\n\x07pattern\x18\x0f \x01(\x0b\x32 .luminary.proto.geometry.PatternH\x00\x12\x41\n\x0e\x63onfigurations\x18\x10 \x01(\x0b\x32\'.luminary.proto.geometry.ConfigurationsH\x00\x12\n\n\x02id\x18\x05 \x01(\t\x12\x14\n\x0c\x66\x65\x61ture_name\x18\x06 \x01(\tB\x0b\n\toperation\"@\n\x11\x43reateOrUpdateTag\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x0e\n\x06\x62odies\x18\x02 \x03(\x05\x12\r\n\x05\x66\x61\x63\x65s\x18\x03 \x03(\x05\"/\n\tRenameTag\x12\x10\n\x08old_name\x18\x01 \x01(\t\x12\x10\n\x08new_name\x18\x02 \x01(\t\"8\n\tDeleteTag\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x0e\n\x06\x62odies\x18\x02 \x03(\x05\x12\r\n\x05\x66\x61\x63\x65s\x18\x03 \x03(\x05\"\x1b\n\nDeleteTags\x12\r\n\x05names\x18\x01 \x03(\t\"\xb2\x06\n\x0cModification\x12H\n\x08mod_type\x18\x01 \x01(\x0e\x32\x36.luminary.proto.geometry.Modification.ModificationType\x12\x31\n\x07\x66\x65\x61ture\x18\x02 \x01(\x0b\x32 .luminary.proto.geometry.Feature\x12H\n\x14\x63reate_or_update_tag\x18\x03 \x01(\x0b\x32*.luminary.proto.geometry.CreateOrUpdateTag\x12\x36\n\nrename_tag\x18\x04 \x01(\x0b\x32\".luminary.proto.geometry.RenameTag\x12\x36\n\ndelete_tag\x18\x05 \x01(\x0b\x32\".luminary.proto.geometry.DeleteTag\x12\x38\n\x0b\x64\x65lete_tags\x18\x06 \x01(\x0b\x32#.luminary.proto.geometry.DeleteTags\"\xb0\x03\n\x10ModificationType\x12!\n\x1dMODIFICATION_TYPE_UNSPECIFIED\x10\x00\x12$\n MODIFICATION_TYPE_CREATE_FEATURE\x10\x01\x12$\n MODIFICATION_TYPE_UPDATE_FEATURE\x10\x02\x12$\n MODIFICATION_TYPE_DELETE_FEATURE\x10\x03\x12\x1a\n\x16MODIFICATION_TYPE_UNDO\x10\x04\x12\x1a\n\x16MODIFICATION_TYPE_REDO\x10\x05\x12$\n MODIFICATION_TYPE_RENAME_FEATURE\x10\x06\x12 \n\x1cMODIFICATION_TYPE_CREATE_TAG\x10\x07\x12 \n\x1cMODIFICATION_TYPE_UPDATE_TAG\x10\x08\x12 \n\x1cMODIFICATION_TYPE_DELETE_TAG\x10\t\x12 \n\x1cMODIFICATION_TYPE_RENAME_TAG\x10\n\x12!\n\x1dMODIFICATION_TYPE_DELETE_TAGS\x10\x0b\"\x85\x01\n\x04\x46\x61\x63\x65\x12\n\n\x02id\x18\x01 \x01(\t\x12.\n\x08\x62\x62ox_min\x18\x02 \x01(\x0b\x32\x1c.luminary.proto.base.Vector3\x12.\n\x08\x62\x62ox_max\x18\x03 \x01(\x0b\x32\x1c.luminary.proto.base.Vector3\x12\x11\n\tnative_id\x18\x04 \x01(\x04\"\x82\x01\n\x04\x42ody\x12\n\n\x02id\x18\x01 \x01(\x04\x12.\n\x08\x62\x62ox_min\x18\x02 \x01(\x0b\x32\x1c.luminary.proto.base.Vector3\x12.\n\x08\x62\x62ox_max\x18\x03 \x01(\x0b\x32\x1c.luminary.proto.base.Vector3\x12\x0e\n\x06lcn_id\x18\x04 \x01(\x04\"\"\n\x06Volume\x12\n\n\x02id\x18\x01 \x01(\x04\x12\x0c\n\x04name\x18\x02 \x01(\t\"\xc2\x01\n\x04Tags\x12/\n\x04tags\x18\x01 \x03(\x0b\x32!.luminary.proto.geometry.Tags.Tag\x1a\x88\x01\n\x03Tag\x12\n\n\x02id\x18\x01 \x01(\t\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\x0e\n\x06\x62odies\x18\x03 \x03(\x05\x12\x12\n\nlcn_bodies\x18\x04 \x03(\x05\x12\r\n\x05\x66\x61\x63\x65s\x18\x05 \x03(\x05\x12\x17\n\x0f\x62odies_of_faces\x18\x06 \x03(\x05\x12\x1b\n\x13lcn_bodies_of_faces\x18\x07 \x03(\x05*S\n\nEntityType\x12\x0f\n\x0bUNSPECIFIED\x10\x00\x12\x08\n\x04\x42ODY\x10\x01\x12\n\n\x06VOLUME\x10\x02\x12\x08\n\x04\x46\x41\x43\x45\x10\x03\x12\x08\n\x04\x45\x44GE\x10\x04\x12\n\n\x06VERTEX\x10\x05*8\n\x0eShrinkwrapMode\x12\r\n\tAUTOMATIC\x10\x00\x12\n\n\x06MINMAX\x10\x01\x12\x0b\n\x07UNIFORM\x10\x02\x42\'Z%luminarycloud.com/core/proto/geometryb\x06proto3')
25
+ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1dproto/geometry/geometry.proto\x12\x17luminary.proto.geometry\x1a\x15proto/base/base.proto\x1a\x17proto/cad/boolean.proto\x1a\x15proto/cad/shape.proto\x1a\x1eproto/cad/transformation.proto\x1a\x31proto/named_variable_set/named_variable_set.proto\x1a-proto/parametricworker/parametricworker.proto\x1a\x1dproto/lcstatus/lcstatus.proto\"\x87\x01\n\x06Import\x12\x14\n\x0cgeometry_url\x18\x01 \x01(\t\x12\x0f\n\x07scaling\x18\x02 \x01(\x01\x12\x16\n\x0e\x66orce_discrete\x18\x03 \x01(\x08\x12>\n\nparameters\x18\x04 \x03(\x0b\x32*.luminary.proto.parametricworker.Parameter\"\xc0\x02\n\x06\x43reate\x12,\n\x06sphere\x18\x01 \x01(\x0b\x32\x1a.luminary.proto.cad.SphereH\x00\x12\'\n\x03\x62ox\x18\x02 \x01(\x0b\x32\x18.luminary.proto.cad.CubeH\x00\x12\x30\n\x08\x63ylinder\x18\x03 \x01(\x0b\x32\x1c.luminary.proto.cad.CylinderH\x00\x12*\n\x05torus\x18\x04 \x01(\x0b\x32\x19.luminary.proto.cad.TorusH\x00\x12(\n\x04\x63one\x18\x05 \x01(\x0b\x32\x18.luminary.proto.cad.ConeH\x00\x12\x35\n\x0bhalf_sphere\x18\x06 \x01(\x0b\x32\x1e.luminary.proto.cad.HalfSphereH\x00\x12\x17\n\x0fresult_body_tag\x18\x07 \x01(\tB\x07\n\x05shape\"V\n\x06\x44\x65lete\x12\x31\n\x04type\x18\x01 \x01(\x0e\x32#.luminary.proto.geometry.EntityType\x12\x0b\n\x03ids\x18\x02 \x03(\x04\x12\x0c\n\x04tags\x18\x03 \x03(\t\"\x83\x02\n\x07\x42oolean\x12\x35\n\treg_union\x18\x01 \x01(\x0b\x32 .luminary.proto.cad.RegularUnionH\x00\x12\x41\n\x0freg_subtraction\x18\x02 \x01(\x0b\x32&.luminary.proto.cad.RegularSubtractionH\x00\x12\x43\n\x10reg_intersection\x18\x03 \x01(\x0b\x32\'.luminary.proto.cad.RegularIntersectionH\x00\x12\x33\n\x08reg_chop\x18\x04 \x01(\x0b\x32\x1f.luminary.proto.cad.RegularChopH\x00\x42\x04\n\x02op\"\xa2\x01\n\x07Imprint\x12\x42\n\x08\x62\x65havior\x18\x01 \x01(\x0e\x32\x30.luminary.proto.geometry.Imprint.ImprintBehavior\x12\x0c\n\x04\x62ody\x18\x02 \x03(\x04\x12\x0b\n\x03tag\x18\x03 \x03(\t\"8\n\x0fImprintBehavior\x12\x0f\n\x0bIMPRINT_ALL\x10\x00\x12\x14\n\x10IMPRINT_SELECTED\x10\x01\"\xc0\x02\n\tTransform\x12\x0c\n\x04\x62ody\x18\x01 \x03(\x04\x12\x0b\n\x03tag\x18\x08 \x03(\t\x12\x35\n\x06matrix\x18\x02 \x01(\x0b\x32#.luminary.proto.cad.AugmentedMatrixH\x00\x12\x36\n\x0btranslation\x18\x03 \x01(\x0b\x32\x1f.luminary.proto.cad.TranslationH\x00\x12\x30\n\x08rotation\x18\x04 \x01(\x0b\x32\x1c.luminary.proto.cad.RotationH\x00\x12.\n\x07scaling\x18\x05 \x01(\x0b\x32\x1b.luminary.proto.cad.ScalingH\x00\x12\x34\n\nreflection\x18\x06 \x01(\x0b\x32\x1e.luminary.proto.cad.ReflectionH\x00\x12\x0c\n\x04keep\x18\x07 \x01(\x08\x42\x03\n\x01t\"\xcf\x01\n\nShrinkwrap\x12\x0c\n\x04\x62ody\x18\x01 \x03(\x04\x12\x10\n\x08tag_body\x18\x07 \x03(\t\x12\x0c\n\x04tool\x18\x06 \x03(\x04\x12\x10\n\x08tag_tool\x18\x08 \x03(\t\x12\x35\n\x04mode\x18\x02 \x01(\x0e\x32\'.luminary.proto.geometry.ShrinkwrapMode\x12\x16\n\x0eresolution_min\x18\x03 \x01(\x01\x12\x16\n\x0eresolution_max\x18\x04 \x01(\x01\x12\x1a\n\x12resolution_uniform\x18\x05 \x01(\x01\"\xb2\x01\n\x08\x46\x61rfield\x12/\n\x06\x63reate\x18\x01 \x01(\x0b\x32\x1f.luminary.proto.geometry.Create\x12\x0e\n\x06\x62odies\x18\x02 \x03(\x04\x12\x12\n\ntag_bodies\x18\x06 \x03(\t\x12\x1a\n\x12keep_source_bodies\x18\x03 \x01(\x08\x12\x18\n\x10keep_tool_bodies\x18\x04 \x01(\x08\x12\x1b\n\x13propagate_tool_tags\x18\x05 \x01(\x08\"\xf9\x02\n\x07Pattern\x12\x0c\n\x04\x62ody\x18\x01 \x03(\x04\x12\x0b\n\x03tag\x18\x03 \x03(\t\x12=\n\tdirection\x18\x02 \x01(\x0b\x32*.luminary.proto.geometry.Pattern.Direction\x1a\x93\x02\n\tDirection\x12\x10\n\x08quantity\x18\x01 \x01(\r\x12\x11\n\tsymmetric\x18\x02 \x01(\x08\x12\x39\n\x0elinear_spacing\x18\x03 \x01(\x0b\x32\x1f.luminary.proto.cad.TranslationH\x00\x12T\n\x15\x63ircular_distribution\x18\x04 \x01(\x0b\x32\x33.luminary.proto.geometry.Pattern.Direction.CircularH\x00\x1aH\n\x08\x43ircular\x12.\n\x08rotation\x18\x01 \x01(\x0b\x32\x1c.luminary.proto.cad.Rotation\x12\x0c\n\x04\x66ull\x18\x02 \x01(\x08\x42\x06\n\x04type\"\x8c\x02\n\x0e\x43onfigurations\x12Q\n\rconfiguration\x18\x01 \x03(\x0b\x32:.luminary.proto.geometry.Configurations.ConfigurationEntry\x12\x0e\n\x06\x61\x63tive\x18\x02 \x01(\t\x1a*\n\rConfiguration\x12\x0c\n\x04\x62ody\x18\x01 \x03(\x04\x12\x0b\n\x03tag\x18\x02 \x03(\t\x1ak\n\x12\x43onfigurationEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\x44\n\x05value\x18\x02 \x01(\x0b\x32\x35.luminary.proto.geometry.Configurations.Configuration:\x02\x38\x01\"V\n\rFeatureIssues\x12\x31\n\x06issues\x18\x01 \x03(\x0b\x32!.luminary.proto.lcstatus.LCStatus\x12\x12\n\nfeature_id\x18\x02 \x01(\t\"\xde\x04\n\x07\x46\x65\x61ture\x12\x31\n\x06import\x18\x01 \x01(\x0b\x32\x1f.luminary.proto.geometry.ImportH\x00\x12\x31\n\x06\x63reate\x18\x02 \x01(\x0b\x32\x1f.luminary.proto.geometry.CreateH\x00\x12\x31\n\x06\x64\x65lete\x18\x03 \x01(\x0b\x32\x1f.luminary.proto.geometry.DeleteH\x00\x12\x33\n\x07\x62oolean\x18\x04 \x01(\x0b\x32 .luminary.proto.geometry.BooleanH\x00\x12\x33\n\x07imprint\x18\x07 \x01(\x0b\x32 .luminary.proto.geometry.ImprintH\x00\x12\x37\n\ttransform\x18\x0c \x01(\x0b\x32\".luminary.proto.geometry.TransformH\x00\x12\x39\n\nshrinkwrap\x18\r \x01(\x0b\x32#.luminary.proto.geometry.ShrinkwrapH\x00\x12\x35\n\x08\x66\x61rfield\x18\x0e \x01(\x0b\x32!.luminary.proto.geometry.FarfieldH\x00\x12\x33\n\x07pattern\x18\x0f \x01(\x0b\x32 .luminary.proto.geometry.PatternH\x00\x12\x41\n\x0e\x63onfigurations\x18\x10 \x01(\x0b\x32\'.luminary.proto.geometry.ConfigurationsH\x00\x12\n\n\x02id\x18\x05 \x01(\t\x12\x14\n\x0c\x66\x65\x61ture_name\x18\x06 \x01(\tB\x0b\n\toperation\"@\n\x11\x43reateOrUpdateTag\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x0e\n\x06\x62odies\x18\x02 \x03(\x05\x12\r\n\x05\x66\x61\x63\x65s\x18\x03 \x03(\x05\"/\n\tRenameTag\x12\x10\n\x08old_name\x18\x01 \x01(\t\x12\x10\n\x08new_name\x18\x02 \x01(\t\"8\n\tDeleteTag\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x0e\n\x06\x62odies\x18\x02 \x03(\x05\x12\r\n\x05\x66\x61\x63\x65s\x18\x03 \x03(\x05\"\x1b\n\nDeleteTags\x12\r\n\x05names\x18\x01 \x03(\t\"\x91\x07\n\x0cModification\x12H\n\x08mod_type\x18\x01 \x01(\x0e\x32\x36.luminary.proto.geometry.Modification.ModificationType\x12\x31\n\x07\x66\x65\x61ture\x18\x02 \x01(\x0b\x32 .luminary.proto.geometry.Feature\x12H\n\x14\x63reate_or_update_tag\x18\x03 \x01(\x0b\x32*.luminary.proto.geometry.CreateOrUpdateTag\x12\x36\n\nrename_tag\x18\x04 \x01(\x0b\x32\".luminary.proto.geometry.RenameTag\x12\x36\n\ndelete_tag\x18\x05 \x01(\x0b\x32\".luminary.proto.geometry.DeleteTag\x12\x38\n\x0b\x64\x65lete_tags\x18\x06 \x01(\x0b\x32#.luminary.proto.geometry.DeleteTags\x12,\n$update_named_variable_set_version_id\x18\x07 \x01(\t\"\xe1\x03\n\x10ModificationType\x12!\n\x1dMODIFICATION_TYPE_UNSPECIFIED\x10\x00\x12$\n MODIFICATION_TYPE_CREATE_FEATURE\x10\x01\x12$\n MODIFICATION_TYPE_UPDATE_FEATURE\x10\x02\x12$\n MODIFICATION_TYPE_DELETE_FEATURE\x10\x03\x12\x1a\n\x16MODIFICATION_TYPE_UNDO\x10\x04\x12\x1a\n\x16MODIFICATION_TYPE_REDO\x10\x05\x12$\n MODIFICATION_TYPE_RENAME_FEATURE\x10\x06\x12 \n\x1cMODIFICATION_TYPE_CREATE_TAG\x10\x07\x12 \n\x1cMODIFICATION_TYPE_UPDATE_TAG\x10\x08\x12 \n\x1cMODIFICATION_TYPE_DELETE_TAG\x10\t\x12 \n\x1cMODIFICATION_TYPE_RENAME_TAG\x10\n\x12!\n\x1dMODIFICATION_TYPE_DELETE_TAGS\x10\x0b\x12/\n+MODIFICATION_TYPE_UPDATE_NAMED_VARIABLE_SET\x10\x0c\"\x85\x01\n\x04\x46\x61\x63\x65\x12\n\n\x02id\x18\x01 \x01(\t\x12.\n\x08\x62\x62ox_min\x18\x02 \x01(\x0b\x32\x1c.luminary.proto.base.Vector3\x12.\n\x08\x62\x62ox_max\x18\x03 \x01(\x0b\x32\x1c.luminary.proto.base.Vector3\x12\x11\n\tnative_id\x18\x04 \x01(\x04\"\x82\x01\n\x04\x42ody\x12\n\n\x02id\x18\x01 \x01(\x04\x12.\n\x08\x62\x62ox_min\x18\x02 \x01(\x0b\x32\x1c.luminary.proto.base.Vector3\x12.\n\x08\x62\x62ox_max\x18\x03 \x01(\x0b\x32\x1c.luminary.proto.base.Vector3\x12\x0e\n\x06lcn_id\x18\x04 \x01(\x04\"\"\n\x06Volume\x12\n\n\x02id\x18\x01 \x01(\x04\x12\x0c\n\x04name\x18\x02 \x01(\t\"\xc2\x01\n\x04Tags\x12/\n\x04tags\x18\x01 \x03(\x0b\x32!.luminary.proto.geometry.Tags.Tag\x1a\x88\x01\n\x03Tag\x12\n\n\x02id\x18\x01 \x01(\t\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\x0e\n\x06\x62odies\x18\x03 \x03(\x05\x12\x12\n\nlcn_bodies\x18\x04 \x03(\x05\x12\r\n\x05\x66\x61\x63\x65s\x18\x05 \x03(\x05\x12\x17\n\x0f\x62odies_of_faces\x18\x06 \x03(\x05\x12\x1b\n\x13lcn_bodies_of_faces\x18\x07 \x03(\x05*S\n\nEntityType\x12\x0f\n\x0bUNSPECIFIED\x10\x00\x12\x08\n\x04\x42ODY\x10\x01\x12\n\n\x06VOLUME\x10\x02\x12\x08\n\x04\x46\x41\x43\x45\x10\x03\x12\x08\n\x04\x45\x44GE\x10\x04\x12\n\n\x06VERTEX\x10\x05*8\n\x0eShrinkwrapMode\x12\r\n\tAUTOMATIC\x10\x00\x12\n\n\x06MINMAX\x10\x01\x12\x0b\n\x07UNIFORM\x10\x02*7\n\nKernelType\x12\x0b\n\x07UNKNOWN\x10\x00\x12\x0e\n\nCONTINUOUS\x10\x01\x12\x0c\n\x08\x44ISCRETE\x10\x02\x42\'Z%luminarycloud.com/core/proto/geometryb\x06proto3')
25
26
 
26
27
  _ENTITYTYPE = DESCRIPTOR.enum_types_by_name['EntityType']
27
28
  EntityType = enum_type_wrapper.EnumTypeWrapper(_ENTITYTYPE)
28
29
  _SHRINKWRAPMODE = DESCRIPTOR.enum_types_by_name['ShrinkwrapMode']
29
30
  ShrinkwrapMode = enum_type_wrapper.EnumTypeWrapper(_SHRINKWRAPMODE)
31
+ _KERNELTYPE = DESCRIPTOR.enum_types_by_name['KernelType']
32
+ KernelType = enum_type_wrapper.EnumTypeWrapper(_KERNELTYPE)
30
33
  UNSPECIFIED = 0
31
34
  BODY = 1
32
35
  VOLUME = 2
@@ -36,6 +39,9 @@ VERTEX = 5
36
39
  AUTOMATIC = 0
37
40
  MINMAX = 1
38
41
  UNIFORM = 2
42
+ UNKNOWN = 0
43
+ CONTINUOUS = 1
44
+ DISCRETE = 2
39
45
 
40
46
 
41
47
  _IMPORT = DESCRIPTOR.message_types_by_name['Import']
@@ -259,64 +265,66 @@ if _descriptor._USE_C_DESCRIPTORS == False:
259
265
  DESCRIPTOR._serialized_options = b'Z%luminarycloud.com/core/proto/geometry'
260
266
  _CONFIGURATIONS_CONFIGURATIONENTRY._options = None
261
267
  _CONFIGURATIONS_CONFIGURATIONENTRY._serialized_options = b'8\001'
262
- _ENTITYTYPE._serialized_start=4802
263
- _ENTITYTYPE._serialized_end=4885
264
- _SHRINKWRAPMODE._serialized_start=4887
265
- _SHRINKWRAPMODE._serialized_end=4943
266
- _IMPORT._serialized_start=240
267
- _IMPORT._serialized_end=375
268
- _CREATE._serialized_start=378
269
- _CREATE._serialized_end=698
270
- _DELETE._serialized_start=700
271
- _DELETE._serialized_end=786
272
- _BOOLEAN._serialized_start=789
273
- _BOOLEAN._serialized_end=1048
274
- _IMPRINT._serialized_start=1051
275
- _IMPRINT._serialized_end=1213
276
- _IMPRINT_IMPRINTBEHAVIOR._serialized_start=1157
277
- _IMPRINT_IMPRINTBEHAVIOR._serialized_end=1213
278
- _TRANSFORM._serialized_start=1216
279
- _TRANSFORM._serialized_end=1536
280
- _SHRINKWRAP._serialized_start=1539
281
- _SHRINKWRAP._serialized_end=1746
282
- _FARFIELD._serialized_start=1749
283
- _FARFIELD._serialized_end=1927
284
- _PATTERN._serialized_start=1930
285
- _PATTERN._serialized_end=2307
286
- _PATTERN_DIRECTION._serialized_start=2032
287
- _PATTERN_DIRECTION._serialized_end=2307
288
- _PATTERN_DIRECTION_CIRCULAR._serialized_start=2227
289
- _PATTERN_DIRECTION_CIRCULAR._serialized_end=2299
290
- _CONFIGURATIONS._serialized_start=2310
291
- _CONFIGURATIONS._serialized_end=2578
292
- _CONFIGURATIONS_CONFIGURATION._serialized_start=2427
293
- _CONFIGURATIONS_CONFIGURATION._serialized_end=2469
294
- _CONFIGURATIONS_CONFIGURATIONENTRY._serialized_start=2471
295
- _CONFIGURATIONS_CONFIGURATIONENTRY._serialized_end=2578
296
- _FEATUREISSUES._serialized_start=2580
297
- _FEATUREISSUES._serialized_end=2666
298
- _FEATURE._serialized_start=2669
299
- _FEATURE._serialized_end=3275
300
- _CREATEORUPDATETAG._serialized_start=3277
301
- _CREATEORUPDATETAG._serialized_end=3341
302
- _RENAMETAG._serialized_start=3343
303
- _RENAMETAG._serialized_end=3390
304
- _DELETETAG._serialized_start=3392
305
- _DELETETAG._serialized_end=3448
306
- _DELETETAGS._serialized_start=3450
307
- _DELETETAGS._serialized_end=3477
308
- _MODIFICATION._serialized_start=3480
309
- _MODIFICATION._serialized_end=4298
310
- _MODIFICATION_MODIFICATIONTYPE._serialized_start=3866
311
- _MODIFICATION_MODIFICATIONTYPE._serialized_end=4298
312
- _FACE._serialized_start=4301
313
- _FACE._serialized_end=4434
314
- _BODY._serialized_start=4437
315
- _BODY._serialized_end=4567
316
- _VOLUME._serialized_start=4569
317
- _VOLUME._serialized_end=4603
318
- _TAGS._serialized_start=4606
319
- _TAGS._serialized_end=4800
320
- _TAGS_TAG._serialized_start=4664
321
- _TAGS_TAG._serialized_end=4800
268
+ _ENTITYTYPE._serialized_start=4948
269
+ _ENTITYTYPE._serialized_end=5031
270
+ _SHRINKWRAPMODE._serialized_start=5033
271
+ _SHRINKWRAPMODE._serialized_end=5089
272
+ _KERNELTYPE._serialized_start=5091
273
+ _KERNELTYPE._serialized_end=5146
274
+ _IMPORT._serialized_start=291
275
+ _IMPORT._serialized_end=426
276
+ _CREATE._serialized_start=429
277
+ _CREATE._serialized_end=749
278
+ _DELETE._serialized_start=751
279
+ _DELETE._serialized_end=837
280
+ _BOOLEAN._serialized_start=840
281
+ _BOOLEAN._serialized_end=1099
282
+ _IMPRINT._serialized_start=1102
283
+ _IMPRINT._serialized_end=1264
284
+ _IMPRINT_IMPRINTBEHAVIOR._serialized_start=1208
285
+ _IMPRINT_IMPRINTBEHAVIOR._serialized_end=1264
286
+ _TRANSFORM._serialized_start=1267
287
+ _TRANSFORM._serialized_end=1587
288
+ _SHRINKWRAP._serialized_start=1590
289
+ _SHRINKWRAP._serialized_end=1797
290
+ _FARFIELD._serialized_start=1800
291
+ _FARFIELD._serialized_end=1978
292
+ _PATTERN._serialized_start=1981
293
+ _PATTERN._serialized_end=2358
294
+ _PATTERN_DIRECTION._serialized_start=2083
295
+ _PATTERN_DIRECTION._serialized_end=2358
296
+ _PATTERN_DIRECTION_CIRCULAR._serialized_start=2278
297
+ _PATTERN_DIRECTION_CIRCULAR._serialized_end=2350
298
+ _CONFIGURATIONS._serialized_start=2361
299
+ _CONFIGURATIONS._serialized_end=2629
300
+ _CONFIGURATIONS_CONFIGURATION._serialized_start=2478
301
+ _CONFIGURATIONS_CONFIGURATION._serialized_end=2520
302
+ _CONFIGURATIONS_CONFIGURATIONENTRY._serialized_start=2522
303
+ _CONFIGURATIONS_CONFIGURATIONENTRY._serialized_end=2629
304
+ _FEATUREISSUES._serialized_start=2631
305
+ _FEATUREISSUES._serialized_end=2717
306
+ _FEATURE._serialized_start=2720
307
+ _FEATURE._serialized_end=3326
308
+ _CREATEORUPDATETAG._serialized_start=3328
309
+ _CREATEORUPDATETAG._serialized_end=3392
310
+ _RENAMETAG._serialized_start=3394
311
+ _RENAMETAG._serialized_end=3441
312
+ _DELETETAG._serialized_start=3443
313
+ _DELETETAG._serialized_end=3499
314
+ _DELETETAGS._serialized_start=3501
315
+ _DELETETAGS._serialized_end=3528
316
+ _MODIFICATION._serialized_start=3531
317
+ _MODIFICATION._serialized_end=4444
318
+ _MODIFICATION_MODIFICATIONTYPE._serialized_start=3963
319
+ _MODIFICATION_MODIFICATIONTYPE._serialized_end=4444
320
+ _FACE._serialized_start=4447
321
+ _FACE._serialized_end=4580
322
+ _BODY._serialized_start=4583
323
+ _BODY._serialized_end=4713
324
+ _VOLUME._serialized_start=4715
325
+ _VOLUME._serialized_end=4749
326
+ _TAGS._serialized_start=4752
327
+ _TAGS._serialized_end=4946
328
+ _TAGS_TAG._serialized_start=4810
329
+ _TAGS_TAG._serialized_end=4946
322
330
  # @@protoc_insertion_point(module_scope)
@@ -64,6 +64,25 @@ MINMAX: ShrinkwrapMode.ValueType # 1
64
64
  UNIFORM: ShrinkwrapMode.ValueType # 2
65
65
  global___ShrinkwrapMode = ShrinkwrapMode
66
66
 
67
+ class _KernelType:
68
+ ValueType = typing.NewType("ValueType", builtins.int)
69
+ V: typing_extensions.TypeAlias = ValueType
70
+
71
+ class _KernelTypeEnumTypeWrapper(google.protobuf.internal.enum_type_wrapper._EnumTypeWrapper[_KernelType.ValueType], builtins.type): # noqa: F821
72
+ DESCRIPTOR: google.protobuf.descriptor.EnumDescriptor
73
+ UNKNOWN: _KernelType.ValueType # 0
74
+ CONTINUOUS: _KernelType.ValueType # 1
75
+ """Currently, ACIS"""
76
+ DISCRETE: _KernelType.ValueType # 2
77
+
78
+ class KernelType(_KernelType, metaclass=_KernelTypeEnumTypeWrapper): ...
79
+
80
+ UNKNOWN: KernelType.ValueType # 0
81
+ CONTINUOUS: KernelType.ValueType # 1
82
+ """Currently, ACIS"""
83
+ DISCRETE: KernelType.ValueType # 2
84
+ global___KernelType = KernelType
85
+
67
86
  class Import(google.protobuf.message.Message):
68
87
  DESCRIPTOR: google.protobuf.descriptor.Descriptor
69
88
 
@@ -719,13 +738,14 @@ class Modification(google.protobuf.message.Message):
719
738
  MODIFICATION_TYPE_REDO: Modification._ModificationType.ValueType # 5
720
739
  MODIFICATION_TYPE_RENAME_FEATURE: Modification._ModificationType.ValueType # 6
721
740
  """Action used to rename a given feature. If specified, the feature message
722
- must contain the new name and the ID. The other fields will be ignotred.
741
+ must contain the new name and the ID. The other fields will be ignored.
723
742
  """
724
743
  MODIFICATION_TYPE_CREATE_TAG: Modification._ModificationType.ValueType # 7
725
744
  MODIFICATION_TYPE_UPDATE_TAG: Modification._ModificationType.ValueType # 8
726
745
  MODIFICATION_TYPE_DELETE_TAG: Modification._ModificationType.ValueType # 9
727
746
  MODIFICATION_TYPE_RENAME_TAG: Modification._ModificationType.ValueType # 10
728
747
  MODIFICATION_TYPE_DELETE_TAGS: Modification._ModificationType.ValueType # 11
748
+ MODIFICATION_TYPE_UPDATE_NAMED_VARIABLE_SET: Modification._ModificationType.ValueType # 12
729
749
 
730
750
  class ModificationType(_ModificationType, metaclass=_ModificationTypeEnumTypeWrapper): ...
731
751
  MODIFICATION_TYPE_UNSPECIFIED: Modification.ModificationType.ValueType # 0
@@ -736,13 +756,14 @@ class Modification(google.protobuf.message.Message):
736
756
  MODIFICATION_TYPE_REDO: Modification.ModificationType.ValueType # 5
737
757
  MODIFICATION_TYPE_RENAME_FEATURE: Modification.ModificationType.ValueType # 6
738
758
  """Action used to rename a given feature. If specified, the feature message
739
- must contain the new name and the ID. The other fields will be ignotred.
759
+ must contain the new name and the ID. The other fields will be ignored.
740
760
  """
741
761
  MODIFICATION_TYPE_CREATE_TAG: Modification.ModificationType.ValueType # 7
742
762
  MODIFICATION_TYPE_UPDATE_TAG: Modification.ModificationType.ValueType # 8
743
763
  MODIFICATION_TYPE_DELETE_TAG: Modification.ModificationType.ValueType # 9
744
764
  MODIFICATION_TYPE_RENAME_TAG: Modification.ModificationType.ValueType # 10
745
765
  MODIFICATION_TYPE_DELETE_TAGS: Modification.ModificationType.ValueType # 11
766
+ MODIFICATION_TYPE_UPDATE_NAMED_VARIABLE_SET: Modification.ModificationType.ValueType # 12
746
767
 
747
768
  MOD_TYPE_FIELD_NUMBER: builtins.int
748
769
  FEATURE_FIELD_NUMBER: builtins.int
@@ -750,6 +771,7 @@ class Modification(google.protobuf.message.Message):
750
771
  RENAME_TAG_FIELD_NUMBER: builtins.int
751
772
  DELETE_TAG_FIELD_NUMBER: builtins.int
752
773
  DELETE_TAGS_FIELD_NUMBER: builtins.int
774
+ UPDATE_NAMED_VARIABLE_SET_VERSION_ID_FIELD_NUMBER: builtins.int
753
775
  mod_type: global___Modification.ModificationType.ValueType
754
776
  @property
755
777
  def feature(self) -> global___Feature:
@@ -768,6 +790,10 @@ class Modification(google.protobuf.message.Message):
768
790
  @property
769
791
  def delete_tags(self) -> global___DeleteTags:
770
792
  """Required for the delete tags modification type."""
793
+ update_named_variable_set_version_id: builtins.str
794
+ """For MODIFICATION_TYPE_UPDATE_NAMED_VARIABLE_SET.
795
+ The new named variable set version (by id) to be used for the geometry.
796
+ """
771
797
  def __init__(
772
798
  self,
773
799
  *,
@@ -777,9 +803,10 @@ class Modification(google.protobuf.message.Message):
777
803
  rename_tag: global___RenameTag | None = ...,
778
804
  delete_tag: global___DeleteTag | None = ...,
779
805
  delete_tags: global___DeleteTags | None = ...,
806
+ update_named_variable_set_version_id: builtins.str = ...,
780
807
  ) -> None: ...
781
808
  def HasField(self, field_name: typing_extensions.Literal["create_or_update_tag", b"create_or_update_tag", "delete_tag", b"delete_tag", "delete_tags", b"delete_tags", "feature", b"feature", "rename_tag", b"rename_tag"]) -> builtins.bool: ...
782
- def ClearField(self, field_name: typing_extensions.Literal["create_or_update_tag", b"create_or_update_tag", "delete_tag", b"delete_tag", "delete_tags", b"delete_tags", "feature", b"feature", "mod_type", b"mod_type", "rename_tag", b"rename_tag"]) -> None: ...
809
+ def ClearField(self, field_name: typing_extensions.Literal["create_or_update_tag", b"create_or_update_tag", "delete_tag", b"delete_tag", "delete_tags", b"delete_tags", "feature", b"feature", "mod_type", b"mod_type", "rename_tag", b"rename_tag", "update_named_variable_set_version_id", b"update_named_variable_set_version_id"]) -> None: ...
783
810
 
784
811
  global___Modification = Modification
785
812
 
@@ -18,7 +18,7 @@ from luminarycloud._proto.cad import shape_pb2 as proto_dot_cad_dot_shape__pb2
18
18
  from luminarycloud._proto.options import options_pb2 as proto_dot_options_dot_options__pb2
19
19
 
20
20
 
21
- DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1bproto/hexmesh/hexmesh.proto\x12\x16luminary.proto.hexmesh\x1a\x15proto/base/base.proto\x1a\x15proto/cad/shape.proto\x1a\x1bproto/options/options.proto\"{\n\x0fRefinementLevel\x12&\n\x08\x64istance\x18\x01 \x01(\x01\x42\x0f\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\x00\x00H\x00\x88\x01\x01\x12#\n\x05level\x18\x03 \x01(\x05\x42\x0f\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\x00@H\x01\x88\x01\x01\x42\x0b\n\t_distanceB\x08\n\x06_levelJ\x04\x08\x02\x10\x03\"\x8e\x01\n\x0eRefinementSpec\x12\x42\n\x11refinement_levels\x18\x01 \x03(\x0b\x32\'.luminary.proto.hexmesh.RefinementLevel\x12\x38\n\x04mode\x18\x02 \x01(\x0e\x32*.luminary.proto.hexmesh.RefinementSpecMode\"\'\n\nOutputInfo\x12\x19\n\x11output_lcmesh_url\x18\x01 \x01(\t\"j\n\x0e\x42\x61\x63kgroundMesh\x12(\n\x04\x63ube\x18\x01 \x01(\x0b\x32\x18.luminary.proto.cad.CubeH\x00\x12\x0b\n\x03n_x\x18\x08 \x01(\x05\x12\x0b\n\x03n_y\x18\t \x01(\x05\x12\x0b\n\x03n_z\x18\n \x01(\x05\x42\x07\n\x05shape\"\xae\x01\n\x12RefinementSurfaces\x12\x32\n\x14refinement_min_level\x18\x01 \x01(\x01\x42\x0f\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\x00@H\x00\x88\x01\x01\x12\x32\n\x14refinement_max_level\x18\x02 \x01(\x01\x42\x0f\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\x00@H\x01\x88\x01\x01\x42\x17\n\x15_refinement_min_levelB\x17\n\x15_refinement_max_level\"\x88\x05\n\x17\x43\x61stellatedMeshControls\x12(\n\x10max_global_cells\x18\x01 \x01(\x05\x42\t\x82\xb2\x19\x05\x30\x80\x84\xaf_H\x00\x88\x01\x01\x12)\n\x14min_refinement_cells\x18\x02 \x01(\x05\x42\x06\x82\xb2\x19\x02\x30\x64H\x01\x88\x01\x01\x12+\n\x16n_cells_between_levels\x18\x03 \x01(\x05\x42\x06\x82\xb2\x19\x02\x30\x03H\x02\x88\x01\x01\x12\x33\n\x15resolve_feature_angle\x18\x04 \x01(\x01\x42\x0f\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00N@H\x03\x88\x01\x01\x12\x36\n\x10location_in_mesh\x18\x05 \x01(\x0b\x32\x1c.luminary.proto.base.Vector3\x12N\n\x1aglobal_refinement_surfaces\x18\x06 \x01(\x0b\x32*.luminary.proto.hexmesh.RefinementSurfaces\x12\x64\n\x13refinement_surfaces\x18\t \x03(\x0b\x32G.luminary.proto.hexmesh.CastellatedMeshControls.RefinementSurfacesEntry\x1a\x65\n\x17RefinementSurfacesEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\x39\n\x05value\x18\x02 \x01(\x0b\x32*.luminary.proto.hexmesh.RefinementSurfaces:\x02\x38\x01\x42\x13\n\x11_max_global_cellsB\x17\n\x15_min_refinement_cellsB\x19\n\x17_n_cells_between_levelsB\x18\n\x16_resolve_feature_angle\"\x8e\x01\n\x0c\x46\x65\x61tureEdges\x12+\n\rfeature_angle\x18\x01 \x01(\x01\x42\x0f\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00>@H\x00\x88\x01\x01\x12?\n\x0frefinement_spec\x18\x02 \x01(\x0b\x32&.luminary.proto.hexmesh.RefinementSpecB\x10\n\x0e_feature_angle\"\xa7\x02\n\x0cSnapControls\x12#\n\x0en_smooth_patch\x18\x01 \x01(\x05\x42\x06\x82\xb2\x19\x02\x30\x03H\x00\x88\x01\x01\x12\'\n\ttolerance\x18\x02 \x01(\x01\x42\x0f\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\x10@H\x01\x88\x01\x01\x12!\n\x0cn_solve_iter\x18\x03 \x01(\x05\x42\x06\x82\xb2\x19\x02\x30\x1eH\x02\x88\x01\x01\x12!\n\x0cn_relax_iter\x18\x04 \x01(\x05\x42\x06\x82\xb2\x19\x02\x30\x05H\x03\x88\x01\x01\x12(\n\x13n_feature_snap_iter\x18\x05 \x01(\x05\x42\x06\x82\xb2\x19\x02\x30\nH\x04\x88\x01\x01\x42\x11\n\x0f_n_smooth_patchB\x0c\n\n_toleranceB\x0f\n\r_n_solve_iterB\x0f\n\r_n_relax_iterB\x16\n\x14_n_feature_snap_iter\"\xdb\n\n\x11\x41\x64\x64LayersControls\x12#\n\x0erelative_sizes\x18\x01 \x01(\x08\x42\x06\x82\xb2\x19\x02(\x01H\x00\x88\x01\x01\x12-\n\x0f\x65xpansion_ratio\x18\x02 \x01(\x01\x42\x0f\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\xf4?H\x01\x88\x01\x01\x12\x33\n\x15\x66inal_layer_thickness\x18\x03 \x01(\x01\x42\x0f\x82\xb2\x19\x0b\n\t\t333333\xd3?H\x02\x88\x01\x01\x12+\n\rmin_thickness\x18\x04 \x01(\x01\x42\x0f\x82\xb2\x19\x0b\n\t\t\x9a\x99\x99\x99\x99\x99\xb9?H\x03\x88\x01\x01\x12\x1b\n\x06n_grow\x18\x05 \x01(\x05\x42\x06\x82\xb2\x19\x02\x30\x00H\x04\x88\x01\x01\x12+\n\rfeature_angle\x18\x06 \x01(\x01\x42\x0f\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00N@H\x05\x88\x01\x01\x12\x30\n\x12slip_feature_angle\x18\x07 \x01(\x01\x42\x0f\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00N@H\x06\x88\x01\x01\x12!\n\x0cn_relax_iter\x18\x08 \x01(\x05\x42\x06\x82\xb2\x19\x02\x30\x03H\x07\x88\x01\x01\x12-\n\x18n_smooth_surface_normals\x18\t \x01(\x05\x42\x06\x82\xb2\x19\x02\x30\x01H\x08\x88\x01\x01\x12%\n\x10n_smooth_normals\x18\n \x01(\x05\x42\x06\x82\xb2\x19\x02\x30\x03H\t\x88\x01\x01\x12\'\n\x12n_smooth_thickness\x18\x0b \x01(\x05\x42\x06\x82\xb2\x19\x02\x30\nH\n\x88\x01\x01\x12\x36\n\x18max_face_thickness_ratio\x18\x0c \x01(\x01\x42\x0f\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\xe0?H\x0b\x88\x01\x01\x12;\n\x1dmax_thickness_to_medial_ratio\x18\r \x01(\x01\x42\x0f\x82\xb2\x19\x0b\n\t\t333333\xd3?H\x0c\x88\x01\x01\x12\x33\n\x15min_medial_axis_angle\x18\x0e \x01(\x01\x42\x0f\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x80V@H\r\x88\x01\x01\x12.\n\x19n_buffer_cells_no_extrude\x18\x0f \x01(\x05\x42\x06\x82\xb2\x19\x02\x30\x00H\x0e\x88\x01\x01\x12!\n\x0cn_layer_iter\x18\x10 \x01(\x05\x42\x06\x82\xb2\x19\x02\x30\x1eH\x0f\x88\x01\x01\x12,\n\x17global_n_surface_layers\x18\x11 \x01(\x05\x42\x06\x82\xb2\x19\x02\x30\nH\x10\x88\x01\x01\x12W\n\x10n_surface_layers\x18\x12 \x03(\x0b\x32=.luminary.proto.hexmesh.AddLayersControls.NSurfaceLayersEntry\x12!\n\x0cn_outer_iter\x18\x13 \x01(\x05\x42\x06\x82\xb2\x19\x02\x30\x01H\x11\x88\x01\x01\x1a\x35\n\x13NSurfaceLayersEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\x05:\x02\x38\x01\x42\x11\n\x0f_relative_sizesB\x12\n\x10_expansion_ratioB\x18\n\x16_final_layer_thicknessB\x10\n\x0e_min_thicknessB\t\n\x07_n_growB\x10\n\x0e_feature_angleB\x15\n\x13_slip_feature_angleB\x0f\n\r_n_relax_iterB\x1b\n\x19_n_smooth_surface_normalsB\x13\n\x11_n_smooth_normalsB\x15\n\x13_n_smooth_thicknessB\x1b\n\x19_max_face_thickness_ratioB \n\x1e_max_thickness_to_medial_ratioB\x18\n\x16_min_medial_axis_angleB\x1c\n\x1a_n_buffer_cells_no_extrudeB\x0f\n\r_n_layer_iterB\x1a\n\x18_global_n_surface_layersB\x0f\n\r_n_outer_iter\"\xa6\x01\n\x16RefinementRegionParams\x12\n\n\x02id\x18\x01 \x01(\t\x12\x0c\n\x04name\x18\x02 \x01(\t\x12(\n\x04\x63ube\x18\x03 \x01(\x0b\x32\x18.luminary.proto.cad.CubeH\x00\x12?\n\x0frefinement_spec\x18\x04 \x01(\x0b\x32&.luminary.proto.hexmesh.RefinementSpecB\x07\n\x05shape\"\xdc\x04\n\x15OpenfoamMeshShmConfig\x12G\n\x14global_feature_edges\x18\x01 \x01(\x0b\x32$.luminary.proto.hexmesh.FeatureEdgesH\x00\x88\x01\x01\x12V\n\rfeature_edges\x18\x05 \x03(\x0b\x32?.luminary.proto.hexmesh.OpenfoamMeshShmConfig.FeatureEdgesEntry\x12W\n\x19\x63\x61stellated_mesh_controls\x18\x02 \x01(\x0b\x32/.luminary.proto.hexmesh.CastellatedMeshControlsH\x01\x88\x01\x01\x12@\n\rsnap_controls\x18\x03 \x01(\x0b\x32$.luminary.proto.hexmesh.SnapControlsH\x02\x88\x01\x01\x12K\n\x13\x61\x64\x64_layers_controls\x18\x04 \x01(\x0b\x32).luminary.proto.hexmesh.AddLayersControlsH\x03\x88\x01\x01\x1aY\n\x11\x46\x65\x61tureEdgesEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\x33\n\x05value\x18\x02 \x01(\x0b\x32$.luminary.proto.hexmesh.FeatureEdges:\x02\x38\x01\x42\x17\n\x15_global_feature_edgesB\x1c\n\x1a_castellated_mesh_controlsB\x10\n\x0e_snap_controlsB\x16\n\x14_add_layers_controls\"\xc9\x05\n\x12OpenfoamMeshConfig\x12\x44\n\x0f\x62\x61\x63kground_mesh\x18\x02 \x01(\x0b\x32&.luminary.proto.hexmesh.BackgroundMeshH\x01\x88\x01\x01\x12J\n\x12refinement_regions\x18\x03 \x03(\x0b\x32..luminary.proto.hexmesh.RefinementRegionParams\x12o\n\x1crefinement_regions_from_stls\x18\x08 \x03(\x0b\x32I.luminary.proto.hexmesh.OpenfoamMeshConfig.RefinementRegionsFromStlsEntry\x12\x43\n\nshm_config\x18\x04 \x01(\x0b\x32-.luminary.proto.hexmesh.OpenfoamMeshShmConfigH\x00\x12\x37\n\x0boutput_info\x18\x05 \x01(\x0b\x32\".luminary.proto.hexmesh.OutputInfo\x12\x0f\n\x07mesh_id\x18\x06 \x01(\t\x12[\n\x12names_to_file_urls\x18\x07 \x03(\x0b\x32?.luminary.proto.hexmesh.OpenfoamMeshConfig.NamesToFileUrlsEntry\x1ah\n\x1eRefinementRegionsFromStlsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\x35\n\x05value\x18\x02 \x01(\x0b\x32&.luminary.proto.hexmesh.RefinementSpec:\x02\x38\x01\x1a\x36\n\x14NamesToFileUrlsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\x42\x08\n\x06\x63onfigB\x12\n\x10_background_meshJ\x04\x08\x01\x10\x02\"\xf8\x04\n\x0bHexMeshSpec\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\x44\n\x0f\x62\x61\x63kground_mesh\x18\x03 \x01(\x0b\x32&.luminary.proto.hexmesh.BackgroundMeshH\x01\x88\x01\x01\x12J\n\x12refinement_regions\x18\x04 \x03(\x0b\x32..luminary.proto.hexmesh.RefinementRegionParams\x12h\n\x1crefinement_regions_from_stls\x18\x07 \x03(\x0b\x32\x42.luminary.proto.hexmesh.HexMeshSpec.RefinementRegionsFromStlsEntry\x12\x43\n\nshm_config\x18\x05 \x01(\x0b\x32-.luminary.proto.hexmesh.OpenfoamMeshShmConfigH\x00\x12T\n\x12names_to_file_urls\x18\x06 \x03(\x0b\x32\x38.luminary.proto.hexmesh.HexMeshSpec.NamesToFileUrlsEntry\x1ah\n\x1eRefinementRegionsFromStlsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\x35\n\x05value\x18\x02 \x01(\x0b\x32&.luminary.proto.hexmesh.RefinementSpec:\x02\x38\x01\x1a\x36\n\x14NamesToFileUrlsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\x42\x08\n\x06\x63onfigB\x12\n\x10_background_meshJ\x04\x08\x01\x10\x02*~\n\x12RefinementSpecMode\x12$\n REFINEMENT_SPEC_MODE_UNSPECIFIED\x10\x00\x12\x1f\n\x1bREFINEMENT_SPEC_MODE_INSIDE\x10\x01\x12!\n\x1dREFINEMENT_SPEC_MODE_DISTANCE\x10\x02\x42&Z$luminarycloud.com/core/proto/hexmeshb\x06proto3')
21
+ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1bproto/hexmesh/hexmesh.proto\x12\x16luminary.proto.hexmesh\x1a\x15proto/base/base.proto\x1a\x15proto/cad/shape.proto\x1a\x1bproto/options/options.proto\"{\n\x0fRefinementLevel\x12&\n\x08\x64istance\x18\x01 \x01(\x01\x42\x0f\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\x00\x00H\x00\x88\x01\x01\x12#\n\x05level\x18\x03 \x01(\x05\x42\x0f\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\x00@H\x01\x88\x01\x01\x42\x0b\n\t_distanceB\x08\n\x06_levelJ\x04\x08\x02\x10\x03\"\x8e\x01\n\x0eRefinementSpec\x12\x42\n\x11refinement_levels\x18\x01 \x03(\x0b\x32\'.luminary.proto.hexmesh.RefinementLevel\x12\x38\n\x04mode\x18\x02 \x01(\x0e\x32*.luminary.proto.hexmesh.RefinementSpecMode\"\'\n\nOutputInfo\x12\x19\n\x11output_lcmesh_url\x18\x01 \x01(\t\"j\n\x0e\x42\x61\x63kgroundMesh\x12(\n\x04\x63ube\x18\x01 \x01(\x0b\x32\x18.luminary.proto.cad.CubeH\x00\x12\x0b\n\x03n_x\x18\x08 \x01(\x05\x12\x0b\n\x03n_y\x18\t \x01(\x05\x12\x0b\n\x03n_z\x18\n \x01(\x05\x42\x07\n\x05shape\"\xa8\x01\n\x12RefinementSurfaces\x12)\n\x14refinement_min_level\x18\x03 \x01(\x05\x42\x06\x82\xb2\x19\x02\x30\x02H\x00\x88\x01\x01\x12)\n\x14refinement_max_level\x18\x04 \x01(\x05\x42\x06\x82\xb2\x19\x02\x30\x02H\x01\x88\x01\x01\x42\x17\n\x15_refinement_min_levelB\x17\n\x15_refinement_max_levelJ\x04\x08\x01\x10\x02J\x04\x08\x02\x10\x03\"\x89\x05\n\x17\x43\x61stellatedMeshControls\x12)\n\x10max_global_cells\x18\x01 \x01(\x05\x42\n\x82\xb2\x19\x06\x30\x80\x88\xde\xbe\x01H\x00\x88\x01\x01\x12)\n\x14min_refinement_cells\x18\x02 \x01(\x05\x42\x06\x82\xb2\x19\x02\x30\x64H\x01\x88\x01\x01\x12+\n\x16n_cells_between_levels\x18\x03 \x01(\x05\x42\x06\x82\xb2\x19\x02\x30\x03H\x02\x88\x01\x01\x12\x33\n\x15resolve_feature_angle\x18\x04 \x01(\x01\x42\x0f\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00N@H\x03\x88\x01\x01\x12\x36\n\x10location_in_mesh\x18\x05 \x01(\x0b\x32\x1c.luminary.proto.base.Vector3\x12N\n\x1aglobal_refinement_surfaces\x18\x06 \x01(\x0b\x32*.luminary.proto.hexmesh.RefinementSurfaces\x12\x64\n\x13refinement_surfaces\x18\t \x03(\x0b\x32G.luminary.proto.hexmesh.CastellatedMeshControls.RefinementSurfacesEntry\x1a\x65\n\x17RefinementSurfacesEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\x39\n\x05value\x18\x02 \x01(\x0b\x32*.luminary.proto.hexmesh.RefinementSurfaces:\x02\x38\x01\x42\x13\n\x11_max_global_cellsB\x17\n\x15_min_refinement_cellsB\x19\n\x17_n_cells_between_levelsB\x18\n\x16_resolve_feature_angle\"\x8e\x01\n\x0c\x46\x65\x61tureEdges\x12+\n\rfeature_angle\x18\x01 \x01(\x01\x42\x0f\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00>@H\x00\x88\x01\x01\x12?\n\x0frefinement_spec\x18\x02 \x01(\x0b\x32&.luminary.proto.hexmesh.RefinementSpecB\x10\n\x0e_feature_angle\"\xa7\x02\n\x0cSnapControls\x12#\n\x0en_smooth_patch\x18\x01 \x01(\x05\x42\x06\x82\xb2\x19\x02\x30\x03H\x00\x88\x01\x01\x12\'\n\ttolerance\x18\x02 \x01(\x01\x42\x0f\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\x10@H\x01\x88\x01\x01\x12!\n\x0cn_solve_iter\x18\x03 \x01(\x05\x42\x06\x82\xb2\x19\x02\x30\x1eH\x02\x88\x01\x01\x12!\n\x0cn_relax_iter\x18\x04 \x01(\x05\x42\x06\x82\xb2\x19\x02\x30\x05H\x03\x88\x01\x01\x12(\n\x13n_feature_snap_iter\x18\x05 \x01(\x05\x42\x06\x82\xb2\x19\x02\x30\nH\x04\x88\x01\x01\x42\x11\n\x0f_n_smooth_patchB\x0c\n\n_toleranceB\x0f\n\r_n_solve_iterB\x0f\n\r_n_relax_iterB\x16\n\x14_n_feature_snap_iter\"\xdb\n\n\x11\x41\x64\x64LayersControls\x12#\n\x0erelative_sizes\x18\x01 \x01(\x08\x42\x06\x82\xb2\x19\x02(\x01H\x00\x88\x01\x01\x12-\n\x0f\x65xpansion_ratio\x18\x02 \x01(\x01\x42\x0f\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\xf4?H\x01\x88\x01\x01\x12\x33\n\x15\x66inal_layer_thickness\x18\x03 \x01(\x01\x42\x0f\x82\xb2\x19\x0b\n\t\t333333\xd3?H\x02\x88\x01\x01\x12+\n\rmin_thickness\x18\x04 \x01(\x01\x42\x0f\x82\xb2\x19\x0b\n\t\t\x9a\x99\x99\x99\x99\x99\xb9?H\x03\x88\x01\x01\x12\x1b\n\x06n_grow\x18\x05 \x01(\x05\x42\x06\x82\xb2\x19\x02\x30\x00H\x04\x88\x01\x01\x12+\n\rfeature_angle\x18\x06 \x01(\x01\x42\x0f\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00N@H\x05\x88\x01\x01\x12\x30\n\x12slip_feature_angle\x18\x07 \x01(\x01\x42\x0f\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00N@H\x06\x88\x01\x01\x12!\n\x0cn_relax_iter\x18\x08 \x01(\x05\x42\x06\x82\xb2\x19\x02\x30\x03H\x07\x88\x01\x01\x12-\n\x18n_smooth_surface_normals\x18\t \x01(\x05\x42\x06\x82\xb2\x19\x02\x30\x01H\x08\x88\x01\x01\x12%\n\x10n_smooth_normals\x18\n \x01(\x05\x42\x06\x82\xb2\x19\x02\x30\x03H\t\x88\x01\x01\x12\'\n\x12n_smooth_thickness\x18\x0b \x01(\x05\x42\x06\x82\xb2\x19\x02\x30\nH\n\x88\x01\x01\x12\x36\n\x18max_face_thickness_ratio\x18\x0c \x01(\x01\x42\x0f\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x00\xe0?H\x0b\x88\x01\x01\x12;\n\x1dmax_thickness_to_medial_ratio\x18\r \x01(\x01\x42\x0f\x82\xb2\x19\x0b\n\t\t333333\xd3?H\x0c\x88\x01\x01\x12\x33\n\x15min_medial_axis_angle\x18\x0e \x01(\x01\x42\x0f\x82\xb2\x19\x0b\n\t\t\x00\x00\x00\x00\x00\x80V@H\r\x88\x01\x01\x12.\n\x19n_buffer_cells_no_extrude\x18\x0f \x01(\x05\x42\x06\x82\xb2\x19\x02\x30\x00H\x0e\x88\x01\x01\x12!\n\x0cn_layer_iter\x18\x10 \x01(\x05\x42\x06\x82\xb2\x19\x02\x30\x1eH\x0f\x88\x01\x01\x12,\n\x17global_n_surface_layers\x18\x11 \x01(\x05\x42\x06\x82\xb2\x19\x02\x30\nH\x10\x88\x01\x01\x12W\n\x10n_surface_layers\x18\x12 \x03(\x0b\x32=.luminary.proto.hexmesh.AddLayersControls.NSurfaceLayersEntry\x12!\n\x0cn_outer_iter\x18\x13 \x01(\x05\x42\x06\x82\xb2\x19\x02\x30\x01H\x11\x88\x01\x01\x1a\x35\n\x13NSurfaceLayersEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\x05:\x02\x38\x01\x42\x11\n\x0f_relative_sizesB\x12\n\x10_expansion_ratioB\x18\n\x16_final_layer_thicknessB\x10\n\x0e_min_thicknessB\t\n\x07_n_growB\x10\n\x0e_feature_angleB\x15\n\x13_slip_feature_angleB\x0f\n\r_n_relax_iterB\x1b\n\x19_n_smooth_surface_normalsB\x13\n\x11_n_smooth_normalsB\x15\n\x13_n_smooth_thicknessB\x1b\n\x19_max_face_thickness_ratioB \n\x1e_max_thickness_to_medial_ratioB\x18\n\x16_min_medial_axis_angleB\x1c\n\x1a_n_buffer_cells_no_extrudeB\x0f\n\r_n_layer_iterB\x1a\n\x18_global_n_surface_layersB\x0f\n\r_n_outer_iter\"\xa6\x01\n\x16RefinementRegionParams\x12\n\n\x02id\x18\x01 \x01(\t\x12\x0c\n\x04name\x18\x02 \x01(\t\x12(\n\x04\x63ube\x18\x03 \x01(\x0b\x32\x18.luminary.proto.cad.CubeH\x00\x12?\n\x0frefinement_spec\x18\x04 \x01(\x0b\x32&.luminary.proto.hexmesh.RefinementSpecB\x07\n\x05shape\"\xdc\x04\n\x15OpenfoamMeshShmConfig\x12G\n\x14global_feature_edges\x18\x01 \x01(\x0b\x32$.luminary.proto.hexmesh.FeatureEdgesH\x00\x88\x01\x01\x12V\n\rfeature_edges\x18\x05 \x03(\x0b\x32?.luminary.proto.hexmesh.OpenfoamMeshShmConfig.FeatureEdgesEntry\x12W\n\x19\x63\x61stellated_mesh_controls\x18\x02 \x01(\x0b\x32/.luminary.proto.hexmesh.CastellatedMeshControlsH\x01\x88\x01\x01\x12@\n\rsnap_controls\x18\x03 \x01(\x0b\x32$.luminary.proto.hexmesh.SnapControlsH\x02\x88\x01\x01\x12K\n\x13\x61\x64\x64_layers_controls\x18\x04 \x01(\x0b\x32).luminary.proto.hexmesh.AddLayersControlsH\x03\x88\x01\x01\x1aY\n\x11\x46\x65\x61tureEdgesEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\x33\n\x05value\x18\x02 \x01(\x0b\x32$.luminary.proto.hexmesh.FeatureEdges:\x02\x38\x01\x42\x17\n\x15_global_feature_edgesB\x1c\n\x1a_castellated_mesh_controlsB\x10\n\x0e_snap_controlsB\x16\n\x14_add_layers_controls\"\xf5\x05\n\x12OpenfoamMeshConfig\x12\x44\n\x0f\x62\x61\x63kground_mesh\x18\x02 \x01(\x0b\x32&.luminary.proto.hexmesh.BackgroundMeshH\x01\x88\x01\x01\x12J\n\x12refinement_regions\x18\x03 \x03(\x0b\x32..luminary.proto.hexmesh.RefinementRegionParams\x12o\n\x1crefinement_regions_from_stls\x18\x08 \x03(\x0b\x32I.luminary.proto.hexmesh.OpenfoamMeshConfig.RefinementRegionsFromStlsEntry\x12\x43\n\nshm_config\x18\x04 \x01(\x0b\x32-.luminary.proto.hexmesh.OpenfoamMeshShmConfigH\x00\x12\x37\n\x0boutput_info\x18\x05 \x01(\x0b\x32\".luminary.proto.hexmesh.OutputInfo\x12\x0f\n\x07mesh_id\x18\x06 \x01(\t\x12[\n\x12names_to_file_urls\x18\x07 \x03(\x0b\x32?.luminary.proto.hexmesh.OpenfoamMeshConfig.NamesToFileUrlsEntry\x12\x1d\n\x08use_wrap\x18\t \x01(\x08\x42\x06\x82\xb2\x19\x02(\x00H\x02\x88\x01\x01\x1ah\n\x1eRefinementRegionsFromStlsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\x35\n\x05value\x18\x02 \x01(\x0b\x32&.luminary.proto.hexmesh.RefinementSpec:\x02\x38\x01\x1a\x36\n\x14NamesToFileUrlsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\x42\x08\n\x06\x63onfigB\x12\n\x10_background_meshB\x0b\n\t_use_wrapJ\x04\x08\x01\x10\x02\"\xa4\x05\n\x0bHexMeshSpec\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\x44\n\x0f\x62\x61\x63kground_mesh\x18\x03 \x01(\x0b\x32&.luminary.proto.hexmesh.BackgroundMeshH\x01\x88\x01\x01\x12J\n\x12refinement_regions\x18\x04 \x03(\x0b\x32..luminary.proto.hexmesh.RefinementRegionParams\x12h\n\x1crefinement_regions_from_stls\x18\x07 \x03(\x0b\x32\x42.luminary.proto.hexmesh.HexMeshSpec.RefinementRegionsFromStlsEntry\x12\x43\n\nshm_config\x18\x05 \x01(\x0b\x32-.luminary.proto.hexmesh.OpenfoamMeshShmConfigH\x00\x12T\n\x12names_to_file_urls\x18\x06 \x03(\x0b\x32\x38.luminary.proto.hexmesh.HexMeshSpec.NamesToFileUrlsEntry\x12\x1d\n\x08use_wrap\x18\x08 \x01(\x08\x42\x06\x82\xb2\x19\x02(\x00H\x02\x88\x01\x01\x1ah\n\x1eRefinementRegionsFromStlsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\x35\n\x05value\x18\x02 \x01(\x0b\x32&.luminary.proto.hexmesh.RefinementSpec:\x02\x38\x01\x1a\x36\n\x14NamesToFileUrlsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\x42\x08\n\x06\x63onfigB\x12\n\x10_background_meshB\x0b\n\t_use_wrapJ\x04\x08\x01\x10\x02*~\n\x12RefinementSpecMode\x12$\n REFINEMENT_SPEC_MODE_UNSPECIFIED\x10\x00\x12\x1f\n\x1bREFINEMENT_SPEC_MODE_INSIDE\x10\x01\x12!\n\x1dREFINEMENT_SPEC_MODE_DISTANCE\x10\x02\x42&Z$luminarycloud.com/core/proto/hexmeshb\x06proto3')
22
22
 
23
23
  _REFINEMENTSPECMODE = DESCRIPTOR.enum_types_by_name['RefinementSpecMode']
24
24
  RefinementSpecMode = enum_type_wrapper.EnumTypeWrapper(_REFINEMENTSPECMODE)
@@ -203,13 +203,13 @@ if _descriptor._USE_C_DESCRIPTORS == False:
203
203
  _REFINEMENTLEVEL.fields_by_name['level']._options = None
204
204
  _REFINEMENTLEVEL.fields_by_name['level']._serialized_options = b'\202\262\031\013\n\t\t\000\000\000\000\000\000\000@'
205
205
  _REFINEMENTSURFACES.fields_by_name['refinement_min_level']._options = None
206
- _REFINEMENTSURFACES.fields_by_name['refinement_min_level']._serialized_options = b'\202\262\031\013\n\t\t\000\000\000\000\000\000\000@'
206
+ _REFINEMENTSURFACES.fields_by_name['refinement_min_level']._serialized_options = b'\202\262\031\0020\002'
207
207
  _REFINEMENTSURFACES.fields_by_name['refinement_max_level']._options = None
208
- _REFINEMENTSURFACES.fields_by_name['refinement_max_level']._serialized_options = b'\202\262\031\013\n\t\t\000\000\000\000\000\000\000@'
208
+ _REFINEMENTSURFACES.fields_by_name['refinement_max_level']._serialized_options = b'\202\262\031\0020\002'
209
209
  _CASTELLATEDMESHCONTROLS_REFINEMENTSURFACESENTRY._options = None
210
210
  _CASTELLATEDMESHCONTROLS_REFINEMENTSURFACESENTRY._serialized_options = b'8\001'
211
211
  _CASTELLATEDMESHCONTROLS.fields_by_name['max_global_cells']._options = None
212
- _CASTELLATEDMESHCONTROLS.fields_by_name['max_global_cells']._serialized_options = b'\202\262\031\0050\200\204\257_'
212
+ _CASTELLATEDMESHCONTROLS.fields_by_name['max_global_cells']._serialized_options = b'\202\262\031\0060\200\210\336\276\001'
213
213
  _CASTELLATEDMESHCONTROLS.fields_by_name['min_refinement_cells']._options = None
214
214
  _CASTELLATEDMESHCONTROLS.fields_by_name['min_refinement_cells']._serialized_options = b'\202\262\031\0020d'
215
215
  _CASTELLATEDMESHCONTROLS.fields_by_name['n_cells_between_levels']._options = None
@@ -272,12 +272,16 @@ if _descriptor._USE_C_DESCRIPTORS == False:
272
272
  _OPENFOAMMESHCONFIG_REFINEMENTREGIONSFROMSTLSENTRY._serialized_options = b'8\001'
273
273
  _OPENFOAMMESHCONFIG_NAMESTOFILEURLSENTRY._options = None
274
274
  _OPENFOAMMESHCONFIG_NAMESTOFILEURLSENTRY._serialized_options = b'8\001'
275
+ _OPENFOAMMESHCONFIG.fields_by_name['use_wrap']._options = None
276
+ _OPENFOAMMESHCONFIG.fields_by_name['use_wrap']._serialized_options = b'\202\262\031\002(\000'
275
277
  _HEXMESHSPEC_REFINEMENTREGIONSFROMSTLSENTRY._options = None
276
278
  _HEXMESHSPEC_REFINEMENTREGIONSFROMSTLSENTRY._serialized_options = b'8\001'
277
279
  _HEXMESHSPEC_NAMESTOFILEURLSENTRY._options = None
278
280
  _HEXMESHSPEC_NAMESTOFILEURLSENTRY._serialized_options = b'8\001'
279
- _REFINEMENTSPECMODE._serialized_start=5321
280
- _REFINEMENTSPECMODE._serialized_end=5447
281
+ _HEXMESHSPEC.fields_by_name['use_wrap']._options = None
282
+ _HEXMESHSPEC.fields_by_name['use_wrap']._serialized_options = b'\202\262\031\002(\000'
283
+ _REFINEMENTSPECMODE._serialized_start=5404
284
+ _REFINEMENTSPECMODE._serialized_end=5530
281
285
  _REFINEMENTLEVEL._serialized_start=130
282
286
  _REFINEMENTLEVEL._serialized_end=253
283
287
  _REFINEMENTSPEC._serialized_start=256
@@ -287,35 +291,35 @@ if _descriptor._USE_C_DESCRIPTORS == False:
287
291
  _BACKGROUNDMESH._serialized_start=441
288
292
  _BACKGROUNDMESH._serialized_end=547
289
293
  _REFINEMENTSURFACES._serialized_start=550
290
- _REFINEMENTSURFACES._serialized_end=724
291
- _CASTELLATEDMESHCONTROLS._serialized_start=727
292
- _CASTELLATEDMESHCONTROLS._serialized_end=1375
293
- _CASTELLATEDMESHCONTROLS_REFINEMENTSURFACESENTRY._serialized_start=1175
294
- _CASTELLATEDMESHCONTROLS_REFINEMENTSURFACESENTRY._serialized_end=1276
295
- _FEATUREEDGES._serialized_start=1378
296
- _FEATUREEDGES._serialized_end=1520
297
- _SNAPCONTROLS._serialized_start=1523
298
- _SNAPCONTROLS._serialized_end=1818
299
- _ADDLAYERSCONTROLS._serialized_start=1821
300
- _ADDLAYERSCONTROLS._serialized_end=3192
301
- _ADDLAYERSCONTROLS_NSURFACELAYERSENTRY._serialized_start=2733
302
- _ADDLAYERSCONTROLS_NSURFACELAYERSENTRY._serialized_end=2786
303
- _REFINEMENTREGIONPARAMS._serialized_start=3195
304
- _REFINEMENTREGIONPARAMS._serialized_end=3361
305
- _OPENFOAMMESHSHMCONFIG._serialized_start=3364
306
- _OPENFOAMMESHSHMCONFIG._serialized_end=3968
307
- _OPENFOAMMESHSHMCONFIG_FEATUREEDGESENTRY._serialized_start=3782
308
- _OPENFOAMMESHSHMCONFIG_FEATUREEDGESENTRY._serialized_end=3871
309
- _OPENFOAMMESHCONFIG._serialized_start=3971
310
- _OPENFOAMMESHCONFIG._serialized_end=4684
311
- _OPENFOAMMESHCONFIG_REFINEMENTREGIONSFROMSTLSENTRY._serialized_start=4488
312
- _OPENFOAMMESHCONFIG_REFINEMENTREGIONSFROMSTLSENTRY._serialized_end=4592
313
- _OPENFOAMMESHCONFIG_NAMESTOFILEURLSENTRY._serialized_start=4594
314
- _OPENFOAMMESHCONFIG_NAMESTOFILEURLSENTRY._serialized_end=4648
315
- _HEXMESHSPEC._serialized_start=4687
316
- _HEXMESHSPEC._serialized_end=5319
317
- _HEXMESHSPEC_REFINEMENTREGIONSFROMSTLSENTRY._serialized_start=4488
318
- _HEXMESHSPEC_REFINEMENTREGIONSFROMSTLSENTRY._serialized_end=4592
319
- _HEXMESHSPEC_NAMESTOFILEURLSENTRY._serialized_start=4594
320
- _HEXMESHSPEC_NAMESTOFILEURLSENTRY._serialized_end=4648
294
+ _REFINEMENTSURFACES._serialized_end=718
295
+ _CASTELLATEDMESHCONTROLS._serialized_start=721
296
+ _CASTELLATEDMESHCONTROLS._serialized_end=1370
297
+ _CASTELLATEDMESHCONTROLS_REFINEMENTSURFACESENTRY._serialized_start=1170
298
+ _CASTELLATEDMESHCONTROLS_REFINEMENTSURFACESENTRY._serialized_end=1271
299
+ _FEATUREEDGES._serialized_start=1373
300
+ _FEATUREEDGES._serialized_end=1515
301
+ _SNAPCONTROLS._serialized_start=1518
302
+ _SNAPCONTROLS._serialized_end=1813
303
+ _ADDLAYERSCONTROLS._serialized_start=1816
304
+ _ADDLAYERSCONTROLS._serialized_end=3187
305
+ _ADDLAYERSCONTROLS_NSURFACELAYERSENTRY._serialized_start=2728
306
+ _ADDLAYERSCONTROLS_NSURFACELAYERSENTRY._serialized_end=2781
307
+ _REFINEMENTREGIONPARAMS._serialized_start=3190
308
+ _REFINEMENTREGIONPARAMS._serialized_end=3356
309
+ _OPENFOAMMESHSHMCONFIG._serialized_start=3359
310
+ _OPENFOAMMESHSHMCONFIG._serialized_end=3963
311
+ _OPENFOAMMESHSHMCONFIG_FEATUREEDGESENTRY._serialized_start=3777
312
+ _OPENFOAMMESHSHMCONFIG_FEATUREEDGESENTRY._serialized_end=3866
313
+ _OPENFOAMMESHCONFIG._serialized_start=3966
314
+ _OPENFOAMMESHCONFIG._serialized_end=4723
315
+ _OPENFOAMMESHCONFIG_REFINEMENTREGIONSFROMSTLSENTRY._serialized_start=4514
316
+ _OPENFOAMMESHCONFIG_REFINEMENTREGIONSFROMSTLSENTRY._serialized_end=4618
317
+ _OPENFOAMMESHCONFIG_NAMESTOFILEURLSENTRY._serialized_start=4620
318
+ _OPENFOAMMESHCONFIG_NAMESTOFILEURLSENTRY._serialized_end=4674
319
+ _HEXMESHSPEC._serialized_start=4726
320
+ _HEXMESHSPEC._serialized_end=5402
321
+ _HEXMESHSPEC_REFINEMENTREGIONSFROMSTLSENTRY._serialized_start=4514
322
+ _HEXMESHSPEC_REFINEMENTREGIONSFROMSTLSENTRY._serialized_end=4618
323
+ _HEXMESHSPEC_NAMESTOFILEURLSENTRY._serialized_start=4620
324
+ _HEXMESHSPEC_NAMESTOFILEURLSENTRY._serialized_end=4674
321
325
  # @@protoc_insertion_point(module_scope)
@@ -127,13 +127,13 @@ class RefinementSurfaces(google.protobuf.message.Message):
127
127
 
128
128
  REFINEMENT_MIN_LEVEL_FIELD_NUMBER: builtins.int
129
129
  REFINEMENT_MAX_LEVEL_FIELD_NUMBER: builtins.int
130
- refinement_min_level: builtins.float
131
- refinement_max_level: builtins.float
130
+ refinement_min_level: builtins.int
131
+ refinement_max_level: builtins.int
132
132
  def __init__(
133
133
  self,
134
134
  *,
135
- refinement_min_level: builtins.float | None = ...,
136
- refinement_max_level: builtins.float | None = ...,
135
+ refinement_min_level: builtins.int | None = ...,
136
+ refinement_max_level: builtins.int | None = ...,
137
137
  ) -> None: ...
138
138
  def HasField(self, field_name: typing_extensions.Literal["_refinement_max_level", b"_refinement_max_level", "_refinement_min_level", b"_refinement_min_level", "refinement_max_level", b"refinement_max_level", "refinement_min_level", b"refinement_min_level"]) -> builtins.bool: ...
139
139
  def ClearField(self, field_name: typing_extensions.Literal["_refinement_max_level", b"_refinement_max_level", "_refinement_min_level", b"_refinement_min_level", "refinement_max_level", b"refinement_max_level", "refinement_min_level", b"refinement_min_level"]) -> None: ...
@@ -533,6 +533,7 @@ class OpenfoamMeshConfig(google.protobuf.message.Message):
533
533
  OUTPUT_INFO_FIELD_NUMBER: builtins.int
534
534
  MESH_ID_FIELD_NUMBER: builtins.int
535
535
  NAMES_TO_FILE_URLS_FIELD_NUMBER: builtins.int
536
+ USE_WRAP_FIELD_NUMBER: builtins.int
536
537
  @property
537
538
  def background_mesh(self) -> global___BackgroundMesh:
538
539
  """string input_url = 1;"""
@@ -553,6 +554,7 @@ class OpenfoamMeshConfig(google.protobuf.message.Message):
553
554
  @property
554
555
  def names_to_file_urls(self) -> google.protobuf.internal.containers.ScalarMap[builtins.str, builtins.str]:
555
556
  """Map of names to STL files guaranteeing unique names."""
557
+ use_wrap: builtins.bool
556
558
  def __init__(
557
559
  self,
558
560
  *,
@@ -563,12 +565,15 @@ class OpenfoamMeshConfig(google.protobuf.message.Message):
563
565
  output_info: global___OutputInfo | None = ...,
564
566
  mesh_id: builtins.str = ...,
565
567
  names_to_file_urls: collections.abc.Mapping[builtins.str, builtins.str] | None = ...,
568
+ use_wrap: builtins.bool | None = ...,
566
569
  ) -> None: ...
567
- def HasField(self, field_name: typing_extensions.Literal["_background_mesh", b"_background_mesh", "background_mesh", b"background_mesh", "config", b"config", "output_info", b"output_info", "shm_config", b"shm_config"]) -> builtins.bool: ...
568
- def ClearField(self, field_name: typing_extensions.Literal["_background_mesh", b"_background_mesh", "background_mesh", b"background_mesh", "config", b"config", "mesh_id", b"mesh_id", "names_to_file_urls", b"names_to_file_urls", "output_info", b"output_info", "refinement_regions", b"refinement_regions", "refinement_regions_from_stls", b"refinement_regions_from_stls", "shm_config", b"shm_config"]) -> None: ...
570
+ def HasField(self, field_name: typing_extensions.Literal["_background_mesh", b"_background_mesh", "_use_wrap", b"_use_wrap", "background_mesh", b"background_mesh", "config", b"config", "output_info", b"output_info", "shm_config", b"shm_config", "use_wrap", b"use_wrap"]) -> builtins.bool: ...
571
+ def ClearField(self, field_name: typing_extensions.Literal["_background_mesh", b"_background_mesh", "_use_wrap", b"_use_wrap", "background_mesh", b"background_mesh", "config", b"config", "mesh_id", b"mesh_id", "names_to_file_urls", b"names_to_file_urls", "output_info", b"output_info", "refinement_regions", b"refinement_regions", "refinement_regions_from_stls", b"refinement_regions_from_stls", "shm_config", b"shm_config", "use_wrap", b"use_wrap"]) -> None: ...
569
572
  @typing.overload
570
573
  def WhichOneof(self, oneof_group: typing_extensions.Literal["_background_mesh", b"_background_mesh"]) -> typing_extensions.Literal["background_mesh"] | None: ...
571
574
  @typing.overload
575
+ def WhichOneof(self, oneof_group: typing_extensions.Literal["_use_wrap", b"_use_wrap"]) -> typing_extensions.Literal["use_wrap"] | None: ...
576
+ @typing.overload
572
577
  def WhichOneof(self, oneof_group: typing_extensions.Literal["config", b"config"]) -> typing_extensions.Literal["shm_config"] | None: ...
573
578
 
574
579
  global___OpenfoamMeshConfig = OpenfoamMeshConfig
@@ -614,6 +619,7 @@ class HexMeshSpec(google.protobuf.message.Message):
614
619
  REFINEMENT_REGIONS_FROM_STLS_FIELD_NUMBER: builtins.int
615
620
  SHM_CONFIG_FIELD_NUMBER: builtins.int
616
621
  NAMES_TO_FILE_URLS_FIELD_NUMBER: builtins.int
622
+ USE_WRAP_FIELD_NUMBER: builtins.int
617
623
  name: builtins.str
618
624
  @property
619
625
  def background_mesh(self) -> global___BackgroundMesh: ...
@@ -628,6 +634,7 @@ class HexMeshSpec(google.protobuf.message.Message):
628
634
  @property
629
635
  def names_to_file_urls(self) -> google.protobuf.internal.containers.ScalarMap[builtins.str, builtins.str]:
630
636
  """Map of names to STL files guaranteeing unique names."""
637
+ use_wrap: builtins.bool
631
638
  def __init__(
632
639
  self,
633
640
  *,
@@ -637,12 +644,15 @@ class HexMeshSpec(google.protobuf.message.Message):
637
644
  refinement_regions_from_stls: collections.abc.Mapping[builtins.str, global___RefinementSpec] | None = ...,
638
645
  shm_config: global___OpenfoamMeshShmConfig | None = ...,
639
646
  names_to_file_urls: collections.abc.Mapping[builtins.str, builtins.str] | None = ...,
647
+ use_wrap: builtins.bool | None = ...,
640
648
  ) -> None: ...
641
- def HasField(self, field_name: typing_extensions.Literal["_background_mesh", b"_background_mesh", "background_mesh", b"background_mesh", "config", b"config", "shm_config", b"shm_config"]) -> builtins.bool: ...
642
- def ClearField(self, field_name: typing_extensions.Literal["_background_mesh", b"_background_mesh", "background_mesh", b"background_mesh", "config", b"config", "name", b"name", "names_to_file_urls", b"names_to_file_urls", "refinement_regions", b"refinement_regions", "refinement_regions_from_stls", b"refinement_regions_from_stls", "shm_config", b"shm_config"]) -> None: ...
649
+ def HasField(self, field_name: typing_extensions.Literal["_background_mesh", b"_background_mesh", "_use_wrap", b"_use_wrap", "background_mesh", b"background_mesh", "config", b"config", "shm_config", b"shm_config", "use_wrap", b"use_wrap"]) -> builtins.bool: ...
650
+ def ClearField(self, field_name: typing_extensions.Literal["_background_mesh", b"_background_mesh", "_use_wrap", b"_use_wrap", "background_mesh", b"background_mesh", "config", b"config", "name", b"name", "names_to_file_urls", b"names_to_file_urls", "refinement_regions", b"refinement_regions", "refinement_regions_from_stls", b"refinement_regions_from_stls", "shm_config", b"shm_config", "use_wrap", b"use_wrap"]) -> None: ...
643
651
  @typing.overload
644
652
  def WhichOneof(self, oneof_group: typing_extensions.Literal["_background_mesh", b"_background_mesh"]) -> typing_extensions.Literal["background_mesh"] | None: ...
645
653
  @typing.overload
654
+ def WhichOneof(self, oneof_group: typing_extensions.Literal["_use_wrap", b"_use_wrap"]) -> typing_extensions.Literal["use_wrap"] | None: ...
655
+ @typing.overload
646
656
  def WhichOneof(self, oneof_group: typing_extensions.Literal["config", b"config"]) -> typing_extensions.Literal["shm_config"] | None: ...
647
657
 
648
658
  global___HexMeshSpec = HexMeshSpec