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
5656urn = " dXJuOmFkc2sud2lwcHJvZDpmcy5maWxlOnZmLlFsa1ZtVU5RUmYtanMtd3dLQ2dLM1E_dmVyc2lvbj0x"
5757token = Auth().auth2leg()
5858forge_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
6064object_ids = [123 , 456 ]
61- # show 3d viewer
6265forge_viewer.show(object_ids, width = 800 , height = 600 )
6366```
6467
0 commit comments