ansys-pyensight-core 0.8.4__py3-none-any.whl → 0.8.5__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.

Potentially problematic release.


This version of ansys-pyensight-core might be problematic. Click here for more details.

Files changed (26) hide show
  1. ansys/pyensight/core/exts/ansys.geometry.service/ansys/geometry/service/__init__.py +1 -0
  2. ansys/pyensight/core/exts/ansys.geometry.service/ansys/geometry/service/extension.py +366 -0
  3. ansys/pyensight/core/exts/ansys.geometry.service/config/extension.toml +58 -0
  4. ansys/pyensight/core/exts/ansys.geometry.service/data/icon.png +0 -0
  5. ansys/pyensight/core/exts/ansys.geometry.service/data/preview.png +0 -0
  6. ansys/pyensight/core/exts/ansys.geometry.service/docs/CHANGELOG.md +8 -0
  7. ansys/pyensight/core/exts/ansys.geometry.service/docs/README.md +13 -0
  8. ansys/pyensight/core/exts/ansys.geometry.service/docs/index.rst +18 -0
  9. ansys/pyensight/core/exts/ansys.geometry.serviceui/ansys/geometry/serviceui/__init__.py +1 -0
  10. ansys/pyensight/core/exts/ansys.geometry.serviceui/ansys/geometry/serviceui/extension.py +170 -0
  11. ansys/pyensight/core/exts/ansys.geometry.serviceui/config/extension.toml +49 -0
  12. ansys/pyensight/core/exts/ansys.geometry.serviceui/data/icon.png +0 -0
  13. ansys/pyensight/core/exts/ansys.geometry.serviceui/data/preview.png +0 -0
  14. ansys/pyensight/core/exts/ansys.geometry.serviceui/docs/CHANGELOG.md +8 -0
  15. ansys/pyensight/core/exts/ansys.geometry.serviceui/docs/README.md +13 -0
  16. ansys/pyensight/core/exts/ansys.geometry.serviceui/docs/index.rst +18 -0
  17. ansys/pyensight/core/launcher.py +36 -1
  18. ansys/pyensight/core/locallauncher.py +3 -1
  19. ansys/pyensight/core/utils/dsg_server.py +29 -11
  20. ansys/pyensight/core/utils/omniverse.py +151 -95
  21. ansys/pyensight/core/utils/omniverse_dsg_server.py +85 -36
  22. {ansys_pyensight_core-0.8.4.dist-info → ansys_pyensight_core-0.8.5.dist-info}/METADATA +1 -1
  23. ansys_pyensight_core-0.8.5.dist-info/RECORD +52 -0
  24. ansys_pyensight_core-0.8.4.dist-info/RECORD +0 -36
  25. {ansys_pyensight_core-0.8.4.dist-info → ansys_pyensight_core-0.8.5.dist-info}/LICENSE +0 -0
  26. {ansys_pyensight_core-0.8.4.dist-info → ansys_pyensight_core-0.8.5.dist-info}/WHEEL +0 -0
@@ -232,18 +232,31 @@ class OmniverseWrapper:
232
232
  -------
233
233
  A unique USD name.
