Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
c3c56a1
feat: Add web view component (WIP)
AlejandroFernandezLuces May 20, 2026
7f34c88
chore: adding changelog file 75.added.md [dependabot-skip]
pyansys-ci-bot May 20, 2026
626a661
feat: Add web view component (WIP)
AlejandroFernandezLuces May 25, 2026
fbe90d4
Merge branch 'feat/webview' of https://github.com/ansys/python-usd-vi…
AlejandroFernandezLuces May 25, 2026
3b0a133
chore: adding changelog file 75.added.md [dependabot-skip]
pyansys-ci-bot May 25, 2026
40513cd
fix: Split code into modules
AlejandroFernandezLuces May 25, 2026
ab224ab
Merge branch 'feat/webview' of https://github.com/ansys/python-usd-vi…
AlejandroFernandezLuces May 25, 2026
ddf3457
fix: Code cleanup
AlejandroFernandezLuces May 25, 2026
6a14283
Merge branch 'main' into feat/webview
AlejandroFernandezLuces May 26, 2026
4cf7059
Merge branch 'feat/webview' of https://github.com/ansys/python-usd-vi…
AlejandroFernandezLuces May 26, 2026
c844658
fix: Remove imports from init
AlejandroFernandezLuces May 26, 2026
7dc7a68
fix: Rename param
AlejandroFernandezLuces May 26, 2026
8f90747
fix: Tests
AlejandroFernandezLuces May 26, 2026
869b461
chore: adding changelog file 75.added.md [dependabot-skip]
pyansys-ci-bot May 26, 2026
0d11827
fix: Docstring
AlejandroFernandezLuces May 26, 2026
3f04b87
Merge branch 'feat/webview' of https://github.com/ansys/python-usd-vi…
AlejandroFernandezLuces May 26, 2026
8c8fbff
Merge branch 'main' into feat/webview
AlejandroFernandezLuces May 28, 2026
2b336ce
Merge branch 'main' into feat/webview
AlejandroFernandezLuces May 29, 2026
c2705a1
fix: License header
AlejandroFernandezLuces May 29, 2026
c672288
refactor: remove web/ HTML-export subpackage (moved to ansys-tools-vi…
AlejandroFernandezLuces Jul 16, 2026
ba2fe6e
build: drop pygltflib dep and web/*.html include after HTML export re…
AlejandroFernandezLuces Jul 16, 2026
bccbfe3
test/docs: remove HTML-export tests, examples, and doc pages
AlejandroFernandezLuces Jul 16, 2026
553a33a
docs: changelog for HTML-export removal
AlejandroFernandezLuces Jul 16, 2026
b4e5fb5
Merge branch 'main' into fix/web-deprecation
AlejandroFernandezLuces Jul 21, 2026
829a68b
chore: adding changelog file 128.fixed.md [dependabot-skip]
pyansys-ci-bot Jul 21, 2026
12642bd
fix: re-apply web/ HTML-export subpackage removal lost in merge
AlejandroFernandezLuces Jul 21, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions doc/changelog.d/128.fixed.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Web deprecation
1 change: 1 addition & 0 deletions doc/changelog.d/81.removed.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Removed the ``ansys.tools.usdviewer.web`` subpackage. HTML export now lives in ``ansys-tools-visualization-interface`` — install with ``pip install 'ansys-tools-visualization-interface[usd]'`` and use ``from ansys.tools.visualization_interface import export_usd_to_html``.
41 changes: 0 additions & 41 deletions examples/03-web-view.py

This file was deleted.

77 changes: 0 additions & 77 deletions examples/04-export-viewer-html.py

This file was deleted.

123 changes: 0 additions & 123 deletions examples/assets/page_template.html

This file was deleted.

2 changes: 0 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ dependencies = [
"pyopengl", # OpenUSD build dep
"pyside6", # OpenUSD build dep
"vtk",
"pygltflib",
]
scripts.usd-setup = "ansys.tools.usdviewer.autosetup:main"

Expand Down Expand Up @@ -70,7 +69,6 @@ tests = [

[tool.hatch.build.targets.wheel]
packages = [ "src/ansys" ]
include = [ "src/ansys/tools/usdviewer/web/*.html" ]

[tool.ruff]
line-length = 120
Expand Down
27 changes: 0 additions & 27 deletions src/ansys/tools/usdviewer/web/__init__.py

This file was deleted.

89 changes: 0 additions & 89 deletions src/ansys/tools/usdviewer/web/glb.py

This file was deleted.

Loading
Loading