Skip to content

Commit e4203b5

Browse files
committed
Update Readme.md
1 parent 9385f36 commit e4203b5

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

Readme.md

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
![PyPI](https://img.shields.io/pypi/v/aps-toolkit?label=pypi%20jupyter-forge)
2+
![PyPI](https://img.shields.io/pypi/v/jupyter-forge?label=pypi%20jupyter-forge)
33
![PyPI - Downloads](https://img.shields.io/pypi/dm/jupyter-forge?label=pipy-download)
44

55
<a href="https://twitter.com/intent/follow?screen_name=chuongmep">
@@ -15,8 +15,8 @@ Jupyter Forge is a powerful library that seamlessly integrates Autodesk Platform
1515
# ⚡Features
1616

1717
- [x] Show 3d viewer from Autodesk Platform Services
18-
- [x] Show 3d viewer from Autodesk Platform Services with object id
19-
- [x] Show 3d viewer from Autodesk Platform Services with object id and ajust width and height
18+
- [x] Show 3d viewer from Autodesk Platform Services with object ids
19+
- [x] Show 3d viewer from Autodesk Platform Services with object ids and ajust width and height
2020
- [x] Zoom In, Zoom Out, Pan, Isolate,
2121
- [x] Clustering Viewer
2222

@@ -56,9 +56,12 @@ from aps_toolkit import Auth
5656
urn = "dXJuOmFkc2sud2lwcHJvZDpmcy5maWxlOnZmLlFsa1ZtVU5RUmYtanMtd3dLQ2dLM1E_dmVyc2lvbj0x"
5757
token = Auth().auth2leg()
5858
forge_viewer = JupyterForge(urn, token)
59+
60+
## CASE 1 : NONE OBJECTS IDS ISOLATE VIEWER
61+
forge_viewer.show(width=800, height=600)
62+
## CASE 2 : OBJECTS IDS ISOLATE VIEWER
5963
# object id from derivative api
6064
object_ids = [123, 456]
61-
# show 3d viewer
6265
forge_viewer.show(object_ids, width=800, height=600)
6366
```
6467

0 commit comments

Comments
 (0)