ansys-pyensight-core 0.8.8__py3-none-any.whl → 0.8.9__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/dockerlauncher.py +6 -0
- ansys/pyensight/core/launcher.py +6 -1
- ansys/pyensight/core/locallauncher.py +4 -0
- ansys/pyensight/core/session.py +1 -1
- ansys/pyensight/core/utils/dsg_server.py +227 -35
- ansys/pyensight/core/utils/omniverse.py +84 -24
- ansys/pyensight/core/utils/omniverse_cli.py +481 -0
- ansys/pyensight/core/utils/omniverse_dsg_server.py +236 -426
- ansys/pyensight/core/utils/omniverse_glb_server.py +279 -0
- {ansys_pyensight_core-0.8.8.dist-info → ansys_pyensight_core-0.8.9.dist-info}/METADATA +11 -5
- ansys_pyensight_core-0.8.9.dist-info/RECORD +34 -0
- ansys/pyensight/core/exts/ansys.geometry.service/ansys/geometry/service/__init__.py +0 -1
- ansys/pyensight/core/exts/ansys.geometry.service/ansys/geometry/service/extension.py +0 -407
- ansys/pyensight/core/exts/ansys.geometry.service/config/extension.toml +0 -59
- ansys/pyensight/core/exts/ansys.geometry.service/data/icon.png +0 -0
- ansys/pyensight/core/exts/ansys.geometry.service/data/preview.png +0 -0
- ansys/pyensight/core/exts/ansys.geometry.service/docs/CHANGELOG.md +0 -11
- ansys/pyensight/core/exts/ansys.geometry.service/docs/README.md +0 -13
- ansys/pyensight/core/exts/ansys.geometry.service/docs/index.rst +0 -18
- ansys/pyensight/core/exts/ansys.geometry.serviceui/ansys/geometry/serviceui/__init__.py +0 -1
- ansys/pyensight/core/exts/ansys.geometry.serviceui/ansys/geometry/serviceui/extension.py +0 -193
- ansys/pyensight/core/exts/ansys.geometry.serviceui/config/extension.toml +0 -49
- ansys/pyensight/core/exts/ansys.geometry.serviceui/data/icon.png +0 -0
- ansys/pyensight/core/exts/ansys.geometry.serviceui/data/preview.png +0 -0
- ansys/pyensight/core/exts/ansys.geometry.serviceui/docs/CHANGELOG.md +0 -11
- ansys/pyensight/core/exts/ansys.geometry.serviceui/docs/README.md +0 -13
- ansys/pyensight/core/exts/ansys.geometry.serviceui/docs/index.rst +0 -18
- ansys/pyensight/core/utils/resources/Materials/Fieldstone/Fieldstone_BaseColor.png +0 -0
- ansys/pyensight/core/utils/resources/Materials/Fieldstone/Fieldstone_N.png +0 -0
- ansys/pyensight/core/utils/resources/Materials/Fieldstone/Fieldstone_ORM.png +0 -0
- ansys/pyensight/core/utils/resources/Materials/Fieldstone.mdl +0 -54
- ansys_pyensight_core-0.8.8.dist-info/RECORD +0 -52
- {ansys_pyensight_core-0.8.8.dist-info → ansys_pyensight_core-0.8.9.dist-info}/LICENSE +0 -0
- {ansys_pyensight_core-0.8.8.dist-info → ansys_pyensight_core-0.8.9.dist-info}/WHEEL +0 -0
|
@@ -1,193 +0,0 @@
|
|
|
1
|
-
import logging
|
|
2
|
-
from typing import Any, Optional
|
|
3
|
-
from urllib.parse import urlparse
|
|
4
|
-
|
|
5
|
-
import ansys.geometry.service
|
|
6
|
-
import omni.ext
|
|
7
|
-
import omni.ui as ui
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
class AnsysGeometryServiceUIExtension(omni.ext.IExt):
|
|
11
|
-
def __init__(self, *args, **kwargs) -> None:
|
|
12
|
-
super().__init__(*args, **kwargs)
|
|
13
|
-
self._window: Any = None
|
|
14
|
-
self._label_w: Any = None
|
|
15
|
-
self._logger = logging.getLogger(__name__.rsplit(".", 1)[0])
|
|
16
|
-
self._grpc = None
|
|
17
|
-
self._dsg_uri_w = None
|
|
18
|
-
self._dsg_token_w = None
|
|
19
|
-
self._omni_uri_w = None
|
|
20
|
-
self._temporal_w = None
|
|
21
|
-
self._vrmode_w = None
|
|
22
|
-
self._normalize_w = None
|
|
23
|
-
self._time_scale_w = None
|
|
24
|
-
self._connect_w = None
|
|
25
|
-
self._update_w = None
|
|
26
|
-
self._connected = False
|
|
27
|
-
|
|
28
|
-
@property
|
|
29
|
-
def service(self) -> Optional["AnsysGeometryServiceUIExtension"]:
|
|
30
|
-
return ansys.geometry.service.AnsysGeometryServiceServerExtension.get_instance()
|
|
31
|
-
|
|
32
|
-
def info(self, text: str) -> None:
|
|
33
|
-
self._logger.info(text)
|
|
34
|
-
|
|
35
|
-
def warning(self, text: str) -> None:
|
|
36
|
-
self._logger.warning(text)
|
|
37
|
-
|
|
38
|
-
def error(self, text: str) -> None:
|
|
39
|
-
self._logger.error(text)
|
|
40
|
-
|
|
41
|
-
def launch_server(self) -> None:
|
|
42
|
-
if self.service.is_server_running():
|
|
43
|
-
return
|
|
44
|
-
self.service.dsg_uri = self._dsg_uri_w.model.as_string
|
|
45
|
-
self.service.security_token = self._dsg_token_w.model.as_string
|
|
46
|
-
self.service.omni_uri = self._omni_uri_w.model.as_string
|
|
47
|
-
self.service.temporal = self._temporal_w.model.as_bool
|
|
48
|
-
self.service.vrmode = self._vrmode_w.model.as_bool
|
|
49
|
-
self.service.normalize_geometry = self._normalize_w.model.as_bool
|
|
50
|
-
scale = self._time_scale_w.model.as_float
|
|
51
|
-
if scale <= 0.0:
|
|
52
|
-
scale = 1.0
|
|
53
|
-
self.service.time_scale = scale
|
|
54
|
-
self.service.launch_server()
|
|
55
|
-
if not self.service.is_server_running():
|
|
56
|
-
self.error("Failed to launch omniverse service.")
|
|
57
|
-
return
|
|
58
|
-
|
|
59
|
-
# parse the DSG USI
|
|
60
|
-
parsed = urlparse(self.service.dsg_uri)
|
|
61
|
-
port = parsed.port
|
|
62
|
-
host = parsed.hostname
|
|
63
|
-
|
|
64
|
-
# make a direct grpc connection to the DSG server
|
|
65
|
-
from ansys.pyensight.core import ensight_grpc # pylint: disable=import-outside-toplevel
|
|
66
|
-
|
|
67
|
-
self._grpc = ensight_grpc.EnSightGRPC(
|
|
68
|
-
host=host, port=port, secret_key=self.service.security_token
|
|
69
|
-
)
|
|
70
|
-
self._grpc.connect()
|
|
71
|
-
if not self._grpc.is_connected():
|
|
72
|
-
self.error(f"Failed to connect to DSG service {host}:{port}")
|
|
73
|
-
return
|
|
74
|
-
|
|
75
|
-
self.info("Connected to DSG service")
|
|
76
|
-
self._connected = True
|
|
77
|
-
|
|
78
|
-
def stop_server(self) -> None:
|
|
79
|
-
if not self._connected:
|
|
80
|
-
return
|
|
81
|
-
self.service.stop_server()
|
|
82
|
-
self._grpc.shutdown()
|
|
83
|
-
self._grpc = None
|
|
84
|
-
|
|
85
|
-
self.info("Disconnect from DSG service")
|
|
86
|
-
self._connected = False
|
|
87
|
-
|
|
88
|
-
def connect_cb(self) -> None:
|
|
89
|
-
if self.service is None:
|
|
90
|
-
self.error("Unable to find ansys.geometry.service instance")
|
|
91
|
-
return
|
|
92
|
-
if self._connected:
|
|
93
|
-
self.stop_server()
|
|
94
|
-
else:
|
|
95
|
-
self.launch_server()
|
|
96
|
-
self.update_ui()
|
|
97
|
-
|
|
98
|
-
def update_cb(self) -> None:
|
|
99
|
-
if not self._connected:
|
|
100
|
-
self.error("No DSG service connected")
|
|
101
|
-
return
|
|
102
|
-
self._grpc.command("import enspyqtgui_int", do_eval=False)
|
|
103
|
-
update_cmd = "dynamicscenegraph://localhost/client/update"
|
|
104
|
-
if self._temporal_w.model.as_bool:
|
|
105
|
-
update_cmd += "?timesteps=1"
|
|
106
|
-
cmd = f'enspyqtgui_int.dynamic_scene_graph_command("{update_cmd}")'
|
|
107
|
-
self._grpc.command(cmd, do_eval=False)
|
|
108
|
-
|
|
109
|
-
def on_startup(self, ext_id: str) -> None:
|
|
110
|
-
self.info(f"ANSYS geometry service GUI startup: {ext_id}")
|
|
111
|
-
if self.service is None:
|
|
112
|
-
self.error("Unable to find ansys.geometry.service instance")
|
|
113
|
-
self.build_ui()
|
|
114
|
-
self.update_ui()
|
|
115
|
-
|
|
116
|
-
def update_ui(self) -> None:
|
|
117
|
-
if self._connected:
|
|
118
|
-
self._connect_w.text = "Disconnect from DSG Server"
|
|
119
|
-
self._label_w.text = f"Connected to: {self.service.dsg_uri}"
|
|
120
|
-
else:
|
|
121
|
-
self._connect_w.text = "Connect to DSG Server"
|
|
122
|
-
self._label_w.text = "No connected DSG server"
|
|
123
|
-
self._update_w.enabled = self._connected
|
|
124
|
-
self._temporal_w.enabled = True
|
|
125
|
-
self._vrmode_w.enabled = not self._connected
|
|
126
|
-
self._normalize_w.enabled = not self._connected
|
|
127
|
-
self._time_scale_w.enabled = not self._connected
|
|
128
|
-
self._dsg_uri_w.enabled = not self._connected
|
|
129
|
-
self._dsg_token_w.enabled = not self._connected
|
|
130
|
-
self._omni_uri_w.enabled = not self._connected
|
|
131
|
-
|
|
132
|
-
def build_ui(self) -> None:
|
|
133
|
-
self._window = ui.Window("ANSYS Geometry Service")
|
|
134
|
-
with self._window.frame:
|
|
135
|
-
with ui.VStack(height=0, spacing=5):
|
|
136
|
-
self._label_w = ui.Label("No connected DSG server")
|
|
137
|
-
|
|
138
|
-
with ui.HStack(spacing=5):
|
|
139
|
-
ui.Label("DSG Service URI:", alignment=ui.Alignment.RIGHT_CENTER, width=0)
|
|
140
|
-
self._dsg_uri_w = ui.StringField()
|
|
141
|
-
self._dsg_uri_w.model.as_string = self.service.dsg_uri
|
|
142
|
-
|
|
143
|
-
with ui.HStack(spacing=5):
|
|
144
|
-
ui.Label("DSG security code:", alignment=ui.Alignment.RIGHT_CENTER, width=0)
|
|
145
|
-
self._dsg_token_w = ui.StringField(password_mode=True)
|
|
146
|
-
self._dsg_token_w.model.as_string = self.service.security_token
|
|
147
|
-
|
|
148
|
-
with ui.HStack(spacing=5):
|
|
149
|
-
ui.Label("Omniverse URI:", alignment=ui.Alignment.RIGHT_CENTER, width=0)
|
|
150
|
-
self._omni_uri_w = ui.StringField()
|
|
151
|
-
self._omni_uri_w.model.as_string = self.service.omni_uri
|
|
152
|
-
|
|
153
|
-
with ui.HStack(spacing=5):
|
|
154
|
-
with ui.HStack(spacing=5):
|
|
155
|
-
self._temporal_w = ui.CheckBox(width=0)
|
|
156
|
-
self._temporal_w.model.set_value(self.service.temporal)
|
|
157
|
-
ui.Label("Temporal", alignment=ui.Alignment.LEFT_CENTER)
|
|
158
|
-
|
|
159
|
-
with ui.HStack(spacing=5):
|
|
160
|
-
self._vrmode_w = ui.CheckBox(width=0)
|
|
161
|
-
self._vrmode_w.model.set_value(self.service.vrmode)
|
|
162
|
-
ui.Label("VR Mode", alignment=ui.Alignment.LEFT_CENTER)
|
|
163
|
-
|
|
164
|
-
with ui.HStack(spacing=5):
|
|
165
|
-
self._normalize_w = ui.CheckBox(width=0)
|
|
166
|
-
self._normalize_w.model.set_value(self.service.normalize_geometry)
|
|
167
|
-
ui.Label("Normalize", alignment=ui.Alignment.LEFT_CENTER)
|
|
168
|
-
|
|
169
|
-
with ui.HStack(spacing=5):
|
|
170
|
-
ui.Label(
|
|
171
|
-
"Temporal scaling factor:", alignment=ui.Alignment.RIGHT_CENTER, width=0
|
|
172
|
-
)
|
|
173
|
-
self._time_scale_w = ui.FloatField()
|
|
174
|
-
self._time_scale_w.model.as_float = self.service.time_scale
|
|
175
|
-
|
|
176
|
-
with ui.HStack():
|
|
177
|
-
self._connect_w = ui.Button("Connect to DSG Server", clicked_fn=self.connect_cb)
|
|
178
|
-
self._update_w = ui.Button("Request Update", clicked_fn=self.update_cb)
|
|
179
|
-
|
|
180
|
-
def on_shutdown(self) -> None:
|
|
181
|
-
self.info("ANSYS geometry service shutdown")
|
|
182
|
-
self.stop_server()
|
|
183
|
-
self._window = None
|
|
184
|
-
self._label_w = None
|
|
185
|
-
self._dsg_uri_w = None
|
|
186
|
-
self._dsg_token_w = None
|
|
187
|
-
self._omni_uri_w = None
|
|
188
|
-
self._temporal_w = None
|
|
189
|
-
self._vrmode_w = None
|
|
190
|
-
self._normalize_w = None
|
|
191
|
-
self._time_scale_w = None
|
|
192
|
-
self._connect_w = None
|
|
193
|
-
self._update_w = None
|
|
@@ -1,49 +0,0 @@
|
|
|
1
|
-
[package]
|
|
2
|
-
# Semantic Versioning is used: https://semver.org/
|
|
3
|
-
version = "0.8.8"
|
|
4
|
-
|
|
5
|
-
# Lists people or organizations that are considered the "authors" of the package.
|
|
6
|
-
authors = ["ANSYS"]
|
|
7
|
-
|
|
8
|
-
# The title and description fields are primarily for displaying extension info in UI
|
|
9
|
-
title = "ANSYS Omniverse Geometry Service GUI"
|
|
10
|
-
description = "A geometry synchronization service that enables export of geometry scenes from ANSYS products to Omniverse."
|
|
11
|
-
|
|
12
|
-
# Path (relative to the root) or content of readme markdown file for UI.
|
|
13
|
-
readme = "docs/README.md"
|
|
14
|
-
|
|
15
|
-
# URL of the extension source repository.
|
|
16
|
-
repository = "https://github.com/ansys/pyensight"
|
|
17
|
-
|
|
18
|
-
# One of categories for UI.
|
|
19
|
-
category = "simulation"
|
|
20
|
-
|
|
21
|
-
# Keywords for the extension
|
|
22
|
-
keywords = ["ANSYS", "EnSight", "PyEnSight", "Fluent", "kit"]
|
|
23
|
-
|
|
24
|
-
# Location of change log file in target (final) folder of extension, relative to the root.
|
|
25
|
-
# More info on writing changelog: https://keepachangelog.com/en/1.0.0/
|
|
26
|
-
changelog = "docs/CHANGELOG.md"
|
|
27
|
-
|
|
28
|
-
# Preview image and icon. Folder named "data" automatically goes in git lfs (see .gitattributes file).
|
|
29
|
-
# Preview image is shown in "Overview" of Extensions window. Screenshot of an extension might be a good preview image.
|
|
30
|
-
preview_image = "data/preview.png"
|
|
31
|
-
|
|
32
|
-
# Icon is shown in Extensions window, it is recommended to be square, of size 256x256.
|
|
33
|
-
icon = "data/icon.png"
|
|
34
|
-
|
|
35
|
-
# Use omni.ui to build simple UI
|
|
36
|
-
[dependencies]
|
|
37
|
-
"omni.kit.uiapp" = {}
|
|
38
|
-
"ansys.geometry.service" = {}
|
|
39
|
-
|
|
40
|
-
# Main python module this extension provides, it will be publicly available as "import ansys.geometry.serviceui".
|
|
41
|
-
[[python.module]]
|
|
42
|
-
name = "ansys.geometry.serviceui"
|
|
43
|
-
|
|
44
|
-
[[test]]
|
|
45
|
-
# Extra dependencies only to be used during test run
|
|
46
|
-
dependencies = [
|
|
47
|
-
"omni.kit.ui_test" # UI testing extension
|
|
48
|
-
]
|
|
49
|
-
|
|
Binary file
|
|
Binary file
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
# Changelog
|
|
2
|
-
|
|
3
|
-
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
## [0.8.7] - 2024-07-12
|
|
7
|
-
- Support for time varying data and temporal scaling
|
|
8
|
-
|
|
9
|
-
## [0.8.4] - 2024-06-28
|
|
10
|
-
- Initial kit version of ANSYS Geometry Service Server
|
|
11
|
-
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
# ANSYS Omniverse Geometry Service GUI [ansys.geometry.serviceui]
|
|
2
|
-
|
|
3
|
-
This Omniverse extension is a UI interface to the [ansys.geometry.service]
|
|
4
|
-
kit extension. It allows an Omniverse application user to connect to
|
|
5
|
-
a running copy of ANSYS EnSight or other application that supports the
|
|
6
|
-
Dynamic Scene Graph gRPC protocol. The GUI allows for the remote scene
|
|
7
|
-
to be pulled, on request, into a specified Omniverse location.
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
For more details on this extension see:
|
|
11
|
-
https://ensight.docs.pyansys.com/version/dev/user_guide/omniverse_info.html
|
|
12
|
-
|
|
13
|
-
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
ansys.geometry.serviceui
|
|
2
|
-
########################
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
.. toctree::
|
|
6
|
-
:maxdepth: 1
|
|
7
|
-
|
|
8
|
-
README
|
|
9
|
-
CHANGELOG
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
.. automodule::"ansys.geometry.serviceui"
|
|
13
|
-
:platform: Windows-x86_64, Linux-x86_64
|
|
14
|
-
:members:
|
|
15
|
-
:undoc-members:
|
|
16
|
-
:show-inheritance:
|
|
17
|
-
:imported-members:
|
|
18
|
-
:exclude-members: contextmanager
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -1,54 +0,0 @@
|
|
|
1
|
-
mdl 1.4;
|
|
2
|
-
|
|
3
|
-
import ::OmniPBR::OmniPBR;
|
|
4
|
-
import ::anno::author;
|
|
5
|
-
import ::anno::description;
|
|
6
|
-
import ::anno::display_name;
|
|
7
|
-
import ::anno::key_words;
|
|
8
|
-
import ::anno::version;
|
|
9
|
-
import ::tex::gamma_mode;
|
|
10
|
-
import ::state::normal;
|
|
11
|
-
|
|
12
|
-
export material Fieldstone(*)
|
|
13
|
-
[[
|
|
14
|
-
::anno::display_name("Omni PBR "),
|
|
15
|
-
::anno::description("Omni PBR, supports ORM textures"),
|
|
16
|
-
::anno::version(1, 0, 0, ""),
|
|
17
|
-
::anno::author("NVIDIA CORPORATION"),
|
|
18
|
-
::anno::key_words(string[]("omni", "PBR", "omniverse", "generic"))
|
|
19
|
-
]]
|
|
20
|
-
= ::OmniPBR::OmniPBR(
|
|
21
|
-
diffuse_color_constant: color(0.200000003f, 0.200000003f, 0.200000003f),
|
|
22
|
-
diffuse_texture: texture_2d("./Fieldstone/Fieldstone_BaseColor.png" /* tag 2828, version 6332211 */, ::tex::gamma_srgb),
|
|
23
|
-
albedo_desaturation: 0.f,
|
|
24
|
-
albedo_add: 0.f,
|
|
25
|
-
albedo_brightness: 1.f,
|
|
26
|
-
diffuse_tint: color(1.f, 1.f, 1.f),
|
|
27
|
-
reflection_roughness_constant: 0.5f,
|
|
28
|
-
reflection_roughness_texture_influence: 1.f,
|
|
29
|
-
reflectionroughness_texture: texture_2d(),
|
|
30
|
-
metallic_constant: 0.f,
|
|
31
|
-
metallic_texture_influence: 1.f,
|
|
32
|
-
metallic_texture: texture_2d(),
|
|
33
|
-
specular_level: 0.5f,
|
|
34
|
-
enable_ORM_texture: true,
|
|
35
|
-
ORM_texture: texture_2d("./Fieldstone/Fieldstone_ORM.png" /* tag 2830, version 596885211 */, ::tex::gamma_linear),
|
|
36
|
-
ao_to_diffuse: 0.f,
|
|
37
|
-
ao_texture: texture_2d(),
|
|
38
|
-
enable_emission: false,
|
|
39
|
-
emissive_color: color(1.f, 0.100000001f, 0.100000001f),
|
|
40
|
-
emissive_mask_texture: texture_2d(),
|
|
41
|
-
emissive_intensity: 40.f,
|
|
42
|
-
bump_factor: 1.f,
|
|
43
|
-
normalmap_texture: texture_2d("./Fieldstone/Fieldstone_N.png" /* tag 2832, version 3494456508 */, ::tex::gamma_linear),
|
|
44
|
-
detail_bump_factor: 0.300000012f,
|
|
45
|
-
detail_normalmap_texture: texture_2d(),
|
|
46
|
-
project_uvw: false,
|
|
47
|
-
world_or_object: false,
|
|
48
|
-
uv_space_index: 0,
|
|
49
|
-
texture_translate: float2(0.f),
|
|
50
|
-
texture_rotate: 0.f,
|
|
51
|
-
texture_scale: float2(1.f),
|
|
52
|
-
detail_texture_translate: float2(0.f),
|
|
53
|
-
detail_texture_rotate: 0.f,
|
|
54
|
-
detail_texture_scale: float2(1.f));
|
|
@@ -1,52 +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=yl-d3dqvMHCGSistEEA2q0mwIqTf1Gz18SB499jVtNI,12289
|
|
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=-5oufoYLnOtI9xO6pxhS5TSYI1N2rYMsEfwFmOHVNqk,14748
|
|
18
|
-
ansys/pyensight/core/exts/ansys.geometry.service/config/extension.toml,sha256=9kKOY7qJkcPU_hC69lrG6SRwQDh146V53C-FrkusBI4,2259
|
|
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=-Lmxzgr4d9vIJ9n2yrh8tdUNPPVDj614eJ7Oj_I6M_c,265
|
|
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=Gh0fHbJNGBT4829IZnYI8saGxEadwVOiXs3rw5o4ITo,7851
|
|
26
|
-
ansys/pyensight/core/exts/ansys.geometry.serviceui/config/extension.toml,sha256=JsEf-coSDhltW-36yY7DWWYME47J1uQ_eyoJEP6P6fA,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=-Lmxzgr4d9vIJ9n2yrh8tdUNPPVDj614eJ7Oj_I6M_c,265
|
|
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=fSsxUI1Q44pAyNusBkUTueh4G1xUbIltduLChTVgGRA,30153
|
|
35
|
-
ansys/pyensight/core/utils/export.py,sha256=ZNpU3earAnRMBHZa6I8nTwMYY54WctXApJfMTkREBNA,23189
|
|
36
|
-
ansys/pyensight/core/utils/omniverse.py,sha256=Ccwyp_auEOozSTrMBl4gEZazoNse6ayDw8zSGvrsGMQ,12342
|
|
37
|
-
ansys/pyensight/core/utils/omniverse_dsg_server.py,sha256=O-eyHMhs6ykevC7ZH82D5as5NU1N-Ve6syz72-hYVi0,34696
|
|
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.8.dist-info/LICENSE,sha256=qQWivZ12ETN5l3QxvTARY-QI5eoRRlyHdwLlAj0Bg5I,1089
|
|
50
|
-
ansys_pyensight_core-0.8.8.dist-info/WHEEL,sha256=EZbGkh7Ie4PoZfRQ8I0ZuP9VklN_TvcZ6DSE5Uar4z4,81
|
|
51
|
-
ansys_pyensight_core-0.8.8.dist-info/METADATA,sha256=z_K74y8xiA7JqnjUszfVPWqaaMgC_JCtgr9d8bN41Pc,11834
|
|
52
|
-
ansys_pyensight_core-0.8.8.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|