ansys-pyensight-core 0.8.1__py3-none-any.whl → 0.8.4__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.
- ansys/pyensight/core/renderable.py +14 -3
- ansys/pyensight/core/utils/dsg_server.py +695 -0
- ansys/pyensight/core/utils/omniverse.py +9 -9
- ansys/pyensight/core/utils/omniverse_dsg_server.py +163 -692
- ansys/pyensight/core/utils/parts.py +5 -5
- ansys/pyensight/core/utils/readers.py +1 -1
- ansys/pyensight/core/utils/variables.py +36 -1
- {ansys_pyensight_core-0.8.1.dist-info → ansys_pyensight_core-0.8.4.dist-info}/METADATA +2 -2
- {ansys_pyensight_core-0.8.1.dist-info → ansys_pyensight_core-0.8.4.dist-info}/RECORD +11 -10
- {ansys_pyensight_core-0.8.1.dist-info → ansys_pyensight_core-0.8.4.dist-info}/LICENSE +0 -0
- {ansys_pyensight_core-0.8.1.dist-info → ansys_pyensight_core-0.8.4.dist-info}/WHEEL +0 -0
|
@@ -19,13 +19,6 @@ class Omniverse:
|
|
|
19
19
|
The omniverse class methods provide an interface between an EnSight session
|
|
20
20
|
and an Omniverse instance. See :ref:`omniverse_info` for additional details.
|
|
21
21
|
|
|
22
|
-
Note
|
|
23
|
-
----
|
|
24
|
-
This interface is only available when using pyensight (they do not work with
|
|
25
|
-
the ensight Python interpreter) and the module must be used in an interpreter
|
|
26
|
-
that includes the Omniverse Python modules (e.g. omni and pxr). Only a single
|
|
27
|
-
Omniverse connection can be established within a single pyensight session.
|
|
28
|
-
|
|
29
22
|
Parameters
|
|
30
23
|
----------
|
|
31
24
|
interface:
|
|
@@ -33,8 +26,15 @@ class Omniverse:
|
|
|
33
26
|
EnSight Python, the ``ensight`` module is passed. In the case
|
|
34
27
|
of PyEnSight, ``Session.ensight`` is passed.
|
|
35
28
|
|
|
36
|
-
|
|
37
|
-
|
|
29
|
+
Notes
|
|
30
|
+
-----
|
|
31
|
+
This interface is only available when using pyensight (they do not work with
|
|
32
|
+
the ensight Python interpreter) and the module must be used in an interpreter
|
|
33
|
+
that includes the Omniverse Python modules (e.g. omni and pxr). Only a single
|
|
34
|
+
Omniverse connection can be established within a single pyensight session.
|
|
35
|
+
|
|
36
|
+
Examples
|
|
37
|
+
--------
|
|
38
38
|
::
|
|
39
39
|
from ansys.pyensight.core import LocalLauncher
|
|
40
40
|
session = LocalLauncher().start()
|