diff --git a/latest/.doctrees/environment.pickle b/latest/.doctrees/environment.pickle index ee7c66d3..55d664b5 100644 Binary files a/latest/.doctrees/environment.pickle and b/latest/.doctrees/environment.pickle differ diff --git a/latest/.doctrees/examples/02_gui.doctree b/latest/.doctrees/examples/02_gui.doctree index be3b437c..c94fb910 100644 Binary files a/latest/.doctrees/examples/02_gui.doctree and b/latest/.doctrees/examples/02_gui.doctree differ diff --git a/latest/.doctrees/examples/23_smpl_visualizer_skinned.doctree b/latest/.doctrees/examples/23_smpl_visualizer_skinned.doctree index 3df0a384..7f11a92b 100644 Binary files a/latest/.doctrees/examples/23_smpl_visualizer_skinned.doctree and b/latest/.doctrees/examples/23_smpl_visualizer_skinned.doctree differ diff --git a/latest/_sources/examples/02_gui.rst.txt b/latest/_sources/examples/02_gui.rst.txt index 2d3178eb..3f7e185e 100644 --- a/latest/_sources/examples/02_gui.rst.txt +++ b/latest/_sources/examples/02_gui.rst.txt @@ -29,7 +29,6 @@ Examples of basic GUI elements that we can create, read from, and write to. initial_value=0, disabled=True, ) - gui_slider = server.gui.add_slider( "Slider", min=0, @@ -38,6 +37,7 @@ Examples of basic GUI elements that we can create, read from, and write to. initial_value=0, disabled=True, ) + gui_progress = server.gui.add_progress_bar(25, animated=True) with server.gui.add_folder("Editable"): gui_vector2 = server.gui.add_vector2( @@ -119,6 +119,8 @@ Examples of basic GUI elements that we can create, read from, and write to. point_shape="circle", ) + gui_progress.value = float((counter % 100)) + # We can use `.visible` and `.disabled` to toggle GUI elements. gui_text.visible = not gui_checkbox_hide.value gui_button.visible = not gui_checkbox_hide.value diff --git a/latest/_sources/examples/23_smpl_visualizer_skinned.rst.txt b/latest/_sources/examples/23_smpl_visualizer_skinned.rst.txt index bed4961b..9650659c 100644 --- a/latest/_sources/examples/23_smpl_visualizer_skinned.rst.txt +++ b/latest/_sources/examples/23_smpl_visualizer_skinned.rst.txt @@ -139,8 +139,6 @@ See here for download instructions: # Match transform control gizmos to joint positions. for i, control in enumerate(gui_elements.transform_controls): control.position = smpl_outputs.T_parent_joint[i, :3, 3] - print(control.position) - skinned_handle.bones[i].wxyz = tf.SO3.from_matrix( smpl_outputs.T_world_joint[i, :3, :3] ).wxyz diff --git a/latest/examples/02_gui/index.html b/latest/examples/02_gui/index.html index 700ed43a..3a265343 100644 --- a/latest/examples/02_gui/index.html +++ b/latest/examples/02_gui/index.html @@ -355,15 +355,15 @@