234
234
  """
235
+ orig_name = name
235
236
  # return any previously generated name
236
237
  if (name, id_name) in self._cleaned_names:
237
238
  return self._cleaned_names[(name, id_name)]
238
239
  # replace invalid characters. EnSight uses a number of characters that are illegal in USD names.
239
- name = name.replace("+", "_").replace("-", "_")
240
- name = name.replace(".", "_").replace(":", "_")
241
- name = name.replace("[", "_").replace("]", "_")
242
- name = name.replace("(", "_").replace(")", "_")
243
- name = name.replace("<", "_").replace(">", "_")
244
- name = name.replace("/", "_").replace("=", "_")
245
- name = name.replace(",", "_").replace(" ", "_")
246
- name = name.replace("\\", "_")
240
+ replacements = {
241
+ ord("+"): "_",
242
+ ord("-"): "_",
243
+ ord("."): "_",
244
+ ord(":"): "_",
245
+ ord("["): "_",
246
+ ord("]"): "_",
247
+ ord("("): "_",
248
+ ord(")"): "_",
249
+ ord("<"): "_",
250
+ ord(">"): "_",
251
+ ord("/"): "_",
252
+ ord("="): "_",
253
+ ord(","): "_",
254
+ ord(" "): "_",
255
+ ord("\\"): "_",
256
+ }
257
+ name = name.translate(replacements)
258
+ if name[0].isdigit():
259
+ name = f"_{name}"
247
260
  if id_name is not None:
248
261
  name = name + "_" + str(id_name)
249
262
  if name in self._cleaned_names.values():
@@ -252,7 +265,7 @@ class OmniverseWrapper:
252
265
  self._cleaned_index += 1
253
266
  name = f"{name}_{self._cleaned_index}"
254
267
  # store off the cleaned name
255
- self._cleaned_names[(name, id_name)] = name
268
+ self._cleaned_names[(orig_name, id_name)] = name
256
269
  return name
257
270
 
258
271
  @staticmethod
@@ -300,10 +313,11 @@ class OmniverseWrapper:
300
313
  matrix=[1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0],
301
314
  diffuse=[1.0, 1.0, 1.0, 1.0],
302
315
  variable=None,
316
+ timeline=[0.0, 0.0],
303
317
  ):
304
318
  # 1D texture map for variables https://graphics.pixar.com/usd/release/tut_simple_shading.html
305
319
  # create the part usd object
306
- partname = self.clean_name(name, id)
320
+ partname = self.clean_name(name + str(timeline[0]))
307
321
  stage_name = "/Parts/" + partname + ".usd"
308
322
  part_stage_url = self.stage_url(stage_name)
309
323
  omni.client.delete(part_stage_url)
@@ -342,13 +356,26 @@ class OmniverseWrapper:
342
356
  self.create_dsg_material(
343
357
  part_stage, mesh, "/" + partname, diffuse=diffuse, variable=variable
344
358
  )
345
- part_stage.GetRootLayer().Save()
359
+
360
+ # add a layer in the group hierarchy for the timestep
361
+ timestep_group_path = parent_prim.GetPath().AppendChild(
362
+ self.clean_name("t" + str(timeline[0]), None)
363
+ )
364
+ timestep_prim = UsdGeom.Xform.Define(self._stage, timestep_group_path)
365
+ visibility_attr = UsdGeom.Imageable(timestep_prim).GetVisibilityAttr()
366
+ visibility_attr.Set("invisible", Usd.TimeCode.EarliestTime())
367
+ visibility_attr.Set("inherited", timeline[0])
368
+ # Final timestep has timeline[0]==timeline[1]. Leave final timestep visible.
369
+ if timeline[0] < timeline[1]:
370
+ visibility_attr.Set("invisible", timeline[1])
346
371
 
347
372
  # glue it into our stage
348
- path = parent_prim.GetPath().AppendChild("part_ref_" + partname)
373
+ path = timestep_prim.GetPath().AppendChild("part_ref_" + partname)
349
374
  part_ref = self._stage.OverridePrim(path)
350
375
  part_ref.GetReferences().AddReference("." + stage_name)
351
376
 
377
+ part_stage.GetRootLayer().Save()
378
+
352
379
  return part_stage_url
353
380
 
354
381
  def create_dsg_material(
@@ -413,13 +440,15 @@ class OmniverseWrapper:
413
440
  omni.client.delete(uriPath)
414
441
  omni.client.copy("scratch/Textures", uriPath)
415
442
 
416
- def create_dsg_root(self, camera=None):
443
+ def create_dsg_root(self):
417
444
  root_name = "/Root"
418
445
  root_prim = UsdGeom.Xform.Define(self._stage, root_name)
419
446
  # Define the defaultPrim as the /Root prim
420
447
  root_prim = self._stage.GetPrimAtPath(root_name)
421
448
  self._stage.SetDefaultPrim(root_prim)
449
+ return root_prim
422
450
 
451
+ def update_camera(self, camera):
423
452
  if camera is not None:
424
453
  cam_name = "/Root/Cam"
425
454
  cam_prim = UsdGeom.Xform.Define(self._stage, cam_name)
@@ -454,7 +483,6 @@ class OmniverseWrapper:
454
483
 
455
484
  # set the updated camera
456
485
  geom_cam.SetFromCamera(cam)
457
- return root_prim
458
486
 
459
487
  def create_dsg_group(
460
488
  self,
@@ -481,19 +509,22 @@ class OmniverseWrapper:
481
509
  ],
482
510
  ):
483
511
  path = parent_prim.GetPath().AppendChild(self.clean_name(name))
484
- group_prim = UsdGeom.Xform.Define(self._stage, path)
485
- # At present, the group transforms have been cooked into the vertices so this is not needed
486
- matrixOp = group_prim.AddXformOp(
487
- UsdGeom.XformOp.TypeTransform, UsdGeom.XformOp.PrecisionDouble
488
- )
489
- matrixOp.Set(Gf.Matrix4d(*matrix).GetTranspose())
490
- self.log(f"Created group:'{name}' {str(obj_type)}")
512
+ group_prim = UsdGeom.Xform.Get(self._stage, path)
513
+ if not group_prim:
514
+ group_prim = UsdGeom.Xform.Define(self._stage, path)
515
+ # At present, the group transforms have been cooked into the vertices so this is not needed
516
+ matrixOp = group_prim.AddXformOp(
517
+ UsdGeom.XformOp.TypeTransform, UsdGeom.XformOp.PrecisionDouble
518
+ )
519
+ matrixOp.Set(Gf.Matrix4d(*matrix).GetTranspose())
520
+ self.log(f"Created group:'{name}' {str(obj_type)}")
491
521
  return group_prim
492
522
 
493
523
  def uploadMaterial(self):
494
524
  uriPath = self._destinationPath + "/Materials"
495
525
  omni.client.delete(uriPath)
496
- omni.client.copy("resources/Materials", uriPath)
526
+ fullpath = os.path.join(os.path.dirname(__file__), "resources", "Materials")
527
+ omni.client.copy(fullpath, uriPath)
497
528
 
498
529
  def createMaterial(self, mesh):
499
530
  # Create a material instance for this in USD
@@ -609,6 +640,8 @@ class OmniverseUpdateHandler(UpdateHandler):
609
640
  super().__init__()
610
641
  self._omni = omni
611
642
  self._group_prims: Dict[int, Any] = dict()
643
+ self._root_prim = None
644
+ self._sent_textures = False
612
645
 
613
646
  def add_group(self, id: int, view: bool = False) -> None:
614
647
  super().add_group(id, view)
@@ -624,26 +657,31 @@ class OmniverseUpdateHandler(UpdateHandler):
624
657
  else:
625
658
  # Map a view command into a new Omniverse stage and populate it with materials/lights.
626
659
  # Create a new root stage in Omniverse
627
- self._omni.create_new_stage()
628
- # Create the root group/camera
629
- camera_info = group
630
- if self.session.vrmode:
631
- camera_info = None
632
- prim = self._omni.create_dsg_root(camera=camera_info)
633
- # Create a distance and dome light in the scene
634
- self._omni.createDomeLight("./Materials/000_sky.exr")
635
- # Upload a material and textures to the Omniverse server
636
- self._omni.uploadMaterial()
637
- self._omni.create_dsg_variable_textures(self.session.variables)
638
- # record
639
- self._group_prims[id] = prim
660
+
661
+ # Create or update the root group/camera
662
+ if not self.session.vrmode:
663
+ self._omni.update_camera(camera=group)
664
+
665
+ # record
666
+ self._group_prims[id] = self._root_prim
667
+
668
+ if self._omni._stage is not None:
669
+ self._omni._stage.SetStartTimeCode(self.session.time_limits[0])
670
+ self._omni._stage.SetEndTimeCode(self.session.time_limits[1])
671
+ self._omni._stage.SetTimeCodesPerSecond(1)
672
+ self._omni._stage.SetFramesPerSecond(1)
673
+
674
+ # Send the variable textures. Safe to do so once the first view is processed.
675
+ if not self._sent_textures:
676
+ self._omni.create_dsg_variable_textures(self.session.variables)
677
+ self._sent_textures = True
640
678
 
641
679
  def add_variable(self, id: int) -> None:
642
680
  super().add_variable(id)
643
681
 
644
682
  def finalize_part(self, part: Part) -> None:
645
683
  # generate an Omniverse compliant mesh from the Part
646
- command, verts, conn, normals, tcoords, var_cmd = part.build()
684
+ command, verts, conn, normals, tcoords, var_cmd = part.nodal_surface_rep()
647
685
  if command is None:
648
686
  return
649
687
  parent_prim = self._group_prims[command.parent_id]
@@ -668,6 +706,7 @@ class OmniverseUpdateHandler(UpdateHandler):
668
706
  matrix=matrix,
669
707
  diffuse=color,
670
708
  variable=var_cmd,
709
+ timeline=self.session.cur_timeline,
671
710
  )
672
711
  super().finalize_part(part)
673
712
 
@@ -684,6 +723,14 @@ class OmniverseUpdateHandler(UpdateHandler):
684
723
  # clear the group Omni prims list
685
724
  self._group_prims = dict()
686
725
 
726
+ self._omni.create_new_stage()
727
+ self._root_prim = self._omni.create_dsg_root()
728
+ # Create a distance and dome light in the scene
729
+ self._omni.createDomeLight("./Materials/000_sky.exr")
730
+ # Upload a material to the Omniverse server
731
+ self._omni.uploadMaterial()
732
+ self._sent_textures = False
733
+
687
734
  def end_update(self) -> None:
688
735
  super().end_update()
689
736
  # Stage update complete
@@ -810,6 +857,8 @@ if __name__ == "__main__":
810
857
 
811
858
  # Simple pull request
812
859
  dsg_link.request_an_update(animation=args.animation)
860
+ # Handle the update block
861
+ dsg_link.handle_one_update()
813
862
 
814
863
  # Live operation
815
864
  if args.live:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: ansys-pyensight-core
3
- Version: 0.8.4
3
+ Version: 0.8.5
4
4
  Summary: A python wrapper for Ansys EnSight
5
5
  Author-email: "ANSYS, Inc." <pyansys.core@ansys.com>
6
6
  Maintainer-email: "ANSYS, Inc." <pyansys.core@ansys.com>
@@ -0,0 +1,52 @@
1
+ ansys/pyensight/core/__init__.py,sha256=6iKVEEtxt-6mw7wu_AocOGYO1T1WYHAnk-X_jeTeA8k,828
2
+ ansys/pyensight/core/deep_pixel_view.html,sha256=oZmcCIS3Dqqsoj8oheYubLAH2ZVKXao3iJM2WXYBEKs,3421
3
+ ansys/pyensight/core/dockerlauncher.py,sha256=8ZqwIMtXvb2knax1SvhysstZuMRpc_9MXdatXF1UCHA,28203
4
+ ansys/pyensight/core/enscontext.py,sha256=GSKkjZt1QEPyHEQ59EEBgKGMik9vjCdR9coR4uX7fEw,12141
5
+ ansys/pyensight/core/enshell_grpc.py,sha256=ijRcByqdG0ZIi958Co860w2mnBIklfguI6s8sewcR8Q,15904
6
+ ansys/pyensight/core/ensight_grpc.py,sha256=BJaErleSPrtI8myTIh0m9awFWPaUxrQmHpbuyR3RpM4,16847
7
+ ansys/pyensight/core/ensobj.py,sha256=uDtM2KHcAwd4hu5pcUYWbSD729ApHGIvuqZhEq8PxTI,18558
8
+ ansys/pyensight/core/launch_ensight.py,sha256=UyTDDmxru864YAihTY9EQ5NIbKFRiLpWGPHMu7JUgyY,6175
9
+ ansys/pyensight/core/launcher.py,sha256=izjzeLapNIVP8vsA1-mET7qP6yjzI-M1q85w7C5fHSc,12280
10
+ ansys/pyensight/core/listobj.py,sha256=Trw87IxIMXtmUd1DzywRmMzORU704AG4scX4fqYmO6M,9340
11
+ ansys/pyensight/core/locallauncher.py,sha256=1yrWTba98BdiEz7q6-N4_wlR6s10s9Xs2eQur5tNeyc,14134
12
+ ansys/pyensight/core/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
13
+ ansys/pyensight/core/renderable.py,sha256=hm4sXV-ZcpdfC_AJexycAX8zdsbWnsd-tMeUvewGekE,35003
14
+ ansys/pyensight/core/session.py,sha256=AHTRbX0sDlvtUf8lyRoXetiICmLWO7n26Ni9lMy7tBY,74363
15
+ ansys/pyensight/core/sgeo_poll.html,sha256=1M4BIc5CZpYA3b40qzk22NcPCLhjFnWdoS2PrS6Rhn4,752
16
+ ansys/pyensight/core/exts/ansys.geometry.service/ansys/geometry/service/__init__.py,sha256=jWNP3Ue7YZpXD9xopEkwbDillK_lkrMkoPLjDRmcSWQ,26
17
+ ansys/pyensight/core/exts/ansys.geometry.service/ansys/geometry/service/extension.py,sha256=ogmJ6tSaaZybMO293lnGfaklNn-YfnHnWq9r8Yjf8_Y,13296
18
+ ansys/pyensight/core/exts/ansys.geometry.service/config/extension.toml,sha256=W9tVPrsi3m1_8B-orsCdpNC0Jh2xIe29Y_-YVXms2vQ,2210
19
+ ansys/pyensight/core/exts/ansys.geometry.service/data/icon.png,sha256=FCgr8efQzzkskh9a5W54VX8HXqyAMDkto0c0twoRZjg,24160
20
+ ansys/pyensight/core/exts/ansys.geometry.service/data/preview.png,sha256=7Ac7dYZWWbjrZNohJs1AC0F5FKZFFK9tt_xzFuLCKhY,842766
21
+ ansys/pyensight/core/exts/ansys.geometry.service/docs/CHANGELOG.md,sha256=EnL6fvHVrfCetzBnEe3LnmyHYB9tFCx-wzwCLh6VrJg,184
22
+ ansys/pyensight/core/exts/ansys.geometry.service/docs/README.md,sha256=nBZQ7em3Tk9td5atzsfhl3X9LX4UUH3S7Iawb68HAqU,558
23
+ ansys/pyensight/core/exts/ansys.geometry.service/docs/index.rst,sha256=Zib6dVTosDVOagTBGVxXmQX4GKJVc0l2GYJxK6wm92s,322
24
+ ansys/pyensight/core/exts/ansys.geometry.serviceui/ansys/geometry/serviceui/__init__.py,sha256=jWNP3Ue7YZpXD9xopEkwbDillK_lkrMkoPLjDRmcSWQ,26
25
+ ansys/pyensight/core/exts/ansys.geometry.serviceui/ansys/geometry/serviceui/extension.py,sha256=gvaZWLowLJL4ZHT-5f2b0Rm80wd-BqpubjYXLCnP0MA,6794
26
+ ansys/pyensight/core/exts/ansys.geometry.serviceui/config/extension.toml,sha256=LsYgBt1Ex3uztEpbDcxbQOu98rwlZVxH2LM1gRGa3-c,1788
27
+ ansys/pyensight/core/exts/ansys.geometry.serviceui/data/icon.png,sha256=FCgr8efQzzkskh9a5W54VX8HXqyAMDkto0c0twoRZjg,24160
28
+ ansys/pyensight/core/exts/ansys.geometry.serviceui/data/preview.png,sha256=wC82tRKXp-DHEdg2weOKvmyGjddlRScGWCOHAnzzkm0,824063
29
+ ansys/pyensight/core/exts/ansys.geometry.serviceui/docs/CHANGELOG.md,sha256=2-em3VGioHMdiFBMQuRSJ71HS5NrHhbBVID6q9k3Sls,181
30
+ ansys/pyensight/core/exts/ansys.geometry.serviceui/docs/README.md,sha256=dWqtrZ-qs0bSSanULQ1m44W1FdUcfF5hKIK4sKYoW1c,552
31
+ ansys/pyensight/core/exts/ansys.geometry.serviceui/docs/index.rst,sha256=Q18IW65rMYg1rCufMQYqpMPbeSnY0alKHgvN1ENr5Sc,328
32
+ ansys/pyensight/core/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
33
+ ansys/pyensight/core/utils/adr.py,sha256=XslZhlwcrSGzOlnhzprOv3ju_ppxxsWBjCnQL5KiNms,3570
34
+ ansys/pyensight/core/utils/dsg_server.py,sha256=6EwNZmLTGTpy_4rkIVzMkY6cxW5CG5Ofa5bJOu-Mqyk,29812
35
+ ansys/pyensight/core/utils/export.py,sha256=ZNpU3earAnRMBHZa6I8nTwMYY54WctXApJfMTkREBNA,23189
36
+ ansys/pyensight/core/utils/omniverse.py,sha256=p7uq3VoypQAkQ2fm2cQfHYFhOQGuWONgYilprr7Uf5Y,11943
37
+ ansys/pyensight/core/utils/omniverse_dsg_server.py,sha256=byE_uRT-d5Ytrw__Q_L8OuuD4sMFvhtYUWeailOVp4s,34443
38
+ ansys/pyensight/core/utils/parts.py,sha256=zST00r76kjsLLclBaKoOtuYhDUSdQr0vAooOG7AUea0,53372
39
+ ansys/pyensight/core/utils/query.py,sha256=OXKDbf1sOTX0sUvtKcp64LhVl-BcrEsE43w8uMxLOYI,19828
40
+ ansys/pyensight/core/utils/readers.py,sha256=WUpmCtMo9BHlUOwGtIrD5jjyS9HE9wDak8eEjrYeR2Y,11764
41
+ ansys/pyensight/core/utils/support.py,sha256=QI3z9ex7zJxjFbkCPba9DWqWgPFIThORqr0nvRfVjuc,4089
42
+ ansys/pyensight/core/utils/variables.py,sha256=T96aL-qR2FtxH6QafeD9ddcWL9BB6IRSOYs2JauRTlg,95133
43
+ ansys/pyensight/core/utils/views.py,sha256=ZKhJ6vMT7Rdd4bwJ0egMYTV7-D7Q7I19fF2_j_CMQ0o,12489
44
+ ansys/pyensight/core/utils/resources/Materials/000_sky.exr,sha256=xAR1gFd2uxPZDnvgfegdhEhRaqKtZldQDiR_-1rHKO0,8819933
45
+ ansys/pyensight/core/utils/resources/Materials/Fieldstone.mdl,sha256=_7z4BzzrRGUH_x3urV4sc7t7WJBjJn4jWLOw1AQObgY,2035
46
+ ansys/pyensight/core/utils/resources/Materials/Fieldstone/Fieldstone_BaseColor.png,sha256=CyxY5YrvbJxFzUUI-8Q90zOd6xwd85JPzjnUB-vPJ0s,501090
47
+ ansys/pyensight/core/utils/resources/Materials/Fieldstone/Fieldstone_N.png,sha256=Az1m4bK-PWecsErsuZh4-kkUnui9w4TrCxrGwwI091I,795424
48
+ ansys/pyensight/core/utils/resources/Materials/Fieldstone/Fieldstone_ORM.png,sha256=x0tUgUxjk53nsnleEy95tI1tUvFFQHGrB3pZVkd7b00,549202
49
+ ansys_pyensight_core-0.8.5.dist-info/LICENSE,sha256=qQWivZ12ETN5l3QxvTARY-QI5eoRRlyHdwLlAj0Bg5I,1089
50
+ ansys_pyensight_core-0.8.5.dist-info/WHEEL,sha256=EZbGkh7Ie4PoZfRQ8I0ZuP9VklN_TvcZ6DSE5Uar4z4,81
51
+ ansys_pyensight_core-0.8.5.dist-info/METADATA,sha256=9_G1TP5h6b93pafzmUHoalqWkBX2ztwaKl-Wcxr54xs,11830
52
+ ansys_pyensight_core-0.8.5.dist-info/RECORD,,
@@ -1,36 +0,0 @@
1
- ansys/pyensight/core/__init__.py,sha256=6iKVEEtxt-6mw7wu_AocOGYO1T1WYHAnk-X_jeTeA8k,828
2
- ansys/pyensight/core/deep_pixel_view.html,sha256=oZmcCIS3Dqqsoj8oheYubLAH2ZVKXao3iJM2WXYBEKs,3421
3
- ansys/pyensight/core/dockerlauncher.py,sha256=8ZqwIMtXvb2knax1SvhysstZuMRpc_9MXdatXF1UCHA,28203
4
- ansys/pyensight/core/enscontext.py,sha256=GSKkjZt1QEPyHEQ59EEBgKGMik9vjCdR9coR4uX7fEw,12141
5
- ansys/pyensight/core/enshell_grpc.py,sha256=ijRcByqdG0ZIi958Co860w2mnBIklfguI6s8sewcR8Q,15904
6
- ansys/pyensight/core/ensight_grpc.py,sha256=BJaErleSPrtI8myTIh0m9awFWPaUxrQmHpbuyR3RpM4,16847
7
- ansys/pyensight/core/ensobj.py,sha256=uDtM2KHcAwd4hu5pcUYWbSD729ApHGIvuqZhEq8PxTI,18558
8
- ansys/pyensight/core/launch_ensight.py,sha256=UyTDDmxru864YAihTY9EQ5NIbKFRiLpWGPHMu7JUgyY,6175
9
- ansys/pyensight/core/launcher.py,sha256=nnNXKEsV82Eu1S9eSp8UzZI7YmSVHWyLhhOEbiYhzfQ,10865
10
- ansys/pyensight/core/listobj.py,sha256=Trw87IxIMXtmUd1DzywRmMzORU704AG4scX4fqYmO6M,9340
11
- ansys/pyensight/core/locallauncher.py,sha256=sgaPrG-7ctXZ_ytGuHeriiVmgvI0kUeX6nKVJ4OiDUs,13984
12
- ansys/pyensight/core/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
13
- ansys/pyensight/core/renderable.py,sha256=hm4sXV-ZcpdfC_AJexycAX8zdsbWnsd-tMeUvewGekE,35003
14
- ansys/pyensight/core/session.py,sha256=AHTRbX0sDlvtUf8lyRoXetiICmLWO7n26Ni9lMy7tBY,74363
15
- ansys/pyensight/core/sgeo_poll.html,sha256=1M4BIc5CZpYA3b40qzk22NcPCLhjFnWdoS2PrS6Rhn4,752
16
- ansys/pyensight/core/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
17
- ansys/pyensight/core/utils/adr.py,sha256=XslZhlwcrSGzOlnhzprOv3ju_ppxxsWBjCnQL5KiNms,3570
18
- ansys/pyensight/core/utils/dsg_server.py,sha256=NbJ_ZxFo89S0qzR1gnRvEAfQasbL_2Be5PJ0LrEYB_I,29159
19
- ansys/pyensight/core/utils/export.py,sha256=ZNpU3earAnRMBHZa6I8nTwMYY54WctXApJfMTkREBNA,23189
20
- ansys/pyensight/core/utils/omniverse.py,sha256=YC5Uw2l2je462ysBGGd-a0Ncs2kWwaFYQi8YWjshZZs,9460
21
- ansys/pyensight/core/utils/omniverse_dsg_server.py,sha256=BVrSJILQWvUGQ0DI30CdYLmt3zD3VtYBPW52I_H23mA,32629
22
- ansys/pyensight/core/utils/parts.py,sha256=zST00r76kjsLLclBaKoOtuYhDUSdQr0vAooOG7AUea0,53372
23
- ansys/pyensight/core/utils/query.py,sha256=OXKDbf1sOTX0sUvtKcp64LhVl-BcrEsE43w8uMxLOYI,19828
24
- ansys/pyensight/core/utils/readers.py,sha256=WUpmCtMo9BHlUOwGtIrD5jjyS9HE9wDak8eEjrYeR2Y,11764
25
- ansys/pyensight/core/utils/support.py,sha256=QI3z9ex7zJxjFbkCPba9DWqWgPFIThORqr0nvRfVjuc,4089
26
- ansys/pyensight/core/utils/variables.py,sha256=T96aL-qR2FtxH6QafeD9ddcWL9BB6IRSOYs2JauRTlg,95133
27
- ansys/pyensight/core/utils/views.py,sha256=ZKhJ6vMT7Rdd4bwJ0egMYTV7-D7Q7I19fF2_j_CMQ0o,12489
28
- ansys/pyensight/core/utils/resources/Materials/000_sky.exr,sha256=xAR1gFd2uxPZDnvgfegdhEhRaqKtZldQDiR_-1rHKO0,8819933
29
- ansys/pyensight/core/utils/resources/Materials/Fieldstone.mdl,sha256=_7z4BzzrRGUH_x3urV4sc7t7WJBjJn4jWLOw1AQObgY,2035
30
- ansys/pyensight/core/utils/resources/Materials/Fieldstone/Fieldstone_BaseColor.png,sha256=CyxY5YrvbJxFzUUI-8Q90zOd6xwd85JPzjnUB-vPJ0s,501090
31
- ansys/pyensight/core/utils/resources/Materials/Fieldstone/Fieldstone_N.png,sha256=Az1m4bK-PWecsErsuZh4-kkUnui9w4TrCxrGwwI091I,795424
32
- ansys/pyensight/core/utils/resources/Materials/Fieldstone/Fieldstone_ORM.png,sha256=x0tUgUxjk53nsnleEy95tI1tUvFFQHGrB3pZVkd7b00,549202
33
- ansys_pyensight_core-0.8.4.dist-info/LICENSE,sha256=qQWivZ12ETN5l3QxvTARY-QI5eoRRlyHdwLlAj0Bg5I,1089
34
- ansys_pyensight_core-0.8.4.dist-info/WHEEL,sha256=EZbGkh7Ie4PoZfRQ8I0ZuP9VklN_TvcZ6DSE5Uar4z4,81
35
- ansys_pyensight_core-0.8.4.dist-info/METADATA,sha256=K5zU49tOXNW0xyQ0BvzKtm7Fr29OqNsAj2wvetO73Sk,11830
36
- ansys_pyensight_core-0.8.4.dist-info/RECORD,,