diff --git a/dev/.buildinfo b/dev/.buildinfo index 323962717..794c225f1 100644 --- a/dev/.buildinfo +++ b/dev/.buildinfo @@ -1,4 +1,4 @@ # Sphinx build info version 1 # This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done. -config: 2f74803892ef13ea472c20ff0801b46a +config: d555acfc62b7bbb17c4e4e99f82a529f tags: 645f666f9bcd5a90fca523b33c5a78b7 diff --git a/dev/.doctrees/environment.pickle b/dev/.doctrees/environment.pickle index 4c27e42bd..5ff578bff 100644 Binary files a/dev/.doctrees/environment.pickle and b/dev/.doctrees/environment.pickle differ diff --git a/dev/.doctrees/reference/fury.deprecator.doctree b/dev/.doctrees/reference/fury.deprecator.doctree index a33de8aa9..b9cdaaacb 100644 Binary files a/dev/.doctrees/reference/fury.deprecator.doctree and b/dev/.doctrees/reference/fury.deprecator.doctree differ diff --git a/dev/_downloads/07fcc19ba03226cd3d83d4e40ec44385/auto_examples_python.zip b/dev/_downloads/07fcc19ba03226cd3d83d4e40ec44385/auto_examples_python.zip index 7b0408eaf..a0c42d420 100644 Binary files a/dev/_downloads/07fcc19ba03226cd3d83d4e40ec44385/auto_examples_python.zip and b/dev/_downloads/07fcc19ba03226cd3d83d4e40ec44385/auto_examples_python.zip differ diff --git a/dev/_downloads/6f1e7a639e0699d6164445b55e6c116d/auto_examples_jupyter.zip b/dev/_downloads/6f1e7a639e0699d6164445b55e6c116d/auto_examples_jupyter.zip index 6b24bd928..422110386 100644 Binary files a/dev/_downloads/6f1e7a639e0699d6164445b55e6c116d/auto_examples_jupyter.zip and b/dev/_downloads/6f1e7a639e0699d6164445b55e6c116d/auto_examples_jupyter.zip differ diff --git a/dev/_modules/fury.html b/dev/_modules/fury.html index d51ef1fe7..afc1aa56a 100644 --- a/dev/_modules/fury.html +++ b/dev/_modules/fury.html @@ -7,7 +7,7 @@ - fury — FURY 0.11.0.dev26+g789a448f documentation + fury — FURY 0.11.0.dev27+g14851c6a documentation @@ -43,7 +43,7 @@ - + diff --git a/dev/_modules/fury/actor.html b/dev/_modules/fury/actor.html index be8ff43bc..eb43d07f4 100644 --- a/dev/_modules/fury/actor.html +++ b/dev/_modules/fury/actor.html @@ -7,7 +7,7 @@ - fury.actor — FURY 0.11.0.dev26+g789a448f documentation + fury.actor — FURY 0.11.0.dev27+g14851c6a documentation @@ -43,7 +43,7 @@ - + diff --git a/dev/_modules/fury/actors/odf_slicer.html b/dev/_modules/fury/actors/odf_slicer.html index d694b1e2b..621019c9a 100644 --- a/dev/_modules/fury/actors/odf_slicer.html +++ b/dev/_modules/fury/actors/odf_slicer.html @@ -7,7 +7,7 @@ - fury.actors.odf_slicer — FURY 0.11.0.dev26+g789a448f documentation + fury.actors.odf_slicer — FURY 0.11.0.dev27+g14851c6a documentation @@ -43,7 +43,7 @@ - + @@ -503,7 +503,7 @@

Source code for fury.actors.odf_slicer

         (inclusive).
         """
         mask = np.zeros(self.grid_shape, dtype=bool)
-        mask[x1 : x2 + 1, y1 : y2 + 1, z1 : z2 + 1] = True
+        mask[x1: x2 + 1, y1: y2 + 1, z1: z2 + 1] = True
         self.mask = mask
 
         self._update_mapper()
@@ -567,7 +567,10 @@

Source code for fury.actors.odf_slicer

         """Dynamically change the sphere used for SH to SF projection.
         """
         if self.B is None:
-            raise ValueError("Can't update sphere when using " 'SF coefficients.')
+            raise ValueError(
+                "Can't update sphere when using "
+                'SF coefficients.'
+                )
         self.vertices = vertices
         if self.affine is not None:
             self.w_verts = self.vertices.dot(self.affine[:3, :3])
@@ -637,8 +640,9 @@ 

Source code for fury.actors.odf_slicer

         if self.radial_scale:
             # apply SF amplitudes to all sphere
             # directions and offset each voxel
-            return np.tile(sph_dirs, (len(offsets), 1)) * sf.reshape(-1, 1) + np.repeat(
-                offsets, len(sph_dirs), axis=0
+            return (
+                np.tile(sph_dirs, (len(offsets), 1)) * sf.reshape(-1, 1)
+                + np.repeat(offsets, len(sph_dirs), axis=0)
             )
         # return scaled spheres offsetted by `offsets`
         return np.tile(sph_dirs, (len(offsets), 1)) * self.scale + np.repeat(
@@ -666,7 +670,8 @@ 

Source code for fury.actors.odf_slicer

                 range_sf = sf.max(axis=-1) - sf.min(axis=-1)
                 rescaled = sf - sf.min(axis=-1, keepdims=True)
                 rescaled[range_sf > 0] /= range_sf[range_sf > 0][..., None]
-                all_colors = create_colormap(rescaled.ravel(), self.colormap) * 255
+                all_colors = create_colormap(rescaled.ravel(), self.colormap) \
+                    * 255
             else:
                 all_colors = np.tile(
                     np.array(self.colormap).reshape(1, 3),
diff --git a/dev/_modules/fury/actors/peak.html b/dev/_modules/fury/actors/peak.html
index 052b1f304..ed3db6629 100644
--- a/dev/_modules/fury/actors/peak.html
+++ b/dev/_modules/fury/actors/peak.html
@@ -7,7 +7,7 @@
   
     
     
-    fury.actors.peak — FURY 0.11.0.dev26+g789a448f documentation
+    fury.actors.peak — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -43,7 +43,7 @@
 
   
 
-    
+    
     
     
     
@@ -470,9 +470,9 @@ 

Source code for fury.actors.peak

                 xyz = np.asarray(center)
             else:
                 xyz = w_pos[idx, :]
-            valid_peaks = np.nonzero(np.abs(valid_dirs[idx, :, :]).max(axis=-1) > 0.0)[
-                0
-            ]
+            valid_peaks = np.nonzero(
+                    np.abs(valid_dirs[idx, :, :]).max(axis=-1) > 0.0
+                    )[0]
             for direction in valid_peaks:
                 if values is not None:
                     pv = values[center][direction]
@@ -531,14 +531,20 @@ 

Source code for fury.actors.peak

             uniform vec3 lowRanges;
             uniform vec3 highRanges;
             """
-        orient_to_rgb = import_fury_shader(pjoin('utils', 'orient_to_rgb.glsl'))
+        orient_to_rgb = import_fury_shader(
+                pjoin('utils', 'orient_to_rgb.glsl')
+                )
         visible_cross_section = import_fury_shader(
             pjoin('interaction', 'visible_cross_section.glsl')
         )
-        visible_range = import_fury_shader(pjoin('interaction', 'visible_range.glsl'))
+        visible_range = import_fury_shader(
+                pjoin('interaction', 'visible_range.glsl')
+                )
 
         vs_dec = compose_shader([vs_var_dec, orient_to_rgb])
-        fs_dec = compose_shader([fs_var_dec, visible_cross_section, visible_range])
+        fs_dec = compose_shader(
+                [fs_var_dec, visible_cross_section, visible_range]
+                )
 
         vs_impl = """
             centerVertexMCVSOutput = center;
@@ -679,11 +685,13 @@ 

Source code for fury.actors.peak

     """
     if cmap.lower() == 'rgb_standard':
         col_list = [
-            orient2rgb(points[i + 1] - points[i]) for i in range(0, len(points), 2)
+                orient2rgb(points[i + 1] - points[i])
+                for i in range(0, len(points), 2)
         ]
     elif cmap.lower() == 'boys_standard':
         col_list = [
-            boys2rgb(points[i + 1] - points[i]) for i in range(0, len(points), 2)
+            boys2rgb(points[i + 1] - points[i])
+            for i in range(0, len(points), 2)
         ]
     else:
         raise ValueError(
@@ -746,7 +754,8 @@ 

Source code for fury.actors.peak

         if len(colors) == num_lines:
             pnts_colors = np.repeat(colors, points_per_line, axis=0)
             if colors.ndim == 1:  # Scalar per line
-                color_array = numpy_support.numpy_to_vtk(pnts_colors, deep=True)
+                color_array = \
+                        numpy_support.numpy_to_vtk(pnts_colors, deep=True)
                 colors_are_scalars = True
             elif colors.ndim == 2:  # RGB(A) color per line
                 global_opacity = 1 if colors.shape[1] == 3 else -1
@@ -796,12 +805,18 @@ 

Source code for fury.actors.peak

     this actor the creation of this array requires a 2 points padding
     between indices.
     """
-    offset = np.asarray(list(range(0, num_pnts + 1, points_per_line)), dtype=int)
+    offset = np.asarray(
+            list(range(0, num_pnts + 1, points_per_line)), dtype=int
+            )
 
     vtk_array_type = numpy_support.get_vtk_array_type(connectivity.dtype)
     cell_array.SetData(
-        numpy_support.numpy_to_vtk(offset, deep=True, array_type=vtk_array_type),
-        numpy_support.numpy_to_vtk(connectivity, deep=True, array_type=vtk_array_type),
+        numpy_support.numpy_to_vtk(
+            offset, deep=True, array_type=vtk_array_type
+            ),
+        numpy_support.numpy_to_vtk(
+            connectivity, deep=True, array_type=vtk_array_type
+            ),
     )
 
     cell_array.SetNumberOfCells(num_cells)
diff --git a/dev/_modules/fury/actors/tensor.html b/dev/_modules/fury/actors/tensor.html
index 11797c13e..25029e828 100644
--- a/dev/_modules/fury/actors/tensor.html
+++ b/dev/_modules/fury/actors/tensor.html
@@ -7,7 +7,7 @@
   
     
     
-    fury.actors.tensor — FURY 0.11.0.dev26+g789a448f documentation
+    fury.actors.tensor — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -43,7 +43,7 @@
 
   
 
-    
+    
     
     
     
@@ -805,7 +805,7 @@ 

Source code for fury.actors.tensor

     analysis described in [1]_. The idea is to estimate the variance of the
     main eigenvector which corresponds to the main direction of diffusion,
     directly from estimated D and its estimated covariance matrix
-    :math:`\Delta D` (see [2]_, equation 4). The angle :math:`\\Theta`
+    :math:`\\Delta D` (see [2]_, equation 4). The angle :math:`\\Theta`
     between the perturbed principal eigenvector of D,
     :math:`\\epsilon_1+\\Delta\\epsilon_1`, and the estimated eigenvector
     :math:`\\epsilon_1`, measures the angular deviation of the main fiber
diff --git a/dev/_modules/fury/animation/animation.html b/dev/_modules/fury/animation/animation.html
index 56bd12ae8..267aa10c0 100644
--- a/dev/_modules/fury/animation/animation.html
+++ b/dev/_modules/fury/animation/animation.html
@@ -7,7 +7,7 @@
   
     
     
-    fury.animation.animation — FURY 0.11.0.dev26+g789a448f documentation
+    fury.animation.animation — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -43,7 +43,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/_modules/fury/animation/helpers.html b/dev/_modules/fury/animation/helpers.html
index d6281c489..9bacc60b8 100644
--- a/dev/_modules/fury/animation/helpers.html
+++ b/dev/_modules/fury/animation/helpers.html
@@ -7,7 +7,7 @@
   
     
     
-    fury.animation.helpers — FURY 0.11.0.dev26+g789a448f documentation
+    fury.animation.helpers — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -43,7 +43,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/_modules/fury/animation/interpolator.html b/dev/_modules/fury/animation/interpolator.html
index e6b5c3c63..3c61f7b7b 100644
--- a/dev/_modules/fury/animation/interpolator.html
+++ b/dev/_modules/fury/animation/interpolator.html
@@ -7,7 +7,7 @@
   
     
     
-    fury.animation.interpolator — FURY 0.11.0.dev26+g789a448f documentation
+    fury.animation.interpolator — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -43,7 +43,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/_modules/fury/animation/timeline.html b/dev/_modules/fury/animation/timeline.html
index bca1afa9e..73e2729d4 100644
--- a/dev/_modules/fury/animation/timeline.html
+++ b/dev/_modules/fury/animation/timeline.html
@@ -7,7 +7,7 @@
   
     
     
-    fury.animation.timeline — FURY 0.11.0.dev26+g789a448f documentation
+    fury.animation.timeline — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -43,7 +43,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/_modules/fury/colormap.html b/dev/_modules/fury/colormap.html
index f13019ccb..0b4d451a5 100644
--- a/dev/_modules/fury/colormap.html
+++ b/dev/_modules/fury/colormap.html
@@ -7,7 +7,7 @@
   
     
     
-    fury.colormap — FURY 0.11.0.dev26+g789a448f documentation
+    fury.colormap — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -43,7 +43,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/_modules/fury/convert.html b/dev/_modules/fury/convert.html
index 628b9649d..3aad1576b 100644
--- a/dev/_modules/fury/convert.html
+++ b/dev/_modules/fury/convert.html
@@ -7,7 +7,7 @@
   
     
     
-    fury.convert — FURY 0.11.0.dev26+g789a448f documentation
+    fury.convert — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -43,7 +43,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/_modules/fury/data/fetcher.html b/dev/_modules/fury/data/fetcher.html
index 7f5ab5fdb..58770a1a3 100644
--- a/dev/_modules/fury/data/fetcher.html
+++ b/dev/_modules/fury/data/fetcher.html
@@ -7,7 +7,7 @@
   
     
     
-    fury.data.fetcher — FURY 0.11.0.dev26+g789a448f documentation
+    fury.data.fetcher — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -43,7 +43,7 @@
 
   
 
-    
+    
     
     
     
@@ -401,8 +401,10 @@ 

Source code for fury.data.fetcher

 UW_RW_URL = \
     "https://digital.lib.washington.edu/researchworks/bitstream/handle/"
 
-NEW_ICONS_DATA_URL = \
-    "https://raw.githubusercontent.com/fury-gl/fury-data/master/icons/new_icons/"
+NEW_ICONS_DATA_URL = (
+    "https://raw.githubusercontent.com/fury-gl/fury-data/master/icons/"
+    "new_icons/"
+)
 
 CUBEMAP_DATA_URL = \
     "https://raw.githubusercontent.com/fury-gl/fury-data/master/cubemaps/"
@@ -567,7 +569,7 @@ 

Source code for fury.data.fetcher

 
         Raises if the sha checksum of the file does not match the expected
         value. The downloaded file is not deleted when this error is raised.
-    
+
     """
     if not os.path.exists(folder):
         print("Creating new folder %s" % (folder))
@@ -703,7 +705,6 @@ 

Source code for fury.data.fetcher

         Name of the downloaded file (e.g. BoxTextured.gltf)
     size : int, optional
         Length of the content in bytes
-    
     """
     if not os.path.exists(filename):
         print(f'Downloading: {filename}')
@@ -801,7 +802,7 @@ 

Source code for fury.data.fetcher

     -------
     filenames : tuple
         tuple of feteched filenames (list) and folder (str) path.
-    
+
     """
     if platform.system().lower() == "windows":
         asyncio.set_event_loop_policy(asyncio.WindowsSelectorEventLoopPolicy())
@@ -846,11 +847,13 @@ 

Source code for fury.data.fetcher

     ["circle-pressed.png", "circle.png", "delete-pressed.png", "delete.png",
      "drawing-pressed.png", "drawing.png", "line-pressed.png", "line.png",
      "polyline-pressed.png", "polyline.png", "quad-pressed.png", "quad.png",
-     "resize-pressed.png", "resize.png", "selection-pressed.png", "selection.png"],
+     "resize-pressed.png", "resize.png", "selection-pressed.png",
+     "selection.png"],
     ["circle-pressed.png", "circle.png", "delete-pressed.png", "delete.png",
      "drawing-pressed.png", "drawing.png", "line-pressed.png", "line.png",
      "polyline-pressed.png", "polyline.png", "quad-pressed.png", "quad.png",
-     "resize-pressed.png", "resize.png", "selection-pressed.png", "selection.png"],
+     "resize-pressed.png", "resize.png", "selection-pressed.png",
+     "selection.png"],
     ["CD859F244DF1BA719C65C869C3FAF6B8563ABF82F457730ADBFBD7CA72DDB7BC",
      "5896BDC9FF9B3D1054134D7D9A854677CE9FA4E64F494F156BB2E3F0E863F207",
      "937C46C25BC38B62021B01C97A4EE3CDE5F7C8C4A6D0DB75BF4E4CACE2AF1226",
@@ -1125,7 +1128,7 @@ 

Source code for fury.data.fetcher

     -------
     path : str
         Complete path of models.
-    
+
     """
     folder = pjoin(fury_home, 'glTF')
     model = pjoin(folder, fname)
@@ -1151,7 +1154,7 @@ 

Source code for fury.data.fetcher

     model_names : list
         Lists the name of glTF sample from
         https://github.com/KhronosGroup/glTF-Sample-Models/tree/master/2.0
-    
+
     """
     DATA_DIR = pjoin(dirname(__file__), 'files')
     with open(pjoin(DATA_DIR, 'KhronosGltfSamples.json'), 'r') as f:
diff --git a/dev/_modules/fury/decorators.html b/dev/_modules/fury/decorators.html
index 5430847ce..430f40545 100644
--- a/dev/_modules/fury/decorators.html
+++ b/dev/_modules/fury/decorators.html
@@ -7,7 +7,7 @@
   
     
     
-    fury.decorators — FURY 0.11.0.dev26+g789a448f documentation
+    fury.decorators — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -43,7 +43,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/_modules/fury/deprecator.html b/dev/_modules/fury/deprecator.html
index 01f510450..3035b7574 100644
--- a/dev/_modules/fury/deprecator.html
+++ b/dev/_modules/fury/deprecator.html
@@ -7,7 +7,7 @@
   
     
     
-    fury.deprecator — FURY 0.11.0.dev26+g789a448f documentation
+    fury.deprecator — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -43,7 +43,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/_modules/fury/gltf.html b/dev/_modules/fury/gltf.html
index c400c7208..e34506e37 100644
--- a/dev/_modules/fury/gltf.html
+++ b/dev/_modules/fury/gltf.html
@@ -7,7 +7,7 @@
   
     
     
-    fury.gltf — FURY 0.11.0.dev26+g789a448f documentation
+    fury.gltf — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -43,7 +43,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/_modules/fury/io.html b/dev/_modules/fury/io.html
index 309d70470..31f43ca9e 100644
--- a/dev/_modules/fury/io.html
+++ b/dev/_modules/fury/io.html
@@ -7,7 +7,7 @@
   
     
     
-    fury.io — FURY 0.11.0.dev26+g789a448f documentation
+    fury.io — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -43,7 +43,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/_modules/fury/layout.html b/dev/_modules/fury/layout.html
index 6260d0ce0..5b179c600 100644
--- a/dev/_modules/fury/layout.html
+++ b/dev/_modules/fury/layout.html
@@ -7,7 +7,7 @@
   
     
     
-    fury.layout — FURY 0.11.0.dev26+g789a448f documentation
+    fury.layout — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -43,7 +43,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/_modules/fury/material.html b/dev/_modules/fury/material.html
index 4fec4830f..4eb030ad9 100644
--- a/dev/_modules/fury/material.html
+++ b/dev/_modules/fury/material.html
@@ -7,7 +7,7 @@
   
     
     
-    fury.material — FURY 0.11.0.dev26+g789a448f documentation
+    fury.material — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -43,7 +43,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/_modules/fury/molecular.html b/dev/_modules/fury/molecular.html
index 4b94cf6d9..0dd8752b6 100644
--- a/dev/_modules/fury/molecular.html
+++ b/dev/_modules/fury/molecular.html
@@ -7,7 +7,7 @@
   
     
     
-    fury.molecular — FURY 0.11.0.dev26+g789a448f documentation
+    fury.molecular — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -43,7 +43,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/_modules/fury/pick.html b/dev/_modules/fury/pick.html
index 0a015768f..0a3f9ec6a 100644
--- a/dev/_modules/fury/pick.html
+++ b/dev/_modules/fury/pick.html
@@ -7,7 +7,7 @@
   
     
     
-    fury.pick — FURY 0.11.0.dev26+g789a448f documentation
+    fury.pick — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -43,7 +43,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/_modules/fury/pkg_info.html b/dev/_modules/fury/pkg_info.html
index b0dd3502e..82a6d9773 100644
--- a/dev/_modules/fury/pkg_info.html
+++ b/dev/_modules/fury/pkg_info.html
@@ -7,7 +7,7 @@
   
     
     
-    fury.pkg_info — FURY 0.11.0.dev26+g789a448f documentation
+    fury.pkg_info — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -43,7 +43,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/_modules/fury/primitive.html b/dev/_modules/fury/primitive.html
index 5bd88e47b..1598c2d78 100644
--- a/dev/_modules/fury/primitive.html
+++ b/dev/_modules/fury/primitive.html
@@ -7,7 +7,7 @@
   
     
     
-    fury.primitive — FURY 0.11.0.dev26+g789a448f documentation
+    fury.primitive — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -43,7 +43,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/_modules/fury/shaders/base.html b/dev/_modules/fury/shaders/base.html
index 8e3bb6827..257febda5 100644
--- a/dev/_modules/fury/shaders/base.html
+++ b/dev/_modules/fury/shaders/base.html
@@ -7,7 +7,7 @@
   
     
     
-    fury.shaders.base — FURY 0.11.0.dev26+g789a448f documentation
+    fury.shaders.base — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -43,7 +43,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/_modules/fury/stream/client.html b/dev/_modules/fury/stream/client.html
index 1fc581fca..8d155baa9 100644
--- a/dev/_modules/fury/stream/client.html
+++ b/dev/_modules/fury/stream/client.html
@@ -7,7 +7,7 @@
   
     
     
-    fury.stream.client — FURY 0.11.0.dev26+g789a448f documentation
+    fury.stream.client — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -43,7 +43,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/_modules/fury/stream/server/async_app.html b/dev/_modules/fury/stream/server/async_app.html
index c6c018da7..c595d9f3a 100644
--- a/dev/_modules/fury/stream/server/async_app.html
+++ b/dev/_modules/fury/stream/server/async_app.html
@@ -7,7 +7,7 @@
   
     
     
-    fury.stream.server.async_app — FURY 0.11.0.dev26+g789a448f documentation
+    fury.stream.server.async_app — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -43,7 +43,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/_modules/fury/stream/server/main.html b/dev/_modules/fury/stream/server/main.html
index ca319e361..5f7f386bc 100644
--- a/dev/_modules/fury/stream/server/main.html
+++ b/dev/_modules/fury/stream/server/main.html
@@ -7,7 +7,7 @@
   
     
     
-    fury.stream.server.main — FURY 0.11.0.dev26+g789a448f documentation
+    fury.stream.server.main — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -43,7 +43,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/_modules/fury/stream/tools.html b/dev/_modules/fury/stream/tools.html
index f9dfaeec0..832ad32bd 100644
--- a/dev/_modules/fury/stream/tools.html
+++ b/dev/_modules/fury/stream/tools.html
@@ -7,7 +7,7 @@
   
     
     
-    fury.stream.tools — FURY 0.11.0.dev26+g789a448f documentation
+    fury.stream.tools — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -43,7 +43,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/_modules/fury/stream/widget.html b/dev/_modules/fury/stream/widget.html
index 2b4e59cd5..cafaaf619 100644
--- a/dev/_modules/fury/stream/widget.html
+++ b/dev/_modules/fury/stream/widget.html
@@ -7,7 +7,7 @@
   
     
     
-    fury.stream.widget — FURY 0.11.0.dev26+g789a448f documentation
+    fury.stream.widget — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -43,7 +43,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/_modules/fury/transform.html b/dev/_modules/fury/transform.html
index 67c9f08b7..81f8eb6e5 100644
--- a/dev/_modules/fury/transform.html
+++ b/dev/_modules/fury/transform.html
@@ -7,7 +7,7 @@
   
     
     
-    fury.transform — FURY 0.11.0.dev26+g789a448f documentation
+    fury.transform — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -43,7 +43,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/_modules/fury/ui/containers.html b/dev/_modules/fury/ui/containers.html
index 560b68c1d..e52945810 100644
--- a/dev/_modules/fury/ui/containers.html
+++ b/dev/_modules/fury/ui/containers.html
@@ -7,7 +7,7 @@
   
     
     
-    fury.ui.containers — FURY 0.11.0.dev26+g789a448f documentation
+    fury.ui.containers — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -43,7 +43,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/_modules/fury/ui/core.html b/dev/_modules/fury/ui/core.html
index 6255f72b6..d394bc64f 100644
--- a/dev/_modules/fury/ui/core.html
+++ b/dev/_modules/fury/ui/core.html
@@ -7,7 +7,7 @@
   
     
     
-    fury.ui.core — FURY 0.11.0.dev26+g789a448f documentation
+    fury.ui.core — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -43,7 +43,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/_modules/fury/ui/elements.html b/dev/_modules/fury/ui/elements.html
index a83ef0c87..31a90fdb2 100644
--- a/dev/_modules/fury/ui/elements.html
+++ b/dev/_modules/fury/ui/elements.html
@@ -7,7 +7,7 @@
   
     
     
-    fury.ui.elements — FURY 0.11.0.dev26+g789a448f documentation
+    fury.ui.elements — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -43,7 +43,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/_modules/fury/ui/helpers.html b/dev/_modules/fury/ui/helpers.html
index aff6f1d7c..ff2d7db7c 100644
--- a/dev/_modules/fury/ui/helpers.html
+++ b/dev/_modules/fury/ui/helpers.html
@@ -7,7 +7,7 @@
   
     
     
-    fury.ui.helpers — FURY 0.11.0.dev26+g789a448f documentation
+    fury.ui.helpers — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -43,7 +43,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/_modules/fury/utils.html b/dev/_modules/fury/utils.html
index fb5c5ebad..900c9860f 100644
--- a/dev/_modules/fury/utils.html
+++ b/dev/_modules/fury/utils.html
@@ -7,7 +7,7 @@
   
     
     
-    fury.utils — FURY 0.11.0.dev26+g789a448f documentation
+    fury.utils — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -43,7 +43,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/_modules/fury/window.html b/dev/_modules/fury/window.html
index 24685c6a7..e53ad6c01 100644
--- a/dev/_modules/fury/window.html
+++ b/dev/_modules/fury/window.html
@@ -7,7 +7,7 @@
   
     
     
-    fury.window — FURY 0.11.0.dev26+g789a448f documentation
+    fury.window — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -43,7 +43,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/_modules/index.html b/dev/_modules/index.html
index baffe9078..cb20f21af 100644
--- a/dev/_modules/index.html
+++ b/dev/_modules/index.html
@@ -7,7 +7,7 @@
   
     
     
-    Overview: module code — FURY 0.11.0.dev26+g789a448f documentation
+    Overview: module code — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -43,7 +43,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/_static/documentation_options.js b/dev/_static/documentation_options.js
index e89a3c03a..034ccf516 100644
--- a/dev/_static/documentation_options.js
+++ b/dev/_static/documentation_options.js
@@ -1,5 +1,5 @@
 const DOCUMENTATION_OPTIONS = {
-    VERSION: '0.11.0.dev26+g789a448f',
+    VERSION: '0.11.0.dev27+g14851c6a',
     LANGUAGE: 'en',
     COLLAPSE_INDEX: false,
     BUILDER: 'html',
diff --git a/dev/auto_examples/01_introductory/index.html b/dev/auto_examples/01_introductory/index.html
index 4ceaa0514..0f7447133 100644
--- a/dev/auto_examples/01_introductory/index.html
+++ b/dev/auto_examples/01_introductory/index.html
@@ -8,7 +8,7 @@
     
     
 
-    Introductory — FURY 0.11.0.dev26+g789a448f documentation
+    Introductory — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/auto_examples/01_introductory/sg_execution_times.html b/dev/auto_examples/01_introductory/sg_execution_times.html
index 35dad2fff..c03cf7c38 100644
--- a/dev/auto_examples/01_introductory/sg_execution_times.html
+++ b/dev/auto_examples/01_introductory/sg_execution_times.html
@@ -8,7 +8,7 @@
     
     
 
-    Computation times — FURY 0.11.0.dev26+g789a448f documentation
+    Computation times — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/auto_examples/01_introductory/viz_arrow.html b/dev/auto_examples/01_introductory/viz_arrow.html
index b9a3781a3..9e7fb9f87 100644
--- a/dev/auto_examples/01_introductory/viz_arrow.html
+++ b/dev/auto_examples/01_introductory/viz_arrow.html
@@ -8,7 +8,7 @@
     
     
 
-    Fury Arrow Actor — FURY 0.11.0.dev26+g789a448f documentation
+    Fury Arrow Actor — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/auto_examples/01_introductory/viz_cone.html b/dev/auto_examples/01_introductory/viz_cone.html
index 8c72445d2..edcd5d172 100644
--- a/dev/auto_examples/01_introductory/viz_cone.html
+++ b/dev/auto_examples/01_introductory/viz_cone.html
@@ -8,7 +8,7 @@
     
     
 
-    Fury Cone Actor — FURY 0.11.0.dev26+g789a448f documentation
+    Fury Cone Actor — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/auto_examples/01_introductory/viz_earth_animation.html b/dev/auto_examples/01_introductory/viz_earth_animation.html
index 81614a0f3..1a3adb2ef 100644
--- a/dev/auto_examples/01_introductory/viz_earth_animation.html
+++ b/dev/auto_examples/01_introductory/viz_earth_animation.html
@@ -8,7 +8,7 @@
     
     
 
-    Texture Sphere Animation — FURY 0.11.0.dev26+g789a448f documentation
+    Texture Sphere Animation — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/auto_examples/01_introductory/viz_earth_coordinates.html b/dev/auto_examples/01_introductory/viz_earth_coordinates.html
index 483062f16..7453d5552 100644
--- a/dev/auto_examples/01_introductory/viz_earth_coordinates.html
+++ b/dev/auto_examples/01_introductory/viz_earth_coordinates.html
@@ -8,7 +8,7 @@
     
     
 
-    Earth Coordinate Conversion — FURY 0.11.0.dev26+g789a448f documentation
+    Earth Coordinate Conversion — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/auto_examples/01_introductory/viz_gltf.html b/dev/auto_examples/01_introductory/viz_gltf.html
index d8feae93e..62bd41ed2 100644
--- a/dev/auto_examples/01_introductory/viz_gltf.html
+++ b/dev/auto_examples/01_introductory/viz_gltf.html
@@ -8,7 +8,7 @@
     
     
 
-    Visualizing a glTF file — FURY 0.11.0.dev26+g789a448f documentation
+    Visualizing a glTF file — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/auto_examples/01_introductory/viz_gltf_animated.html b/dev/auto_examples/01_introductory/viz_gltf_animated.html
index f5ddd955b..edbaaa33d 100644
--- a/dev/auto_examples/01_introductory/viz_gltf_animated.html
+++ b/dev/auto_examples/01_introductory/viz_gltf_animated.html
@@ -8,7 +8,7 @@
     
     
 
-    Visualizing a glTF file — FURY 0.11.0.dev26+g789a448f documentation
+    Visualizing a glTF file — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/auto_examples/01_introductory/viz_gltf_export.html b/dev/auto_examples/01_introductory/viz_gltf_export.html
index fa37587fc..7df93d45c 100644
--- a/dev/auto_examples/01_introductory/viz_gltf_export.html
+++ b/dev/auto_examples/01_introductory/viz_gltf_export.html
@@ -8,7 +8,7 @@
     
     
 
-    Exporting scene as a glTF file — FURY 0.11.0.dev26+g789a448f documentation
+    Exporting scene as a glTF file — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/auto_examples/01_introductory/viz_morphing.html b/dev/auto_examples/01_introductory/viz_morphing.html
index 1751f3785..33965868b 100644
--- a/dev/auto_examples/01_introductory/viz_morphing.html
+++ b/dev/auto_examples/01_introductory/viz_morphing.html
@@ -8,7 +8,7 @@
     
     
 
-    Morphing Animation in a glTF — FURY 0.11.0.dev26+g789a448f documentation
+    Morphing Animation in a glTF — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/auto_examples/01_introductory/viz_multithread.html b/dev/auto_examples/01_introductory/viz_multithread.html
index 29440a65a..bb32a4677 100644
--- a/dev/auto_examples/01_introductory/viz_multithread.html
+++ b/dev/auto_examples/01_introductory/viz_multithread.html
@@ -8,7 +8,7 @@
     
     
 
-    Multithreading Example — FURY 0.11.0.dev26+g789a448f documentation
+    Multithreading Example — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/auto_examples/01_introductory/viz_picking.html b/dev/auto_examples/01_introductory/viz_picking.html
index 7139fa1b7..42a89a85b 100644
--- a/dev/auto_examples/01_introductory/viz_picking.html
+++ b/dev/auto_examples/01_introductory/viz_picking.html
@@ -8,7 +8,7 @@
     
     
 
-    Simple picking — FURY 0.11.0.dev26+g789a448f documentation
+    Simple picking — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/auto_examples/01_introductory/viz_selection.html b/dev/auto_examples/01_introductory/viz_selection.html
index 0a3d00246..7dfa4de18 100644
--- a/dev/auto_examples/01_introductory/viz_selection.html
+++ b/dev/auto_examples/01_introductory/viz_selection.html
@@ -8,7 +8,7 @@
     
     
 
-    Selecting multiple objects — FURY 0.11.0.dev26+g789a448f documentation
+    Selecting multiple objects — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/auto_examples/01_introductory/viz_skinning.html b/dev/auto_examples/01_introductory/viz_skinning.html
index 6b171f9c3..f0a5da1d5 100644
--- a/dev/auto_examples/01_introductory/viz_skinning.html
+++ b/dev/auto_examples/01_introductory/viz_skinning.html
@@ -8,7 +8,7 @@
     
     
 
-    Skeletal Animation in a glTF file — FURY 0.11.0.dev26+g789a448f documentation
+    Skeletal Animation in a glTF file — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/auto_examples/01_introductory/viz_slice.html b/dev/auto_examples/01_introductory/viz_slice.html
index fc2aeac14..55bc5231c 100644
--- a/dev/auto_examples/01_introductory/viz_slice.html
+++ b/dev/auto_examples/01_introductory/viz_slice.html
@@ -8,7 +8,7 @@
     
     
 
-    Simple volume slicing — FURY 0.11.0.dev26+g789a448f documentation
+    Simple volume slicing — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/auto_examples/01_introductory/viz_solar_system.html b/dev/auto_examples/01_introductory/viz_solar_system.html
index 7aa280908..6962feb1a 100644
--- a/dev/auto_examples/01_introductory/viz_solar_system.html
+++ b/dev/auto_examples/01_introductory/viz_solar_system.html
@@ -8,7 +8,7 @@
     
     
 
-    Solar System Animation — FURY 0.11.0.dev26+g789a448f documentation
+    Solar System Animation — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/auto_examples/01_introductory/viz_sphere.html b/dev/auto_examples/01_introductory/viz_sphere.html
index c563e241e..13bc3b017 100644
--- a/dev/auto_examples/01_introductory/viz_sphere.html
+++ b/dev/auto_examples/01_introductory/viz_sphere.html
@@ -8,7 +8,7 @@
     
     
 
-    FURY sphere Actor — FURY 0.11.0.dev26+g789a448f documentation
+    FURY sphere Actor — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/auto_examples/01_introductory/viz_spiky.html b/dev/auto_examples/01_introductory/viz_spiky.html
index 79faebf02..61460e81d 100644
--- a/dev/auto_examples/01_introductory/viz_spiky.html
+++ b/dev/auto_examples/01_introductory/viz_spiky.html
@@ -8,7 +8,7 @@
     
     
 
-    Spiky Sphere — FURY 0.11.0.dev26+g789a448f documentation
+    Spiky Sphere — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/auto_examples/01_introductory/viz_surfaces.html b/dev/auto_examples/01_introductory/viz_surfaces.html
index bd2d91ef2..af05b8d5f 100644
--- a/dev/auto_examples/01_introductory/viz_surfaces.html
+++ b/dev/auto_examples/01_introductory/viz_surfaces.html
@@ -8,7 +8,7 @@
     
     
 
-    Visualize surfaces — FURY 0.11.0.dev26+g789a448f documentation
+    Visualize surfaces — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/auto_examples/01_introductory/viz_texture.html b/dev/auto_examples/01_introductory/viz_texture.html
index 107c1e9ae..1277926e1 100644
--- a/dev/auto_examples/01_introductory/viz_texture.html
+++ b/dev/auto_examples/01_introductory/viz_texture.html
@@ -8,7 +8,7 @@
     
     
 
-    Sphere Texture — FURY 0.11.0.dev26+g789a448f documentation
+    Sphere Texture — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/auto_examples/01_introductory/viz_timers.html b/dev/auto_examples/01_introductory/viz_timers.html
index 621fadfd5..f2dbddcb7 100644
--- a/dev/auto_examples/01_introductory/viz_timers.html
+++ b/dev/auto_examples/01_introductory/viz_timers.html
@@ -8,7 +8,7 @@
     
     
 
-    Using a timer — FURY 0.11.0.dev26+g789a448f documentation
+    Using a timer — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/auto_examples/04_demos/collision-particles.html b/dev/auto_examples/04_demos/collision-particles.html
index ff9f1114b..19c3461f5 100644
--- a/dev/auto_examples/04_demos/collision-particles.html
+++ b/dev/auto_examples/04_demos/collision-particles.html
@@ -8,7 +8,7 @@
     
     
 
-    Collisions of particles in a box — FURY 0.11.0.dev26+g789a448f documentation
+    Collisions of particles in a box — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/auto_examples/04_demos/index.html b/dev/auto_examples/04_demos/index.html
index 1c2d8ebe9..175209f43 100644
--- a/dev/auto_examples/04_demos/index.html
+++ b/dev/auto_examples/04_demos/index.html
@@ -8,7 +8,7 @@
     
     
 
-    Demos — FURY 0.11.0.dev26+g789a448f documentation
+    Demos — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/auto_examples/04_demos/sg_execution_times.html b/dev/auto_examples/04_demos/sg_execution_times.html
index a5b3b84fa..d7666f59b 100644
--- a/dev/auto_examples/04_demos/sg_execution_times.html
+++ b/dev/auto_examples/04_demos/sg_execution_times.html
@@ -8,7 +8,7 @@
     
     
 
-    Computation times — FURY 0.11.0.dev26+g789a448f documentation
+    Computation times — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/auto_examples/04_demos/viz_advanced.html b/dev/auto_examples/04_demos/viz_advanced.html
index 13402a651..03b6c0b15 100644
--- a/dev/auto_examples/04_demos/viz_advanced.html
+++ b/dev/auto_examples/04_demos/viz_advanced.html
@@ -8,7 +8,7 @@
     
     
 
-    Advanced interactive visualization — FURY 0.11.0.dev26+g789a448f documentation
+    Advanced interactive visualization — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/auto_examples/04_demos/viz_animated_surfaces.html b/dev/auto_examples/04_demos/viz_animated_surfaces.html
index 202630dd3..c9e497e08 100644
--- a/dev/auto_examples/04_demos/viz_animated_surfaces.html
+++ b/dev/auto_examples/04_demos/viz_animated_surfaces.html
@@ -8,7 +8,7 @@
     
     
 
-    Animated 2D functions — FURY 0.11.0.dev26+g789a448f documentation
+    Animated 2D functions — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/auto_examples/04_demos/viz_brownian_motion.html b/dev/auto_examples/04_demos/viz_brownian_motion.html
index 3656bd54c..c79b108f2 100644
--- a/dev/auto_examples/04_demos/viz_brownian_motion.html
+++ b/dev/auto_examples/04_demos/viz_brownian_motion.html
@@ -8,7 +8,7 @@
     
     
 
-    Brownian motion — FURY 0.11.0.dev26+g789a448f documentation
+    Brownian motion — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/auto_examples/04_demos/viz_bundles.html b/dev/auto_examples/04_demos/viz_bundles.html
index d1c395c63..604b2e05a 100644
--- a/dev/auto_examples/04_demos/viz_bundles.html
+++ b/dev/auto_examples/04_demos/viz_bundles.html
@@ -8,7 +8,7 @@
     
     
 
-    Visualize bundles and metrics on bundles — FURY 0.11.0.dev26+g789a448f documentation
+    Visualize bundles and metrics on bundles — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/auto_examples/04_demos/viz_dt_ellipsoids.html b/dev/auto_examples/04_demos/viz_dt_ellipsoids.html
index 7f8cf8dff..44a8c2a7b 100644
--- a/dev/auto_examples/04_demos/viz_dt_ellipsoids.html
+++ b/dev/auto_examples/04_demos/viz_dt_ellipsoids.html
@@ -8,7 +8,7 @@
     
     
 
-    Display Tensor Ellipsoids for DTI using tensor_slicer vs ellipsoid actor — FURY 0.11.0.dev26+g789a448f documentation
+    Display Tensor Ellipsoids for DTI using tensor_slicer vs ellipsoid actor — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/auto_examples/04_demos/viz_emwave_animation.html b/dev/auto_examples/04_demos/viz_emwave_animation.html
index 2ce24e840..c0a12bdfb 100644
--- a/dev/auto_examples/04_demos/viz_emwave_animation.html
+++ b/dev/auto_examples/04_demos/viz_emwave_animation.html
@@ -8,7 +8,7 @@
     
     
 
-    Electromagnetic Wave Propagation Animation — FURY 0.11.0.dev26+g789a448f documentation
+    Electromagnetic Wave Propagation Animation — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/auto_examples/04_demos/viz_fiber_odf.html b/dev/auto_examples/04_demos/viz_fiber_odf.html
index d1b0a0e38..61afba521 100644
--- a/dev/auto_examples/04_demos/viz_fiber_odf.html
+++ b/dev/auto_examples/04_demos/viz_fiber_odf.html
@@ -8,7 +8,7 @@
     
     
 
-    Brain Fiber ODF Visualisation — FURY 0.11.0.dev26+g789a448f documentation
+    Brain Fiber ODF Visualisation — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/auto_examples/04_demos/viz_fine_tuning_gl_context.html b/dev/auto_examples/04_demos/viz_fine_tuning_gl_context.html
index 08e594e22..94d4040bb 100644
--- a/dev/auto_examples/04_demos/viz_fine_tuning_gl_context.html
+++ b/dev/auto_examples/04_demos/viz_fine_tuning_gl_context.html
@@ -8,7 +8,7 @@
     
     
 
-    Fine-tuning the OpenGL state using shader callbacks — FURY 0.11.0.dev26+g789a448f documentation
+    Fine-tuning the OpenGL state using shader callbacks — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/auto_examples/04_demos/viz_fractals.html b/dev/auto_examples/04_demos/viz_fractals.html
index 6302966db..ed315b0f7 100644
--- a/dev/auto_examples/04_demos/viz_fractals.html
+++ b/dev/auto_examples/04_demos/viz_fractals.html
@@ -8,7 +8,7 @@
     
     
 
-    Fractals — FURY 0.11.0.dev26+g789a448f documentation
+    Fractals — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/auto_examples/04_demos/viz_helical_motion.html b/dev/auto_examples/04_demos/viz_helical_motion.html
index 7c85a24d7..bcb08e8f0 100644
--- a/dev/auto_examples/04_demos/viz_helical_motion.html
+++ b/dev/auto_examples/04_demos/viz_helical_motion.html
@@ -8,7 +8,7 @@
     
     
 
-    Motion of a charged particle in a combined magnetic and electric field — FURY 0.11.0.dev26+g789a448f documentation
+    Motion of a charged particle in a combined magnetic and electric field — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/auto_examples/04_demos/viz_markers.html b/dev/auto_examples/04_demos/viz_markers.html
index 2e8d08ec8..848031f3e 100644
--- a/dev/auto_examples/04_demos/viz_markers.html
+++ b/dev/auto_examples/04_demos/viz_markers.html
@@ -8,7 +8,7 @@
     
     
 
-    Fury Markers — FURY 0.11.0.dev26+g789a448f documentation
+    Fury Markers — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/auto_examples/04_demos/viz_network.html b/dev/auto_examples/04_demos/viz_network.html
index 0a79d3c55..58d4eb765 100644
--- a/dev/auto_examples/04_demos/viz_network.html
+++ b/dev/auto_examples/04_demos/viz_network.html
@@ -8,7 +8,7 @@
     
     
 
-    Visualize Interdisciplinary map of the journals network — FURY 0.11.0.dev26+g789a448f documentation
+    Visualize Interdisciplinary map of the journals network — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/auto_examples/04_demos/viz_network_animated.html b/dev/auto_examples/04_demos/viz_network_animated.html
index dce9472fa..f59109833 100644
--- a/dev/auto_examples/04_demos/viz_network_animated.html
+++ b/dev/auto_examples/04_demos/viz_network_animated.html
@@ -8,7 +8,7 @@
     
     
 
-    Visualize Networks (Animated version) — FURY 0.11.0.dev26+g789a448f documentation
+    Visualize Networks (Animated version) — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/auto_examples/04_demos/viz_pbr_interactive.html b/dev/auto_examples/04_demos/viz_pbr_interactive.html
index 61e68946d..0c3fb0c73 100644
--- a/dev/auto_examples/04_demos/viz_pbr_interactive.html
+++ b/dev/auto_examples/04_demos/viz_pbr_interactive.html
@@ -8,7 +8,7 @@
     
     
 
-    Interactive PBR demo — FURY 0.11.0.dev26+g789a448f documentation
+    Interactive PBR demo — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/auto_examples/04_demos/viz_play_video.html b/dev/auto_examples/04_demos/viz_play_video.html
index 7b1b2ed83..1056f0f62 100644
--- a/dev/auto_examples/04_demos/viz_play_video.html
+++ b/dev/auto_examples/04_demos/viz_play_video.html
@@ -8,7 +8,7 @@
     
     
 
-    Play a video in the 3D world — FURY 0.11.0.dev26+g789a448f documentation
+    Play a video in the 3D world — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/auto_examples/04_demos/viz_roi_contour.html b/dev/auto_examples/04_demos/viz_roi_contour.html
index ca9d6cb04..1f3dd4e54 100644
--- a/dev/auto_examples/04_demos/viz_roi_contour.html
+++ b/dev/auto_examples/04_demos/viz_roi_contour.html
@@ -8,7 +8,7 @@
     
     
 
-    Visualization of ROI Surface Rendered with Streamlines — FURY 0.11.0.dev26+g789a448f documentation
+    Visualization of ROI Surface Rendered with Streamlines — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/auto_examples/04_demos/viz_tesseract.html b/dev/auto_examples/04_demos/viz_tesseract.html
index 354f1b830..dbe8b21fe 100644
--- a/dev/auto_examples/04_demos/viz_tesseract.html
+++ b/dev/auto_examples/04_demos/viz_tesseract.html
@@ -8,7 +8,7 @@
     
     
 
-    Tesseract (Hypercube) — FURY 0.11.0.dev26+g789a448f documentation
+    Tesseract (Hypercube) — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/auto_examples/07_ui/index.html b/dev/auto_examples/07_ui/index.html
index 1be92051d..7d7eecbe5 100644
--- a/dev/auto_examples/07_ui/index.html
+++ b/dev/auto_examples/07_ui/index.html
@@ -8,7 +8,7 @@
     
     
 
-    User Interface Elements — FURY 0.11.0.dev26+g789a448f documentation
+    User Interface Elements — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/auto_examples/07_ui/sg_execution_times.html b/dev/auto_examples/07_ui/sg_execution_times.html
index 0299b3bae..efea44454 100644
--- a/dev/auto_examples/07_ui/sg_execution_times.html
+++ b/dev/auto_examples/07_ui/sg_execution_times.html
@@ -8,7 +8,7 @@
     
     
 
-    Computation times — FURY 0.11.0.dev26+g789a448f documentation
+    Computation times — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/auto_examples/07_ui/viz_buttons.html b/dev/auto_examples/07_ui/viz_buttons.html
index 57613716b..b6c06cd24 100644
--- a/dev/auto_examples/07_ui/viz_buttons.html
+++ b/dev/auto_examples/07_ui/viz_buttons.html
@@ -8,7 +8,7 @@
     
     
 
-    Buttons & Text — FURY 0.11.0.dev26+g789a448f documentation
+    Buttons & Text — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/auto_examples/07_ui/viz_card.html b/dev/auto_examples/07_ui/viz_card.html
index 7642a5db7..b072ec2c1 100644
--- a/dev/auto_examples/07_ui/viz_card.html
+++ b/dev/auto_examples/07_ui/viz_card.html
@@ -8,7 +8,7 @@
     
     
 
-    Card — FURY 0.11.0.dev26+g789a448f documentation
+    Card — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/auto_examples/07_ui/viz_card_sprite_sheet.html b/dev/auto_examples/07_ui/viz_card_sprite_sheet.html
index 0259812ae..91c3ea811 100644
--- a/dev/auto_examples/07_ui/viz_card_sprite_sheet.html
+++ b/dev/auto_examples/07_ui/viz_card_sprite_sheet.html
@@ -8,7 +8,7 @@
     
     
 
-    Card — FURY 0.11.0.dev26+g789a448f documentation
+    Card — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/auto_examples/07_ui/viz_check_boxes.html b/dev/auto_examples/07_ui/viz_check_boxes.html
index 3c3860218..c3491bf36 100644
--- a/dev/auto_examples/07_ui/viz_check_boxes.html
+++ b/dev/auto_examples/07_ui/viz_check_boxes.html
@@ -8,7 +8,7 @@
     
     
 
-    Figure and Color Control using Check boxes and Radio Buttons — FURY 0.11.0.dev26+g789a448f documentation
+    Figure and Color Control using Check boxes and Radio Buttons — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/auto_examples/07_ui/viz_combobox.html b/dev/auto_examples/07_ui/viz_combobox.html
index f161bc29a..62ba6e1da 100644
--- a/dev/auto_examples/07_ui/viz_combobox.html
+++ b/dev/auto_examples/07_ui/viz_combobox.html
@@ -8,7 +8,7 @@
     
     
 
-    ComboBox — FURY 0.11.0.dev26+g789a448f documentation
+    ComboBox — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/auto_examples/07_ui/viz_drawpanel.html b/dev/auto_examples/07_ui/viz_drawpanel.html
index 97f45959c..9e02473a8 100644
--- a/dev/auto_examples/07_ui/viz_drawpanel.html
+++ b/dev/auto_examples/07_ui/viz_drawpanel.html
@@ -8,7 +8,7 @@
     
     
 
-    DrawPanel — FURY 0.11.0.dev26+g789a448f documentation
+    DrawPanel — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/auto_examples/07_ui/viz_layout.html b/dev/auto_examples/07_ui/viz_layout.html
index 9353b15c2..55f6fb685 100644
--- a/dev/auto_examples/07_ui/viz_layout.html
+++ b/dev/auto_examples/07_ui/viz_layout.html
@@ -8,7 +8,7 @@
     
     
 
-    Using Layouts with different UI elements — FURY 0.11.0.dev26+g789a448f documentation
+    Using Layouts with different UI elements — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/auto_examples/07_ui/viz_radio_buttons.html b/dev/auto_examples/07_ui/viz_radio_buttons.html
index 6ffe68f06..98c629831 100644
--- a/dev/auto_examples/07_ui/viz_radio_buttons.html
+++ b/dev/auto_examples/07_ui/viz_radio_buttons.html
@@ -8,7 +8,7 @@
     
     
 
-    Sphere Color Control using Radio Buttons — FURY 0.11.0.dev26+g789a448f documentation
+    Sphere Color Control using Radio Buttons — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/auto_examples/07_ui/viz_shapes.html b/dev/auto_examples/07_ui/viz_shapes.html
index 86d550595..f3f39cefa 100644
--- a/dev/auto_examples/07_ui/viz_shapes.html
+++ b/dev/auto_examples/07_ui/viz_shapes.html
@@ -8,7 +8,7 @@
     
     
 
-    Simple Shapes — FURY 0.11.0.dev26+g789a448f documentation
+    Simple Shapes — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/auto_examples/07_ui/viz_spinbox.html b/dev/auto_examples/07_ui/viz_spinbox.html
index d5b067d2b..fd35bfae5 100644
--- a/dev/auto_examples/07_ui/viz_spinbox.html
+++ b/dev/auto_examples/07_ui/viz_spinbox.html
@@ -8,7 +8,7 @@
     
     
 
-    SpinBox UI — FURY 0.11.0.dev26+g789a448f documentation
+    SpinBox UI — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/auto_examples/07_ui/viz_tab.html b/dev/auto_examples/07_ui/viz_tab.html
index 0d4114995..c79863c0b 100644
--- a/dev/auto_examples/07_ui/viz_tab.html
+++ b/dev/auto_examples/07_ui/viz_tab.html
@@ -8,7 +8,7 @@
     
     
 
-    Tab UI — FURY 0.11.0.dev26+g789a448f documentation
+    Tab UI — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/auto_examples/07_ui/viz_ui.html b/dev/auto_examples/07_ui/viz_ui.html
index 9bb0fd3ef..1417de43d 100644
--- a/dev/auto_examples/07_ui/viz_ui.html
+++ b/dev/auto_examples/07_ui/viz_ui.html
@@ -8,7 +8,7 @@
     
     
 
-    User Interfaces — FURY 0.11.0.dev26+g789a448f documentation
+    User Interfaces — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/auto_examples/07_ui/viz_ui_listbox.html b/dev/auto_examples/07_ui/viz_ui_listbox.html
index a13a68897..84cbe91d1 100644
--- a/dev/auto_examples/07_ui/viz_ui_listbox.html
+++ b/dev/auto_examples/07_ui/viz_ui_listbox.html
@@ -8,7 +8,7 @@
     
     
 
-    ListBox — FURY 0.11.0.dev26+g789a448f documentation
+    ListBox — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/auto_examples/07_ui/viz_ui_slider.html b/dev/auto_examples/07_ui/viz_ui_slider.html
index 92098cf4d..d9dc0b403 100644
--- a/dev/auto_examples/07_ui/viz_ui_slider.html
+++ b/dev/auto_examples/07_ui/viz_ui_slider.html
@@ -8,7 +8,7 @@
     
     
 
-    Cube & Slider Control — FURY 0.11.0.dev26+g789a448f documentation
+    Cube & Slider Control — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/auto_examples/10_animation/index.html b/dev/auto_examples/10_animation/index.html
index a9b2fe9ca..863f4d03e 100644
--- a/dev/auto_examples/10_animation/index.html
+++ b/dev/auto_examples/10_animation/index.html
@@ -8,7 +8,7 @@
     
     
 
-    Animation — FURY 0.11.0.dev26+g789a448f documentation
+    Animation — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/auto_examples/10_animation/sg_execution_times.html b/dev/auto_examples/10_animation/sg_execution_times.html
index c8abbb2ca..7a8db4062 100644
--- a/dev/auto_examples/10_animation/sg_execution_times.html
+++ b/dev/auto_examples/10_animation/sg_execution_times.html
@@ -8,7 +8,7 @@
     
     
 
-    Computation times — FURY 0.11.0.dev26+g789a448f documentation
+    Computation times — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/auto_examples/10_animation/viz_bezier_interpolator.html b/dev/auto_examples/10_animation/viz_bezier_interpolator.html
index bb33cfbb6..457cdf4a3 100644
--- a/dev/auto_examples/10_animation/viz_bezier_interpolator.html
+++ b/dev/auto_examples/10_animation/viz_bezier_interpolator.html
@@ -8,7 +8,7 @@
     
     
 
-    Bezier Interpolator — FURY 0.11.0.dev26+g789a448f documentation
+    Bezier Interpolator — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/auto_examples/10_animation/viz_camera.html b/dev/auto_examples/10_animation/viz_camera.html
index 7f3ce101d..7d400f355 100644
--- a/dev/auto_examples/10_animation/viz_camera.html
+++ b/dev/auto_examples/10_animation/viz_camera.html
@@ -8,7 +8,7 @@
     
     
 
-    Keyframe animation: Camera and opacity — FURY 0.11.0.dev26+g789a448f documentation
+    Keyframe animation: Camera and opacity — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/auto_examples/10_animation/viz_color_interpolators.html b/dev/auto_examples/10_animation/viz_color_interpolators.html
index 1c0c64b89..6b608a4de 100644
--- a/dev/auto_examples/10_animation/viz_color_interpolators.html
+++ b/dev/auto_examples/10_animation/viz_color_interpolators.html
@@ -8,7 +8,7 @@
     
     
 
-    Keyframe Color Interpolators — FURY 0.11.0.dev26+g789a448f documentation
+    Keyframe Color Interpolators — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/auto_examples/10_animation/viz_custom_interpolator.html b/dev/auto_examples/10_animation/viz_custom_interpolator.html
index d8903db9b..f73b187aa 100644
--- a/dev/auto_examples/10_animation/viz_custom_interpolator.html
+++ b/dev/auto_examples/10_animation/viz_custom_interpolator.html
@@ -8,7 +8,7 @@
     
     
 
-    Making a custom interpolator — FURY 0.11.0.dev26+g789a448f documentation
+    Making a custom interpolator — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/auto_examples/10_animation/viz_hierarchical_animation.html b/dev/auto_examples/10_animation/viz_hierarchical_animation.html
index 172a79b82..3923361b9 100644
--- a/dev/auto_examples/10_animation/viz_hierarchical_animation.html
+++ b/dev/auto_examples/10_animation/viz_hierarchical_animation.html
@@ -8,7 +8,7 @@
     
     
 
-    Keyframe hierarchical Animation — FURY 0.11.0.dev26+g789a448f documentation
+    Keyframe hierarchical Animation — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/auto_examples/10_animation/viz_introduction.html b/dev/auto_examples/10_animation/viz_introduction.html
index a4bdba10b..44d902ed5 100644
--- a/dev/auto_examples/10_animation/viz_introduction.html
+++ b/dev/auto_examples/10_animation/viz_introduction.html
@@ -8,7 +8,7 @@
     
     
 
-    Keyframe animation introduction — FURY 0.11.0.dev26+g789a448f documentation
+    Keyframe animation introduction — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/auto_examples/10_animation/viz_robot_arm_animation.html b/dev/auto_examples/10_animation/viz_robot_arm_animation.html
index 32d838c40..54b0233f2 100644
--- a/dev/auto_examples/10_animation/viz_robot_arm_animation.html
+++ b/dev/auto_examples/10_animation/viz_robot_arm_animation.html
@@ -8,7 +8,7 @@
     
     
 
-    Arm Robot Animation — FURY 0.11.0.dev26+g789a448f documentation
+    Arm Robot Animation — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/auto_examples/10_animation/viz_spline_interpolator.html b/dev/auto_examples/10_animation/viz_spline_interpolator.html
index 239df8c0e..1f214b261 100644
--- a/dev/auto_examples/10_animation/viz_spline_interpolator.html
+++ b/dev/auto_examples/10_animation/viz_spline_interpolator.html
@@ -8,7 +8,7 @@
     
     
 
-    Keyframes Spline Interpolator — FURY 0.11.0.dev26+g789a448f documentation
+    Keyframes Spline Interpolator — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/auto_examples/10_animation/viz_timeline.html b/dev/auto_examples/10_animation/viz_timeline.html
index 5143a7472..4a1be0c30 100644
--- a/dev/auto_examples/10_animation/viz_timeline.html
+++ b/dev/auto_examples/10_animation/viz_timeline.html
@@ -8,7 +8,7 @@
     
     
 
-    Timeline and setting keyframes — FURY 0.11.0.dev26+g789a448f documentation
+    Timeline and setting keyframes — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/auto_examples/10_animation/viz_using_time_equations.html b/dev/auto_examples/10_animation/viz_using_time_equations.html
index 2a8c56239..c8dbf3677 100644
--- a/dev/auto_examples/10_animation/viz_using_time_equations.html
+++ b/dev/auto_examples/10_animation/viz_using_time_equations.html
@@ -8,7 +8,7 @@
     
     
 
-    Keyframe animation — FURY 0.11.0.dev26+g789a448f documentation
+    Keyframe animation — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/auto_examples/13_shaders/index.html b/dev/auto_examples/13_shaders/index.html
index f0ce218f8..7842859d8 100644
--- a/dev/auto_examples/13_shaders/index.html
+++ b/dev/auto_examples/13_shaders/index.html
@@ -8,7 +8,7 @@
     
     
 
-    Shaders — FURY 0.11.0.dev26+g789a448f documentation
+    Shaders — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/auto_examples/13_shaders/sg_execution_times.html b/dev/auto_examples/13_shaders/sg_execution_times.html
index f3f4320f6..e1baec961 100644
--- a/dev/auto_examples/13_shaders/sg_execution_times.html
+++ b/dev/auto_examples/13_shaders/sg_execution_times.html
@@ -8,7 +8,7 @@
     
     
 
-    Computation times — FURY 0.11.0.dev26+g789a448f documentation
+    Computation times — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/auto_examples/13_shaders/viz_billboard_sdf_spheres.html b/dev/auto_examples/13_shaders/viz_billboard_sdf_spheres.html
index 2cb416934..fc390e1fb 100644
--- a/dev/auto_examples/13_shaders/viz_billboard_sdf_spheres.html
+++ b/dev/auto_examples/13_shaders/viz_billboard_sdf_spheres.html
@@ -8,7 +8,7 @@
     
     
 
-    SDF Impostors on Billboards — FURY 0.11.0.dev26+g789a448f documentation
+    SDF Impostors on Billboards — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/auto_examples/13_shaders/viz_pbr_spheres.html b/dev/auto_examples/13_shaders/viz_pbr_spheres.html
index 365f9d1bc..b4cd19c5c 100644
--- a/dev/auto_examples/13_shaders/viz_pbr_spheres.html
+++ b/dev/auto_examples/13_shaders/viz_pbr_spheres.html
@@ -8,7 +8,7 @@
     
     
 
-    Physically-Based Rendering (PBR) on spheres — FURY 0.11.0.dev26+g789a448f documentation
+    Physically-Based Rendering (PBR) on spheres — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/auto_examples/13_shaders/viz_principled_spheres.html b/dev/auto_examples/13_shaders/viz_principled_spheres.html
index 92b15679d..2bca5433e 100644
--- a/dev/auto_examples/13_shaders/viz_principled_spheres.html
+++ b/dev/auto_examples/13_shaders/viz_principled_spheres.html
@@ -8,7 +8,7 @@
     
     
 
-    Principled BRDF shader on spheres — FURY 0.11.0.dev26+g789a448f documentation
+    Principled BRDF shader on spheres — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/auto_examples/13_shaders/viz_sdf_cylinder.html b/dev/auto_examples/13_shaders/viz_sdf_cylinder.html
index e4a7afc28..2ffbdb6b4 100644
--- a/dev/auto_examples/13_shaders/viz_sdf_cylinder.html
+++ b/dev/auto_examples/13_shaders/viz_sdf_cylinder.html
@@ -8,7 +8,7 @@
     
     
 
-    Make a Cylinder using polygons vs SDF — FURY 0.11.0.dev26+g789a448f documentation
+    Make a Cylinder using polygons vs SDF — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/auto_examples/13_shaders/viz_sdfactor.html b/dev/auto_examples/13_shaders/viz_sdfactor.html
index 84e55f63f..37d4e82e5 100644
--- a/dev/auto_examples/13_shaders/viz_sdfactor.html
+++ b/dev/auto_examples/13_shaders/viz_sdfactor.html
@@ -8,7 +8,7 @@
     
     
 
-    Visualize SDF Actor — FURY 0.11.0.dev26+g789a448f documentation
+    Visualize SDF Actor — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/auto_examples/13_shaders/viz_shader.html b/dev/auto_examples/13_shaders/viz_shader.html
index e11764251..db18a6595 100644
--- a/dev/auto_examples/13_shaders/viz_shader.html
+++ b/dev/auto_examples/13_shaders/viz_shader.html
@@ -8,7 +8,7 @@
     
     
 
-    Varying Color — FURY 0.11.0.dev26+g789a448f documentation
+    Varying Color — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/auto_examples/17_pybullet/index.html b/dev/auto_examples/17_pybullet/index.html
index 19b1c3b31..106386094 100644
--- a/dev/auto_examples/17_pybullet/index.html
+++ b/dev/auto_examples/17_pybullet/index.html
@@ -8,7 +8,7 @@
     
     
 
-    Integrate Physics using pybullet — FURY 0.11.0.dev26+g789a448f documentation
+    Integrate Physics using pybullet — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/auto_examples/17_pybullet/sg_execution_times.html b/dev/auto_examples/17_pybullet/sg_execution_times.html
index 9f8ee0cca..71508265a 100644
--- a/dev/auto_examples/17_pybullet/sg_execution_times.html
+++ b/dev/auto_examples/17_pybullet/sg_execution_times.html
@@ -8,7 +8,7 @@
     
     
 
-    Computation times — FURY 0.11.0.dev26+g789a448f documentation
+    Computation times — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/auto_examples/17_pybullet/viz_ball_collide.html b/dev/auto_examples/17_pybullet/viz_ball_collide.html
index f770217e9..8f8952aff 100644
--- a/dev/auto_examples/17_pybullet/viz_ball_collide.html
+++ b/dev/auto_examples/17_pybullet/viz_ball_collide.html
@@ -8,7 +8,7 @@
     
     
 
-    Ball Collision Simulation — FURY 0.11.0.dev26+g789a448f documentation
+    Ball Collision Simulation — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/auto_examples/17_pybullet/viz_brick_wall.html b/dev/auto_examples/17_pybullet/viz_brick_wall.html
index bb14f81f4..832d5d9d6 100644
--- a/dev/auto_examples/17_pybullet/viz_brick_wall.html
+++ b/dev/auto_examples/17_pybullet/viz_brick_wall.html
@@ -8,7 +8,7 @@
     
     
 
-    Brick Wall Simulation — FURY 0.11.0.dev26+g789a448f documentation
+    Brick Wall Simulation — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/auto_examples/17_pybullet/viz_chain.html b/dev/auto_examples/17_pybullet/viz_chain.html
index 5267af4ab..7d2236ddf 100644
--- a/dev/auto_examples/17_pybullet/viz_chain.html
+++ b/dev/auto_examples/17_pybullet/viz_chain.html
@@ -8,7 +8,7 @@
     
     
 
-    Chain Simulation — FURY 0.11.0.dev26+g789a448f documentation
+    Chain Simulation — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/auto_examples/17_pybullet/viz_domino.html b/dev/auto_examples/17_pybullet/viz_domino.html
index 4d2f1529a..1b4f6c1f2 100644
--- a/dev/auto_examples/17_pybullet/viz_domino.html
+++ b/dev/auto_examples/17_pybullet/viz_domino.html
@@ -8,7 +8,7 @@
     
     
 
-    Domino Physics Simulation — FURY 0.11.0.dev26+g789a448f documentation
+    Domino Physics Simulation — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/auto_examples/17_pybullet/viz_wrecking_ball.html b/dev/auto_examples/17_pybullet/viz_wrecking_ball.html
index cd6a45c98..ae5d1dba8 100644
--- a/dev/auto_examples/17_pybullet/viz_wrecking_ball.html
+++ b/dev/auto_examples/17_pybullet/viz_wrecking_ball.html
@@ -8,7 +8,7 @@
     
     
 
-    Wrecking Ball Simulation — FURY 0.11.0.dev26+g789a448f documentation
+    Wrecking Ball Simulation — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/auto_examples/20_stream/index.html b/dev/auto_examples/20_stream/index.html
index c81ea605a..5b37e46b6 100644
--- a/dev/auto_examples/20_stream/index.html
+++ b/dev/auto_examples/20_stream/index.html
@@ -8,7 +8,7 @@
     
     
 
-    Streaming — FURY 0.11.0.dev26+g789a448f documentation
+    Streaming — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/auto_examples/20_stream/sg_execution_times.html b/dev/auto_examples/20_stream/sg_execution_times.html
index 13cf506f0..0d9f4c3da 100644
--- a/dev/auto_examples/20_stream/sg_execution_times.html
+++ b/dev/auto_examples/20_stream/sg_execution_times.html
@@ -8,7 +8,7 @@
     
     
 
-    Computation times — FURY 0.11.0.dev26+g789a448f documentation
+    Computation times — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/auto_examples/20_stream/viz_interaction.html b/dev/auto_examples/20_stream/viz_interaction.html
index ea8a81cac..052f19448 100644
--- a/dev/auto_examples/20_stream/viz_interaction.html
+++ b/dev/auto_examples/20_stream/viz_interaction.html
@@ -8,7 +8,7 @@
     
     
 
-    Streaming FURY with user interaction — FURY 0.11.0.dev26+g789a448f documentation
+    Streaming FURY with user interaction — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/auto_examples/20_stream/viz_no_interaction.html b/dev/auto_examples/20_stream/viz_no_interaction.html
index 9ef956ede..3d455a50f 100644
--- a/dev/auto_examples/20_stream/viz_no_interaction.html
+++ b/dev/auto_examples/20_stream/viz_no_interaction.html
@@ -8,7 +8,7 @@
     
     
 
-    Streaming FURY with WebRTC/MJPEG — FURY 0.11.0.dev26+g789a448f documentation
+    Streaming FURY with WebRTC/MJPEG — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/auto_examples/20_stream/viz_widget.html b/dev/auto_examples/20_stream/viz_widget.html
index a37614df3..3e6a47905 100644
--- a/dev/auto_examples/20_stream/viz_widget.html
+++ b/dev/auto_examples/20_stream/viz_widget.html
@@ -8,7 +8,7 @@
     
     
 
-    Streaming FURY with WebRTC/MJPEG using the Widget Object — FURY 0.11.0.dev26+g789a448f documentation
+    Streaming FURY with WebRTC/MJPEG using the Widget Object — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/auto_examples/index.html b/dev/auto_examples/index.html
index f2e117d47..b7ddbbfa8 100644
--- a/dev/auto_examples/index.html
+++ b/dev/auto_examples/index.html
@@ -8,7 +8,7 @@
     
     
 
-    Tutorials — FURY 0.11.0.dev26+g789a448f documentation
+    Tutorials — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/auto_examples/sg_execution_times.html b/dev/auto_examples/sg_execution_times.html
index 8e68300af..a1467b171 100644
--- a/dev/auto_examples/sg_execution_times.html
+++ b/dev/auto_examples/sg_execution_times.html
@@ -8,7 +8,7 @@
     
     
 
-    Computation times — FURY 0.11.0.dev26+g789a448f documentation
+    Computation times — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/blog.html b/dev/blog.html
index cfef66f55..87f549def 100644
--- a/dev/blog.html
+++ b/dev/blog.html
@@ -7,7 +7,7 @@
   
     
     
-    All Posts — FURY 0.11.0.dev26+g789a448f documentation
+    All Posts — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -43,7 +43,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/blog/2018.html b/dev/blog/2018.html
index 6b99245f4..8b097a971 100644
--- a/dev/blog/2018.html
+++ b/dev/blog/2018.html
@@ -7,7 +7,7 @@
   
     
     
-    Posted in 2018 — FURY 0.11.0.dev26+g789a448f documentation
+    Posted in 2018 — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -43,7 +43,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/blog/2018/atom.xml b/dev/blog/2018/atom.xml
index 6e1dfc456..36c0d2411 100644
--- a/dev/blog/2018/atom.xml
+++ b/dev/blog/2018/atom.xml
@@ -2,7 +2,7 @@
 
   https://fury.gl/
   Blog - Posted in 2018
-  2024-04-23T14:31:39.084417+00:00
+  2024-04-23T19:31:41.745655+00:00
   
   
   ABlog
diff --git a/dev/blog/2019.html b/dev/blog/2019.html
index e91427696..ea0a8b957 100644
--- a/dev/blog/2019.html
+++ b/dev/blog/2019.html
@@ -7,7 +7,7 @@
   
     
     
-    Posted in 2019 — FURY 0.11.0.dev26+g789a448f documentation
+    Posted in 2019 — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -43,7 +43,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/blog/2019/atom.xml b/dev/blog/2019/atom.xml
index 02fee4297..becb35224 100644
--- a/dev/blog/2019/atom.xml
+++ b/dev/blog/2019/atom.xml
@@ -2,7 +2,7 @@
 
   https://fury.gl/
   Blog - Posted in 2019
-  2024-04-23T14:31:39.068337+00:00
+  2024-04-23T19:31:41.728126+00:00
   
   
   ABlog
diff --git a/dev/blog/2020.html b/dev/blog/2020.html
index b729c5af2..128cb60d9 100644
--- a/dev/blog/2020.html
+++ b/dev/blog/2020.html
@@ -7,7 +7,7 @@
   
     
     
-    Posted in 2020 — FURY 0.11.0.dev26+g789a448f documentation
+    Posted in 2020 — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -43,7 +43,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/blog/2020/atom.xml b/dev/blog/2020/atom.xml
index d81bc11ba..76742dbb4 100644
--- a/dev/blog/2020/atom.xml
+++ b/dev/blog/2020/atom.xml
@@ -2,7 +2,7 @@
 
   https://fury.gl/
   Blog - Posted in 2020
-  2024-04-23T14:31:39.019031+00:00
+  2024-04-23T19:31:41.675047+00:00
   
   
   ABlog
diff --git a/dev/blog/2021.html b/dev/blog/2021.html
index 0e551fccd..01e114b92 100644
--- a/dev/blog/2021.html
+++ b/dev/blog/2021.html
@@ -7,7 +7,7 @@
   
     
     
-    Posted in 2021 — FURY 0.11.0.dev26+g789a448f documentation
+    Posted in 2021 — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -43,7 +43,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/blog/2021/atom.xml b/dev/blog/2021/atom.xml
index 09b9a1c61..bad3a242d 100644
--- a/dev/blog/2021/atom.xml
+++ b/dev/blog/2021/atom.xml
@@ -2,7 +2,7 @@
 
   https://fury.gl/
   Blog - Posted in 2021
-  2024-04-23T14:31:38.956270+00:00
+  2024-04-23T19:31:41.603859+00:00
   
   
   ABlog
diff --git a/dev/blog/2022.html b/dev/blog/2022.html
index e3df508a1..b479bcfce 100644
--- a/dev/blog/2022.html
+++ b/dev/blog/2022.html
@@ -7,7 +7,7 @@
   
     
     
-    Posted in 2022 — FURY 0.11.0.dev26+g789a448f documentation
+    Posted in 2022 — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -43,7 +43,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/blog/2022/atom.xml b/dev/blog/2022/atom.xml
index 28bbf4fb3..4b1e87d76 100644
--- a/dev/blog/2022/atom.xml
+++ b/dev/blog/2022/atom.xml
@@ -2,7 +2,7 @@
 
   https://fury.gl/
   Blog - Posted in 2022
-  2024-04-23T14:31:38.928179+00:00
+  2024-04-23T19:31:41.573265+00:00
   
   
   ABlog
diff --git a/dev/blog/2023.html b/dev/blog/2023.html
index 17e78d295..60014e20b 100644
--- a/dev/blog/2023.html
+++ b/dev/blog/2023.html
@@ -7,7 +7,7 @@
   
     
     
-    Posted in 2023 — FURY 0.11.0.dev26+g789a448f documentation
+    Posted in 2023 — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -43,7 +43,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/blog/2023/atom.xml b/dev/blog/2023/atom.xml
index b4780bcda..0153c6bb3 100644
--- a/dev/blog/2023/atom.xml
+++ b/dev/blog/2023/atom.xml
@@ -2,7 +2,7 @@
 
   https://fury.gl/
   Blog - Posted in 2023
-  2024-04-23T14:31:38.843047+00:00
+  2024-04-23T19:31:41.477439+00:00
   
   
   ABlog
diff --git a/dev/blog/archive.html b/dev/blog/archive.html
index 7fc97f47c..59fca90f8 100644
--- a/dev/blog/archive.html
+++ b/dev/blog/archive.html
@@ -7,7 +7,7 @@
   
     
     
-    All posts — FURY 0.11.0.dev26+g789a448f documentation
+    All posts — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -43,7 +43,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/blog/atom.xml b/dev/blog/atom.xml
index bd27196f9..fa259da18 100644
--- a/dev/blog/atom.xml
+++ b/dev/blog/atom.xml
@@ -2,7 +2,7 @@
 
   https://fury.gl/
   Blog
-  2024-04-23T14:31:38.121698+00:00
+  2024-04-23T19:31:40.672907+00:00
   
   
   ABlog
diff --git a/dev/blog/author.html b/dev/blog/author.html
index a7df94a01..9cfe2cc00 100644
--- a/dev/blog/author.html
+++ b/dev/blog/author.html
@@ -7,7 +7,7 @@
   
     
     
-    Authors — FURY 0.11.0.dev26+g789a448f documentation
+    Authors — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -43,7 +43,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/blog/author/antriksh-misri.html b/dev/blog/author/antriksh-misri.html
index 9579b08b8..4cb62bec6 100644
--- a/dev/blog/author/antriksh-misri.html
+++ b/dev/blog/author/antriksh-misri.html
@@ -7,7 +7,7 @@
   
     
     
-    Posts by Antriksh Misri — FURY 0.11.0.dev26+g789a448f documentation
+    Posts by Antriksh Misri — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -43,7 +43,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/blog/author/antriksh-misri/atom.xml b/dev/blog/author/antriksh-misri/atom.xml
index ec3eb81a7..fe2c5f6f3 100644
--- a/dev/blog/author/antriksh-misri/atom.xml
+++ b/dev/blog/author/antriksh-misri/atom.xml
@@ -2,7 +2,7 @@
 
   https://fury.gl/
   Blog - Posts by Antriksh Misri
-  2024-04-23T14:31:38.207076+00:00
+  2024-04-23T19:31:40.769924+00:00
   
   
   ABlog
diff --git a/dev/blog/author/bruno-messias.html b/dev/blog/author/bruno-messias.html
index 4588c6272..b636ff946 100644
--- a/dev/blog/author/bruno-messias.html
+++ b/dev/blog/author/bruno-messias.html
@@ -7,7 +7,7 @@
   
     
     
-    Posts by Bruno Messias — FURY 0.11.0.dev26+g789a448f documentation
+    Posts by Bruno Messias — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -43,7 +43,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/blog/author/bruno-messias/atom.xml b/dev/blog/author/bruno-messias/atom.xml
index 2af78686d..adf30f238 100644
--- a/dev/blog/author/bruno-messias/atom.xml
+++ b/dev/blog/author/bruno-messias/atom.xml
@@ -2,7 +2,7 @@
 
   https://fury.gl/
   Blog - Posts by Bruno Messias
-  2024-04-23T14:31:38.245489+00:00
+  2024-04-23T19:31:40.812051+00:00
   
   
   ABlog
diff --git a/dev/blog/author/joao-victor-dell-agli-floriano.html b/dev/blog/author/joao-victor-dell-agli-floriano.html
index 72d65a43e..8375b42f1 100644
--- a/dev/blog/author/joao-victor-dell-agli-floriano.html
+++ b/dev/blog/author/joao-victor-dell-agli-floriano.html
@@ -7,7 +7,7 @@
   
     
     
-    Posts by João Victor Dell Agli Floriano — FURY 0.11.0.dev26+g789a448f documentation
+    Posts by João Victor Dell Agli Floriano — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -43,7 +43,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/blog/author/joao-victor-dell-agli-floriano/atom.xml b/dev/blog/author/joao-victor-dell-agli-floriano/atom.xml
index e3d7b52cc..b4b62cef2 100644
--- a/dev/blog/author/joao-victor-dell-agli-floriano/atom.xml
+++ b/dev/blog/author/joao-victor-dell-agli-floriano/atom.xml
@@ -2,7 +2,7 @@
 
   https://fury.gl/
   Blog - Posts by João Victor Dell Agli Floriano
-  2024-04-23T14:31:38.300230+00:00
+  2024-04-23T19:31:40.871490+00:00
   
   
   ABlog
diff --git a/dev/blog/author/lenix-lobo.html b/dev/blog/author/lenix-lobo.html
index ce8083565..d9d9d86dd 100644
--- a/dev/blog/author/lenix-lobo.html
+++ b/dev/blog/author/lenix-lobo.html
@@ -7,7 +7,7 @@
   
     
     
-    Posts by Lenix Lobo — FURY 0.11.0.dev26+g789a448f documentation
+    Posts by Lenix Lobo — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -43,7 +43,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/blog/author/lenix-lobo/atom.xml b/dev/blog/author/lenix-lobo/atom.xml
index f7f04df75..ec649753c 100644
--- a/dev/blog/author/lenix-lobo/atom.xml
+++ b/dev/blog/author/lenix-lobo/atom.xml
@@ -2,7 +2,7 @@
 
   https://fury.gl/
   Blog - Posts by Lenix Lobo
-  2024-04-23T14:31:38.363493+00:00
+  2024-04-23T19:31:40.940881+00:00
   
   
   ABlog
diff --git a/dev/blog/author/mohamed-abouagour.html b/dev/blog/author/mohamed-abouagour.html
index 365a7c604..900d6f88b 100644
--- a/dev/blog/author/mohamed-abouagour.html
+++ b/dev/blog/author/mohamed-abouagour.html
@@ -7,7 +7,7 @@
   
     
     
-    Posts by Mohamed Abouagour — FURY 0.11.0.dev26+g789a448f documentation
+    Posts by Mohamed Abouagour — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -43,7 +43,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/blog/author/mohamed-abouagour/atom.xml b/dev/blog/author/mohamed-abouagour/atom.xml
index e6ec2ca75..36f531638 100644
--- a/dev/blog/author/mohamed-abouagour/atom.xml
+++ b/dev/blog/author/mohamed-abouagour/atom.xml
@@ -2,7 +2,7 @@
 
   https://fury.gl/
   Blog - Posts by Mohamed Abouagour
-  2024-04-23T14:31:38.393143+00:00
+  2024-04-23T19:31:40.973258+00:00
   
   
   ABlog
diff --git a/dev/blog/author/praneeth-shetty.html b/dev/blog/author/praneeth-shetty.html
index 04b938993..c623ebdc3 100644
--- a/dev/blog/author/praneeth-shetty.html
+++ b/dev/blog/author/praneeth-shetty.html
@@ -7,7 +7,7 @@
   
     
     
-    Posts by Praneeth Shetty — FURY 0.11.0.dev26+g789a448f documentation
+    Posts by Praneeth Shetty — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -43,7 +43,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/blog/author/praneeth-shetty/atom.xml b/dev/blog/author/praneeth-shetty/atom.xml
index c63d4b46c..5753d969b 100644
--- a/dev/blog/author/praneeth-shetty/atom.xml
+++ b/dev/blog/author/praneeth-shetty/atom.xml
@@ -2,7 +2,7 @@
 
   https://fury.gl/
   Blog - Posts by Praneeth Shetty
-  2024-04-23T14:31:38.441528+00:00
+  2024-04-23T19:31:41.026872+00:00
   
   
   ABlog
diff --git a/dev/blog/author/sajag-swami.html b/dev/blog/author/sajag-swami.html
index 0bf8372e6..3d5604d4d 100644
--- a/dev/blog/author/sajag-swami.html
+++ b/dev/blog/author/sajag-swami.html
@@ -7,7 +7,7 @@
   
     
     
-    Posts by Sajag Swami — FURY 0.11.0.dev26+g789a448f documentation
+    Posts by Sajag Swami — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -43,7 +43,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/blog/author/sajag-swami/atom.xml b/dev/blog/author/sajag-swami/atom.xml
index 2d3232d62..e9cd713f9 100644
--- a/dev/blog/author/sajag-swami/atom.xml
+++ b/dev/blog/author/sajag-swami/atom.xml
@@ -2,7 +2,7 @@
 
   https://fury.gl/
   Blog - Posts by Sajag Swami
-  2024-04-23T14:31:38.487402+00:00
+  2024-04-23T19:31:41.076682+00:00
   
   
   ABlog
diff --git a/dev/blog/author/serge-koudoro.html b/dev/blog/author/serge-koudoro.html
index 774c49d43..5b4b3ebf7 100644
--- a/dev/blog/author/serge-koudoro.html
+++ b/dev/blog/author/serge-koudoro.html
@@ -7,7 +7,7 @@
   
     
     
-    Posts by Serge Koudoro — FURY 0.11.0.dev26+g789a448f documentation
+    Posts by Serge Koudoro — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -43,7 +43,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/blog/author/serge-koudoro/atom.xml b/dev/blog/author/serge-koudoro/atom.xml
index 340ce419b..c83685fac 100644
--- a/dev/blog/author/serge-koudoro/atom.xml
+++ b/dev/blog/author/serge-koudoro/atom.xml
@@ -2,7 +2,7 @@
 
   https://fury.gl/
   Blog - Posts by Serge Koudoro
-  2024-04-23T14:31:38.659479+00:00
+  2024-04-23T19:31:41.270078+00:00
   
   
   ABlog
diff --git a/dev/blog/author/shivam-anand.html b/dev/blog/author/shivam-anand.html
index 463f74881..0b762b27c 100644
--- a/dev/blog/author/shivam-anand.html
+++ b/dev/blog/author/shivam-anand.html
@@ -7,7 +7,7 @@
   
     
     
-    Posts by Shivam Anand — FURY 0.11.0.dev26+g789a448f documentation
+    Posts by Shivam Anand — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -43,7 +43,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/blog/author/shivam-anand/atom.xml b/dev/blog/author/shivam-anand/atom.xml
index f0a4f231e..44faebce1 100644
--- a/dev/blog/author/shivam-anand/atom.xml
+++ b/dev/blog/author/shivam-anand/atom.xml
@@ -2,7 +2,7 @@
 
   https://fury.gl/
   Blog - Posts by Shivam Anand
-  2024-04-23T14:31:38.525870+00:00
+  2024-04-23T19:31:41.119316+00:00
   
   
   ABlog
diff --git a/dev/blog/author/shivam-sahu.html b/dev/blog/author/shivam-sahu.html
index 0272a1ff5..da44b5730 100644
--- a/dev/blog/author/shivam-sahu.html
+++ b/dev/blog/author/shivam-sahu.html
@@ -7,7 +7,7 @@
   
     
     
-    Posts by Shivam Sahu — FURY 0.11.0.dev26+g789a448f documentation
+    Posts by Shivam Sahu — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -43,7 +43,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/blog/author/shivam-sahu/atom.xml b/dev/blog/author/shivam-sahu/atom.xml
index 03c5dc0c7..6244e4f1a 100644
--- a/dev/blog/author/shivam-sahu/atom.xml
+++ b/dev/blog/author/shivam-sahu/atom.xml
@@ -2,7 +2,7 @@
 
   https://fury.gl/
   Blog - Posts by Shivam Sahu
-  2024-04-23T14:31:38.571146+00:00
+  2024-04-23T19:31:41.170332+00:00
   
   
   ABlog
diff --git a/dev/blog/author/soham-biswas.html b/dev/blog/author/soham-biswas.html
index a700dce2a..86dc86530 100644
--- a/dev/blog/author/soham-biswas.html
+++ b/dev/blog/author/soham-biswas.html
@@ -7,7 +7,7 @@
   
     
     
-    Posts by Soham Biswas — FURY 0.11.0.dev26+g789a448f documentation
+    Posts by Soham Biswas — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -43,7 +43,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/blog/author/soham-biswas/atom.xml b/dev/blog/author/soham-biswas/atom.xml
index 7e8ec2405..2be4b4e9a 100644
--- a/dev/blog/author/soham-biswas/atom.xml
+++ b/dev/blog/author/soham-biswas/atom.xml
@@ -2,7 +2,7 @@
 
   https://fury.gl/
   Blog - Posts by Soham Biswas
-  2024-04-23T14:31:38.575337+00:00
+  2024-04-23T19:31:41.175190+00:00
   
   
   ABlog
diff --git a/dev/blog/author/tania-castillo.html b/dev/blog/author/tania-castillo.html
index c12183369..2938a7daf 100644
--- a/dev/blog/author/tania-castillo.html
+++ b/dev/blog/author/tania-castillo.html
@@ -7,7 +7,7 @@
   
     
     
-    Posts by Tania Castillo — FURY 0.11.0.dev26+g789a448f documentation
+    Posts by Tania Castillo — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -43,7 +43,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/blog/author/tania-castillo/atom.xml b/dev/blog/author/tania-castillo/atom.xml
index 61781a8a7..c9a99bef4 100644
--- a/dev/blog/author/tania-castillo/atom.xml
+++ b/dev/blog/author/tania-castillo/atom.xml
@@ -2,7 +2,7 @@
 
   https://fury.gl/
   Blog - Posts by Tania Castillo
-  2024-04-23T14:31:38.621246+00:00
+  2024-04-23T19:31:41.226975+00:00
   
   
   ABlog
diff --git a/dev/blog/category.html b/dev/blog/category.html
index 17289ce35..3f1be767e 100644
--- a/dev/blog/category.html
+++ b/dev/blog/category.html
@@ -7,7 +7,7 @@
   
     
     
-    Categories — FURY 0.11.0.dev26+g789a448f documentation
+    Categories — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -43,7 +43,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/blog/category/gsoc.html b/dev/blog/category/gsoc.html
index e5d67787a..0cf4eaf07 100644
--- a/dev/blog/category/gsoc.html
+++ b/dev/blog/category/gsoc.html
@@ -7,7 +7,7 @@
   
     
     
-    Posts in gsoc — FURY 0.11.0.dev26+g789a448f documentation
+    Posts in gsoc — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -43,7 +43,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/blog/category/gsoc/atom.xml b/dev/blog/category/gsoc/atom.xml
index acf89c92d..2005af746 100644
--- a/dev/blog/category/gsoc/atom.xml
+++ b/dev/blog/category/gsoc/atom.xml
@@ -2,7 +2,7 @@
 
   https://fury.gl/
   Blog - Posts in gsoc
-  2024-04-23T14:31:38.703965+00:00
+  2024-04-23T19:31:41.320226+00:00
   
   
   ABlog
diff --git a/dev/blog/category/news.html b/dev/blog/category/news.html
index 8e1f6900a..6fd876bf0 100644
--- a/dev/blog/category/news.html
+++ b/dev/blog/category/news.html
@@ -7,7 +7,7 @@
   
     
     
-    Posts in news — FURY 0.11.0.dev26+g789a448f documentation
+    Posts in news — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -43,7 +43,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/blog/category/news/atom.xml b/dev/blog/category/news/atom.xml
index a6fc88b55..7a06e2fd4 100644
--- a/dev/blog/category/news/atom.xml
+++ b/dev/blog/category/news/atom.xml
@@ -2,7 +2,7 @@
 
   https://fury.gl/
   Blog - Posts in news
-  2024-04-23T14:31:38.788886+00:00
+  2024-04-23T19:31:41.416229+00:00
   
   
   ABlog
diff --git a/dev/blog/category/release.html b/dev/blog/category/release.html
index 93745ec17..0faccf3f2 100644
--- a/dev/blog/category/release.html
+++ b/dev/blog/category/release.html
@@ -7,7 +7,7 @@
   
     
     
-    Posts in release — FURY 0.11.0.dev26+g789a448f documentation
+    Posts in release — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -43,7 +43,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/blog/category/release/atom.xml b/dev/blog/category/release/atom.xml
index a3e93595a..c99c0a27b 100644
--- a/dev/blog/category/release/atom.xml
+++ b/dev/blog/category/release/atom.xml
@@ -2,7 +2,7 @@
 
   https://fury.gl/
   Blog - Posts in release
-  2024-04-23T14:31:38.790814+00:00
+  2024-04-23T19:31:41.418330+00:00
   
   
   ABlog
diff --git a/dev/blog/drafts.html b/dev/blog/drafts.html
index 6c9e5d84b..958c6a1c8 100644
--- a/dev/blog/drafts.html
+++ b/dev/blog/drafts.html
@@ -7,7 +7,7 @@
   
     
     
-    Drafts — FURY 0.11.0.dev26+g789a448f documentation
+    Drafts — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -43,7 +43,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/blog/tag.html b/dev/blog/tag.html
index 1df84c842..460e4f533 100644
--- a/dev/blog/tag.html
+++ b/dev/blog/tag.html
@@ -7,7 +7,7 @@
   
     
     
-    Tags — FURY 0.11.0.dev26+g789a448f documentation
+    Tags — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -43,7 +43,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/blog/tag/fury.html b/dev/blog/tag/fury.html
index cfecf344d..6f046d5d5 100644
--- a/dev/blog/tag/fury.html
+++ b/dev/blog/tag/fury.html
@@ -7,7 +7,7 @@
   
     
     
-    Posts tagged fury — FURY 0.11.0.dev26+g789a448f documentation
+    Posts tagged fury — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -43,7 +43,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/blog/tag/fury/atom.xml b/dev/blog/tag/fury/atom.xml
index 7918bcbab..a1d92f6b8 100644
--- a/dev/blog/tag/fury/atom.xml
+++ b/dev/blog/tag/fury/atom.xml
@@ -2,7 +2,7 @@
 
   https://fury.gl/
   Blog - Posts tagged fury
-  2024-04-23T14:31:39.097162+00:00
+  2024-04-23T19:31:41.760741+00:00
   
   
   ABlog
diff --git a/dev/blog/tag/google.html b/dev/blog/tag/google.html
index 54195b53e..f727ac9d9 100644
--- a/dev/blog/tag/google.html
+++ b/dev/blog/tag/google.html
@@ -7,7 +7,7 @@
   
     
     
-    Posts tagged google — FURY 0.11.0.dev26+g789a448f documentation
+    Posts tagged google — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -43,7 +43,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/blog/tag/google/atom.xml b/dev/blog/tag/google/atom.xml
index 60f903720..5a75be821 100644
--- a/dev/blog/tag/google/atom.xml
+++ b/dev/blog/tag/google/atom.xml
@@ -2,7 +2,7 @@
 
   https://fury.gl/
   Blog - Posts tagged google
-  2024-04-23T14:31:39.151302+00:00
+  2024-04-23T19:31:41.817367+00:00
   
   
   ABlog
diff --git a/dev/blog/tag/shader.html b/dev/blog/tag/shader.html
index 3821c18ae..c9945d4de 100644
--- a/dev/blog/tag/shader.html
+++ b/dev/blog/tag/shader.html
@@ -7,7 +7,7 @@
   
     
     
-    Posts tagged shader — FURY 0.11.0.dev26+g789a448f documentation
+    Posts tagged shader — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -43,7 +43,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/blog/tag/shader/atom.xml b/dev/blog/tag/shader/atom.xml
index e8ac8de81..c0629b7ce 100644
--- a/dev/blog/tag/shader/atom.xml
+++ b/dev/blog/tag/shader/atom.xml
@@ -2,7 +2,7 @@
 
   https://fury.gl/
   Blog - Posts tagged shader
-  2024-04-23T14:31:39.236954+00:00
+  2024-04-23T19:31:41.912585+00:00
   
   
   ABlog
diff --git a/dev/community.html b/dev/community.html
index 56f646b12..798d0d13e 100644
--- a/dev/community.html
+++ b/dev/community.html
@@ -8,7 +8,7 @@
     
     
 
-    Community — FURY 0.11.0.dev26+g789a448f documentation
+    Community — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/fury-pybullet.html b/dev/fury-pybullet.html
index 4d6358868..91e3dac1b 100644
--- a/dev/fury-pybullet.html
+++ b/dev/fury-pybullet.html
@@ -8,7 +8,7 @@
     
     
 
-    FURY - pyBullet Integration Guide — FURY 0.11.0.dev26+g789a448f documentation
+    FURY - pyBullet Integration Guide — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/genindex.html b/dev/genindex.html
index eb78777bd..221610a2b 100644
--- a/dev/genindex.html
+++ b/dev/genindex.html
@@ -7,7 +7,7 @@
   
     
     
-    Index — FURY 0.11.0.dev26+g789a448f documentation
+    Index — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -43,7 +43,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/getting_started.html b/dev/getting_started.html
index 2c60aca42..e69c3f3d4 100644
--- a/dev/getting_started.html
+++ b/dev/getting_started.html
@@ -8,7 +8,7 @@
     
     
 
-    Getting Started — FURY 0.11.0.dev26+g789a448f documentation
+    Getting Started — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/installation.html b/dev/installation.html
index 4b41a9a1b..95304a7c9 100644
--- a/dev/installation.html
+++ b/dev/installation.html
@@ -8,7 +8,7 @@
     
     
 
-    Installation — FURY 0.11.0.dev26+g789a448f documentation
+    Installation — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/introduction.html b/dev/introduction.html
index 95eb2240e..c9a427e2f 100644
--- a/dev/introduction.html
+++ b/dev/introduction.html
@@ -8,7 +8,7 @@
     
     
 
-    About — FURY 0.11.0.dev26+g789a448f documentation
+    About — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/objects.inv b/dev/objects.inv
index 7b27deb80..580e325d3 100644
Binary files a/dev/objects.inv and b/dev/objects.inv differ
diff --git a/dev/posts/2018/2018-09-21-release-announcement.html b/dev/posts/2018/2018-09-21-release-announcement.html
index 65d66e24f..28ea714a5 100644
--- a/dev/posts/2018/2018-09-21-release-announcement.html
+++ b/dev/posts/2018/2018-09-21-release-announcement.html
@@ -8,7 +8,7 @@
     
     
 
-    FURY 0.1.0 Released — FURY 0.11.0.dev26+g789a448f documentation
+    FURY 0.1.0 Released — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2018/2018-10-31-release-announcement.html b/dev/posts/2018/2018-10-31-release-announcement.html
index d0b62fb8c..3b42ac7cd 100644
--- a/dev/posts/2018/2018-10-31-release-announcement.html
+++ b/dev/posts/2018/2018-10-31-release-announcement.html
@@ -8,7 +8,7 @@
     
     
 
-    FURY 0.1.3 Released — FURY 0.11.0.dev26+g789a448f documentation
+    FURY 0.1.3 Released — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2018/2018-11-26-release-announcement.html b/dev/posts/2018/2018-11-26-release-announcement.html
index c3aa138a5..83f3047a1 100644
--- a/dev/posts/2018/2018-11-26-release-announcement.html
+++ b/dev/posts/2018/2018-11-26-release-announcement.html
@@ -8,7 +8,7 @@
     
     
 
-    FURY 0.1.4 Released — FURY 0.11.0.dev26+g789a448f documentation
+    FURY 0.1.4 Released — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2019/2019-03-08-release-announcement.html b/dev/posts/2019/2019-03-08-release-announcement.html
index 6861bf0f2..988f9cdb2 100644
--- a/dev/posts/2019/2019-03-08-release-announcement.html
+++ b/dev/posts/2019/2019-03-08-release-announcement.html
@@ -8,7 +8,7 @@
     
     
 
-    FURY 0.2.0 Released — FURY 0.11.0.dev26+g789a448f documentation
+    FURY 0.2.0 Released — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2019/2019-06-19-brain-art.html b/dev/posts/2019/2019-06-19-brain-art.html
index 18119a273..cb93e2fba 100644
--- a/dev/posts/2019/2019-06-19-brain-art.html
+++ b/dev/posts/2019/2019-06-19-brain-art.html
@@ -8,7 +8,7 @@
     
     
 
-    Success on Brain Art Competition using FURY — FURY 0.11.0.dev26+g789a448f documentation
+    Success on Brain Art Competition using FURY — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2019/2019-08-02-release-announcement.html b/dev/posts/2019/2019-08-02-release-announcement.html
index 975bf6a37..45710ef76 100644
--- a/dev/posts/2019/2019-08-02-release-announcement.html
+++ b/dev/posts/2019/2019-08-02-release-announcement.html
@@ -8,7 +8,7 @@
     
     
 
-    FURY 0.3.0 Released — FURY 0.11.0.dev26+g789a448f documentation
+    FURY 0.3.0 Released — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2019/2019-10-29-release-announcement.html b/dev/posts/2019/2019-10-29-release-announcement.html
index f4081d3b8..f60271c69 100644
--- a/dev/posts/2019/2019-10-29-release-announcement.html
+++ b/dev/posts/2019/2019-10-29-release-announcement.html
@@ -8,7 +8,7 @@
     
     
 
-    FURY 0.4.0 Released — FURY 0.11.0.dev26+g789a448f documentation
+    FURY 0.4.0 Released — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2020/2020-01-05-gsoc.html b/dev/posts/2020/2020-01-05-gsoc.html
index 14d7c1daa..f92d0f745 100644
--- a/dev/posts/2020/2020-01-05-gsoc.html
+++ b/dev/posts/2020/2020-01-05-gsoc.html
@@ -8,7 +8,7 @@
     
     
 
-    Google Summer of Code — FURY 0.11.0.dev26+g789a448f documentation
+    Google Summer of Code — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2020/2020-04-09-release-announcement.html b/dev/posts/2020/2020-04-09-release-announcement.html
index b491ae6ee..b110a599a 100644
--- a/dev/posts/2020/2020-04-09-release-announcement.html
+++ b/dev/posts/2020/2020-04-09-release-announcement.html
@@ -8,7 +8,7 @@
     
     
 
-    FURY 0.5.1 Released — FURY 0.11.0.dev26+g789a448f documentation
+    FURY 0.5.1 Released — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2020/2020-05-30-week-1-lenix.html b/dev/posts/2020/2020-05-30-week-1-lenix.html
index 182060d4e..d33ef64b6 100644
--- a/dev/posts/2020/2020-05-30-week-1-lenix.html
+++ b/dev/posts/2020/2020-05-30-week-1-lenix.html
@@ -8,7 +8,7 @@
     
     
 
-    Weekly Check-in #1 — FURY 0.11.0.dev26+g789a448f documentation
+    Weekly Check-in #1 — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2020/2020-05-30-week-1-soham.html b/dev/posts/2020/2020-05-30-week-1-soham.html
index 538026946..c5ef22e6f 100644
--- a/dev/posts/2020/2020-05-30-week-1-soham.html
+++ b/dev/posts/2020/2020-05-30-week-1-soham.html
@@ -8,7 +8,7 @@
     
     
 
-    Welcome to my GSoC Blog!!! — FURY 0.11.0.dev26+g789a448f documentation
+    Welcome to my GSoC Blog!!! — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2020/2020-06-07-week-2-lenix.html b/dev/posts/2020/2020-06-07-week-2-lenix.html
index aaec31614..4cafd3732 100644
--- a/dev/posts/2020/2020-06-07-week-2-lenix.html
+++ b/dev/posts/2020/2020-06-07-week-2-lenix.html
@@ -8,7 +8,7 @@
     
     
 
-    First week of coding!! — FURY 0.11.0.dev26+g789a448f documentation
+    First week of coding!! — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2020/2020-06-07-week-2-soham.html b/dev/posts/2020/2020-06-07-week-2-soham.html
index 70b0c7e03..20e072944 100644
--- a/dev/posts/2020/2020-06-07-week-2-soham.html
+++ b/dev/posts/2020/2020-06-07-week-2-soham.html
@@ -8,7 +8,7 @@
     
     
 
-    First week of coding!! — FURY 0.11.0.dev26+g789a448f documentation
+    First week of coding!! — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2020/2020-06-14-week-3-lenix.html b/dev/posts/2020/2020-06-14-week-3-lenix.html
index d5c94e70f..4162f125c 100644
--- a/dev/posts/2020/2020-06-14-week-3-lenix.html
+++ b/dev/posts/2020/2020-06-14-week-3-lenix.html
@@ -8,7 +8,7 @@
     
     
 
-    Raymarching!! — FURY 0.11.0.dev26+g789a448f documentation
+    Raymarching!! — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2020/2020-06-14-week-3-soham.html b/dev/posts/2020/2020-06-14-week-3-soham.html
index 2c7cd9b67..4025e24f9 100644
--- a/dev/posts/2020/2020-06-14-week-3-soham.html
+++ b/dev/posts/2020/2020-06-14-week-3-soham.html
@@ -8,7 +8,7 @@
     
     
 
-    ComboBox2D Progress!! — FURY 0.11.0.dev26+g789a448f documentation
+    ComboBox2D Progress!! — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2020/2020-06-21-week-4-lenix.html b/dev/posts/2020/2020-06-21-week-4-lenix.html
index 45b55b7cd..12291b28c 100644
--- a/dev/posts/2020/2020-06-21-week-4-lenix.html
+++ b/dev/posts/2020/2020-06-21-week-4-lenix.html
@@ -8,7 +8,7 @@
     
     
 
-    Raymarching continued — FURY 0.11.0.dev26+g789a448f documentation
+    Raymarching continued — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2020/2020-06-21-week-4-soham.html b/dev/posts/2020/2020-06-21-week-4-soham.html
index 63d5d5e64..5b86815b3 100644
--- a/dev/posts/2020/2020-06-21-week-4-soham.html
+++ b/dev/posts/2020/2020-06-21-week-4-soham.html
@@ -8,7 +8,7 @@
     
     
 
-    TextBlock2D Progress!! — FURY 0.11.0.dev26+g789a448f documentation
+    TextBlock2D Progress!! — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2020/2020-06-28-week-5-lenix.html b/dev/posts/2020/2020-06-28-week-5-lenix.html
index 6c529465f..1240427d5 100644
--- a/dev/posts/2020/2020-06-28-week-5-lenix.html
+++ b/dev/posts/2020/2020-06-28-week-5-lenix.html
@@ -8,7 +8,7 @@
     
     
 
-    Spherical harmonics — FURY 0.11.0.dev26+g789a448f documentation
+    Spherical harmonics — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2020/2020-06-28-week-5-soham.html b/dev/posts/2020/2020-06-28-week-5-soham.html
index 23f1faddc..1844b325f 100644
--- a/dev/posts/2020/2020-06-28-week-5-soham.html
+++ b/dev/posts/2020/2020-06-28-week-5-soham.html
@@ -8,7 +8,7 @@
     
     
 
-    May the Force be with you!! — FURY 0.11.0.dev26+g789a448f documentation
+    May the Force be with you!! — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2020/2020-07-05-week-6-lenix.html b/dev/posts/2020/2020-07-05-week-6-lenix.html
index 0ef6ddc5f..a40666422 100644
--- a/dev/posts/2020/2020-07-05-week-6-lenix.html
+++ b/dev/posts/2020/2020-07-05-week-6-lenix.html
@@ -8,7 +8,7 @@
     
     
 
-    Spherical harmonics, Continued. — FURY 0.11.0.dev26+g789a448f documentation
+    Spherical harmonics, Continued. — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2020/2020-07-05-week-6-soham.html b/dev/posts/2020/2020-07-05-week-6-soham.html
index cf0491e27..909a8b94d 100644
--- a/dev/posts/2020/2020-07-05-week-6-soham.html
+++ b/dev/posts/2020/2020-07-05-week-6-soham.html
@@ -8,7 +8,7 @@
     
     
 
-    Translation, Reposition, Rotation. — FURY 0.11.0.dev26+g789a448f documentation
+    Translation, Reposition, Rotation. — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2020/2020-07-12-week-7-soham.html b/dev/posts/2020/2020-07-12-week-7-soham.html
index 3623eee32..86f2d586c 100644
--- a/dev/posts/2020/2020-07-12-week-7-soham.html
+++ b/dev/posts/2020/2020-07-12-week-7-soham.html
@@ -8,7 +8,7 @@
     
     
 
-    Orientation, Sizing, Tab UI. — FURY 0.11.0.dev26+g789a448f documentation
+    Orientation, Sizing, Tab UI. — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2020/2020-07-13-week-7-lenix.html b/dev/posts/2020/2020-07-13-week-7-lenix.html
index 8fdad688f..119c961d1 100644
--- a/dev/posts/2020/2020-07-13-week-7-lenix.html
+++ b/dev/posts/2020/2020-07-13-week-7-lenix.html
@@ -8,7 +8,7 @@
     
     
 
-    Multiple SDF primitives. — FURY 0.11.0.dev26+g789a448f documentation
+    Multiple SDF primitives. — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2020/2020-07-19-week-8-soham.html b/dev/posts/2020/2020-07-19-week-8-soham.html
index b426c3c5a..5b8ae0a80 100644
--- a/dev/posts/2020/2020-07-19-week-8-soham.html
+++ b/dev/posts/2020/2020-07-19-week-8-soham.html
@@ -8,7 +8,7 @@
     
     
 
-    ComboBox2D, TextBlock2D, Clipping Overflow. — FURY 0.11.0.dev26+g789a448f documentation
+    ComboBox2D, TextBlock2D, Clipping Overflow. — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2020/2020-07-20-release-announcement.html b/dev/posts/2020/2020-07-20-release-announcement.html
index 29db3eefc..c9f0fd861 100644
--- a/dev/posts/2020/2020-07-20-release-announcement.html
+++ b/dev/posts/2020/2020-07-20-release-announcement.html
@@ -8,7 +8,7 @@
     
     
 
-    FURY 0.6.0 Released — FURY 0.11.0.dev26+g789a448f documentation
+    FURY 0.6.0 Released — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2020/2020-07-20-week-8-lenix.html b/dev/posts/2020/2020-07-20-week-8-lenix.html
index b0ba65f53..6309f3b93 100644
--- a/dev/posts/2020/2020-07-20-week-8-lenix.html
+++ b/dev/posts/2020/2020-07-20-week-8-lenix.html
@@ -8,7 +8,7 @@
     
     
 
-    Improvements in SDF primitives. — FURY 0.11.0.dev26+g789a448f documentation
+    Improvements in SDF primitives. — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2020/2020-07-26-week-9-soham.html b/dev/posts/2020/2020-07-26-week-9-soham.html
index 15a993147..7974b149b 100644
--- a/dev/posts/2020/2020-07-26-week-9-soham.html
+++ b/dev/posts/2020/2020-07-26-week-9-soham.html
@@ -8,7 +8,7 @@
     
     
 
-    Tab UI, TabPanel2D, Tab UI Tutorial. — FURY 0.11.0.dev26+g789a448f documentation
+    Tab UI, TabPanel2D, Tab UI Tutorial. — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2020/2020-07-27-week-9-lenix.html b/dev/posts/2020/2020-07-27-week-9-lenix.html
index b70138dd0..20203ba6e 100644
--- a/dev/posts/2020/2020-07-27-week-9-lenix.html
+++ b/dev/posts/2020/2020-07-27-week-9-lenix.html
@@ -8,7 +8,7 @@
     
     
 
-    Merging SDF primitives. — FURY 0.11.0.dev26+g789a448f documentation
+    Merging SDF primitives. — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2020/2020-08-02-week-10-lenix.html b/dev/posts/2020/2020-08-02-week-10-lenix.html
index b5f454ba2..63e578159 100644
--- a/dev/posts/2020/2020-08-02-week-10-lenix.html
+++ b/dev/posts/2020/2020-08-02-week-10-lenix.html
@@ -8,7 +8,7 @@
     
     
 
-    More Shaders!! — FURY 0.11.0.dev26+g789a448f documentation
+    More Shaders!! — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2020/2020-08-02-week-10-soham.html b/dev/posts/2020/2020-08-02-week-10-soham.html
index 12579b131..6ce54a0c1 100644
--- a/dev/posts/2020/2020-08-02-week-10-soham.html
+++ b/dev/posts/2020/2020-08-02-week-10-soham.html
@@ -8,7 +8,7 @@
     
     
 
-    Single Actor, Physics, Scrollbars. — FURY 0.11.0.dev26+g789a448f documentation
+    Single Actor, Physics, Scrollbars. — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2020/2020-08-09-week-11-lenix.html b/dev/posts/2020/2020-08-09-week-11-lenix.html
index 691efcea5..7e707f1b0 100644
--- a/dev/posts/2020/2020-08-09-week-11-lenix.html
+++ b/dev/posts/2020/2020-08-09-week-11-lenix.html
@@ -8,7 +8,7 @@
     
     
 
-    More Shaders!! — FURY 0.11.0.dev26+g789a448f documentation
+    More Shaders!! — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2020/2020-08-09-week-11-soham.html b/dev/posts/2020/2020-08-09-week-11-soham.html
index b15778140..4aa7c00a3 100644
--- a/dev/posts/2020/2020-08-09-week-11-soham.html
+++ b/dev/posts/2020/2020-08-09-week-11-soham.html
@@ -8,7 +8,7 @@
     
     
 
-    Chain Simulation, Scrollbar Refactor, Tutorial Update. — FURY 0.11.0.dev26+g789a448f documentation
+    Chain Simulation, Scrollbar Refactor, Tutorial Update. — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2020/2020-08-16-week-12-soham.html b/dev/posts/2020/2020-08-16-week-12-soham.html
index 9c67f5249..343520373 100644
--- a/dev/posts/2020/2020-08-16-week-12-soham.html
+++ b/dev/posts/2020/2020-08-16-week-12-soham.html
@@ -8,7 +8,7 @@
     
     
 
-    Wrecking Ball Simulation, Scrollbars Update, Physics Tutorials. — FURY 0.11.0.dev26+g789a448f documentation
+    Wrecking Ball Simulation, Scrollbars Update, Physics Tutorials. — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2020/2020-08-17-week-12-lenix.html b/dev/posts/2020/2020-08-17-week-12-lenix.html
index 99a4a54ff..45042d0ee 100644
--- a/dev/posts/2020/2020-08-17-week-12-lenix.html
+++ b/dev/posts/2020/2020-08-17-week-12-lenix.html
@@ -8,7 +8,7 @@
     
     
 
-    Outline Picker — FURY 0.11.0.dev26+g789a448f documentation
+    Outline Picker — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2020/2020-08-18-release-announcement.html b/dev/posts/2020/2020-08-18-release-announcement.html
index b9dc90f02..765211334 100644
--- a/dev/posts/2020/2020-08-18-release-announcement.html
+++ b/dev/posts/2020/2020-08-18-release-announcement.html
@@ -8,7 +8,7 @@
     
     
 
-    FURY 0.6.1 Released — FURY 0.11.0.dev26+g789a448f documentation
+    FURY 0.6.1 Released — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2020/2020-08-23-week-13-soham.html b/dev/posts/2020/2020-08-23-week-13-soham.html
index 46cae6a0f..1f85fe7d4 100644
--- a/dev/posts/2020/2020-08-23-week-13-soham.html
+++ b/dev/posts/2020/2020-08-23-week-13-soham.html
@@ -8,7 +8,7 @@
     
     
 
-    Part of the Journey is the end unless its Open Source! — FURY 0.11.0.dev26+g789a448f documentation
+    Part of the Journey is the end unless its Open Source! — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2020/2020-08-24-final-work-lenix.html b/dev/posts/2020/2020-08-24-final-work-lenix.html
index 00a482f2a..a85eacf9c 100644
--- a/dev/posts/2020/2020-08-24-final-work-lenix.html
+++ b/dev/posts/2020/2020-08-24-final-work-lenix.html
@@ -8,7 +8,7 @@
     
     
 
-    Google Summer of Code 2020 Final Work Product — FURY 0.11.0.dev26+g789a448f documentation
+    Google Summer of Code 2020 Final Work Product — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2020/2020-08-24-final-work-soham.html b/dev/posts/2020/2020-08-24-final-work-soham.html
index dc3618d0f..b3d0d73cd 100644
--- a/dev/posts/2020/2020-08-24-final-work-soham.html
+++ b/dev/posts/2020/2020-08-24-final-work-soham.html
@@ -8,7 +8,7 @@
     
     
 
-    Google Summer of Code Final Work Product — FURY 0.11.0.dev26+g789a448f documentation
+    Google Summer of Code Final Work Product — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2020/2020-08-24-week-13-lenix.html b/dev/posts/2020/2020-08-24-week-13-lenix.html
index 6c9ca0a73..4e0914fb8 100644
--- a/dev/posts/2020/2020-08-24-week-13-lenix.html
+++ b/dev/posts/2020/2020-08-24-week-13-lenix.html
@@ -8,7 +8,7 @@
     
     
 
-    Shader Showcase — FURY 0.11.0.dev26+g789a448f documentation
+    Shader Showcase — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2021/2021-03-09-gsoc.html b/dev/posts/2021/2021-03-09-gsoc.html
index c0007231c..5442e99b6 100644
--- a/dev/posts/2021/2021-03-09-gsoc.html
+++ b/dev/posts/2021/2021-03-09-gsoc.html
@@ -8,7 +8,7 @@
     
     
 
-    Google Summer of Code — FURY 0.11.0.dev26+g789a448f documentation
+    Google Summer of Code — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2021/2021-03-13-release-announcement.html b/dev/posts/2021/2021-03-13-release-announcement.html
index 0633f80ab..2d49c3477 100644
--- a/dev/posts/2021/2021-03-13-release-announcement.html
+++ b/dev/posts/2021/2021-03-13-release-announcement.html
@@ -8,7 +8,7 @@
     
     
 
-    FURY 0.7.0 Released — FURY 0.11.0.dev26+g789a448f documentation
+    FURY 0.7.0 Released — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2021/2021-06-08-gsoc-devmessias-1.html b/dev/posts/2021/2021-06-08-gsoc-devmessias-1.html
index e504fc7e2..f84acf48d 100644
--- a/dev/posts/2021/2021-06-08-gsoc-devmessias-1.html
+++ b/dev/posts/2021/2021-06-08-gsoc-devmessias-1.html
@@ -8,7 +8,7 @@
     
     
 
-    Weekly Check-In #1 — FURY 0.11.0.dev26+g789a448f documentation
+    Weekly Check-In #1 — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2021/2021-06-08-week-1-antriksh.html b/dev/posts/2021/2021-06-08-week-1-antriksh.html
index 4194e4597..ffc70b651 100644
--- a/dev/posts/2021/2021-06-08-week-1-antriksh.html
+++ b/dev/posts/2021/2021-06-08-week-1-antriksh.html
@@ -8,7 +8,7 @@
     
     
 
-    Week #1: Welcome to my weekly Blogs! — FURY 0.11.0.dev26+g789a448f documentation
+    Week #1: Welcome to my weekly Blogs! — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2021/2021-06-08-week-1-sajag.html b/dev/posts/2021/2021-06-08-week-1-sajag.html
index 2a71be134..e16b7ea8b 100644
--- a/dev/posts/2021/2021-06-08-week-1-sajag.html
+++ b/dev/posts/2021/2021-06-08-week-1-sajag.html
@@ -8,7 +8,7 @@
     
     
 
-    Welcome to my GSoC Blog! — FURY 0.11.0.dev26+g789a448f documentation
+    Welcome to my GSoC Blog! — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2021/2021-06-12-gsoc-devmessias-2.html b/dev/posts/2021/2021-06-12-gsoc-devmessias-2.html
index e8043405f..b63d9f45b 100644
--- a/dev/posts/2021/2021-06-12-gsoc-devmessias-2.html
+++ b/dev/posts/2021/2021-06-12-gsoc-devmessias-2.html
@@ -8,7 +8,7 @@
     
     
 
-    A Stadia-like system for data visualization — FURY 0.11.0.dev26+g789a448f documentation
+    A Stadia-like system for data visualization — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2021/2021-06-13-week-2-antriksh.html b/dev/posts/2021/2021-06-13-week-2-antriksh.html
index 6714959d0..662a13099 100644
--- a/dev/posts/2021/2021-06-13-week-2-antriksh.html
+++ b/dev/posts/2021/2021-06-13-week-2-antriksh.html
@@ -8,7 +8,7 @@
     
     
 
-    Week #2: Feature additions in UI and IO modules — FURY 0.11.0.dev26+g789a448f documentation
+    Week #2: Feature additions in UI and IO modules — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2021/2021-06-14-week-2-sajag.html b/dev/posts/2021/2021-06-14-week-2-sajag.html
index ac9af23f0..ab7447776 100644
--- a/dev/posts/2021/2021-06-14-week-2-sajag.html
+++ b/dev/posts/2021/2021-06-14-week-2-sajag.html
@@ -8,7 +8,7 @@
     
     
 
-    First week of coding! — FURY 0.11.0.dev26+g789a448f documentation
+    First week of coding! — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2021/2021-06-21-gsoc-devmessias-3.html b/dev/posts/2021/2021-06-21-gsoc-devmessias-3.html
index 8a60c8e58..47c6cff35 100644
--- a/dev/posts/2021/2021-06-21-gsoc-devmessias-3.html
+++ b/dev/posts/2021/2021-06-21-gsoc-devmessias-3.html
@@ -8,7 +8,7 @@
     
     
 
-    Weekly Check-In #3 — FURY 0.11.0.dev26+g789a448f documentation
+    Weekly Check-In #3 — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2021/2021-06-21-week-3-antriksh.html b/dev/posts/2021/2021-06-21-week-3-antriksh.html
index 1de0e5394..59e77ebdb 100644
--- a/dev/posts/2021/2021-06-21-week-3-antriksh.html
+++ b/dev/posts/2021/2021-06-21-week-3-antriksh.html
@@ -8,7 +8,7 @@
     
     
 
-    Week #3: Adapting GridLayout to work with UI — FURY 0.11.0.dev26+g789a448f documentation
+    Week #3: Adapting GridLayout to work with UI — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2021/2021-06-21-week-3-sajag.html b/dev/posts/2021/2021-06-21-week-3-sajag.html
index 53eed1d76..ebdf55085 100644
--- a/dev/posts/2021/2021-06-21-week-3-sajag.html
+++ b/dev/posts/2021/2021-06-21-week-3-sajag.html
@@ -8,7 +8,7 @@
     
     
 
-    Second week of coding! — FURY 0.11.0.dev26+g789a448f documentation
+    Second week of coding! — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2021/2021-06-28-gsoc-devmessias-4.html b/dev/posts/2021/2021-06-28-gsoc-devmessias-4.html
index ea92740f9..9a92759b7 100644
--- a/dev/posts/2021/2021-06-28-gsoc-devmessias-4.html
+++ b/dev/posts/2021/2021-06-28-gsoc-devmessias-4.html
@@ -8,7 +8,7 @@
     
     
 
-    SOLID, monkey patching a python issue and network visualization through WebRTC — FURY 0.11.0.dev26+g789a448f documentation
+    SOLID, monkey patching a python issue and network visualization through WebRTC — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2021/2021-06-28-week-4-antriksh.html b/dev/posts/2021/2021-06-28-week-4-antriksh.html
index a0a9e4161..cd433cbcf 100644
--- a/dev/posts/2021/2021-06-28-week-4-antriksh.html
+++ b/dev/posts/2021/2021-06-28-week-4-antriksh.html
@@ -8,7 +8,7 @@
     
     
 
-    Week #4: Adding Tree UI to the UI module — FURY 0.11.0.dev26+g789a448f documentation
+    Week #4: Adding Tree UI to the UI module — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2021/2021-06-28-week-4-sajag.html b/dev/posts/2021/2021-06-28-week-4-sajag.html
index fc020738f..d2a060cdc 100644
--- a/dev/posts/2021/2021-06-28-week-4-sajag.html
+++ b/dev/posts/2021/2021-06-28-week-4-sajag.html
@@ -8,7 +8,7 @@
     
     
 
-    Third week of coding! — FURY 0.11.0.dev26+g789a448f documentation
+    Third week of coding! — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2021/2021-07-05-gsoc-devmessias-5.html b/dev/posts/2021/2021-07-05-gsoc-devmessias-5.html
index 86ecaa82b..8944a4a26 100644
--- a/dev/posts/2021/2021-07-05-gsoc-devmessias-5.html
+++ b/dev/posts/2021/2021-07-05-gsoc-devmessias-5.html
@@ -8,7 +8,7 @@
     
     
 
-    Weekly Check-In #5 — FURY 0.11.0.dev26+g789a448f documentation
+    Weekly Check-In #5 — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2021/2021-07-05-week-5-antriksh.html b/dev/posts/2021/2021-07-05-week-5-antriksh.html
index 839219574..c0b9dd7f0 100644
--- a/dev/posts/2021/2021-07-05-week-5-antriksh.html
+++ b/dev/posts/2021/2021-07-05-week-5-antriksh.html
@@ -8,7 +8,7 @@
     
     
 
-    Week #5: Rebasing all PRs w.r.t the UI restructuring, Tree2D, Bug Fixes — FURY 0.11.0.dev26+g789a448f documentation
+    Week #5: Rebasing all PRs w.r.t the UI restructuring, Tree2D, Bug Fixes — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2021/2021-07-05-week-5-sajag.html b/dev/posts/2021/2021-07-05-week-5-sajag.html
index bcc7eb1fa..96c95ab79 100644
--- a/dev/posts/2021/2021-07-05-week-5-sajag.html
+++ b/dev/posts/2021/2021-07-05-week-5-sajag.html
@@ -8,7 +8,7 @@
     
     
 
-    Fourth week of coding! — FURY 0.11.0.dev26+g789a448f documentation
+    Fourth week of coding! — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2021/2021-07-12-gsoc-devmessias-6.html b/dev/posts/2021/2021-07-12-gsoc-devmessias-6.html
index 580c6637e..da0a69698 100644
--- a/dev/posts/2021/2021-07-12-gsoc-devmessias-6.html
+++ b/dev/posts/2021/2021-07-12-gsoc-devmessias-6.html
@@ -8,7 +8,7 @@
     
     
 
-    Network layout algorithms using IPC — FURY 0.11.0.dev26+g789a448f documentation
+    Network layout algorithms using IPC — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2021/2021-07-12-week-6-antriksh.html b/dev/posts/2021/2021-07-12-week-6-antriksh.html
index 851284ae3..4e7ae89e5 100644
--- a/dev/posts/2021/2021-07-12-week-6-antriksh.html
+++ b/dev/posts/2021/2021-07-12-week-6-antriksh.html
@@ -8,7 +8,7 @@
     
     
 
-    Week #6: Bug fixes, Working on Tree2D UI — FURY 0.11.0.dev26+g789a448f documentation
+    Week #6: Bug fixes, Working on Tree2D UI — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2021/2021-07-12-week-6-sajag.html b/dev/posts/2021/2021-07-12-week-6-sajag.html
index 3874149e2..d21dc08c4 100644
--- a/dev/posts/2021/2021-07-12-week-6-sajag.html
+++ b/dev/posts/2021/2021-07-12-week-6-sajag.html
@@ -8,7 +8,7 @@
     
     
 
-    Fifth week of coding! — FURY 0.11.0.dev26+g789a448f documentation
+    Fifth week of coding! — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2021/2021-07-19-gsoc-devmessias-7.html b/dev/posts/2021/2021-07-19-gsoc-devmessias-7.html
index 400d5589c..5e216dabe 100644
--- a/dev/posts/2021/2021-07-19-gsoc-devmessias-7.html
+++ b/dev/posts/2021/2021-07-19-gsoc-devmessias-7.html
@@ -8,7 +8,7 @@
     
     
 
-    Weekly Check-In #7 — FURY 0.11.0.dev26+g789a448f documentation
+    Weekly Check-In #7 — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2021/2021-07-19-week-7-antriksh.html b/dev/posts/2021/2021-07-19-week-7-antriksh.html
index 2beb2cb96..78616fcfa 100644
--- a/dev/posts/2021/2021-07-19-week-7-antriksh.html
+++ b/dev/posts/2021/2021-07-19-week-7-antriksh.html
@@ -8,7 +8,7 @@
     
     
 
-    Week #7: Finalizing the stalling PRs, finishing up Tree2D UI. — FURY 0.11.0.dev26+g789a448f documentation
+    Week #7: Finalizing the stalling PRs, finishing up Tree2D UI. — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2021/2021-07-19-week-7-sajag.html b/dev/posts/2021/2021-07-19-week-7-sajag.html
index a13f6a609..f4df9be18 100644
--- a/dev/posts/2021/2021-07-19-week-7-sajag.html
+++ b/dev/posts/2021/2021-07-19-week-7-sajag.html
@@ -8,7 +8,7 @@
     
     
 
-    Sixth week of coding! — FURY 0.11.0.dev26+g789a448f documentation
+    Sixth week of coding! — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2021/2021-07-26-gsoc-devmessias-8.html b/dev/posts/2021/2021-07-26-gsoc-devmessias-8.html
index 4204a99f1..338478a62 100644
--- a/dev/posts/2021/2021-07-26-gsoc-devmessias-8.html
+++ b/dev/posts/2021/2021-07-26-gsoc-devmessias-8.html
@@ -8,7 +8,7 @@
     
     
 
-    Weekly Check-In #8 — FURY 0.11.0.dev26+g789a448f documentation
+    Weekly Check-In #8 — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2021/2021-07-26-week-8-antriksh.html b/dev/posts/2021/2021-07-26-week-8-antriksh.html
index 784eb3e5e..8a8224e5a 100644
--- a/dev/posts/2021/2021-07-26-week-8-antriksh.html
+++ b/dev/posts/2021/2021-07-26-week-8-antriksh.html
@@ -8,7 +8,7 @@
     
     
 
-    Week #8: Code Cleanup, Finishing up open PRs, Continuing work on Tree2D — FURY 0.11.0.dev26+g789a448f documentation
+    Week #8: Code Cleanup, Finishing up open PRs, Continuing work on Tree2D — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2021/2021-07-26-week-8-sajag.html b/dev/posts/2021/2021-07-26-week-8-sajag.html
index 06eeeba48..8257f6edc 100644
--- a/dev/posts/2021/2021-07-26-week-8-sajag.html
+++ b/dev/posts/2021/2021-07-26-week-8-sajag.html
@@ -8,7 +8,7 @@
     
     
 
-    Seventh week of coding! — FURY 0.11.0.dev26+g789a448f documentation
+    Seventh week of coding! — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2021/2021-08-02-gsoc-devmessias-9.html b/dev/posts/2021/2021-08-02-gsoc-devmessias-9.html
index 10cf391b9..6ae2d9958 100644
--- a/dev/posts/2021/2021-08-02-gsoc-devmessias-9.html
+++ b/dev/posts/2021/2021-08-02-gsoc-devmessias-9.html
@@ -8,7 +8,7 @@
     
     
 
-    Week #09: Sphinx custom summary — FURY 0.11.0.dev26+g789a448f documentation
+    Week #09: Sphinx custom summary — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2021/2021-08-02-week-9-antriksh.html b/dev/posts/2021/2021-08-02-week-9-antriksh.html
index e1d9c23be..62f06f5cc 100644
--- a/dev/posts/2021/2021-08-02-week-9-antriksh.html
+++ b/dev/posts/2021/2021-08-02-week-9-antriksh.html
@@ -8,7 +8,7 @@
     
     
 
-    Week #9: More Layouts! — FURY 0.11.0.dev26+g789a448f documentation
+    Week #9: More Layouts! — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2021/2021-08-02-week-9-sajag.html b/dev/posts/2021/2021-08-02-week-9-sajag.html
index bb4b5be66..6d3f19d64 100644
--- a/dev/posts/2021/2021-08-02-week-9-sajag.html
+++ b/dev/posts/2021/2021-08-02-week-9-sajag.html
@@ -8,7 +8,7 @@
     
     
 
-    Eighth coding week! — FURY 0.11.0.dev26+g789a448f documentation
+    Eighth coding week! — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2021/2021-08-03-release-announcement.html b/dev/posts/2021/2021-08-03-release-announcement.html
index ff67b21be..a544d92c3 100644
--- a/dev/posts/2021/2021-08-03-release-announcement.html
+++ b/dev/posts/2021/2021-08-03-release-announcement.html
@@ -8,7 +8,7 @@
     
     
 
-    FURY 0.7.0 Released — FURY 0.11.0.dev26+g789a448f documentation
+    FURY 0.7.0 Released — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2021/2021-08-09-week-10-antriksh.html b/dev/posts/2021/2021-08-09-week-10-antriksh.html
index 77239437b..420d2907c 100644
--- a/dev/posts/2021/2021-08-09-week-10-antriksh.html
+++ b/dev/posts/2021/2021-08-09-week-10-antriksh.html
@@ -8,7 +8,7 @@
     
     
 
-    Week#10: Accordion UI, Support for sprite sheet animations — FURY 0.11.0.dev26+g789a448f documentation
+    Week#10: Accordion UI, Support for sprite sheet animations — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2021/2021-08-09-week-10-sajag.html b/dev/posts/2021/2021-08-09-week-10-sajag.html
index 7f74860be..849ad9cb7 100644
--- a/dev/posts/2021/2021-08-09-week-10-sajag.html
+++ b/dev/posts/2021/2021-08-09-week-10-sajag.html
@@ -8,7 +8,7 @@
     
     
 
-    Ninth coding week! — FURY 0.11.0.dev26+g789a448f documentation
+    Ninth coding week! — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2021/2021-08-16-week-11-antriksh.html b/dev/posts/2021/2021-08-16-week-11-antriksh.html
index 5b0e82e33..e0b5244b1 100644
--- a/dev/posts/2021/2021-08-16-week-11-antriksh.html
+++ b/dev/posts/2021/2021-08-16-week-11-antriksh.html
@@ -8,7 +8,7 @@
     
     
 
-    Week #11: Finalizing open Pull Requests — FURY 0.11.0.dev26+g789a448f documentation
+    Week #11: Finalizing open Pull Requests — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2021/2021-08-16-week-11-sajag.html b/dev/posts/2021/2021-08-16-week-11-sajag.html
index ca9c28502..09d521b95 100644
--- a/dev/posts/2021/2021-08-16-week-11-sajag.html
+++ b/dev/posts/2021/2021-08-16-week-11-sajag.html
@@ -8,7 +8,7 @@
     
     
 
-    Tenth coding week! — FURY 0.11.0.dev26+g789a448f documentation
+    Tenth coding week! — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2021/2021-08-23-final-work-antriksh.html b/dev/posts/2021/2021-08-23-final-work-antriksh.html
index 901640d47..c4f4eb35f 100644
--- a/dev/posts/2021/2021-08-23-final-work-antriksh.html
+++ b/dev/posts/2021/2021-08-23-final-work-antriksh.html
@@ -8,7 +8,7 @@
     
     
 
-    Google Summer of Code Final Work Product — FURY 0.11.0.dev26+g789a448f documentation
+    Google Summer of Code Final Work Product — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2021/2021-08-23-final-work-sajag.html b/dev/posts/2021/2021-08-23-final-work-sajag.html
index 3880d7260..c0a3cf0b7 100644
--- a/dev/posts/2021/2021-08-23-final-work-sajag.html
+++ b/dev/posts/2021/2021-08-23-final-work-sajag.html
@@ -8,7 +8,7 @@
     
     
 
-    Google Summer of Code Final Work Product — FURY 0.11.0.dev26+g789a448f documentation
+    Google Summer of Code Final Work Product — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2021/2021-08-23-gsoc-devmessias-final-report.html b/dev/posts/2021/2021-08-23-gsoc-devmessias-final-report.html
index b32cce24e..d9e21fb98 100644
--- a/dev/posts/2021/2021-08-23-gsoc-devmessias-final-report.html
+++ b/dev/posts/2021/2021-08-23-gsoc-devmessias-final-report.html
@@ -8,7 +8,7 @@
     
     
 
-    Google Summer of Code 2021 - Final Report - Bruno Messias — FURY 0.11.0.dev26+g789a448f documentation
+    Google Summer of Code 2021 - Final Report - Bruno Messias — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2021/2021-09-08-gsoc-devmessias-10.html b/dev/posts/2021/2021-09-08-gsoc-devmessias-10.html
index a77d05443..c0470b9cf 100644
--- a/dev/posts/2021/2021-09-08-gsoc-devmessias-10.html
+++ b/dev/posts/2021/2021-09-08-gsoc-devmessias-10.html
@@ -8,7 +8,7 @@
     
     
 
-    Week #10: SDF Fonts — FURY 0.11.0.dev26+g789a448f documentation
+    Week #10: SDF Fonts — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2021/2021-16-08-gsoc-devmessias-11.html b/dev/posts/2021/2021-16-08-gsoc-devmessias-11.html
index b945fa86d..972ff64cf 100644
--- a/dev/posts/2021/2021-16-08-gsoc-devmessias-11.html
+++ b/dev/posts/2021/2021-16-08-gsoc-devmessias-11.html
@@ -8,7 +8,7 @@
     
     
 
-    Week #11: Removing the flickering effect — FURY 0.11.0.dev26+g789a448f documentation
+    Week #11: Removing the flickering effect — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2022/2022-01-31-release-announcement.html b/dev/posts/2022/2022-01-31-release-announcement.html
index 801c45df4..efbeeb258 100644
--- a/dev/posts/2022/2022-01-31-release-announcement.html
+++ b/dev/posts/2022/2022-01-31-release-announcement.html
@@ -8,7 +8,7 @@
     
     
 
-    FURY 0.8.0 Released — FURY 0.11.0.dev26+g789a448f documentation
+    FURY 0.8.0 Released — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2022/2022-02-01-gsoc.html b/dev/posts/2022/2022-02-01-gsoc.html
index 90dc33801..05b801545 100644
--- a/dev/posts/2022/2022-02-01-gsoc.html
+++ b/dev/posts/2022/2022-02-01-gsoc.html
@@ -8,7 +8,7 @@
     
     
 
-    Contribute to FURY via Google Summer of Code 2022 — FURY 0.11.0.dev26+g789a448f documentation
+    Contribute to FURY via Google Summer of Code 2022 — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2022/2022-05-23-first-post-mohamed.html b/dev/posts/2022/2022-05-23-first-post-mohamed.html
index cfd57459f..fca868882 100644
--- a/dev/posts/2022/2022-05-23-first-post-mohamed.html
+++ b/dev/posts/2022/2022-05-23-first-post-mohamed.html
@@ -8,7 +8,7 @@
     
     
 
-    My journey till getting accepted into GSoC22 — FURY 0.11.0.dev26+g789a448f documentation
+    My journey till getting accepted into GSoC22 — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2022/2022-05-24-my-journey-to-gsoc-2022-shivam.html b/dev/posts/2022/2022-05-24-my-journey-to-gsoc-2022-shivam.html
index 06c38667f..ddeadfe35 100644
--- a/dev/posts/2022/2022-05-24-my-journey-to-gsoc-2022-shivam.html
+++ b/dev/posts/2022/2022-05-24-my-journey-to-gsoc-2022-shivam.html
@@ -8,7 +8,7 @@
     
     
 
-    My Journey to GSoC 2022 — FURY 0.11.0.dev26+g789a448f documentation
+    My Journey to GSoC 2022 — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2022/2022-05-25-pre-gsoc-journey-praneeth.html b/dev/posts/2022/2022-05-25-pre-gsoc-journey-praneeth.html
index 68c67b291..bc5bf697f 100644
--- a/dev/posts/2022/2022-05-25-pre-gsoc-journey-praneeth.html
+++ b/dev/posts/2022/2022-05-25-pre-gsoc-journey-praneeth.html
@@ -8,7 +8,7 @@
     
     
 
-    Pre-GSoC Journey — FURY 0.11.0.dev26+g789a448f documentation
+    Pre-GSoC Journey — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2022/2022-06-08-week-1-mohamed.html b/dev/posts/2022/2022-06-08-week-1-mohamed.html
index e923edfb0..6c1fc4ea1 100644
--- a/dev/posts/2022/2022-06-08-week-1-mohamed.html
+++ b/dev/posts/2022/2022-06-08-week-1-mohamed.html
@@ -8,7 +8,7 @@
     
     
 
-    Week 1: Implementing a basic Keyframe animation API — FURY 0.11.0.dev26+g789a448f documentation
+    Week 1: Implementing a basic Keyframe animation API — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2022/2022-06-08-week-1-praneeth.html b/dev/posts/2022/2022-06-08-week-1-praneeth.html
index 52c9cfc13..7825224fe 100644
--- a/dev/posts/2022/2022-06-08-week-1-praneeth.html
+++ b/dev/posts/2022/2022-06-08-week-1-praneeth.html
@@ -8,7 +8,7 @@
     
     
 
-    Week 1 - Laying the Foundation of DrawPanel UI — FURY 0.11.0.dev26+g789a448f documentation
+    Week 1 - Laying the Foundation of DrawPanel UI — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2022/2022-06-15-week-2-praneeth.html b/dev/posts/2022/2022-06-15-week-2-praneeth.html
index 7d908f837..4c4aa6958 100644
--- a/dev/posts/2022/2022-06-15-week-2-praneeth.html
+++ b/dev/posts/2022/2022-06-15-week-2-praneeth.html
@@ -8,7 +8,7 @@
     
     
 
-    Week 2 - Improving DrawPanel UI — FURY 0.11.0.dev26+g789a448f documentation
+    Week 2 - Improving DrawPanel UI — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2022/2022-06-20-week1-shivam.html b/dev/posts/2022/2022-06-20-week1-shivam.html
index d4a343556..6bd52b717 100644
--- a/dev/posts/2022/2022-06-20-week1-shivam.html
+++ b/dev/posts/2022/2022-06-20-week1-shivam.html
@@ -8,7 +8,7 @@
     
     
 
-    Week 1 - A Basic glTF Importer — FURY 0.11.0.dev26+g789a448f documentation
+    Week 1 - A Basic glTF Importer — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2022/2022-06-22-week-3-praneeth.html b/dev/posts/2022/2022-06-22-week-3-praneeth.html
index a825f6fb9..32b9926af 100644
--- a/dev/posts/2022/2022-06-22-week-3-praneeth.html
+++ b/dev/posts/2022/2022-06-22-week-3-praneeth.html
@@ -8,7 +8,7 @@
     
     
 
-    Week 3 - Dealing with Problems — FURY 0.11.0.dev26+g789a448f documentation
+    Week 3 - Dealing with Problems — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2022/2022-06-28-week-2-mohamed.html b/dev/posts/2022/2022-06-28-week-2-mohamed.html
index ac6463696..0941466c1 100644
--- a/dev/posts/2022/2022-06-28-week-2-mohamed.html
+++ b/dev/posts/2022/2022-06-28-week-2-mohamed.html
@@ -8,7 +8,7 @@
     
     
 
-    Week 2: Implementing non-linear and color interpolators — FURY 0.11.0.dev26+g789a448f documentation
+    Week 2: Implementing non-linear and color interpolators — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2022/2022-06-29-week-4-praneeth.html b/dev/posts/2022/2022-06-29-week-4-praneeth.html
index 7509a7e95..6265e9558 100644
--- a/dev/posts/2022/2022-06-29-week-4-praneeth.html
+++ b/dev/posts/2022/2022-06-29-week-4-praneeth.html
@@ -8,7 +8,7 @@
     
     
 
-    Week 4 - Fixing the Clamping Issue — FURY 0.11.0.dev26+g789a448f documentation
+    Week 4 - Fixing the Clamping Issue — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2022/2022-06-29-week2-shivam.html b/dev/posts/2022/2022-06-29-week2-shivam.html
index 17eff6934..4bbd5c0ca 100644
--- a/dev/posts/2022/2022-06-29-week2-shivam.html
+++ b/dev/posts/2022/2022-06-29-week2-shivam.html
@@ -8,7 +8,7 @@
     
     
 
-    Week 2 - Improving Fetcher and Exporting glTF — FURY 0.11.0.dev26+g789a448f documentation
+    Week 2 - Improving Fetcher and Exporting glTF — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2022/2022-07-04-week-3-mohamed.html b/dev/posts/2022/2022-07-04-week-3-mohamed.html
index 0e86b2259..4f238b88a 100644
--- a/dev/posts/2022/2022-07-04-week-3-mohamed.html
+++ b/dev/posts/2022/2022-07-04-week-3-mohamed.html
@@ -8,7 +8,7 @@
     
     
 
-    Week 3: Redesigning the API, Implementing cubic Bezier Interpolator, and making progress on the GPU side! — FURY 0.11.0.dev26+g789a448f documentation
+    Week 3: Redesigning the API, Implementing cubic Bezier Interpolator, and making progress on the GPU side! — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2022/2022-07-04-week3-shivam.html b/dev/posts/2022/2022-07-04-week3-shivam.html
index 883ef54cf..786252f61 100644
--- a/dev/posts/2022/2022-07-04-week3-shivam.html
+++ b/dev/posts/2022/2022-07-04-week3-shivam.html
@@ -8,7 +8,7 @@
     
     
 
-    Week 3 - Fixing fetcher, adding tests and docs — FURY 0.11.0.dev26+g789a448f documentation
+    Week 3 - Fixing fetcher, adding tests and docs — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2022/2022-07-06-week-5-praneeth.html b/dev/posts/2022/2022-07-06-week-5-praneeth.html
index c4f8eb6bb..67019821c 100644
--- a/dev/posts/2022/2022-07-06-week-5-praneeth.html
+++ b/dev/posts/2022/2022-07-06-week-5-praneeth.html
@@ -8,7 +8,7 @@
     
     
 
-    Week 5 - Working on new features — FURY 0.11.0.dev26+g789a448f documentation
+    Week 5 - Working on new features — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2022/2022-07-11-week-4-mohamed.html b/dev/posts/2022/2022-07-11-week-4-mohamed.html
index ad19c8fd3..50853dd69 100644
--- a/dev/posts/2022/2022-07-11-week-4-mohamed.html
+++ b/dev/posts/2022/2022-07-11-week-4-mohamed.html
@@ -8,7 +8,7 @@
     
     
 
-    Week 4: Camera animation, interpolation in GLSL, and a single Timeline! — FURY 0.11.0.dev26+g789a448f documentation
+    Week 4: Camera animation, interpolation in GLSL, and a single Timeline! — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2022/2022-07-12-week4-shivam.html b/dev/posts/2022/2022-07-12-week4-shivam.html
index 9aeda6100..ded4b2bb2 100644
--- a/dev/posts/2022/2022-07-12-week4-shivam.html
+++ b/dev/posts/2022/2022-07-12-week4-shivam.html
@@ -8,7 +8,7 @@
     
     
 
-    Week 4 - Finalizing glTF loader — FURY 0.11.0.dev26+g789a448f documentation
+    Week 4 - Finalizing glTF loader — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2022/2022-07-13-week-6-praneeth.html b/dev/posts/2022/2022-07-13-week-6-praneeth.html
index d23c8a506..52e837f67 100644
--- a/dev/posts/2022/2022-07-13-week-6-praneeth.html
+++ b/dev/posts/2022/2022-07-13-week-6-praneeth.html
@@ -8,7 +8,7 @@
     
     
 
-    Week 6 - Supporting Rotation of the Shapes from the Center — FURY 0.11.0.dev26+g789a448f documentation
+    Week 6 - Supporting Rotation of the Shapes from the Center — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2022/2022-07-19-week-5-mohamed.html b/dev/posts/2022/2022-07-19-week-5-mohamed.html
index 8d4a5d5bd..5590ccc20 100644
--- a/dev/posts/2022/2022-07-19-week-5-mohamed.html
+++ b/dev/posts/2022/2022-07-19-week-5-mohamed.html
@@ -8,7 +8,7 @@
     
     
 
-    Week 5: Slerp implementation, documenting the Timeline, and adding unit tests — FURY 0.11.0.dev26+g789a448f documentation
+    Week 5: Slerp implementation, documenting the Timeline, and adding unit tests — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2022/2022-07-19-week5-shivam.html b/dev/posts/2022/2022-07-19-week5-shivam.html
index fe88f4cf9..9a08214dd 100644
--- a/dev/posts/2022/2022-07-19-week5-shivam.html
+++ b/dev/posts/2022/2022-07-19-week5-shivam.html
@@ -8,7 +8,7 @@
     
     
 
-    Week 5 - Creating PR for glTF exporter and fixing the loader — FURY 0.11.0.dev26+g789a448f documentation
+    Week 5 - Creating PR for glTF exporter and fixing the loader — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2022/2022-07-20-week-7-praneeth.html b/dev/posts/2022/2022-07-20-week-7-praneeth.html
index ff7c9dcb0..348f556a2 100644
--- a/dev/posts/2022/2022-07-20-week-7-praneeth.html
+++ b/dev/posts/2022/2022-07-20-week-7-praneeth.html
@@ -8,7 +8,7 @@
     
     
 
-    Week 7 - Working on Rotation PR and Trying Freehand Drawing — FURY 0.11.0.dev26+g789a448f documentation
+    Week 7 - Working on Rotation PR and Trying Freehand Drawing — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2022/2022-07-25-week-6-mohamed.html b/dev/posts/2022/2022-07-25-week-6-mohamed.html
index d7384f89b..6a51aa64a 100644
--- a/dev/posts/2022/2022-07-25-week-6-mohamed.html
+++ b/dev/posts/2022/2022-07-25-week-6-mohamed.html
@@ -8,7 +8,7 @@
     
     
 
-    Week 6: Fixing the Timeline issues and equipping it with more features — FURY 0.11.0.dev26+g789a448f documentation
+    Week 6: Fixing the Timeline issues and equipping it with more features — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2022/2022-07-25-week-6-shivam.html b/dev/posts/2022/2022-07-25-week-6-shivam.html
index 7fe513fc1..0ef3ea867 100644
--- a/dev/posts/2022/2022-07-25-week-6-shivam.html
+++ b/dev/posts/2022/2022-07-25-week-6-shivam.html
@@ -8,7 +8,7 @@
     
     
 
-    Week 6 - Extracting the animation data — FURY 0.11.0.dev26+g789a448f documentation
+    Week 6 - Extracting the animation data — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2022/2022-07-27-week-8-praneeth.html b/dev/posts/2022/2022-07-27-week-8-praneeth.html
index 1b816786b..c26afd98c 100644
--- a/dev/posts/2022/2022-07-27-week-8-praneeth.html
+++ b/dev/posts/2022/2022-07-27-week-8-praneeth.html
@@ -8,7 +8,7 @@
     
     
 
-    Week 8 - Working on the polyline feature — FURY 0.11.0.dev26+g789a448f documentation
+    Week 8 - Working on the polyline feature — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2022/2022-08-01-week-7-mohamed.html b/dev/posts/2022/2022-08-01-week-7-mohamed.html
index 59d7adaaa..55f4ef03a 100644
--- a/dev/posts/2022/2022-08-01-week-7-mohamed.html
+++ b/dev/posts/2022/2022-08-01-week-7-mohamed.html
@@ -8,7 +8,7 @@
     
     
 
-    Week 7: Billboard spheres and implementing interpolators using closures — FURY 0.11.0.dev26+g789a448f documentation
+    Week 7: Billboard spheres and implementing interpolators using closures — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2022/2022-08-01-week-7-shivam.html b/dev/posts/2022/2022-08-01-week-7-shivam.html
index b2a81d8e1..06f451c58 100644
--- a/dev/posts/2022/2022-08-01-week-7-shivam.html
+++ b/dev/posts/2022/2022-08-01-week-7-shivam.html
@@ -8,7 +8,7 @@
     
     
 
-    Week 7 - Fixing bugs in animations — FURY 0.11.0.dev26+g789a448f documentation
+    Week 7 - Fixing bugs in animations — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2022/2022-08-03-week-9-praneeth.html b/dev/posts/2022/2022-08-03-week-9-praneeth.html
index f2fde9ce7..01fbb2fb4 100644
--- a/dev/posts/2022/2022-08-03-week-9-praneeth.html
+++ b/dev/posts/2022/2022-08-03-week-9-praneeth.html
@@ -8,7 +8,7 @@
     
     
 
-    Week 9 - Grouping and Transforming Shapes — FURY 0.11.0.dev26+g789a448f documentation
+    Week 9 - Grouping and Transforming Shapes — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2022/2022-08-09-week-08-shivam.html b/dev/posts/2022/2022-08-09-week-08-shivam.html
index 345a5b336..9443d388d 100644
--- a/dev/posts/2022/2022-08-09-week-08-shivam.html
+++ b/dev/posts/2022/2022-08-09-week-08-shivam.html
@@ -8,7 +8,7 @@
     
     
 
-    Week 8 - Fixing animation bugs — FURY 0.11.0.dev26+g789a448f documentation
+    Week 8 - Fixing animation bugs — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2022/2022-08-09-week-8-mohamed.html b/dev/posts/2022/2022-08-09-week-8-mohamed.html
index a69eb3d93..0029fa341 100644
--- a/dev/posts/2022/2022-08-09-week-8-mohamed.html
+++ b/dev/posts/2022/2022-08-09-week-8-mohamed.html
@@ -8,7 +8,7 @@
     
     
 
-    Week 8: Back to the shader-based version of the Timeline — FURY 0.11.0.dev26+g789a448f documentation
+    Week 8: Back to the shader-based version of the Timeline — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2022/2022-08-10-week-10-praneeth.html b/dev/posts/2022/2022-08-10-week-10-praneeth.html
index d18e8c63d..e0651c0dc 100644
--- a/dev/posts/2022/2022-08-10-week-10-praneeth.html
+++ b/dev/posts/2022/2022-08-10-week-10-praneeth.html
@@ -8,7 +8,7 @@
     
     
 
-    Week 10 - Understanding Codes and Playing with Animation — FURY 0.11.0.dev26+g789a448f documentation
+    Week 10 - Understanding Codes and Playing with Animation — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2022/2022-08-16-week-9-mohamed.html b/dev/posts/2022/2022-08-16-week-9-mohamed.html
index a526fee69..b957b4d11 100644
--- a/dev/posts/2022/2022-08-16-week-9-mohamed.html
+++ b/dev/posts/2022/2022-08-16-week-9-mohamed.html
@@ -8,7 +8,7 @@
     
     
 
-    Week 9: Animating primitives of the same actor — FURY 0.11.0.dev26+g789a448f documentation
+    Week 9: Animating primitives of the same actor — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2022/2022-08-17-week-09-shivam.html b/dev/posts/2022/2022-08-17-week-09-shivam.html
index fac4dc089..9125db235 100644
--- a/dev/posts/2022/2022-08-17-week-09-shivam.html
+++ b/dev/posts/2022/2022-08-17-week-09-shivam.html
@@ -8,7 +8,7 @@
     
     
 
-    Week 9 - First working skeletal animation prototype — FURY 0.11.0.dev26+g789a448f documentation
+    Week 9 - First working skeletal animation prototype — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2022/2022-08-17-week-11-praneeth.html b/dev/posts/2022/2022-08-17-week-11-praneeth.html
index 294aa2572..ec8f2827e 100644
--- a/dev/posts/2022/2022-08-17-week-11-praneeth.html
+++ b/dev/posts/2022/2022-08-17-week-11-praneeth.html
@@ -8,7 +8,7 @@
     
     
 
-    Week 11 - Creating a base for Freehand Drawing — FURY 0.11.0.dev26+g789a448f documentation
+    Week 11 - Creating a base for Freehand Drawing — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2022/2022-08-23-week-10-mohamed.html b/dev/posts/2022/2022-08-23-week-10-mohamed.html
index d1f4b5eae..0fe21a555 100644
--- a/dev/posts/2022/2022-08-23-week-10-mohamed.html
+++ b/dev/posts/2022/2022-08-23-week-10-mohamed.html
@@ -8,7 +8,7 @@
     
     
 
-    Week 10: Supporting hierarchical animating — FURY 0.11.0.dev26+g789a448f documentation
+    Week 10: Supporting hierarchical animating — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2022/2022-08-24-week-12-praneeth.html b/dev/posts/2022/2022-08-24-week-12-praneeth.html
index e82b2fe7a..fc78c6559 100644
--- a/dev/posts/2022/2022-08-24-week-12-praneeth.html
+++ b/dev/posts/2022/2022-08-24-week-12-praneeth.html
@@ -8,7 +8,7 @@
     
     
 
-    Week 12 - Fixing translating issues and updating tests — FURY 0.11.0.dev26+g789a448f documentation
+    Week 12 - Fixing translating issues and updating tests — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2022/2022-08-25-week-10-shivam.html b/dev/posts/2022/2022-08-25-week-10-shivam.html
index 8956ba782..90225a069 100644
--- a/dev/posts/2022/2022-08-25-week-10-shivam.html
+++ b/dev/posts/2022/2022-08-25-week-10-shivam.html
@@ -8,7 +8,7 @@
     
     
 
-    Week 10 - Multi-node skinning support — FURY 0.11.0.dev26+g789a448f documentation
+    Week 10 - Multi-node skinning support — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2022/2022-08-30-week-11-mohamed.html b/dev/posts/2022/2022-08-30-week-11-mohamed.html
index a7904af48..abefcf7d5 100644
--- a/dev/posts/2022/2022-08-30-week-11-mohamed.html
+++ b/dev/posts/2022/2022-08-30-week-11-mohamed.html
@@ -8,7 +8,7 @@
     
     
 
-    Week 11: Improving tutorials a little — FURY 0.11.0.dev26+g789a448f documentation
+    Week 11: Improving tutorials a little — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2022/2022-08-31-week-11-shivam.html b/dev/posts/2022/2022-08-31-week-11-shivam.html
index edcfb8d5f..a4d9c0fa9 100644
--- a/dev/posts/2022/2022-08-31-week-11-shivam.html
+++ b/dev/posts/2022/2022-08-31-week-11-shivam.html
@@ -8,7 +8,7 @@
     
     
 
-    Week 11 - Multiple transformations support and adding tests — FURY 0.11.0.dev26+g789a448f documentation
+    Week 11 - Multiple transformations support and adding tests — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2022/2022-08-31-week-13-praneeth.html b/dev/posts/2022/2022-08-31-week-13-praneeth.html
index 034a6e65a..51022317b 100644
--- a/dev/posts/2022/2022-08-31-week-13-praneeth.html
+++ b/dev/posts/2022/2022-08-31-week-13-praneeth.html
@@ -8,7 +8,7 @@
     
     
 
-    Week 13 - Separating tests and fixing bugs — FURY 0.11.0.dev26+g789a448f documentation
+    Week 13 - Separating tests and fixing bugs — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2022/2022-09-07-week-14-praneeth.html b/dev/posts/2022/2022-09-07-week-14-praneeth.html
index be18dd1ce..397cd55d9 100644
--- a/dev/posts/2022/2022-09-07-week-14-praneeth.html
+++ b/dev/posts/2022/2022-09-07-week-14-praneeth.html
@@ -8,7 +8,7 @@
     
     
 
-    Week 14 - Updating DrawPanel architecture — FURY 0.11.0.dev26+g789a448f documentation
+    Week 14 - Updating DrawPanel architecture — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2022/2022-09-08-week-12-shivam.html b/dev/posts/2022/2022-09-08-week-12-shivam.html
index b9c71a4c9..7bc031a38 100644
--- a/dev/posts/2022/2022-09-08-week-12-shivam.html
+++ b/dev/posts/2022/2022-09-08-week-12-shivam.html
@@ -8,7 +8,7 @@
     
     
 
-    Week 12 - Adding skeleton as actors and fix global transformation — FURY 0.11.0.dev26+g789a448f documentation
+    Week 12 - Adding skeleton as actors and fix global transformation — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2022/2022-09-14-week-15-praneeth.html b/dev/posts/2022/2022-09-14-week-15-praneeth.html
index 3baa9ecdf..2c22faa9f 100644
--- a/dev/posts/2022/2022-09-14-week-15-praneeth.html
+++ b/dev/posts/2022/2022-09-14-week-15-praneeth.html
@@ -8,7 +8,7 @@
     
     
 
-    Week 15 - Highlighting DrawShapes — FURY 0.11.0.dev26+g789a448f documentation
+    Week 15 - Highlighting DrawShapes — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2022/2022-09-15-week-13-blog.html b/dev/posts/2022/2022-09-15-week-13-blog.html
index 8f8a81c94..2f38ee780 100644
--- a/dev/posts/2022/2022-09-15-week-13-blog.html
+++ b/dev/posts/2022/2022-09-15-week-13-blog.html
@@ -8,7 +8,7 @@
     
     
 
-    Week 13 - Multi-bone skeletal animation support — FURY 0.11.0.dev26+g789a448f documentation
+    Week 13 - Multi-bone skeletal animation support — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2022/2022-09-20-week-13-mohamed.html b/dev/posts/2022/2022-09-20-week-13-mohamed.html
index b4c4ec0bb..77354b3e3 100644
--- a/dev/posts/2022/2022-09-20-week-13-mohamed.html
+++ b/dev/posts/2022/2022-09-20-week-13-mohamed.html
@@ -8,7 +8,7 @@
     
     
 
-    Week 13: Keyframes animation is now a bit easier in FURY — FURY 0.11.0.dev26+g789a448f documentation
+    Week 13: Keyframes animation is now a bit easier in FURY — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2022/2022-09-21-week-16-praneeth.html b/dev/posts/2022/2022-09-21-week-16-praneeth.html
index a8eaa5ed4..7c9aa0aae 100644
--- a/dev/posts/2022/2022-09-21-week-16-praneeth.html
+++ b/dev/posts/2022/2022-09-21-week-16-praneeth.html
@@ -8,7 +8,7 @@
     
     
 
-    Week 16 - Working with Rotations! — FURY 0.11.0.dev26+g789a448f documentation
+    Week 16 - Working with Rotations! — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2022/2022-09-28-week-14-mohamed.html b/dev/posts/2022/2022-09-28-week-14-mohamed.html
index 06abb1703..1d560c124 100644
--- a/dev/posts/2022/2022-09-28-week-14-mohamed.html
+++ b/dev/posts/2022/2022-09-28-week-14-mohamed.html
@@ -8,7 +8,7 @@
     
     
 
-    Week 14: Keyframes animation is now a bit easier in FURY — FURY 0.11.0.dev26+g789a448f documentation
+    Week 14: Keyframes animation is now a bit easier in FURY — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2022/2022-09-28-week-14-shivam.html b/dev/posts/2022/2022-09-28-week-14-shivam.html
index 8fabd3e58..05c61a30c 100644
--- a/dev/posts/2022/2022-09-28-week-14-shivam.html
+++ b/dev/posts/2022/2022-09-28-week-14-shivam.html
@@ -8,7 +8,7 @@
     
     
 
-    Week 14 - Morphing is here! — FURY 0.11.0.dev26+g789a448f documentation
+    Week 14 - Morphing is here! — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2022/2022-09-7-week-12-mohamed.html b/dev/posts/2022/2022-09-7-week-12-mohamed.html
index 95a6cc5a4..b70cb2a22 100644
--- a/dev/posts/2022/2022-09-7-week-12-mohamed.html
+++ b/dev/posts/2022/2022-09-7-week-12-mohamed.html
@@ -8,7 +8,7 @@
     
     
 
-    Week 12: Adding new tutorials — FURY 0.11.0.dev26+g789a448f documentation
+    Week 12: Adding new tutorials — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2023/2023-01-24-final-report-praneeth.html b/dev/posts/2023/2023-01-24-final-report-praneeth.html
index 68e573b4c..5ad0dc963 100644
--- a/dev/posts/2023/2023-01-24-final-report-praneeth.html
+++ b/dev/posts/2023/2023-01-24-final-report-praneeth.html
@@ -8,7 +8,7 @@
     
     
 
-    Google Summer of Code Final Work Product — FURY 0.11.0.dev26+g789a448f documentation
+    Google Summer of Code Final Work Product — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2023/2023-01-29-final-report-mohamed.html b/dev/posts/2023/2023-01-29-final-report-mohamed.html
index 609f587e4..d0ebe3487 100644
--- a/dev/posts/2023/2023-01-29-final-report-mohamed.html
+++ b/dev/posts/2023/2023-01-29-final-report-mohamed.html
@@ -8,7 +8,7 @@
     
     
 
-    Google Summer of Code Final Work Product — FURY 0.11.0.dev26+g789a448f documentation
+    Google Summer of Code Final Work Product — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2023/2023-01-29-final-report-shivam.html b/dev/posts/2023/2023-01-29-final-report-shivam.html
index 8ae03b309..3c6f9fdcd 100644
--- a/dev/posts/2023/2023-01-29-final-report-shivam.html
+++ b/dev/posts/2023/2023-01-29-final-report-shivam.html
@@ -8,7 +8,7 @@
     
     
 
-    Google Summer of Code Final Work Product — FURY 0.11.0.dev26+g789a448f documentation
+    Google Summer of Code Final Work Product — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2023/2023-02-01-gsoc.html b/dev/posts/2023/2023-02-01-gsoc.html
index 4ba9b8ba8..de5a26078 100644
--- a/dev/posts/2023/2023-02-01-gsoc.html
+++ b/dev/posts/2023/2023-02-01-gsoc.html
@@ -8,7 +8,7 @@
     
     
 
-    Contribute to FURY via Google Summer of Code 2023 — FURY 0.11.0.dev26+g789a448f documentation
+    Contribute to FURY via Google Summer of Code 2023 — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2023/2023-04-14-release-announcement.html b/dev/posts/2023/2023-04-14-release-announcement.html
index c2001ca3d..19ad01dbf 100644
--- a/dev/posts/2023/2023-04-14-release-announcement.html
+++ b/dev/posts/2023/2023-04-14-release-announcement.html
@@ -8,7 +8,7 @@
     
     
 
-    FURY 0.9.0 Released — FURY 0.11.0.dev26+g789a448f documentation
+    FURY 0.9.0 Released — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2023/2023-05-29-week-0-joaodellagli.html b/dev/posts/2023/2023-05-29-week-0-joaodellagli.html
index dc231ec74..ab7ce9ef5 100644
--- a/dev/posts/2023/2023-05-29-week-0-joaodellagli.html
+++ b/dev/posts/2023/2023-05-29-week-0-joaodellagli.html
@@ -8,7 +8,7 @@
     
     
 
-    The Beginning of Everything - Week 0 — FURY 0.11.0.dev26+g789a448f documentation
+    The Beginning of Everything - Week 0 — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2023/2023-06-02-week-0-praneeth.html b/dev/posts/2023/2023-06-02-week-0-praneeth.html
index f8f671347..74f212326 100644
--- a/dev/posts/2023/2023-06-02-week-0-praneeth.html
+++ b/dev/posts/2023/2023-06-02-week-0-praneeth.html
@@ -8,7 +8,7 @@
     
     
 
-    Week 0: Community Bounding Period — FURY 0.11.0.dev26+g789a448f documentation
+    Week 0: Community Bounding Period — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2023/2023-06-02-week-0-tvcastillod.html b/dev/posts/2023/2023-06-02-week-0-tvcastillod.html
index 207f2e135..a53ac98ef 100644
--- a/dev/posts/2023/2023-06-02-week-0-tvcastillod.html
+++ b/dev/posts/2023/2023-06-02-week-0-tvcastillod.html
@@ -8,7 +8,7 @@
     
     
 
-    Week 0: Community Bounding Period — FURY 0.11.0.dev26+g789a448f documentation
+    Week 0: Community Bounding Period — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2023/2023-06-03-week-1-praneeth.html b/dev/posts/2023/2023-06-03-week-1-praneeth.html
index 9ded33097..7467582fc 100644
--- a/dev/posts/2023/2023-06-03-week-1-praneeth.html
+++ b/dev/posts/2023/2023-06-03-week-1-praneeth.html
@@ -8,7 +8,7 @@
     
     
 
-    Week 1: Working with SpinBox and TextBox Enhancements — FURY 0.11.0.dev26+g789a448f documentation
+    Week 1: Working with SpinBox and TextBox Enhancements — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2023/2023-06-05-week-1-joaodellagli.html b/dev/posts/2023/2023-06-05-week-1-joaodellagli.html
index 8d19292b6..164cfab27 100644
--- a/dev/posts/2023/2023-06-05-week-1-joaodellagli.html
+++ b/dev/posts/2023/2023-06-05-week-1-joaodellagli.html
@@ -8,7 +8,7 @@
     
     
 
-    The FBO Saga - Week 1 — FURY 0.11.0.dev26+g789a448f documentation
+    The FBO Saga - Week 1 — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2023/2023-06-05-week-1-tvcastillod.html b/dev/posts/2023/2023-06-05-week-1-tvcastillod.html
index 060872db9..9606eff78 100644
--- a/dev/posts/2023/2023-06-05-week-1-tvcastillod.html
+++ b/dev/posts/2023/2023-06-05-week-1-tvcastillod.html
@@ -8,7 +8,7 @@
     
     
 
-    Week 1: Ellipsoid actor implemented with SDF — FURY 0.11.0.dev26+g789a448f documentation
+    Week 1: Ellipsoid actor implemented with SDF — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2023/2023-06-11-week-2-praneeth.html b/dev/posts/2023/2023-06-11-week-2-praneeth.html
index 0ebe07cdf..9d3ac9ed3 100644
--- a/dev/posts/2023/2023-06-11-week-2-praneeth.html
+++ b/dev/posts/2023/2023-06-11-week-2-praneeth.html
@@ -8,7 +8,7 @@
     
     
 
-    Week 2: Tackling Text Justification and Icon Flaw Issues — FURY 0.11.0.dev26+g789a448f documentation
+    Week 2: Tackling Text Justification and Icon Flaw Issues — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2023/2023-06-12-week-2-joaodellagli.html b/dev/posts/2023/2023-06-12-week-2-joaodellagli.html
index 1fa7a4063..c94ddfeec 100644
--- a/dev/posts/2023/2023-06-12-week-2-joaodellagli.html
+++ b/dev/posts/2023/2023-06-12-week-2-joaodellagli.html
@@ -8,7 +8,7 @@
     
     
 
-    Week 2: The Importance of (good) Documentation — FURY 0.11.0.dev26+g789a448f documentation
+    Week 2: The Importance of (good) Documentation — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2023/2023-06-12-week-2-tvcastillod.html b/dev/posts/2023/2023-06-12-week-2-tvcastillod.html
index 9e48b1b35..3fae2d4e1 100644
--- a/dev/posts/2023/2023-06-12-week-2-tvcastillod.html
+++ b/dev/posts/2023/2023-06-12-week-2-tvcastillod.html
@@ -8,7 +8,7 @@
     
     
 
-    Week 2: Making adjustments to the Ellipsoid Actor — FURY 0.11.0.dev26+g789a448f documentation
+    Week 2: Making adjustments to the Ellipsoid Actor — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2023/2023-06-17-week-3-praneeth.html b/dev/posts/2023/2023-06-17-week-3-praneeth.html
index 131c1e517..22f4a537e 100644
--- a/dev/posts/2023/2023-06-17-week-3-praneeth.html
+++ b/dev/posts/2023/2023-06-17-week-3-praneeth.html
@@ -8,7 +8,7 @@
     
     
 
-    Week 3: Resolving Combobox Icon Flaw and TextBox Justification — FURY 0.11.0.dev26+g789a448f documentation
+    Week 3: Resolving Combobox Icon Flaw and TextBox Justification — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2023/2023-06-19-week-3-joaodellagli.html b/dev/posts/2023/2023-06-19-week-3-joaodellagli.html
index 4ccd9c7ae..e722e82e7 100644
--- a/dev/posts/2023/2023-06-19-week-3-joaodellagli.html
+++ b/dev/posts/2023/2023-06-19-week-3-joaodellagli.html
@@ -8,7 +8,7 @@
     
     
 
-    Week 3: Watch Your Expectations — FURY 0.11.0.dev26+g789a448f documentation
+    Week 3: Watch Your Expectations — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2023/2023-06-19-week-3-tvcastillod.html b/dev/posts/2023/2023-06-19-week-3-tvcastillod.html
index 1e6a2079d..09b94443e 100644
--- a/dev/posts/2023/2023-06-19-week-3-tvcastillod.html
+++ b/dev/posts/2023/2023-06-19-week-3-tvcastillod.html
@@ -8,7 +8,7 @@
     
     
 
-    Week 3: Working on uncertainty and details of the first PR — FURY 0.11.0.dev26+g789a448f documentation
+    Week 3: Working on uncertainty and details of the first PR — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2023/2023-06-24-week-4-praneeth.html b/dev/posts/2023/2023-06-24-week-4-praneeth.html
index 0f1659fea..015e6f9d0 100644
--- a/dev/posts/2023/2023-06-24-week-4-praneeth.html
+++ b/dev/posts/2023/2023-06-24-week-4-praneeth.html
@@ -8,7 +8,7 @@
     
     
 
-    Week 4: Exam Preparations and Reviewing — FURY 0.11.0.dev26+g789a448f documentation
+    Week 4: Exam Preparations and Reviewing — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2023/2023-06-26-week-4-joaodellagli.html b/dev/posts/2023/2023-06-26-week-4-joaodellagli.html
index 94f11c0cd..b1b71f69e 100644
--- a/dev/posts/2023/2023-06-26-week-4-joaodellagli.html
+++ b/dev/posts/2023/2023-06-26-week-4-joaodellagli.html
@@ -8,7 +8,7 @@
     
     
 
-    Week 4: Nothing is Ever Lost — FURY 0.11.0.dev26+g789a448f documentation
+    Week 4: Nothing is Ever Lost — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2023/2023-06-27-week-4-tvcastillod.html b/dev/posts/2023/2023-06-27-week-4-tvcastillod.html
index c30515a48..55172dad3 100644
--- a/dev/posts/2023/2023-06-27-week-4-tvcastillod.html
+++ b/dev/posts/2023/2023-06-27-week-4-tvcastillod.html
@@ -8,7 +8,7 @@
     
     
 
-    Week 4: First draft of the DTI uncertainty visualization — FURY 0.11.0.dev26+g789a448f documentation
+    Week 4: First draft of the DTI uncertainty visualization — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2023/2023-07-01-week-5-praneeth.html b/dev/posts/2023/2023-07-01-week-5-praneeth.html
index 92fa5e0f8..e1b2ed489 100644
--- a/dev/posts/2023/2023-07-01-week-5-praneeth.html
+++ b/dev/posts/2023/2023-07-01-week-5-praneeth.html
@@ -8,7 +8,7 @@
     
     
 
-    Week 5: Trying out PRs and Planning Ahead — FURY 0.11.0.dev26+g789a448f documentation
+    Week 5: Trying out PRs and Planning Ahead — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2023/2023-07-03-week-5-joaodellagli.html b/dev/posts/2023/2023-07-03-week-5-joaodellagli.html
index 57e438e67..b1336c49e 100644
--- a/dev/posts/2023/2023-07-03-week-5-joaodellagli.html
+++ b/dev/posts/2023/2023-07-03-week-5-joaodellagli.html
@@ -8,7 +8,7 @@
     
     
 
-    Week 5: All Roads Lead to Rome — FURY 0.11.0.dev26+g789a448f documentation
+    Week 5: All Roads Lead to Rome — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2023/2023-07-03-week-5-tvcastillod.html b/dev/posts/2023/2023-07-03-week-5-tvcastillod.html
index 4033a698c..820412abf 100644
--- a/dev/posts/2023/2023-07-03-week-5-tvcastillod.html
+++ b/dev/posts/2023/2023-07-03-week-5-tvcastillod.html
@@ -8,7 +8,7 @@
     
     
 
-    Week 5: Preparing the data for the Ellipsoid tutorial — FURY 0.11.0.dev26+g789a448f documentation
+    Week 5: Preparing the data for the Ellipsoid tutorial — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2023/2023-07-08-week-6-praneeth.html b/dev/posts/2023/2023-07-08-week-6-praneeth.html
index 508f5f34e..206d80499 100644
--- a/dev/posts/2023/2023-07-08-week-6-praneeth.html
+++ b/dev/posts/2023/2023-07-08-week-6-praneeth.html
@@ -8,7 +8,7 @@
     
     
 
-    Week 6: BoundingBox for TextBlock2D! — FURY 0.11.0.dev26+g789a448f documentation
+    Week 6: BoundingBox for TextBlock2D! — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2023/2023-07-10-week-6-joaodellagli.html b/dev/posts/2023/2023-07-10-week-6-joaodellagli.html
index b598d6a99..4a807554c 100644
--- a/dev/posts/2023/2023-07-10-week-6-joaodellagli.html
+++ b/dev/posts/2023/2023-07-10-week-6-joaodellagli.html
@@ -8,7 +8,7 @@
     
     
 
-    Week 6: Things are Starting to Build Up — FURY 0.11.0.dev26+g789a448f documentation
+    Week 6: Things are Starting to Build Up — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2023/2023-07-10-week-6-tvcastillod.html b/dev/posts/2023/2023-07-10-week-6-tvcastillod.html
index 5c417cd24..900bf67da 100644
--- a/dev/posts/2023/2023-07-10-week-6-tvcastillod.html
+++ b/dev/posts/2023/2023-07-10-week-6-tvcastillod.html
@@ -8,7 +8,7 @@
     
     
 
-    Week 6: First draft of the Ellipsoid tutorial — FURY 0.11.0.dev26+g789a448f documentation
+    Week 6: First draft of the Ellipsoid tutorial — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2023/2023-07-15-week-7-praneeth.html b/dev/posts/2023/2023-07-15-week-7-praneeth.html
index 9f6932ba4..34b8222d0 100644
--- a/dev/posts/2023/2023-07-15-week-7-praneeth.html
+++ b/dev/posts/2023/2023-07-15-week-7-praneeth.html
@@ -8,7 +8,7 @@
     
     
 
-    Week 7: Sowing the seeds for TreeUI — FURY 0.11.0.dev26+g789a448f documentation
+    Week 7: Sowing the seeds for TreeUI — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2023/2023-07-17-week-7-joaodellagli.html b/dev/posts/2023/2023-07-17-week-7-joaodellagli.html
index 8bf1522cf..3e428c57a 100644
--- a/dev/posts/2023/2023-07-17-week-7-joaodellagli.html
+++ b/dev/posts/2023/2023-07-17-week-7-joaodellagli.html
@@ -8,7 +8,7 @@
     
     
 
-    Week 7: Experimentation Done — FURY 0.11.0.dev26+g789a448f documentation
+    Week 7: Experimentation Done — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2023/2023-07-17-week-7-tvcastillod.html b/dev/posts/2023/2023-07-17-week-7-tvcastillod.html
index 4ed18aff2..d38a9aa41 100644
--- a/dev/posts/2023/2023-07-17-week-7-tvcastillod.html
+++ b/dev/posts/2023/2023-07-17-week-7-tvcastillod.html
@@ -8,7 +8,7 @@
     
     
 
-    Week 7: Adjustments on the Uncertainty Cones visualization — FURY 0.11.0.dev26+g789a448f documentation
+    Week 7: Adjustments on the Uncertainty Cones visualization — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2023/2023-07-22-week-8-praneeth.html b/dev/posts/2023/2023-07-22-week-8-praneeth.html
index e3e3220c0..213c1c170 100644
--- a/dev/posts/2023/2023-07-22-week-8-praneeth.html
+++ b/dev/posts/2023/2023-07-22-week-8-praneeth.html
@@ -8,7 +8,7 @@
     
     
 
-    Week 8: Another week with TextBlockUI — FURY 0.11.0.dev26+g789a448f documentation
+    Week 8: Another week with TextBlockUI — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2023/2023-07-24-week-8-joaodellagli.html b/dev/posts/2023/2023-07-24-week-8-joaodellagli.html
index 582120c1f..0e6a26fc9 100644
--- a/dev/posts/2023/2023-07-24-week-8-joaodellagli.html
+++ b/dev/posts/2023/2023-07-24-week-8-joaodellagli.html
@@ -8,7 +8,7 @@
     
     
 
-    Week 8: The Birth of a Versatile API — FURY 0.11.0.dev26+g789a448f documentation
+    Week 8: The Birth of a Versatile API — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2023/2023-07-25-week-8-tvcastillod.html b/dev/posts/2023/2023-07-25-week-8-tvcastillod.html
index 5426cd6c2..fd2ad1c7a 100644
--- a/dev/posts/2023/2023-07-25-week-8-tvcastillod.html
+++ b/dev/posts/2023/2023-07-25-week-8-tvcastillod.html
@@ -8,7 +8,7 @@
     
     
 
-    Week 8: Working on Ellipsoid Tutorial and exploring SH — FURY 0.11.0.dev26+g789a448f documentation
+    Week 8: Working on Ellipsoid Tutorial and exploring SH — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2023/2023-07-29-week-9-praneeth.html b/dev/posts/2023/2023-07-29-week-9-praneeth.html
index 47a855d0e..7d2a2f705 100644
--- a/dev/posts/2023/2023-07-29-week-9-praneeth.html
+++ b/dev/posts/2023/2023-07-29-week-9-praneeth.html
@@ -8,7 +8,7 @@
     
     
 
-    Week 9: TextBlock2D is Finally Merged! — FURY 0.11.0.dev26+g789a448f documentation
+    Week 9: TextBlock2D is Finally Merged! — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2023/2023-07-31-week-9-joaodellagli.html b/dev/posts/2023/2023-07-31-week-9-joaodellagli.html
index bad270890..35ea487f0 100644
--- a/dev/posts/2023/2023-07-31-week-9-joaodellagli.html
+++ b/dev/posts/2023/2023-07-31-week-9-joaodellagli.html
@@ -8,7 +8,7 @@
     
     
 
-    Week 9: It is Polishing Time! — FURY 0.11.0.dev26+g789a448f documentation
+    Week 9: It is Polishing Time! — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2023/2023-07-31-week-9-tvcastillod.html b/dev/posts/2023/2023-07-31-week-9-tvcastillod.html
index b4caa4efe..38a149a6f 100644
--- a/dev/posts/2023/2023-07-31-week-9-tvcastillod.html
+++ b/dev/posts/2023/2023-07-31-week-9-tvcastillod.html
@@ -8,7 +8,7 @@
     
     
 
-    Week 9: Tutorial done and polishing DTI uncertainty — FURY 0.11.0.dev26+g789a448f documentation
+    Week 9: Tutorial done and polishing DTI uncertainty — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2023/2023-08-05-week-10-praneeth.html b/dev/posts/2023/2023-08-05-week-10-praneeth.html
index fdd584753..e5c07ffef 100644
--- a/dev/posts/2023/2023-08-05-week-10-praneeth.html
+++ b/dev/posts/2023/2023-08-05-week-10-praneeth.html
@@ -8,7 +8,7 @@
     
     
 
-    Week 10: Its time for a Spin-Box! — FURY 0.11.0.dev26+g789a448f documentation
+    Week 10: Its time for a Spin-Box! — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2023/2023-08-07-week-10-joaodellagli.html b/dev/posts/2023/2023-08-07-week-10-joaodellagli.html
index 043aa97fa..77e335860 100644
--- a/dev/posts/2023/2023-08-07-week-10-joaodellagli.html
+++ b/dev/posts/2023/2023-08-07-week-10-joaodellagli.html
@@ -8,7 +8,7 @@
     
     
 
-    Week 10: Ready for Review! — FURY 0.11.0.dev26+g789a448f documentation
+    Week 10: Ready for Review! — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2023/2023-08-08-week-10-tvcastillod.html b/dev/posts/2023/2023-08-08-week-10-tvcastillod.html
index da8a4215f..2d859faae 100644
--- a/dev/posts/2023/2023-08-08-week-10-tvcastillod.html
+++ b/dev/posts/2023/2023-08-08-week-10-tvcastillod.html
@@ -8,7 +8,7 @@
     
     
 
-    Week 10 : Start of SH implementation experiments — FURY 0.11.0.dev26+g789a448f documentation
+    Week 10 : Start of SH implementation experiments — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2023/2023-08-12-week-11-praneeth.html b/dev/posts/2023/2023-08-12-week-11-praneeth.html
index bd938361d..337769db8 100644
--- a/dev/posts/2023/2023-08-12-week-11-praneeth.html
+++ b/dev/posts/2023/2023-08-12-week-11-praneeth.html
@@ -8,7 +8,7 @@
     
     
 
-    Week 11: Bye Bye SpinBox — FURY 0.11.0.dev26+g789a448f documentation
+    Week 11: Bye Bye SpinBox — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2023/2023-08-14-week-11-joaodellagli.html b/dev/posts/2023/2023-08-14-week-11-joaodellagli.html
index cb011e8f7..5cb42d76b 100644
--- a/dev/posts/2023/2023-08-14-week-11-joaodellagli.html
+++ b/dev/posts/2023/2023-08-14-week-11-joaodellagli.html
@@ -8,7 +8,7 @@
     
     
 
-    Week 11: A Refactor is Sometimes Needed — FURY 0.11.0.dev26+g789a448f documentation
+    Week 11: A Refactor is Sometimes Needed — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2023/2023-08-16-week-11-tvcastillod.html b/dev/posts/2023/2023-08-16-week-11-tvcastillod.html
index be2a2bdeb..5aa141d20 100644
--- a/dev/posts/2023/2023-08-16-week-11-tvcastillod.html
+++ b/dev/posts/2023/2023-08-16-week-11-tvcastillod.html
@@ -8,7 +8,7 @@
     
     
 
-    Week 11 : Adjusting ODF implementation and looking for solutions on issues found — FURY 0.11.0.dev26+g789a448f documentation
+    Week 11 : Adjusting ODF implementation and looking for solutions on issues found — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2023/2023-08-19-week-12-praneeth.html b/dev/posts/2023/2023-08-19-week-12-praneeth.html
index ead23ed64..0b9f409be 100644
--- a/dev/posts/2023/2023-08-19-week-12-praneeth.html
+++ b/dev/posts/2023/2023-08-19-week-12-praneeth.html
@@ -8,7 +8,7 @@
     
     
 
-    Week 12: FileDialog Quest Begins! — FURY 0.11.0.dev26+g789a448f documentation
+    Week 12: FileDialog Quest Begins! — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2023/2023-08-21-joaodellagli-final-report.html b/dev/posts/2023/2023-08-21-joaodellagli-final-report.html
index 21919aa54..01ed60ffe 100644
--- a/dev/posts/2023/2023-08-21-joaodellagli-final-report.html
+++ b/dev/posts/2023/2023-08-21-joaodellagli-final-report.html
@@ -8,7 +8,7 @@
     
     
 
-    Google Summer of Code Final Work Product — FURY 0.11.0.dev26+g789a448f documentation
+    Google Summer of Code Final Work Product — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2023/2023-08-21-week-12-joaodellagli.html b/dev/posts/2023/2023-08-21-week-12-joaodellagli.html
index 0e888666a..00e9f555f 100644
--- a/dev/posts/2023/2023-08-21-week-12-joaodellagli.html
+++ b/dev/posts/2023/2023-08-21-week-12-joaodellagli.html
@@ -8,7 +8,7 @@
     
     
 
-    Week 12: Now That is (almost) a Wrap! — FURY 0.11.0.dev26+g789a448f documentation
+    Week 12: Now That is (almost) a Wrap! — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2023/2023-08-24-final-report-tvcastillod.html b/dev/posts/2023/2023-08-24-final-report-tvcastillod.html
index 210a74c71..e88233143 100644
--- a/dev/posts/2023/2023-08-24-final-report-tvcastillod.html
+++ b/dev/posts/2023/2023-08-24-final-report-tvcastillod.html
@@ -8,7 +8,7 @@
     
     
 
-    Google Summer of Code Final Work Product — FURY 0.11.0.dev26+g789a448f documentation
+    Google Summer of Code Final Work Product — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2023/2023-08-24-week-12-tvcastillod.html b/dev/posts/2023/2023-08-24-week-12-tvcastillod.html
index b2e4d45da..af2d68d49 100644
--- a/dev/posts/2023/2023-08-24-week-12-tvcastillod.html
+++ b/dev/posts/2023/2023-08-24-week-12-tvcastillod.html
@@ -8,7 +8,7 @@
     
     
 
-    Week 12 : Experimenting with ODFs implementation — FURY 0.11.0.dev26+g789a448f documentation
+    Week 12 : Experimenting with ODFs implementation — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/posts/2023/2023-08-25-final-report-praneeth.html b/dev/posts/2023/2023-08-25-final-report-praneeth.html
index 571f96e4d..6132374c7 100644
--- a/dev/posts/2023/2023-08-25-final-report-praneeth.html
+++ b/dev/posts/2023/2023-08-25-final-report-praneeth.html
@@ -8,7 +8,7 @@
     
     
 
-    Google Summer of Code Final Work Product — FURY 0.11.0.dev26+g789a448f documentation
+    Google Summer of Code Final Work Product — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/py-modindex.html b/dev/py-modindex.html
index ea66c8694..963b9887c 100644
--- a/dev/py-modindex.html
+++ b/dev/py-modindex.html
@@ -7,7 +7,7 @@
   
     
     
-    Python Module Index — FURY 0.11.0.dev26+g789a448f documentation
+    Python Module Index — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -43,7 +43,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/reference/fury.actor.html b/dev/reference/fury.actor.html
index 3ca50a88e..efb857447 100644
--- a/dev/reference/fury.actor.html
+++ b/dev/reference/fury.actor.html
@@ -8,7 +8,7 @@
     
     
 
-    actor — FURY 0.11.0.dev26+g789a448f documentation
+    actor — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/reference/fury.actors.html b/dev/reference/fury.actors.html
index 56712023f..28254145c 100644
--- a/dev/reference/fury.actors.html
+++ b/dev/reference/fury.actors.html
@@ -8,7 +8,7 @@
     
     
 
-    actors — FURY 0.11.0.dev26+g789a448f documentation
+    actors — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/reference/fury.animation.html b/dev/reference/fury.animation.html
index b57fa10ba..ef5a24089 100644
--- a/dev/reference/fury.animation.html
+++ b/dev/reference/fury.animation.html
@@ -8,7 +8,7 @@
     
     
 
-    animation — FURY 0.11.0.dev26+g789a448f documentation
+    animation — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/reference/fury.colormap.html b/dev/reference/fury.colormap.html
index b739b2323..830eedc02 100644
--- a/dev/reference/fury.colormap.html
+++ b/dev/reference/fury.colormap.html
@@ -8,7 +8,7 @@
     
     
 
-    colormap — FURY 0.11.0.dev26+g789a448f documentation
+    colormap — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/reference/fury.convert.html b/dev/reference/fury.convert.html
index 197536eff..7f1414238 100644
--- a/dev/reference/fury.convert.html
+++ b/dev/reference/fury.convert.html
@@ -8,7 +8,7 @@
     
     
 
-    convert — FURY 0.11.0.dev26+g789a448f documentation
+    convert — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/reference/fury.data.html b/dev/reference/fury.data.html
index bc6b57013..9a6850fd9 100644
--- a/dev/reference/fury.data.html
+++ b/dev/reference/fury.data.html
@@ -8,7 +8,7 @@
     
     
 
-    data — FURY 0.11.0.dev26+g789a448f documentation
+    data — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/reference/fury.decorators.html b/dev/reference/fury.decorators.html
index a496ce03a..afe5562d2 100644
--- a/dev/reference/fury.decorators.html
+++ b/dev/reference/fury.decorators.html
@@ -8,7 +8,7 @@
     
     
 
-    decorators — FURY 0.11.0.dev26+g789a448f documentation
+    decorators — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
diff --git a/dev/reference/fury.deprecator.html b/dev/reference/fury.deprecator.html
index 4432deb95..59c5d4d4d 100644
--- a/dev/reference/fury.deprecator.html
+++ b/dev/reference/fury.deprecator.html
@@ -8,7 +8,7 @@
     
     
 
-    deprecator — FURY 0.11.0.dev26+g789a448f documentation
+    deprecator — FURY 0.11.0.dev27+g14851c6a documentation
   
   
   
@@ -44,7 +44,7 @@
 
   
 
-    
+    
     
     
     
@@ -478,7 +478,7 @@ 

_LEADING_WHITE#

-fury.deprecator.cmp_pkg_version(version_str, pkg_version_str='0.11.0.dev26+g789a448f')[source]#
+fury.deprecator.cmp_pkg_version(version_str, pkg_version_str='0.11.0.dev27+g14851c6a')[source]#

Compare version_str to current package version.

Parameters:
diff --git a/dev/reference/fury.gltf.html b/dev/reference/fury.gltf.html index 14f08e7e8..9eaff20b2 100644 --- a/dev/reference/fury.gltf.html +++ b/dev/reference/fury.gltf.html @@ -8,7 +8,7 @@ - gltf — FURY 0.11.0.dev26+g789a448f documentation + gltf — FURY 0.11.0.dev27+g14851c6a documentation @@ -44,7 +44,7 @@ - + diff --git a/dev/reference/fury.html b/dev/reference/fury.html index 8c6ed46b5..7807e8426 100644 --- a/dev/reference/fury.html +++ b/dev/reference/fury.html @@ -8,7 +8,7 @@ - fury — FURY 0.11.0.dev26+g789a448f documentation + fury — FURY 0.11.0.dev27+g14851c6a documentation @@ -44,7 +44,7 @@ - + diff --git a/dev/reference/fury.io.html b/dev/reference/fury.io.html index d5d89914f..f0704e0a9 100644 --- a/dev/reference/fury.io.html +++ b/dev/reference/fury.io.html @@ -8,7 +8,7 @@ - io — FURY 0.11.0.dev26+g789a448f documentation + io — FURY 0.11.0.dev27+g14851c6a documentation @@ -44,7 +44,7 @@ - + diff --git a/dev/reference/fury.layout.html b/dev/reference/fury.layout.html index 69b2dbeba..18e6fdf94 100644 --- a/dev/reference/fury.layout.html +++ b/dev/reference/fury.layout.html @@ -8,7 +8,7 @@ - layout — FURY 0.11.0.dev26+g789a448f documentation + layout — FURY 0.11.0.dev27+g14851c6a documentation @@ -44,7 +44,7 @@ - + diff --git a/dev/reference/fury.lib.html b/dev/reference/fury.lib.html index 39ded4383..f7fd39c73 100644 --- a/dev/reference/fury.lib.html +++ b/dev/reference/fury.lib.html @@ -8,7 +8,7 @@ - lib — FURY 0.11.0.dev26+g789a448f documentation + lib — FURY 0.11.0.dev27+g14851c6a documentation @@ -44,7 +44,7 @@ - + diff --git a/dev/reference/fury.material.html b/dev/reference/fury.material.html index 97855a066..55be07d31 100644 --- a/dev/reference/fury.material.html +++ b/dev/reference/fury.material.html @@ -8,7 +8,7 @@ - material — FURY 0.11.0.dev26+g789a448f documentation + material — FURY 0.11.0.dev27+g14851c6a documentation @@ -44,7 +44,7 @@ - + diff --git a/dev/reference/fury.molecular.html b/dev/reference/fury.molecular.html index 20c76c272..35d60d593 100644 --- a/dev/reference/fury.molecular.html +++ b/dev/reference/fury.molecular.html @@ -8,7 +8,7 @@ - molecular — FURY 0.11.0.dev26+g789a448f documentation + molecular — FURY 0.11.0.dev27+g14851c6a documentation @@ -44,7 +44,7 @@ - + diff --git a/dev/reference/fury.pick.html b/dev/reference/fury.pick.html index 0404f02a5..7cbaf1233 100644 --- a/dev/reference/fury.pick.html +++ b/dev/reference/fury.pick.html @@ -8,7 +8,7 @@ - pick — FURY 0.11.0.dev26+g789a448f documentation + pick — FURY 0.11.0.dev27+g14851c6a documentation @@ -44,7 +44,7 @@ - + diff --git a/dev/reference/fury.pkg_info.html b/dev/reference/fury.pkg_info.html index 9a7652c0b..29075df38 100644 --- a/dev/reference/fury.pkg_info.html +++ b/dev/reference/fury.pkg_info.html @@ -8,7 +8,7 @@ - pkg_info — FURY 0.11.0.dev26+g789a448f documentation + pkg_info — FURY 0.11.0.dev27+g14851c6a documentation @@ -44,7 +44,7 @@ - + diff --git a/dev/reference/fury.primitive.html b/dev/reference/fury.primitive.html index 107c47005..26eeb563c 100644 --- a/dev/reference/fury.primitive.html +++ b/dev/reference/fury.primitive.html @@ -8,7 +8,7 @@ - primitive — FURY 0.11.0.dev26+g789a448f documentation + primitive — FURY 0.11.0.dev27+g14851c6a documentation @@ -44,7 +44,7 @@ - + diff --git a/dev/reference/fury.shaders.html b/dev/reference/fury.shaders.html index 95abf864f..ca853c99a 100644 --- a/dev/reference/fury.shaders.html +++ b/dev/reference/fury.shaders.html @@ -8,7 +8,7 @@ - shaders — FURY 0.11.0.dev26+g789a448f documentation + shaders — FURY 0.11.0.dev27+g14851c6a documentation @@ -44,7 +44,7 @@ - + diff --git a/dev/reference/fury.stream.html b/dev/reference/fury.stream.html index c49aedf2a..f9a82df0b 100644 --- a/dev/reference/fury.stream.html +++ b/dev/reference/fury.stream.html @@ -8,7 +8,7 @@ - stream — FURY 0.11.0.dev26+g789a448f documentation + stream — FURY 0.11.0.dev27+g14851c6a documentation @@ -44,7 +44,7 @@ - + diff --git a/dev/reference/fury.transform.html b/dev/reference/fury.transform.html index 249398b74..b497faaa0 100644 --- a/dev/reference/fury.transform.html +++ b/dev/reference/fury.transform.html @@ -8,7 +8,7 @@ - transform — FURY 0.11.0.dev26+g789a448f documentation + transform — FURY 0.11.0.dev27+g14851c6a documentation @@ -44,7 +44,7 @@ - + diff --git a/dev/reference/fury.ui.html b/dev/reference/fury.ui.html index fc43c8d6e..7480282ba 100644 --- a/dev/reference/fury.ui.html +++ b/dev/reference/fury.ui.html @@ -8,7 +8,7 @@ - ui — FURY 0.11.0.dev26+g789a448f documentation + ui — FURY 0.11.0.dev27+g14851c6a documentation @@ -44,7 +44,7 @@ - + diff --git a/dev/reference/fury.utils.html b/dev/reference/fury.utils.html index c54cafc80..38650e51d 100644 --- a/dev/reference/fury.utils.html +++ b/dev/reference/fury.utils.html @@ -8,7 +8,7 @@ - utils — FURY 0.11.0.dev26+g789a448f documentation + utils — FURY 0.11.0.dev27+g14851c6a documentation @@ -44,7 +44,7 @@ - + diff --git a/dev/reference/fury.window.html b/dev/reference/fury.window.html index 70ea2de1f..f6c9552d8 100644 --- a/dev/reference/fury.window.html +++ b/dev/reference/fury.window.html @@ -8,7 +8,7 @@ - window — FURY 0.11.0.dev26+g789a448f documentation + window — FURY 0.11.0.dev27+g14851c6a documentation @@ -44,7 +44,7 @@ - + diff --git a/dev/reference/index.html b/dev/reference/index.html index 7c00f15b7..7e3ad8ab5 100644 --- a/dev/reference/index.html +++ b/dev/reference/index.html @@ -8,7 +8,7 @@ - API Reference — FURY 0.11.0.dev26+g789a448f documentation + API Reference — FURY 0.11.0.dev27+g14851c6a documentation @@ -44,7 +44,7 @@ - + diff --git a/dev/release-history.html b/dev/release-history.html index 48e7e7f9e..42f7df57c 100644 --- a/dev/release-history.html +++ b/dev/release-history.html @@ -8,7 +8,7 @@ - Release History — FURY 0.11.0.dev26+g789a448f documentation + Release History — FURY 0.11.0.dev27+g14851c6a documentation @@ -44,7 +44,7 @@ - + diff --git a/dev/release_notes/releasev0.1.0.html b/dev/release_notes/releasev0.1.0.html index f9ecd968e..58486b117 100644 --- a/dev/release_notes/releasev0.1.0.html +++ b/dev/release_notes/releasev0.1.0.html @@ -8,7 +8,7 @@ - Release notes v0.1.0 (2018-09-21) — FURY 0.11.0.dev26+g789a448f documentation + Release notes v0.1.0 (2018-09-21) — FURY 0.11.0.dev27+g14851c6a documentation @@ -44,7 +44,7 @@ - + diff --git a/dev/release_notes/releasev0.1.1.html b/dev/release_notes/releasev0.1.1.html index 20f4f6306..d2dccb524 100644 --- a/dev/release_notes/releasev0.1.1.html +++ b/dev/release_notes/releasev0.1.1.html @@ -8,7 +8,7 @@ - Release notes v0.1.1 (2018-10-29) — FURY 0.11.0.dev26+g789a448f documentation + Release notes v0.1.1 (2018-10-29) — FURY 0.11.0.dev27+g14851c6a documentation @@ -44,7 +44,7 @@ - + diff --git a/dev/release_notes/releasev0.1.3.html b/dev/release_notes/releasev0.1.3.html index b592f5cb7..91eb7d954 100644 --- a/dev/release_notes/releasev0.1.3.html +++ b/dev/release_notes/releasev0.1.3.html @@ -8,7 +8,7 @@ - Release notes v0.1.2 and v0.1.3 (2018-10-31) — FURY 0.11.0.dev26+g789a448f documentation + Release notes v0.1.2 and v0.1.3 (2018-10-31) — FURY 0.11.0.dev27+g14851c6a documentation @@ -44,7 +44,7 @@ - + diff --git a/dev/release_notes/releasev0.1.4.html b/dev/release_notes/releasev0.1.4.html index ca33b5e65..73744965a 100644 --- a/dev/release_notes/releasev0.1.4.html +++ b/dev/release_notes/releasev0.1.4.html @@ -8,7 +8,7 @@ - Release notes v0.1.4 (2018-11-26) — FURY 0.11.0.dev26+g789a448f documentation + Release notes v0.1.4 (2018-11-26) — FURY 0.11.0.dev27+g14851c6a documentation @@ -44,7 +44,7 @@ - + diff --git a/dev/release_notes/releasev0.10.0.html b/dev/release_notes/releasev0.10.0.html index e0cc9df50..04c2e1dcc 100644 --- a/dev/release_notes/releasev0.10.0.html +++ b/dev/release_notes/releasev0.10.0.html @@ -8,7 +8,7 @@ - Release notes v0.10.0 (2024/02/28) — FURY 0.11.0.dev26+g789a448f documentation + Release notes v0.10.0 (2024/02/28) — FURY 0.11.0.dev27+g14851c6a documentation @@ -44,7 +44,7 @@ - + diff --git a/dev/release_notes/releasev0.2.0.html b/dev/release_notes/releasev0.2.0.html index c717db9c7..4c62b9a7e 100644 --- a/dev/release_notes/releasev0.2.0.html +++ b/dev/release_notes/releasev0.2.0.html @@ -8,7 +8,7 @@ - Release notes v0.2.0 (2019-03-08) — FURY 0.11.0.dev26+g789a448f documentation + Release notes v0.2.0 (2019-03-08) — FURY 0.11.0.dev27+g14851c6a documentation @@ -44,7 +44,7 @@ - + diff --git a/dev/release_notes/releasev0.3.0.html b/dev/release_notes/releasev0.3.0.html index 01b32d30b..0f914c08c 100644 --- a/dev/release_notes/releasev0.3.0.html +++ b/dev/release_notes/releasev0.3.0.html @@ -8,7 +8,7 @@ - Release notes v0.3.0 (2019-08-02) — FURY 0.11.0.dev26+g789a448f documentation + Release notes v0.3.0 (2019-08-02) — FURY 0.11.0.dev27+g14851c6a documentation @@ -44,7 +44,7 @@ - + diff --git a/dev/release_notes/releasev0.4.0.html b/dev/release_notes/releasev0.4.0.html index 4dde1fa48..8e8bb3667 100644 --- a/dev/release_notes/releasev0.4.0.html +++ b/dev/release_notes/releasev0.4.0.html @@ -8,7 +8,7 @@ - Release notes v0.4.0 (2019-10-29) — FURY 0.11.0.dev26+g789a448f documentation + Release notes v0.4.0 (2019-10-29) — FURY 0.11.0.dev27+g14851c6a documentation @@ -44,7 +44,7 @@ - + diff --git a/dev/release_notes/releasev0.5.1.html b/dev/release_notes/releasev0.5.1.html index 6c79de016..4d067912f 100644 --- a/dev/release_notes/releasev0.5.1.html +++ b/dev/release_notes/releasev0.5.1.html @@ -8,7 +8,7 @@ - Release notes v0.5.1 (2020-04-01) — FURY 0.11.0.dev26+g789a448f documentation + Release notes v0.5.1 (2020-04-01) — FURY 0.11.0.dev27+g14851c6a documentation @@ -44,7 +44,7 @@ - + diff --git a/dev/release_notes/releasev0.6.0.html b/dev/release_notes/releasev0.6.0.html index e15b54ee3..20618f1eb 100644 --- a/dev/release_notes/releasev0.6.0.html +++ b/dev/release_notes/releasev0.6.0.html @@ -8,7 +8,7 @@ - Release notes v0.6.0 (2020-07-20) — FURY 0.11.0.dev26+g789a448f documentation + Release notes v0.6.0 (2020-07-20) — FURY 0.11.0.dev27+g14851c6a documentation @@ -44,7 +44,7 @@ - + diff --git a/dev/release_notes/releasev0.6.1.html b/dev/release_notes/releasev0.6.1.html index e33b1c88a..1d9872669 100644 --- a/dev/release_notes/releasev0.6.1.html +++ b/dev/release_notes/releasev0.6.1.html @@ -8,7 +8,7 @@ - Release notes v0.6.1 (2020-08-20) — FURY 0.11.0.dev26+g789a448f documentation + Release notes v0.6.1 (2020-08-20) — FURY 0.11.0.dev27+g14851c6a documentation @@ -44,7 +44,7 @@ - + diff --git a/dev/release_notes/releasev0.7.0.html b/dev/release_notes/releasev0.7.0.html index 3fc38985e..39e8dae80 100644 --- a/dev/release_notes/releasev0.7.0.html +++ b/dev/release_notes/releasev0.7.0.html @@ -8,7 +8,7 @@ - Release notes v0.7.0 (2021/03/13) — FURY 0.11.0.dev26+g789a448f documentation + Release notes v0.7.0 (2021/03/13) — FURY 0.11.0.dev27+g14851c6a documentation @@ -44,7 +44,7 @@ - + diff --git a/dev/release_notes/releasev0.7.1.html b/dev/release_notes/releasev0.7.1.html index a66069595..e4b1a9371 100644 --- a/dev/release_notes/releasev0.7.1.html +++ b/dev/release_notes/releasev0.7.1.html @@ -8,7 +8,7 @@ - Release notes v0.7.1 (2021/08/03) — FURY 0.11.0.dev26+g789a448f documentation + Release notes v0.7.1 (2021/08/03) — FURY 0.11.0.dev27+g14851c6a documentation @@ -44,7 +44,7 @@ - + diff --git a/dev/release_notes/releasev0.8.0.html b/dev/release_notes/releasev0.8.0.html index 25ceddc87..2597c1c6a 100644 --- a/dev/release_notes/releasev0.8.0.html +++ b/dev/release_notes/releasev0.8.0.html @@ -8,7 +8,7 @@ - Release notes v0.8.0 (2022/01/31) — FURY 0.11.0.dev26+g789a448f documentation + Release notes v0.8.0 (2022/01/31) — FURY 0.11.0.dev27+g14851c6a documentation @@ -44,7 +44,7 @@ - + diff --git a/dev/release_notes/releasev0.9.0.html b/dev/release_notes/releasev0.9.0.html index 74075ee86..9a69146aa 100644 --- a/dev/release_notes/releasev0.9.0.html +++ b/dev/release_notes/releasev0.9.0.html @@ -8,7 +8,7 @@ - Release notes v0.9.0 (2023/04/15) — FURY 0.11.0.dev26+g789a448f documentation + Release notes v0.9.0 (2023/04/15) — FURY 0.11.0.dev27+g14851c6a documentation @@ -44,7 +44,7 @@ - + diff --git a/dev/search.html b/dev/search.html index f20d51fac..36249b0b5 100644 --- a/dev/search.html +++ b/dev/search.html @@ -6,7 +6,7 @@ - Search - FURY 0.11.0.dev26+g789a448f documentation + Search - FURY 0.11.0.dev27+g14851c6a documentation @@ -42,7 +42,7 @@ - + diff --git a/dev/searchindex.js b/dev/searchindex.js index cef576093..234617303 100644 --- a/dev/searchindex.js +++ b/dev/searchindex.js @@ -1 +1 @@ -Search.setIndex({"alltitles": {"A Little About Myself": [[178, "a-little-about-myself"]], "A Stadia-like system for data visualization": [[142, "a-stadia-like-system-for-data-visualization"]], "A more complex scene scene": [[59, "a-more-complex-scene-scene"]], "A python-core issue": [[145, "a-python-core-issue"]], "API Reference": [[296, "api-reference"]], "About": [[97, "about"]], "About Myself": [[179, "about-myself"]], "Abstract": [[173, "abstract"], [267, "abstract"], [269, "abstract"]], "Abstract class and SOLID": [[148, "abstract-class-and-solid"]], "Actor": [[284, "actor"]], "Actor2D": [[284, "actor2d"]], "Add depth cues to streamline rendering": [[27, "add-depth-cues-to-streamline-rendering"]], "Adding objects to the scene": [[93, "adding-objects-to-the-scene"]], "Advanced interactive visualization": [[24, "advanced-interactive-visualization"]], "AlgorithmOutput": [[284, "algorithmoutput"]], "Animated 2D functions": [[25, "animated-2d-functions"]], "Animating the camera": [[60, "animating-the-camera"]], "Animation": [[57, "animation"], [89, "animation"], [275, "id1"]], "Animations in FURY": [[64, "animations-in-fury"]], "Application of Force/Torque": [[93, "application-of-force-torque"]], "Architecture": [[97, "architecture"]], "ArgsDeprecationWarning": [[280, "argsdeprecationwarning"]], "Arm Robot Animation": [[65, "arm-robot-animation"]], "ArrayCircularQueue": [[291, "arraycircularqueue"]], "ArrowSource": [[284, "arrowsource"]], "Assembly": [[284, "assembly"]], "BMPReader": [[284, "bmpreader"]], "BMPWriter": [[284, "bmpwriter"]], "Ball Collision Simulation": [[79, "ball-collision-simulation"], [93, "ball-collision-simulation"]], "Ball Collision Simulation:": [[116, "ball-collision-simulation"]], "Bezier Interpolator": [[59, "bezier-interpolator"]], "Blog": [[91, "blog"]], "Brain Fiber ODF Visualisation": [[30, "brain-fiber-odf-visualisation"]], "Brick Wall Simulation": [[80, "brick-wall-simulation"], [93, "brick-wall-simulation"]], "Brick Wall Simulation(Single Actor)": [[93, "brick-wall-simulation-single-actor"]], "Brick Wall Simulation:": [[116, "brick-wall-simulation"]], "Brownian motion": [[26, "brownian-motion"]], "Bug reports and support": [[97, "bug-reports-and-support"]], "Building the documentation": [[96, "building-the-documentation"]], "ButterflySubdivisionFilter": [[284, "butterflysubdivisionfilter"]], "Button2D": [[293, "button2d"]], "Buttons & Text": [[43, "buttons-text"]], "Callbacks": [[47, "callbacks"]], "Camera": [[284, "camera"]], "CameraAnimation": [[275, "cameraanimation"]], "Card": [[44, "card"], [45, "card"]], "Card2D": [[293, "card2d"]], "CellArray": [[284, "cellarray"]], "CellPicker": [[284, "cellpicker"]], "Chain Simulation": [[81, "chain-simulation"], [93, "chain-simulation"]], "Chain Simulation, Scrollbar Refactor, Tutorial Update.": [[129, "chain-simulation-scrollbar-refactor-tutorial-update"]], "Changing Object Dynamics": [[93, "changing-object-dynamics"]], "CheckBoxes For Cylinder and Sphere for Tab Index 1": [[53, "checkboxes-for-cylinder-and-sphere-for-tab-index-1"]], "Checkbox": [[293, "checkbox"]], "Checklist before Releasing": [[314, "checklist-before-releasing"]], "CleanPolyData": [[284, "cleanpolydata"]], "Code Refactoring": [[148, "code-refactoring"]], "Collisions of particles in a box": [[21, "collisions-of-particles-in-a-box"]], "Color Combobox for Fury for Tab Index 2": [[53, "color-combobox-for-fury-for-tab-index-2"]], "Combine depth cues with fake tubes": [[27, "combine-depth-cues-with-fake-tubes"]], "ComboBox": [[47, "combobox"], [47, "id1"]], "ComboBox2D": [[293, "combobox2d"]], "ComboBox2D Progress!!": [[112, "combobox2d-progress"]], "ComboBox2D, TextBlock2D, Clipping Overflow.": [[121, "combobox2d-textblock2d-clipping-overflow"]], "Command": [[284, "command"]], "Community": [[92, "community"]], "Computation times": [[1, "computation-times"], [23, "computation-times"], [42, "computation-times"], [58, "computation-times"], [70, "computation-times"], [78, "computation-times"], [85, "computation-times"], [90, "computation-times"], [313, "computation-times"]], "ConeSource": [[284, "conesource"]], "Connection Mode": [[93, "connection-mode"]], "Container": [[273, "container"]], "ContourFilter": [[284, "contourfilter"]], "Contribute to FURY via Google Summer of Code 2022": [[177, "contribute-to-fury-via-google-summer-of-code-2022"]], "Contribute to FURY via Google Summer of Code 2023": [[228, "contribute-to-fury-via-google-summer-of-code-2023"]], "Contributing": [[314, "contributing"]], "Contributors": [[92, "contributors"]], "Create a mosaic": [[14, "create-a-mosaic"]], "Creating Objects": [[93, "creating-objects"]], "Creating a Timeline": [[67, "creating-a-timeline"]], "Creating and animating 50 Spheres": [[60, "creating-and-animating-50-spheres"]], "Creating the main Timeline and adding static actors to it": [[60, "creating-the-main-timeline-and-adding-static-actors-to-it"]], "Creating \u201cFURY\u201d text": [[60, "creating-fury-text"]], "Creation of Show Manager": [[93, "creation-of-show-manager"]], "Creation of Timer Callback": [[93, "creation-of-timer-callback"]], "Credits": [[97, "credits"]], "Cube & Slider Control": [[56, "cube-slider-control"]], "Cube and sliders": [[54, "cube-and-sliders"], [56, "cube-and-sliders"]], "Cubic Bezier curve parameters": [[59, "cubic-bezier-curve-parameters"]], "Cubic spline keyframes data same as the one you get from glTF file.": [[62, "cubic-spline-keyframes-data-same-as-the-one-you-get-from-gltf-file"]], "Cylinder using SDF": [[74, "cylinder-using-sdf"]], "Cylinder using polygons": [[74, "cylinder-using-polygons"]], "CylinderSource": [[284, "cylindersource"]], "DATA_DIR": [[278, "data-dir"]], "DTI uncertainty visualization": [[269, "dti-uncertainty-visualization"]], "DataObject": [[284, "dataobject"], [284, "id1"]], "DataSetAttributes": [[284, "datasetattributes"]], "DataSetMapper": [[284, "datasetmapper"]], "Demos": [[22, "demos"], [89, "demos"]], "Dependencies": [[96, "dependencies"]], "Details": [[302, "details"], [303, "details"], [304, "details"], [305, "details"], [306, "details"], [307, "details"], [308, "details"], [309, "details"], [310, "details"], [311, "details"], [312, "details"]], "Developing a 3D game": [[178, "developing-a-3d-game"]], "Did I get stuck anywhere?": [[139, "did-i-get-stuck-anywhere"], [140, "did-i-get-stuck-anywhere"], [143, "did-i-get-stuck-anywhere"], [145, "did-i-get-stuck-anywhere"], [146, "did-i-get-stuck-anywhere"], [149, "did-i-get-stuck-anywhere"], [152, "did-i-get-stuck-anywhere"], [155, "did-i-get-stuck-anywhere"], [157, "did-i-get-stuck-anywhere"], [158, "did-i-get-stuck-anywhere"], [160, "did-i-get-stuck-anywhere"], [161, "did-i-get-stuck-anywhere"], [163, "did-i-get-stuck-anywhere"], [164, "did-i-get-stuck-anywhere"], [167, "did-i-get-stuck-anywhere"], [169, "did-i-get-stuck-anywhere"], [174, "did-i-get-stuck-anywhere"], [175, "did-i-get-stuck-anywhere"], [232, "did-i-get-stuck-anywhere"], [235, "did-i-get-stuck-anywhere"], [238, "did-i-get-stuck-anywhere"], [241, "did-i-get-stuck-anywhere"], [242, "did-i-get-stuck-anywhere"], [244, "did-i-get-stuck-anywhere"], [247, "did-i-get-stuck-anywhere"], [250, "did-i-get-stuck-anywhere"], [253, "did-i-get-stuck-anywhere"], [256, "did-i-get-stuck-anywhere"], [259, "did-i-get-stuck-anywhere"], [262, "did-i-get-stuck-anywhere"], [265, "did-i-get-stuck-anywhere"], [270, "did-i-get-stuck-anywhere"]], "Did you get stuck anywhere?": [[109, "did-you-get-stuck-anywhere"], [110, "did-you-get-stuck-anywhere"], [111, "did-you-get-stuck-anywhere"], [112, "did-you-get-stuck-anywhere"], [113, "did-you-get-stuck-anywhere"], [114, "did-you-get-stuck-anywhere"], [115, "did-you-get-stuck-anywhere"], [116, "did-you-get-stuck-anywhere"], [117, "did-you-get-stuck-anywhere"], [118, "did-you-get-stuck-anywhere"], [119, "did-you-get-stuck-anywhere"], [120, "did-you-get-stuck-anywhere"], [121, "did-you-get-stuck-anywhere"], [123, "did-you-get-stuck-anywhere"], [124, "did-you-get-stuck-anywhere"], [125, "did-you-get-stuck-anywhere"], [126, "did-you-get-stuck-anywhere"], [127, "did-you-get-stuck-anywhere"], [128, "did-you-get-stuck-anywhere"], [129, "did-you-get-stuck-anywhere"], [130, "did-you-get-stuck-anywhere"], [131, "did-you-get-stuck-anywhere"], [133, "did-you-get-stuck-anywhere"], [136, "did-you-get-stuck-anywhere"], [144, "did-you-get-stuck-anywhere"], [147, "did-you-get-stuck-anywhere"], [150, "did-you-get-stuck-anywhere"], [151, "did-you-get-stuck-anywhere"], [153, "did-you-get-stuck-anywhere"], [156, "did-you-get-stuck-anywhere"], [159, "did-you-get-stuck-anywhere"], [162, "did-you-get-stuck-anywhere"], [165, "did-you-get-stuck-anywhere"], [168, "did-you-get-stuck-anywhere"], [170, "did-you-get-stuck-anywhere"], [181, "did-you-get-stuck-anywhere"], [182, "did-you-get-stuck-anywhere"], [183, "did-you-get-stuck-anywhere"], [184, "did-you-get-stuck-anywhere"], [185, "did-you-get-stuck-anywhere"], [186, "did-you-get-stuck-anywhere"], [187, "did-you-get-stuck-anywhere"], [188, "did-you-get-stuck-anywhere"], [189, "did-you-get-stuck-anywhere"], [190, "did-you-get-stuck-anywhere"], [191, "did-you-get-stuck-anywhere"], [192, "did-you-get-stuck-anywhere"], [193, "did-you-get-stuck-anywhere"], [194, "did-you-get-stuck-anywhere"], [195, "did-you-get-stuck-anywhere"], [196, "did-you-get-stuck-anywhere"], [197, "did-you-get-stuck-anywhere"], [198, "did-you-get-stuck-anywhere"], [199, "did-you-get-stuck-anywhere"], [200, "did-you-get-stuck-anywhere"], [201, "did-you-get-stuck-anywhere"], [202, "did-you-get-stuck-anywhere"], [203, "did-you-get-stuck-anywhere"], [204, "did-you-get-stuck-anywhere"], [205, "did-you-get-stuck-anywhere"], [206, "did-you-get-stuck-anywhere"], [207, "did-you-get-stuck-anywhere"], [208, "did-you-get-stuck-anywhere"], [209, "did-you-get-stuck-anywhere"], [210, "did-you-get-stuck-anywhere"], [211, "did-you-get-stuck-anywhere"], [212, "did-you-get-stuck-anywhere"], [213, "did-you-get-stuck-anywhere"], [214, "did-you-get-stuck-anywhere"], [215, "did-you-get-stuck-anywhere"], [216, "did-you-get-stuck-anywhere"], [217, "did-you-get-stuck-anywhere"], [218, "did-you-get-stuck-anywhere"], [219, "did-you-get-stuck-anywhere"], [220, "did-you-get-stuck-anywhere"], [221, "did-you-get-stuck-anywhere"], [222, "did-you-get-stuck-anywhere"], [223, "did-you-get-stuck-anywhere"], [224, "did-you-get-stuck-anywhere"], [233, "did-you-get-stuck-anywhere"], [236, "did-you-get-stuck-anywhere"], [239, "did-you-get-stuck-anywhere"], [245, "did-you-get-stuck-anywhere"], [248, "did-you-get-stuck-anywhere"], [251, "did-you-get-stuck-anywhere"], [254, "did-you-get-stuck-anywhere"], [257, "did-you-get-stuck-anywhere"], [260, "did-you-get-stuck-anywhere"], [263, "did-you-get-stuck-anywhere"], [266, "did-you-get-stuck-anywhere"]], "Disconnection": [[93, "disconnection"]], "Disk2D": [[293, "disk2d"]], "DiskSource": [[284, "disksource"]], "Display Tensor Ellipsoids for DTI using tensor_slicer vs ellipsoid actor": [[28, "display-tensor-ellipsoids-for-dti-using-tensor-slicer-vs-ellipsoid-actor"]], "Doing the release": [[314, "doing-the-release"]], "Domino Physics Simulation": [[82, "domino-physics-simulation"]], "Domino Simulation": [[93, "domino-simulation"]], "DoubleArray": [[284, "doublearray"]], "DrawPanel": [[48, "drawpanel"], [293, "drawpanel"]], "DrawShape": [[293, "drawshape"]], "Earth Coordinate Conversion": [[5, "earth-coordinate-conversion"]], "Eighth coding week!": [[165, "eighth-coding-week"]], "Electromagnetic Wave Propagation Animation": [[29, "electromagnetic-wave-propagation-animation"]], "Ellipsoid actor implemented with SDF": [[269, "ellipsoid-actor-implemented-with-sdf"]], "Enabling collision": [[93, "enabling-collision"]], "Examples": [[93, "examples"]], "ExpiredDeprecationError": [[280, "expireddeprecationerror"]], "Exporting Scene as a glTF": [[227, "exporting-scene-as-a-gltf"]], "Exporting scene as a glTF file": [[8, "exporting-scene-as-a-gltf-file"]], "FURY": [[163, "fury"], [174, "fury"], [175, "fury"]], "FURY - pyBullet Integration Guide": [[93, "fury-pybullet-integration-guide"]], "FURY 0.1.0 Released": [[98, "fury-0-1-0-released"]], "FURY 0.1.3 Released": [[99, "fury-0-1-3-released"]], "FURY 0.1.4 Released": [[100, "fury-0-1-4-released"]], "FURY 0.2.0 Released": [[101, "fury-0-2-0-released"]], "FURY 0.3.0 Released": [[103, "fury-0-3-0-released"]], "FURY 0.4.0 Released": [[104, "fury-0-4-0-released"]], "FURY 0.5.1 Released": [[106, "fury-0-5-1-released"]], "FURY 0.6.0 Released": [[122, "fury-0-6-0-released"]], "FURY 0.6.1 Released": [[132, "fury-0-6-1-released"]], "FURY 0.7.0 Released": [[138, "fury-0-7-0-released"], [166, "fury-0-7-0-released"]], "FURY 0.8.0 Released": [[176, "fury-0-8-0-released"]], "FURY 0.9.0 Released": [[229, "fury-0-9-0-released"]], "FURY sphere Actor": [[16, "fury-sphere-actor"]], "FURY/Helios": [[163, "fury-helios"], [174, "fury-helios"], [175, "fury-helios"]], "Features": [[97, "features"]], "Fetcher for importing glTF files from Khronos-glTF-Samples": [[227, "fetcher-for-importing-gltf-files-from-khronos-gltf-samples"]], "Fifth week of coding!": [[156, "fifth-week-of-coding"]], "Figure and Color Control using Check boxes and Radio Buttons": [[46, "figure-and-color-control-using-check-boxes-and-radio-buttons"]], "FileMenu2D": [[293, "filemenu2d"]], "Fine-tuning the OpenGL state using shader callbacks": [[31, "fine-tuning-the-opengl-state-using-shader-callbacks"]], "First week of coding!": [[144, "first-week-of-coding"]], "First week of coding!!": [[109, "first-week-of-coding"], [110, "first-week-of-coding"]], "Fix Bugs": [[314, "fix-bugs"]], "FloatArray": [[284, "floatarray"]], "Folder Structure": [[96, "folder-structure"]], "Follower": [[284, "follower"]], "Fourth week of coding!": [[153, "fourth-week-of-coding"]], "Fractals": [[32, "fractals"]], "Fury Arrow Actor": [[2, "fury-arrow-actor"]], "Fury Cone Actor": [[3, "fury-cone-actor"]], "Fury Markers": [[34, "fury-markers"]], "FuryStreamClient": [[291, "furystreamclient"]], "FuryStreamInteraction": [[291, "furystreaminteraction"]], "GSoC - 21": [[180, "gsoc-21"]], "GSoC - 22": [[180, "gsoc-22"]], "GSoC 2023: Community Bonding Period": [[231, "gsoc-2023-community-bonding-period"], [232, "gsoc-2023-community-bonding-period"]], "GSoC Weekly Blogs": [[225, "gsoc-weekly-blogs"], [267, "gsoc-weekly-blogs"], [269, "gsoc-weekly-blogs"], [271, "gsoc-weekly-blogs"]], "GSoC weekly blogs": [[227, "gsoc-weekly-blogs"]], "GenericCircularQueue": [[291, "genericcircularqueue"]], "GenericImageBufferManager": [[291, "genericimagebuffermanager"]], "GenericMultiDimensionalBuffer": [[291, "genericmultidimensionalbuffer"]], "Get Started!": [[314, "get-started"]], "Getting Started": [[94, "getting-started"]], "Glyph3D": [[284, "glyph3d"]], "Google Summer of Code": [[105, "google-summer-of-code"], [137, "google-summer-of-code"]], "Google Summer of Code 2020 Final Work Product": [[134, "google-summer-of-code-2020-final-work-product"]], "Google Summer of Code 2021 - Final Report - Bruno Messias": [[173, "google-summer-of-code-2021-final-report-bruno-messias"]], "Google Summer of Code Final Work Product": [[135, "google-summer-of-code-final-work-product"], [171, "google-summer-of-code-final-work-product"], [172, "google-summer-of-code-final-work-product"], [225, "google-summer-of-code-final-work-product"], [226, "google-summer-of-code-final-work-product"], [227, "google-summer-of-code-final-work-product"], [267, "google-summer-of-code-final-work-product"], [269, "google-summer-of-code-final-work-product"], [271, "google-summer-of-code-final-work-product"]], "GridLayout": [[283, "gridlayout"]], "GridUI": [[293, "gridui"]], "HardwareSelector": [[284, "hardwareselector"]], "HorizontalLayout": [[283, "horizontallayout"]], "How does it works?": [[142, "how-does-it-works"]], "How have I implemented the code for A and B?": [[154, "how-have-i-implemented-the-code-for-a-and-b"]], "IPC using python": [[154, "ipc-using-python"]], "IdTypeArray": [[284, "idtypearray"]], "Image": [[54, "image"]], "ImageActor": [[284, "imageactor"]], "ImageContainer2D": [[293, "imagecontainer2d"]], "ImageData": [[284, "imagedata"]], "ImageFlip": [[284, "imageflip"]], "ImageMapToColors": [[284, "imagemaptocolors"]], "ImageReader2Factory": [[284, "imagereader2factory"]], "ImageReslice": [[284, "imagereslice"]], "Implement Features": [[314, "implement-features"]], "Implementing a custom interpolator": [[62, "implementing-a-custom-interpolator"]], "Improvements in SDF primitives.": [[123, "improvements-in-sdf-primitives"]], "Initiating the simulation": [[93, "initiating-the-simulation"]], "Installation": [[96, "installation"]], "Installation via Source": [[96, "installation-via-source"]], "Installation with Conda": [[96, "installation-with-conda"]], "Installation with PyPi": [[96, "installation-with-pypi"]], "Integrate Physics using pybullet": [[77, "integrate-physics-using-pybullet"], [89, "integrate-physics-using-pybullet"]], "Interactive PBR demo": [[37, "interactive-pbr-demo"]], "InteractorEventRecorder": [[284, "interactoreventrecorder"]], "InteractorStyle": [[284, "interactorstyle"]], "InteractorStyleImage": [[284, "interactorstyleimage"]], "InteractorStyleTrackballActor": [[284, "interactorstyletrackballactor"]], "InteractorStyleTrackballCamera": [[284, "interactorstyletrackballcamera"]], "InteractorStyleUser": [[284, "interactorstyleuser"]], "Interest in Game Development and Animation": [[180, "interest-in-game-development-and-animation"]], "IntervalTimer": [[291, "intervaltimer"]], "IntervalTimerThreading": [[291, "intervaltimerthreading"]], "Intro to Open-Source and GSoC": [[179, "intro-to-open-source-and-gsoc"]], "Intro to Opensource": [[180, "intro-to-opensource"]], "Introduction": [[134, "introduction"]], "Introductory": [[0, "introductory"], [89, "introductory"]], "JPEGReader": [[284, "jpegreader"]], "JPEGWriter": [[284, "jpegwriter"]], "Join Us!": [[92, "join-us"]], "Keyframe Color Interpolators": [[61, "keyframe-color-interpolators"]], "Keyframe animation": [[68, "keyframe-animation"]], "Keyframe animation introduction": [[64, "keyframe-animation-introduction"]], "Keyframe animation: Camera and opacity": [[60, "keyframe-animation-camera-and-opacity"]], "Keyframe hierarchical Animation": [[63, "keyframe-hierarchical-animation"]], "Keyframes Spline Interpolator": [[66, "keyframes-spline-interpolator"]], "LODActor": [[284, "lodactor"]], "Last Week\u2019s Effort": [[243, "last-week-s-effort"], [246, "last-week-s-effort"], [252, "last-week-s-effort"], [255, "last-week-s-effort"], [258, "last-week-s-effort"], [261, "last-week-s-effort"], [264, "last-week-s-effort"], [268, "last-week-s-effort"]], "Layout": [[283, "id1"]], "License": [[97, "license"], [315, "license"]], "LineDoubleSlider2D": [[293, "linedoubleslider2d"]], "LineSlider2D": [[293, "lineslider2d"]], "LinearExtrusionFilter": [[284, "linearextrusionfilter"]], "ListBox": [[55, "listbox"]], "ListBox2D": [[293, "listbox2d"]], "ListBoxItem2D": [[293, "listboxitem2d"]], "Loading Static glTF models": [[227, "loading-static-gltf-models"]], "LookupTable": [[284, "lookuptable"]], "LoopSubdivisionFilter": [[284, "loopsubdivisionfilter"]], "MNIObjectReader": [[284, "mniobjectreader"]], "MNIObjectWriter": [[284, "mniobjectwriter"]], "Make a Cylinder using polygons vs SDF": [[74, "make-a-cylinder-using-polygons-vs-sdf"]], "Making a custom interpolator": [[62, "making-a-custom-interpolator"]], "Matrix3x3": [[284, "matrix3x3"]], "Matrix4x4": [[284, "matrix4x4"]], "May the Force be with you!!": [[116, "may-the-force-be-with-you"]], "Merging SDF primitives.": [[125, "merging-sdf-primitives"]], "Mission Statement": [[97, "mission-statement"]], "Modified Objectives": [[135, "modified-objectives"], [226, "modified-objectives"]], "Module: actors.odf_slicer": [[274, "module-fury.actors.odf_slicer"]], "Module: actors.peak": [[274, "module-fury.actors.peak"]], "Module: actors.tensor": [[274, "module-fury.actors.tensor"]], "Module: animation.animation": [[275, "module-fury.animation.animation"]], "Module: animation.helpers": [[275, "module-fury.animation.helpers"]], "Module: animation.interpolator": [[275, "module-fury.animation.interpolator"]], "Module: animation.timeline": [[275, "module-fury.animation.timeline"]], "Module: data.fetcher": [[278, "module-fury.data.fetcher"]], "Module: shaders.base": [[290, "module-fury.shaders.base"]], "Module: stream.client": [[291, "module-fury.stream.client"]], "Module: stream.constants": [[291, "module-fury.stream.constants"]], "Module: stream.server": [[291, "module-fury.stream.server"]], "Module: stream.server.async_app": [[291, "module-fury.stream.server.async_app"]], "Module: stream.server.main": [[291, "module-fury.stream.server.main"]], "Module: stream.tools": [[291, "module-fury.stream.tools"]], "Module: stream.widget": [[291, "module-fury.stream.widget"]], "Module: ui.containers": [[293, "module-fury.ui.containers"]], "Module: ui.core": [[293, "module-fury.ui.core"]], "Module: ui.elements": [[293, "module-fury.ui.elements"]], "Module: ui.helpers": [[293, "module-fury.ui.helpers"]], "Molecule": [[284, "molecule"], [286, "molecule"]], "More Shaders!!": [[126, "more-shaders"], [128, "more-shaders"]], "Morphing Animation in a glTF": [[9, "morphing-animation-in-a-gltf"]], "Morphing in glTF": [[227, "morphing-in-gltf"]], "Most relevant bugs": [[148, "most-relevant-bugs"]], "Motion of a charged particle in a combined magnetic and electric field": [[33, "motion-of-a-charged-particle-in-a-combined-magnetic-and-electric-field"]], "Multiple SDF primitives.": [[120, "multiple-sdf-primitives"]], "Multiprocessing inside of different Operating Systems": [[142, "multiprocessing-inside-of-different-operating-systems"]], "Multithreading Example": [[10, "multithreading-example"]], "My Current Problems": [[234, "my-current-problems"]], "My Journey to GSoC 2022": [[179, "my-journey-to-gsoc-2022"]], "My first coding experience": [[178, "my-first-coding-experience"]], "My journey till getting accepted into GSoC22": [[178, "my-journey-till-getting-accepted-into-gsoc22"]], "My journey to GSoC22": [[178, "my-journey-to-gsoc22"]], "Necessary Imports": [[93, "necessary-imports"]], "Network Layout (Helios-FURY)": [[148, "network-layout-helios-fury"]], "Network layout algorithms using IPC": [[154, "network-layout-algorithms-using-ipc"]], "Next steps": [[154, "next-steps"]], "Ninth coding week!": [[168, "ninth-coding-week"]], "Notes": [[86, "notes"], [88, "notes"]], "OBJReader": [[284, "objreader"]], "ODF actor implemented with SDF": [[269, "odf-actor-implemented-with-sdf"]], "Objectives Completed": [[134, "objectives-completed"], [135, "objectives-completed"], [171, "objectives-completed"], [172, "objectives-completed"], [173, "objectives-completed"], [225, "objectives-completed"], [226, "objectives-completed"], [227, "objectives-completed"], [267, "objectives-completed"], [269, "objectives-completed"], [271, "objectives-completed"]], "Objectives in Progress": [[135, "objectives-in-progress"], [171, "objectives-in-progress"], [172, "objectives-in-progress"], [225, "objectives-in-progress"], [226, "objectives-in-progress"], [227, "objectives-in-progress"], [267, "objectives-in-progress"], [269, "objectives-in-progress"], [271, "objectives-in-progress"]], "OdfSlicerActor": [[274, "odfsliceractor"]], "Open Dialog:": [[133, "open-dialog"]], "OpenGLMoleculeMapper": [[284, "openglmoleculemapper"]], "OpenGLRenderer": [[284, "openglrenderer"]], "Option": [[293, "option"]], "Orientation, Sizing, Tab UI.": [[119, "orientation-sizing-tab-ui"]], "Other Objectives": [[134, "other-objectives"], [135, "other-objectives"], [171, "other-objectives"], [172, "other-objectives"], [225, "other-objectives"], [226, "other-objectives"], [227, "other-objectives"], [267, "other-objectives"], [271, "other-objectives"]], "Other Pull Requests": [[227, "other-pull-requests"]], "Other stuff that needs doing for the release": [[314, "other-stuff-that-needs-doing-for-the-release"]], "Outline Picker": [[131, "outline-picker"]], "OutlineFilter": [[284, "outlinefilter"]], "Overview": [[97, "overview"]], "PBR and emission materials in glTF": [[227, "pbr-and-emission-materials-in-gltf"]], "PLYReader": [[284, "plyreader"]], "PLYWriter": [[284, "plywriter"]], "PNGReader": [[284, "pngreader"]], "PNGWriter": [[284, "pngwriter"]], "PTable": [[286, "ptable"]], "Panel with buttons and text": [[54, "panel-with-buttons-and-text"]], "Panel2D": [[293, "panel2d"]], "Part of the Journey is the end unless its Open Source!": [[133, "part-of-the-journey-is-the-end-unless-its-open-source"]], "PeakActor": [[274, "peakactor"]], "PeriodicTable": [[284, "periodictable"]], "Physically-Based Rendering (PBR) on spheres": [[72, "physically-based-rendering-pbr-on-spheres"]], "PickingManager": [[287, "pickingmanager"]], "Play a video in the 3D world": [[38, "play-a-video-in-the-3d-world"]], "PlaybackPanel": [[293, "playbackpanel"]], "PointPicker": [[284, "pointpicker"]], "Points": [[284, "points"]], "PolyData": [[284, "polydata"]], "PolyDataMapper": [[284, "polydatamapper"]], "PolyDataMapper2D": [[284, "polydatamapper2d"]], "PolyDataNormals": [[284, "polydatanormals"]], "PolyDataReader": [[284, "polydatareader"]], "PolyDataWriter": [[284, "polydatawriter"]], "PolyVertex": [[284, "polyvertex"]], "Polygon": [[284, "polygon"]], "Populating our Documentation": [[96, "populating-our-documentation"]], "Position interpolation using cubic Bezier curve": [[59, "position-interpolation-using-cubic-bezier-curve"]], "Pre-GSoC Journey": [[180, "pre-gsoc-journey"]], "Principled BRDF shader on spheres": [[73, "principled-brdf-shader-on-spheres"]], "PropPicker": [[284, "proppicker"]], "Property2D": [[284, "property2d"]], "Proposed Objectives": [[134, "proposed-objectives"], [135, "proposed-objectives"], [171, "proposed-objectives"], [172, "proposed-objectives"], [173, "proposed-objectives"], [225, "proposed-objectives"], [226, "proposed-objectives"], [227, "proposed-objectives"], [267, "proposed-objectives"], [269, "proposed-objectives"], [271, "proposed-objectives"]], "ProteinRibbonFilter": [[284, "proteinribbonfilter"]], "Publishing Releases": [[314, "publishing-releases"]], "Pull Request Guidelines": [[314, "pull-request-guidelines"]], "Quick Overview": [[298, "quick-overview"], [299, "quick-overview"], [300, "quick-overview"], [301, "quick-overview"], [302, "quick-overview"], [303, "quick-overview"], [304, "quick-overview"], [305, "quick-overview"], [306, "quick-overview"], [307, "quick-overview"], [308, "quick-overview"], [309, "quick-overview"], [310, "quick-overview"], [311, "quick-overview"], [312, "quick-overview"]], "RTCServer": [[291, "rtcserver"]], "RadioButton": [[293, "radiobutton"]], "Range Slider": [[54, "range-slider"]], "RangeSlider": [[293, "rangeslider"]], "RawArrayImageBufferManager": [[291, "rawarrayimagebuffermanager"]], "RawArrayMultiDimensionalBuffer": [[291, "rawarraymultidimensionalbuffer"]], "Raymarching continued": [[113, "raymarching-continued"]], "Raymarching!!": [[111, "raymarching"]], "Rectangle2D": [[293, "rectangle2d"]], "References": [[71, "references"], [74, "references"], [173, "references"], [269, "references"]], "Refs:": [[148, "refs"]], "RegularPolygonSource": [[284, "regularpolygonsource"]], "Release History": [[297, "release-history"]], "Release notes v0.1.0 (2018-09-21)": [[298, "release-notes-v0-1-0-2018-09-21"]], "Release notes v0.1.1 (2018-10-29)": [[299, "release-notes-v0-1-1-2018-10-29"]], "Release notes v0.1.2 and v0.1.3 (2018-10-31)": [[300, "release-notes-v0-1-2-and-v0-1-3-2018-10-31"]], "Release notes v0.1.4 (2018-11-26)": [[301, "release-notes-v0-1-4-2018-11-26"]], "Release notes v0.10.0 (2024/02/28)": [[302, "release-notes-v0-10-0-2024-02-28"]], "Release notes v0.2.0 (2019-03-08)": [[303, "release-notes-v0-2-0-2019-03-08"]], "Release notes v0.3.0 (2019-08-02)": [[304, "release-notes-v0-3-0-2019-08-02"]], "Release notes v0.4.0 (2019-10-29)": [[305, "release-notes-v0-4-0-2019-10-29"]], "Release notes v0.5.1 (2020-04-01)": [[306, "release-notes-v0-5-1-2020-04-01"]], "Release notes v0.6.0 (2020-07-20)": [[307, "release-notes-v0-6-0-2020-07-20"]], "Release notes v0.6.1 (2020-08-20)": [[308, "release-notes-v0-6-1-2020-08-20"]], "Release notes v0.7.0 (2021/03/13)": [[309, "release-notes-v0-7-0-2021-03-13"]], "Release notes v0.7.1 (2021/08/03)": [[310, "release-notes-v0-7-1-2021-08-03"]], "Release notes v0.8.0 (2022/01/31)": [[311, "release-notes-v0-8-0-2022-01-31"]], "Release notes v0.9.0 (2023/04/15)": [[312, "release-notes-v0-9-0-2023-04-15"]], "Render Pybullet Objects": [[93, "render-pybullet-objects"]], "Render slices from FA with your colormap": [[14, "render-slices-from-fa-with-your-colormap"]], "Render slices from T1 with a specific value range": [[14, "render-slices-from-t1-with-a-specific-value-range"]], "Render streamlines as fake tubes": [[27, "render-streamlines-as-fake-tubes"]], "Render streamlines as tubes": [[27, "render-streamlines-as-tubes"]], "RenderLargeImage": [[284, "renderlargeimage"]], "RenderWindow": [[284, "renderwindow"]], "RenderWindowInteractor": [[284, "renderwindowinteractor"]], "Renderer": [[284, "renderer"]], "Rendering Joints": [[93, "rendering-joints"]], "Rendering multiple objects by a single actor": [[93, "rendering-multiple-objects-by-a-single-actor"]], "Rendering objects in FURY": [[93, "rendering-objects-in-fury"]], "Report Bugs": [[314, "report-bugs"]], "Reposition:": [[118, "reposition"]], "Results": [[154, "results"]], "RingSlider2D": [[293, "ringslider2d"]], "Rotation:": [[118, "rotation"]], "Running the Tests": [[96, "running-the-tests"]], "Running the Tests Offscreen": [[96, "running-the-tests-offscreen"]], "SDF Impostors on Billboards": [[71, "sdf-impostors-on-billboards"]], "SDF sphere rendering": [[71, "sdf-sphere-rendering"]], "SHADERS_DIR": [[290, "shaders-dir"]], "SKIP_RE": [[279, "skip-re"]], "SOLID, monkey patching a python issue and network visualization through WebRTC": [[148, "solid-monkey-patching-a-python-issue-and-network-visualization-through-webrtc"]], "STLReader": [[284, "stlreader"]], "STLWriter": [[284, "stlwriter"]], "Save Dialog:": [[133, "save-dialog"]], "ScalarBarActor": [[284, "scalarbaractor"]], "Scene": [[295, "scene"]], "Second week of coding!": [[147, "second-week-of-coding"]], "Select menu": [[54, "select-menu"]], "Selecting multiple objects": [[12, "selecting-multiple-objects"]], "SelectionManager": [[287, "selectionmanager"]], "Setting Cubic Bezier keyframes": [[59, "setting-cubic-bezier-keyframes"]], "Setting Gravity": [[93, "setting-gravity"]], "Setting Keyframes": [[67, "setting-keyframes"]], "Setting color keyframes": [[61, "setting-color-keyframes"]], "Setting position keyframes": [[62, "setting-position-keyframes"]], "Seventh week of coding!": [[162, "seventh-week-of-coding"]], "Shader": [[284, "shader"]], "Shader Showcase": [[136, "shader-showcase"]], "Shaders": [[69, "shaders"], [89, "shaders"]], "Shapes": [[54, "shapes"]], "SharedMemCircularQueue": [[291, "sharedmemcircularqueue"]], "SharedMemImageBufferManager": [[291, "sharedmemimagebuffermanager"]], "SharedMemMultiDimensionalBuffer": [[291, "sharedmemmultidimensionalbuffer"]], "Sharing data between process": [[142, "sharing-data-between-process"]], "Show Manager": [[46, "show-manager"], [47, "show-manager"], [48, "show-manager"], [50, "show-manager"], [54, "show-manager"], [56, "show-manager"]], "Show every bundle with a specific color": [[27, "show-every-bundle-with-a-specific-color"]], "Show every point of every streamline with a different color": [[27, "show-every-point-of-every-streamline-with-a-different-color"]], "Show every point with a value from a volume with default colormap": [[27, "show-every-point-with-a-value-from-a-volume-with-default-colormap"]], "Show every point with a value from a volume with your colormap": [[27, "show-every-point-with-a-value-from-a-volume-with-your-colormap"]], "Show every streamline of a bundle with a different color": [[27, "show-every-streamline-of-a-bundle-with-a-different-color"]], "Show every streamline with an orientation color": [[27, "show-every-streamline-with-an-orientation-color"]], "ShowManager": [[295, "showmanager"]], "Simple Actor Animations": [[227, "simple-actor-animations"]], "Simple Rigid Body Dynamics": [[93, "simple-rigid-body-dynamics"]], "Simple Shapes": [[51, "simple-shapes"]], "Simple picking": [[11, "simple-picking"]], "Simple volume slicing": [[14, "simple-volume-slicing"]], "SimpleBondPerceiver": [[284, "simplebondperceiver"]], "Single Actor, Physics, Scrollbars.": [[127, "single-actor-physics-scrollbars"]], "Sixth week of coding!": [[159, "sixth-week-of-coding"]], "Skeletal Animation in a glTF file": [[13, "skeletal-animation-in-a-gltf-file"]], "Skeletal Animations (Skining)": [[227, "skeletal-animations-skining"]], "Skinning for models with no indices": [[227, "skinning-for-models-with-no-indices"]], "Skybox": [[284, "skybox"]], "Slider Controls for a Cube for Tab Index 0": [[53, "slider-controls-for-a-cube-for-tab-index-0"]], "So how did it go?": [[255, "so-how-did-it-go"], [258, "so-how-did-it-go"], [261, "so-how-did-it-go"], [264, "so-how-did-it-go"], [268, "so-how-did-it-go"]], "So it begins\u2026": [[230, "so-it-begins"]], "Solar System Animation": [[15, "solar-system-animation"]], "Sphere Color Control using Radio Buttons": [[50, "sphere-color-control-using-radio-buttons"]], "Sphere Texture": [[19, "sphere-texture"]], "Sphere and Radio Buttons": [[50, "sphere-and-radio-buttons"]], "SphereSource": [[284, "spheresource"]], "Spherical harmonics": [[115, "spherical-harmonics"]], "Spherical harmonics, Continued.": [[117, "spherical-harmonics-continued"]], "Spiky Sphere": [[17, "spiky-sphere"]], "SpinBox": [[293, "spinbox"]], "SpinBox UI": [[52, "spinbox-ui"]], "SplineFilter": [[284, "splinefilter"]], "Statement of Need": [[97, "statement-of-need"]], "Streaming": [[84, "streaming"], [89, "streaming"]], "Streaming FURY with WebRTC/MJPEG": [[87, "streaming-fury-with-webrtc-mjpeg"]], "Streaming FURY with WebRTC/MJPEG using the Widget Object": [[88, "streaming-fury-with-webrtc-mjpeg-using-the-widget-object"]], "Streaming FURY with user interaction": [[86, "streaming-fury-with-user-interaction"]], "Streaming System": [[148, "streaming-system"]], "StringArray": [[284, "stringarray"]], "Submit Feedback": [[314, "submit-feedback"]], "Success on Brain Art Competition using FURY": [[102, "success-on-brain-art-competition-using-fury"]], "Summary of most important pull-requests:": [[154, "summary-of-most-important-pull-requests"]], "Syncing Bricks": [[80, "syncing-bricks"]], "Syncing Dominoes": [[82, "syncing-dominoes"]], "Syncing objects": [[93, "syncing-objects"]], "Syncing properties of actors": [[93, "syncing-properties-of-actors"]], "TIFFReader": [[284, "tiffreader"]], "TIFFWriter": [[284, "tiffwriter"]], "Tab UI": [[53, "tab-ui"]], "Tab UI, TabPanel2D, Tab UI Tutorial.": [[124, "tab-ui-tabpanel2d-tab-ui-tutorial"]], "TabPanel2D": [[293, "tabpanel2d"]], "TabUI": [[293, "tabui"]], "Tenth coding week!": [[170, "tenth-coding-week"]], "Tesseract (Hypercube)": [[40, "tesseract-hypercube"]], "Test the Installation": [[96, "test-the-installation"]], "Testing": [[148, "testing"]], "TextActor": [[284, "textactor"]], "TextActor3D": [[284, "textactor3d"]], "TextBlock2D": [[293, "textblock2d"]], "TextBlock2D Progress!!": [[114, "textblock2d-progress"]], "TextBox2D": [[293, "textbox2d"]], "Texture": [[284, "texture"]], "Texture Sphere Animation": [[4, "texture-sphere-animation"]], "TextureMapToPlane": [[284, "texturemaptoplane"]], "TexturedActor2D": [[284, "texturedactor2d"]], "TexturedSphereSource": [[284, "texturedspheresource"]], "The Beginning of Everything - Week 0": [[230, "the-beginning-of-everything-week-0"]], "The Beginning of Programming": [[180, "the-beginning-of-programming"]], "The Community Bonding Period": [[230, "the-community-bonding-period"]], "The Day": [[179, "the-day"]], "The FBO Saga - Week 1": [[234, "the-fbo-saga-week-1"]], "The Next Steps": [[268, "the-next-steps"]], "The Plan": [[60, "the-plan"]], "The Project\u2019s Goal": [[230, "the-project-s-goal"]], "The day I got accepted": [[178, "the-day-i-got-accepted"]], "The problem: network layout algorithm implementations with a blocking behavior": [[154, "the-problem-network-layout-algorithm-implementations-with-a-blocking-behavior"]], "Third week of coding!": [[150, "third-week-of-coding"]], "This Last Week\u2019s Effort": [[237, "this-last-week-s-effort"], [240, "this-last-week-s-effort"]], "This Past Week": [[234, "this-past-week"]], "This Week\u2019s Goal": [[230, "this-week-s-goal"]], "This Week\u2019s Goals": [[237, "this-week-s-goals"], [240, "this-week-s-goals"], [243, "this-week-s-goals"], [246, "this-week-s-goals"], [249, "this-week-s-goals"], [252, "this-week-s-goals"], [255, "this-week-s-goals"], [258, "this-week-s-goals"], [261, "this-week-s-goals"], [264, "this-week-s-goals"]], "Timeline": [[134, "timeline"], [135, "timeline"], [171, "timeline"], [172, "timeline"], [173, "timeline"], [225, "timeline"], [226, "timeline"], [227, "timeline"], [267, "timeline"], [269, "timeline"], [271, "timeline"], [275, "timeline"]], "Timeline and setting keyframes": [[67, "timeline-and-setting-keyframes"]], "Traditional sphere rendering": [[71, "traditional-sphere-rendering"]], "Transform": [[284, "transform"]], "TransformPolyDataFilter": [[284, "transformpolydatafilter"]], "Translating a sphere": [[64, "translating-a-sphere"]], "Translation, Reposition, Rotation.": [[118, "translation-reposition-rotation"]], "Translation:": [[118, "translation"]], "TriangleFilter": [[284, "trianglefilter"]], "TubeFilter": [[284, "tubefilter"]], "Tutorials": [[89, "tutorials"]], "Types of Contributions": [[314, "types-of-contributions"]], "UI": [[293, "id1"]], "UnsignedCharArray": [[284, "unsignedchararray"]], "UnstructuredGrid": [[284, "unstructuredgrid"]], "Unsubmitted Functionalities": [[134, "unsubmitted-functionalities"]], "User Interface Elements": [[41, "user-interface-elements"], [89, "user-interface-elements"]], "User Interfaces": [[54, "user-interfaces"]], "Using Layouts with different UI elements": [[49, "using-layouts-with-different-ui-elements"]], "Using a timer": [[20, "using-a-timer"]], "Using ellipsoid actor": [[28, "using-ellipsoid-actor"]], "Using namedtuples to grant immutability and to avoid silent bugs": [[148, "using-namedtuples-to-grant-immutability-and-to-avoid-silent-bugs"]], "Using tensor_slicer actor": [[28, "using-tensor-slicer-actor"]], "VTK_VERSION": [[284, "vtk-version"]], "Varying Color": [[76, "varying-color"]], "VectorText": [[284, "vectortext"]], "VerticalLayout": [[283, "verticallayout"]], "Visual quality comparison": [[28, "visual-quality-comparison"]], "Visualization of ROI Surface Rendered with Streamlines": [[39, "visualization-of-roi-surface-rendered-with-streamlines"]], "Visualize Interdisciplinary map of the journals network": [[35, "visualize-interdisciplinary-map-of-the-journals-network"]], "Visualize Networks (Animated version)": [[36, "visualize-networks-animated-version"]], "Visualize SDF Actor": [[75, "visualize-sdf-actor"]], "Visualize a larger amount of data": [[28, "visualize-a-larger-amount-of-data"]], "Visualize bundles and metrics on bundles": [[27, "visualize-bundles-and-metrics-on-bundles"]], "Visualize surfaces": [[18, "visualize-surfaces"]], "Visualizing a glTF file": [[6, "visualizing-a-gltf-file"], [7, "visualizing-a-gltf-file"]], "Volume": [[284, "volume"]], "Was it Hard?": [[252, "was-it-hard"]], "Week #09: Sphinx custom summary": [[163, "week-09-sphinx-custom-summary"]], "Week #10: SDF Fonts": [[174, "week-10-sdf-fonts"]], "Week #11: Finalizing open Pull Requests": [[169, "week-11-finalizing-open-pull-requests"]], "Week #11: Removing the flickering effect": [[175, "week-11-removing-the-flickering-effect"]], "Week #1: Welcome to my weekly Blogs!": [[140, "week-1-welcome-to-my-weekly-blogs"]], "Week #2: Feature additions in UI and IO modules": [[143, "week-2-feature-additions-in-ui-and-io-modules"]], "Week #3: Adapting GridLayout to work with UI": [[146, "week-3-adapting-gridlayout-to-work-with-ui"]], "Week #4: Adding Tree UI to the UI module": [[149, "week-4-adding-tree-ui-to-the-ui-module"]], "Week #5: Rebasing all PRs w.r.t the UI restructuring, Tree2D, Bug Fixes": [[152, "week-5-rebasing-all-prs-w-r-t-the-ui-restructuring-tree2d-bug-fixes"]], "Week #6: Bug fixes, Working on Tree2D UI": [[155, "week-6-bug-fixes-working-on-tree2d-ui"]], "Week #7: Finalizing the stalling PRs, finishing up Tree2D UI.": [[158, "week-7-finalizing-the-stalling-prs-finishing-up-tree2d-ui"]], "Week #8: Code Cleanup, Finishing up open PRs, Continuing work on Tree2D": [[161, "week-8-code-cleanup-finishing-up-open-prs-continuing-work-on-tree2d"]], "Week #9: More Layouts!": [[164, "week-9-more-layouts"]], "Week 0: Community Bounding Period": [[231, "week-0-community-bounding-period"], [232, "week-0-community-bounding-period"]], "Week 1 - A Basic glTF Importer": [[184, "week-1-a-basic-gltf-importer"]], "Week 1 - Laying the Foundation of DrawPanel UI": [[182, "week-1-laying-the-foundation-of-drawpanel-ui"]], "Week 10 - Multi-node skinning support": [[212, "week-10-multi-node-skinning-support"]], "Week 10 - Understanding Codes and Playing with Animation": [[206, "week-10-understanding-codes-and-playing-with-animation"]], "Week 10 : Start of SH implementation experiments": [[262, "week-10-start-of-sh-implementation-experiments"]], "Week 10: Its time for a Spin-Box!": [[260, "week-10-its-time-for-a-spin-box"]], "Week 10: Ready for Review!": [[261, "week-10-ready-for-review"]], "Week 10: Supporting hierarchical animating": [[210, "week-10-supporting-hierarchical-animating"]], "Week 11 - Creating a base for Freehand Drawing": [[209, "week-11-creating-a-base-for-freehand-drawing"]], "Week 11 - Multiple transformations support and adding tests": [[214, "week-11-multiple-transformations-support-and-adding-tests"]], "Week 11 : Adjusting ODF implementation and looking for solutions on issues found": [[265, "week-11-adjusting-odf-implementation-and-looking-for-solutions-on-issues-found"]], "Week 11: A Refactor is Sometimes Needed": [[264, "week-11-a-refactor-is-sometimes-needed"]], "Week 11: Bye Bye SpinBox": [[263, "week-11-bye-bye-spinbox"]], "Week 11: Improving tutorials a little": [[213, "week-11-improving-tutorials-a-little"]], "Week 12 - Adding skeleton as actors and fix global transformation": [[217, "week-12-adding-skeleton-as-actors-and-fix-global-transformation"]], "Week 12 - Fixing translating issues and updating tests": [[211, "week-12-fixing-translating-issues-and-updating-tests"]], "Week 12 : Experimenting with ODFs implementation": [[270, "week-12-experimenting-with-odfs-implementation"]], "Week 12: Adding new tutorials": [[224, "week-12-adding-new-tutorials"]], "Week 12: FileDialog Quest Begins!": [[266, "week-12-filedialog-quest-begins"]], "Week 12: Now That is (almost) a Wrap!": [[268, "week-12-now-that-is-almost-a-wrap"]], "Week 13 - Multi-bone skeletal animation support": [[219, "week-13-multi-bone-skeletal-animation-support"]], "Week 13 - Separating tests and fixing bugs": [[215, "week-13-separating-tests-and-fixing-bugs"]], "Week 13: Keyframes animation is now a bit easier in FURY": [[220, "week-13-keyframes-animation-is-now-a-bit-easier-in-fury"]], "Week 14 - Morphing is here!": [[223, "week-14-morphing-is-here"]], "Week 14 - Updating DrawPanel architecture": [[216, "week-14-updating-drawpanel-architecture"]], "Week 14: Keyframes animation is now a bit easier in FURY": [[222, "week-14-keyframes-animation-is-now-a-bit-easier-in-fury"]], "Week 15 - Highlighting DrawShapes": [[218, "week-15-highlighting-drawshapes"]], "Week 16 - Working with Rotations!": [[221, "week-16-working-with-rotations"]], "Week 1: Ellipsoid actor implemented with SDF": [[235, "week-1-ellipsoid-actor-implemented-with-sdf"]], "Week 1: Implementing a basic Keyframe animation API": [[181, "week-1-implementing-a-basic-keyframe-animation-api"]], "Week 1: Working with SpinBox and TextBox Enhancements": [[233, "week-1-working-with-spinbox-and-textbox-enhancements"]], "Week 2 - Improving DrawPanel UI": [[183, "week-2-improving-drawpanel-ui"]], "Week 2 - Improving Fetcher and Exporting glTF": [[188, "week-2-improving-fetcher-and-exporting-gltf"]], "Week 2: Implementing non-linear and color interpolators": [[186, "week-2-implementing-non-linear-and-color-interpolators"]], "Week 2: Making adjustments to the Ellipsoid Actor": [[238, "week-2-making-adjustments-to-the-ellipsoid-actor"]], "Week 2: Tackling Text Justification and Icon Flaw Issues": [[236, "week-2-tackling-text-justification-and-icon-flaw-issues"]], "Week 2: The Importance of (good) Documentation": [[237, "week-2-the-importance-of-good-documentation"]], "Week 3 - Dealing with Problems": [[185, "week-3-dealing-with-problems"]], "Week 3 - Fixing fetcher, adding tests and docs": [[190, "week-3-fixing-fetcher-adding-tests-and-docs"]], "Week 3: Redesigning the API, Implementing cubic Bezier Interpolator, and making progress on the GPU side!": [[189, "week-3-redesigning-the-api-implementing-cubic-bezier-interpolator-and-making-progress-on-the-gpu-side"]], "Week 3: Resolving Combobox Icon Flaw and TextBox Justification": [[239, "week-3-resolving-combobox-icon-flaw-and-textbox-justification"]], "Week 3: Watch Your Expectations": [[240, "week-3-watch-your-expectations"]], "Week 3: Working on uncertainty and details of the first PR": [[241, "week-3-working-on-uncertainty-and-details-of-the-first-pr"]], "Week 4 - Finalizing glTF loader": [[193, "week-4-finalizing-gltf-loader"]], "Week 4 - Fixing the Clamping Issue": [[187, "week-4-fixing-the-clamping-issue"]], "Week 4: Camera animation, interpolation in GLSL, and a single Timeline!": [[192, "week-4-camera-animation-interpolation-in-glsl-and-a-single-timeline"]], "Week 4: Exam Preparations and Reviewing": [[242, "week-4-exam-preparations-and-reviewing"]], "Week 4: First draft of the DTI uncertainty visualization": [[244, "week-4-first-draft-of-the-dti-uncertainty-visualization"]], "Week 4: Nothing is Ever Lost": [[243, "week-4-nothing-is-ever-lost"]], "Week 5 - Creating PR for glTF exporter and fixing the loader": [[196, "week-5-creating-pr-for-gltf-exporter-and-fixing-the-loader"]], "Week 5 - Working on new features": [[191, "week-5-working-on-new-features"]], "Week 5: All Roads Lead to Rome": [[246, "week-5-all-roads-lead-to-rome"]], "Week 5: Preparing the data for the Ellipsoid tutorial": [[247, "week-5-preparing-the-data-for-the-ellipsoid-tutorial"]], "Week 5: Slerp implementation, documenting the Timeline, and adding unit tests": [[195, "week-5-slerp-implementation-documenting-the-timeline-and-adding-unit-tests"]], "Week 5: Trying out PRs and Planning Ahead": [[245, "week-5-trying-out-prs-and-planning-ahead"]], "Week 6 - Extracting the animation data": [[199, "week-6-extracting-the-animation-data"]], "Week 6 - Supporting Rotation of the Shapes from the Center": [[194, "week-6-supporting-rotation-of-the-shapes-from-the-center"]], "Week 6: BoundingBox for TextBlock2D!": [[248, "week-6-boundingbox-for-textblock2d"]], "Week 6: First draft of the Ellipsoid tutorial": [[250, "week-6-first-draft-of-the-ellipsoid-tutorial"]], "Week 6: Fixing the Timeline issues and equipping it with more features": [[198, "week-6-fixing-the-timeline-issues-and-equipping-it-with-more-features"]], "Week 6: Things are Starting to Build Up": [[249, "week-6-things-are-starting-to-build-up"]], "Week 7 - Fixing bugs in animations": [[202, "week-7-fixing-bugs-in-animations"]], "Week 7 - Working on Rotation PR and Trying Freehand Drawing": [[197, "week-7-working-on-rotation-pr-and-trying-freehand-drawing"]], "Week 7: Adjustments on the Uncertainty Cones visualization": [[253, "week-7-adjustments-on-the-uncertainty-cones-visualization"]], "Week 7: Billboard spheres and implementing interpolators using closures": [[201, "week-7-billboard-spheres-and-implementing-interpolators-using-closures"]], "Week 7: Experimentation Done": [[252, "week-7-experimentation-done"]], "Week 7: Sowing the seeds for TreeUI": [[251, "week-7-sowing-the-seeds-for-treeui"]], "Week 8 - Fixing animation bugs": [[204, "week-8-fixing-animation-bugs"]], "Week 8 - Working on the polyline feature": [[200, "week-8-working-on-the-polyline-feature"]], "Week 8: Another week with TextBlockUI": [[254, "week-8-another-week-with-textblockui"]], "Week 8: Back to the shader-based version of the Timeline": [[205, "week-8-back-to-the-shader-based-version-of-the-timeline"]], "Week 8: The Birth of a Versatile API": [[255, "week-8-the-birth-of-a-versatile-api"]], "Week 8: Working on Ellipsoid Tutorial and exploring SH": [[256, "week-8-working-on-ellipsoid-tutorial-and-exploring-sh"]], "Week 9 - First working skeletal animation prototype": [[208, "week-9-first-working-skeletal-animation-prototype"]], "Week 9 - Grouping and Transforming Shapes": [[203, "week-9-grouping-and-transforming-shapes"]], "Week 9: Animating primitives of the same actor": [[207, "week-9-animating-primitives-of-the-same-actor"]], "Week 9: It is Polishing Time!": [[258, "week-9-it-is-polishing-time"]], "Week 9: TextBlock2D is Finally Merged!": [[257, "week-9-textblock2d-is-finally-merged"]], "Week 9: Tutorial done and polishing DTI uncertainty": [[259, "week-9-tutorial-done-and-polishing-dti-uncertainty"]], "Week#10: Accordion UI, Support for sprite sheet animations": [[167, "week-10-accordion-ui-support-for-sprite-sheet-animations"]], "Weekly Check-In #1": [[139, "weekly-check-in-1"]], "Weekly Check-In #3": [[145, "weekly-check-in-3"]], "Weekly Check-In #5": [[151, "weekly-check-in-5"]], "Weekly Check-In #7": [[157, "weekly-check-in-7"]], "Weekly Check-In #8": [[160, "weekly-check-in-8"]], "Weekly Check-in #1": [[107, "weekly-check-in-1"]], "Welcome to my GSoC Blog!": [[141, "welcome-to-my-gsoc-blog"]], "Welcome to my GSoC Blog!!!": [[107, "welcome-to-my-gsoc-blog"], [108, "welcome-to-my-gsoc-blog"]], "What About Next Week?": [[234, "what-about-next-week"]], "What I did Last Week": [[249, "what-i-did-last-week"]], "What did I do this week?": [[139, "what-did-i-do-this-week"], [140, "what-did-i-do-this-week"], [143, "what-did-i-do-this-week"], [146, "what-did-i-do-this-week"], [149, "what-did-i-do-this-week"], [152, "what-did-i-do-this-week"], [155, "what-did-i-do-this-week"], [157, "what-did-i-do-this-week"], [158, "what-did-i-do-this-week"], [160, "what-did-i-do-this-week"], [161, "what-did-i-do-this-week"], [163, "what-did-i-do-this-week"], [164, "what-did-i-do-this-week"], [167, "what-did-i-do-this-week"], [169, "what-did-i-do-this-week"], [174, "what-did-i-do-this-week"], [175, "what-did-i-do-this-week"], [232, "what-did-i-do-this-week"], [235, "what-did-i-do-this-week"], [238, "what-did-i-do-this-week"], [241, "what-did-i-do-this-week"], [242, "what-did-i-do-this-week"], [244, "what-did-i-do-this-week"], [247, "what-did-i-do-this-week"], [250, "what-did-i-do-this-week"], [253, "what-did-i-do-this-week"], [256, "what-did-i-do-this-week"], [259, "what-did-i-do-this-week"], [262, "what-did-i-do-this-week"], [265, "what-did-i-do-this-week"], [270, "what-did-i-do-this-week"]], "What did you do during the Community Bonding Period?": [[107, "what-did-you-do-during-the-community-bonding-period"], [108, "what-did-you-do-during-the-community-bonding-period"], [141, "what-did-you-do-during-the-community-bonding-period"], [181, "what-did-you-do-during-the-community-bonding-period"], [184, "what-did-you-do-during-the-community-bonding-period"]], "What did you do this week?": [[109, "what-did-you-do-this-week"], [110, "what-did-you-do-this-week"], [111, "what-did-you-do-this-week"], [112, "what-did-you-do-this-week"], [113, "what-did-you-do-this-week"], [114, "what-did-you-do-this-week"], [115, "what-did-you-do-this-week"], [116, "what-did-you-do-this-week"], [117, "what-did-you-do-this-week"], [118, "what-did-you-do-this-week"], [119, "what-did-you-do-this-week"], [120, "what-did-you-do-this-week"], [121, "what-did-you-do-this-week"], [123, "what-did-you-do-this-week"], [124, "what-did-you-do-this-week"], [125, "what-did-you-do-this-week"], [126, "what-did-you-do-this-week"], [127, "what-did-you-do-this-week"], [128, "what-did-you-do-this-week"], [129, "what-did-you-do-this-week"], [130, "what-did-you-do-this-week"], [131, "what-did-you-do-this-week"], [133, "what-did-you-do-this-week"], [136, "what-did-you-do-this-week"], [144, "what-did-you-do-this-week"], [145, "what-did-you-do-this-week"], [147, "what-did-you-do-this-week"], [150, "what-did-you-do-this-week"], [151, "what-did-you-do-this-week"], [153, "what-did-you-do-this-week"], [156, "what-did-you-do-this-week"], [159, "what-did-you-do-this-week"], [162, "what-did-you-do-this-week"], [165, "what-did-you-do-this-week"], [168, "what-did-you-do-this-week"], [170, "what-did-you-do-this-week"], [181, "what-did-you-do-this-week"], [182, "what-did-you-do-this-week"], [183, "what-did-you-do-this-week"], [184, "what-did-you-do-this-week"], [185, "what-did-you-do-this-week"], [186, "what-did-you-do-this-week"], [187, "what-did-you-do-this-week"], [188, "what-did-you-do-this-week"], [189, "what-did-you-do-this-week"], [190, "what-did-you-do-this-week"], [191, "what-did-you-do-this-week"], [192, "what-did-you-do-this-week"], [193, "what-did-you-do-this-week"], [194, "what-did-you-do-this-week"], [195, "what-did-you-do-this-week"], [196, "what-did-you-do-this-week"], [197, "what-did-you-do-this-week"], [198, "what-did-you-do-this-week"], [199, "what-did-you-do-this-week"], [200, "what-did-you-do-this-week"], [201, "what-did-you-do-this-week"], [202, "what-did-you-do-this-week"], [203, "what-did-you-do-this-week"], [204, "what-did-you-do-this-week"], [205, "what-did-you-do-this-week"], [206, "what-did-you-do-this-week"], [207, "what-did-you-do-this-week"], [208, "what-did-you-do-this-week"], [209, "what-did-you-do-this-week"], [210, "what-did-you-do-this-week"], [211, "what-did-you-do-this-week"], [212, "what-did-you-do-this-week"], [213, "what-did-you-do-this-week"], [214, "what-did-you-do-this-week"], [215, "what-did-you-do-this-week"], [216, "what-did-you-do-this-week"], [217, "what-did-you-do-this-week"], [218, "what-did-you-do-this-week"], [219, "what-did-you-do-this-week"], [220, "what-did-you-do-this-week"], [221, "what-did-you-do-this-week"], [222, "what-did-you-do-this-week"], [223, "what-did-you-do-this-week"], [224, "what-did-you-do-this-week"], [233, "what-did-you-do-this-week"], [236, "what-did-you-do-this-week"], [239, "what-did-you-do-this-week"], [245, "what-did-you-do-this-week"], [248, "what-did-you-do-this-week"], [251, "what-did-you-do-this-week"], [254, "what-did-you-do-this-week"], [257, "what-did-you-do-this-week"], [260, "what-did-you-do-this-week"], [263, "what-did-you-do-this-week"], [266, "what-did-you-do-this-week"]], "What exactly is a keyframe": [[64, "what-exactly-is-a-keyframe"]], "What is Keyframe Animation": [[64, "what-is-keyframe-animation"]], "What is Timeline?": [[67, "what-is-timeline"]], "What is coming up next week?": [[107, "what-is-coming-up-next-week"], [108, "what-is-coming-up-next-week"], [109, "what-is-coming-up-next-week"], [110, "what-is-coming-up-next-week"], [111, "what-is-coming-up-next-week"], [112, "what-is-coming-up-next-week"], [113, "what-is-coming-up-next-week"], [114, "what-is-coming-up-next-week"], [115, "what-is-coming-up-next-week"], [116, "what-is-coming-up-next-week"], [117, "what-is-coming-up-next-week"], [118, "what-is-coming-up-next-week"], [119, "what-is-coming-up-next-week"], [120, "what-is-coming-up-next-week"], [121, "what-is-coming-up-next-week"], [123, "what-is-coming-up-next-week"], [124, "what-is-coming-up-next-week"], [125, "what-is-coming-up-next-week"], [126, "what-is-coming-up-next-week"], [127, "what-is-coming-up-next-week"], [128, "what-is-coming-up-next-week"], [129, "what-is-coming-up-next-week"], [130, "what-is-coming-up-next-week"], [131, "what-is-coming-up-next-week"], [133, "what-is-coming-up-next-week"], [136, "what-is-coming-up-next-week"], [141, "what-is-coming-up-next-week"], [144, "what-is-coming-up-next-week"], [147, "what-is-coming-up-next-week"], [150, "what-is-coming-up-next-week"], [151, "what-is-coming-up-next-week"], [153, "what-is-coming-up-next-week"], [156, "what-is-coming-up-next-week"], [159, "what-is-coming-up-next-week"], [161, "what-is-coming-up-next-week"], [162, "what-is-coming-up-next-week"], [164, "what-is-coming-up-next-week"], [165, "what-is-coming-up-next-week"], [167, "what-is-coming-up-next-week"], [168, "what-is-coming-up-next-week"], [169, "what-is-coming-up-next-week"], [170, "what-is-coming-up-next-week"], [181, "what-is-coming-up-next-week"], [184, "what-is-coming-up-next-week"], [186, "what-is-coming-up-next-week"], [188, "what-is-coming-up-next-week"], [189, "what-is-coming-up-next-week"], [190, "what-is-coming-up-next-week"], [192, "what-is-coming-up-next-week"], [193, "what-is-coming-up-next-week"], [195, "what-is-coming-up-next-week"], [196, "what-is-coming-up-next-week"], [198, "what-is-coming-up-next-week"], [199, "what-is-coming-up-next-week"], [201, "what-is-coming-up-next-week"], [202, "what-is-coming-up-next-week"], [204, "what-is-coming-up-next-week"], [205, "what-is-coming-up-next-week"], [207, "what-is-coming-up-next-week"], [208, "what-is-coming-up-next-week"], [210, "what-is-coming-up-next-week"], [212, "what-is-coming-up-next-week"], [213, "what-is-coming-up-next-week"], [214, "what-is-coming-up-next-week"], [217, "what-is-coming-up-next-week"], [219, "what-is-coming-up-next-week"], [220, "what-is-coming-up-next-week"], [222, "what-is-coming-up-next-week"], [223, "what-is-coming-up-next-week"], [224, "what-is-coming-up-next-week"]], "What is coming up next?": [[139, "what-is-coming-up-next"], [140, "what-is-coming-up-next"], [143, "what-is-coming-up-next"], [145, "what-is-coming-up-next"], [146, "what-is-coming-up-next"], [149, "what-is-coming-up-next"], [152, "what-is-coming-up-next"], [155, "what-is-coming-up-next"], [157, "what-is-coming-up-next"], [160, "what-is-coming-up-next"], [163, "what-is-coming-up-next"], [174, "what-is-coming-up-next"], [182, "what-is-coming-up-next"], [183, "what-is-coming-up-next"], [185, "what-is-coming-up-next"], [187, "what-is-coming-up-next"], [191, "what-is-coming-up-next"], [194, "what-is-coming-up-next"], [197, "what-is-coming-up-next"], [200, "what-is-coming-up-next"], [203, "what-is-coming-up-next"], [206, "what-is-coming-up-next"], [209, "what-is-coming-up-next"], [211, "what-is-coming-up-next"], [215, "what-is-coming-up-next"], [216, "what-is-coming-up-next"], [218, "what-is-coming-up-next"], [221, "what-is-coming-up-next"], [232, "what-is-coming-up-next"], [233, "what-is-coming-up-next"], [235, "what-is-coming-up-next"], [236, "what-is-coming-up-next"], [238, "what-is-coming-up-next"], [239, "what-is-coming-up-next"], [241, "what-is-coming-up-next"], [242, "what-is-coming-up-next"], [244, "what-is-coming-up-next"], [245, "what-is-coming-up-next"], [247, "what-is-coming-up-next"], [248, "what-is-coming-up-next"], [250, "what-is-coming-up-next"], [251, "what-is-coming-up-next"], [253, "what-is-coming-up-next"], [254, "what-is-coming-up-next"], [256, "what-is-coming-up-next"], [257, "what-is-coming-up-next"], [259, "what-is-coming-up-next"], [260, "what-is-coming-up-next"], [262, "what-is-coming-up-next"], [263, "what-is-coming-up-next"], [265, "what-is-coming-up-next"], [266, "what-is-coming-up-next"], [270, "what-is-coming-up-next"]], "Where the Problem Was": [[237, "where-the-problem-was"], [240, "where-the-problem-was"], [243, "where-the-problem-was"], [246, "where-the-problem-was"], [249, "where-the-problem-was"]], "Why is using the python threading is not a good solution?": [[154, "why-is-using-the-python-threading-is-not-a-good-solution"]], "Widget": [[291, "widget"]], "WindowToImageFilter": [[284, "windowtoimagefilter"]], "WorldPointPicker": [[284, "worldpointpicker"]], "Wrapping animations up!": [[66, "wrapping-animations-up"]], "Wrecking Ball Simulation": [[83, "wrecking-ball-simulation"], [93, "wrecking-ball-simulation"]], "Wrecking Ball Simulation, Scrollbars Update, Physics Tutorials.": [[130, "wrecking-ball-simulation-scrollbars-update-physics-tutorials"]], "Write Documentation": [[314, "write-documentation"]], "XLayout": [[283, "xlayout"]], "XMLPolyDataReader": [[284, "xmlpolydatareader"]], "XMLPolyDataWriter": [[284, "xmlpolydatawriter"]], "YLayout": [[283, "ylayout"]], "ZLayout": [[283, "zlayout"]], "_CQUEUE": [[291, "cqueue"]], "_CQUEUE_EVENT_IDs": [[291, "cqueue-event-ids"]], "_CQUEUE_INDEX_INFO": [[291, "cqueue-index-info"]], "_LEADING_WHITE": [[280, "leading-white"]], "_TUPLE2AXES": [[292, "tuple2axes"]], "actor": [[273, "module-fury.actor"]], "actors": [[274, "module-fury.actors"]], "add_atom": [[286, "add-atom"]], "add_bond": [[286, "add-bond"]], "add_polydata_numeric_field": [[294, "add-polydata-numeric-field"]], "add_shader_callback": [[290, "add-shader-callback"]], "analyze_scene": [[295, "analyze-scene"]], "analyze_snapshot": [[295, "analyze-snapshot"]], "animation": [[275, "module-fury.animation"]], "antialiasing": [[295, "antialiasing"]], "apply_affine": [[294, "apply-affine"]], "apply_affine_to_actor": [[294, "apply-affine-to-actor"]], "apply_transformation": [[292, "apply-transformation"]], "array_from_actor": [[294, "array-from-actor"]], "arrow": [[273, "arrow"]], "asbytes": [[294, "asbytes"]], "attribute_to_actor": [[290, "attribute-to-actor"]], "axes": [[273, "axes"]], "ball_stick": [[286, "ball-stick"]], "billboard": [[273, "billboard"]], "bounding_box": [[286, "bounding-box"]], "box": [[273, "box"]], "boys2rgb": [[276, "boys2rgb"]], "cal_bounding_box_2d": [[293, "cal-bounding-box-2d"]], "callback_stream_client": [[291, "callback-stream-client"]], "cart2sphere": [[292, "cart2sphere"]], "cc": [[276, "cc"]], "change_vertices_order": [[294, "change-vertices-order"]], "check_overflow": [[293, "check-overflow"]], "check_port_is_available": [[291, "check-port-is-available"]], "check_sha": [[278, "check-sha"]], "clip_overflow": [[293, "clip-overflow"]], "cmp_pkg_version": [[280, "cmp-pkg-version"]], "color_check": [[294, "color-check"]], "color_interpolator": [[275, "color-interpolator"]], "colormap": [[276, "module-fury.colormap"]], "colormap_lookup_table": [[276, "colormap-lookup-table"]], "colors_from_actor": [[294, "colors-from-actor"]], "compose_shader": [[290, "compose-shader"]], "compute_bonding": [[286, "compute-bonding"]], "compute_bounds": [[294, "compute-bounds"]], "cone": [[273, "cone"]], "contour_from_label": [[273, "contour-from-label"]], "contour_from_roi": [[273, "contour-from-roi"]], "convert": [[277, "module-fury.convert"]], "copyfileobj_withprogress": [[278, "copyfileobj-withprogress"]], "create_colormap": [[276, "create-colormap"]], "cube": [[273, "cube"]], "cubic_bezier_interpolator": [[275, "cubic-bezier-interpolator"]], "cubic_spline_interpolator": [[275, "cubic-spline-interpolator"]], "cylinder": [[273, "cylinder"]], "data": [[278, "module-fury.data"]], "decorators": [[279, "module-fury.decorators"]], "deep_copy_molecule": [[286, "deep-copy-molecule"]], "deprecate_with_version": [[280, "deprecate-with-version"]], "deprecated_params": [[280, "deprecated-params"]], "deprecator": [[280, "module-fury.deprecator"]], "disable_warnings": [[272, "disable-warnings"]], "disk": [[273, "disk"]], "distinguishable_colormap": [[276, "distinguishable-colormap"]], "doctest_skip_parser": [[279, "doctest-skip-parser"]], "dot": [[273, "dot"]], "dots": [[273, "dots"]], "double_cone": [[274, "double-cone"]], "ellipsoid": [[273, "ellipsoid"]], "enable_stereo": [[295, "enable-stereo"]], "enable_warnings": [[272, "enable-warnings"]], "euclidean_distances": [[275, "euclidean-distances"]], "euler_matrix": [[292, "euler-matrix"]], "export_scene": [[281, "export-scene"]], "faces_from_sphere_vertices": [[289, "faces-from-sphere-vertices"]], "fetch_data": [[278, "fetch-data"]], "fetch_gltf": [[278, "fetch-gltf"]], "fetch_viz_cubemaps": [[278, "fetch-viz-cubemaps"]], "fetch_viz_dmri": [[278, "fetch-viz-dmri"]], "fetch_viz_icons": [[278, "fetch-viz-icons"]], "fetch_viz_models": [[278, "fetch-viz-models"]], "fetch_viz_new_icons": [[278, "fetch-viz-new-icons"]], "fetch_viz_textures": [[278, "fetch-viz-textures"]], "fetch_viz_wiki_nw": [[278, "fetch-viz-wiki-nw"]], "figure": [[273, "figure"]], "fix_winding_order": [[294, "fix-winding-order"]], "frustum": [[273, "frustum"]], "fury": [[272, "module-fury"]], "fury-gl/fury PR#437: WebRTC streaming system for FURY": [[151, "fury-gl-fury-pr-437-webrtc-streaming-system-for-fury"]], "fury-gl/helios PR 1: Network Layout and SuperActors": [[151, "fury-gl-helios-pr-1-network-layout-and-superactors"]], "get_actor_from_polydata": [[294, "get-actor-from-polydata"]], "get_actor_from_polymapper": [[294, "get-actor-from-polymapper"]], "get_actor_from_primitive": [[294, "get-actor-from-primitive"]], "get_all_atomic_numbers": [[286, "get-all-atomic-numbers"]], "get_all_atomic_positions": [[286, "get-all-atomic-positions"]], "get_all_bond_orders": [[286, "get-all-bond-orders"]], "get_app": [[291, "get-app"]], "get_atomic_number": [[286, "get-atomic-number"]], "get_atomic_position": [[286, "get-atomic-position"]], "get_bond_order": [[286, "get-bond-order"]], "get_bounding_box_sizes": [[294, "get-bounding-box-sizes"]], "get_bounds": [[294, "get-bounds"]], "get_cmap": [[276, "get-cmap"]], "get_grid_cells_position": [[294, "get-grid-cells-position"]], "get_info": [[272, "get-info"]], "get_next_timestamp": [[275, "get-next-timestamp"]], "get_polydata_colors": [[294, "get-polydata-colors"]], "get_polydata_field": [[294, "get-polydata-field"]], "get_polydata_lines": [[294, "get-polydata-lines"]], "get_polydata_normals": [[294, "get-polydata-normals"]], "get_polydata_primitives_count": [[294, "get-polydata-primitives-count"]], "get_polydata_tangents": [[294, "get-polydata-tangents"]], "get_polydata_tcoord": [[294, "get-polydata-tcoord"]], "get_polydata_triangles": [[294, "get-polydata-triangles"]], "get_polydata_vertices": [[294, "get-polydata-vertices"]], "get_polymapper_from_polydata": [[294, "get-polymapper-from-polydata"]], "get_previous_timestamp": [[275, "get-previous-timestamp"]], "get_prim": [[281, "get-prim"]], "get_time_tau": [[275, "get-time-tau"]], "get_timestamps_from_keyframes": [[275, "get-timestamps-from-keyframes"]], "get_values_from_keyframes": [[275, "get-values-from-keyframes"]], "get_xyz_coords": [[276, "get-xyz-coords"]], "glTF": [[281, "id1"]], "gl_disable_blend": [[295, "gl-disable-blend"]], "gl_disable_depth": [[295, "gl-disable-depth"]], "gl_enable_blend": [[295, "gl-enable-blend"]], "gl_enable_depth": [[295, "gl-enable-depth"]], "gl_get_current_state": [[295, "gl-get-current-state"]], "gl_reset_blend": [[295, "gl-reset-blend"]], "gl_set_additive_blending": [[295, "gl-set-additive-blending"]], "gl_set_additive_blending_white_background": [[295, "gl-set-additive-blending-white-background"]], "gl_set_multiplicative_blending": [[295, "gl-set-multiplicative-blending"]], "gl_set_normal_blending": [[295, "gl-set-normal-blending"]], "gl_set_subtractive_blending": [[295, "gl-set-subtractive-blending"]], "gltf": [[281, "module-fury.gltf"]], "grid": [[273, "grid"]], "hex_to_rgb": [[276, "hex-to-rgb"]], "hsv2rgb": [[276, "hsv2rgb"]], "hsv_color_interpolator": [[275, "hsv-color-interpolator"]], "import_fury_shader": [[290, "import-fury-shader"]], "interaction_callback": [[291, "interaction-callback"]], "io": [[282, "module-fury.io"]], "is_bad_version": [[280, "is-bad-version"]], "is_ui": [[294, "is-ui"]], "lab2rgb": [[276, "lab2rgb"]], "lab2xyz": [[276, "lab2xyz"]], "lab_color_interpolator": [[275, "lab-color-interpolator"]], "label": [[273, "label"]], "layout": [[283, "module-fury.layout"]], "lerp": [[275, "lerp"]], "lib": [[284, "module-fury.lib"]], "line": [[273, "line"]], "line_colors": [[276, "line-colors"]], "linear_interpolator": [[275, "linear-interpolator"]], "lines_to_vtk_polydata": [[294, "lines-to-vtk-polydata"]], "list_gltf_sample_models": [[278, "list-gltf-sample-models"]], "load": [[290, "load"]], "load_cubemap_texture": [[282, "load-cubemap-texture"]], "load_image": [[282, "load-image"]], "load_polydata": [[282, "load-polydata"]], "load_shader": [[290, "load-shader"]], "load_sprite_sheet": [[282, "load-sprite-sheet"]], "load_text": [[282, "load-text"]], "main_dir_uncertainty": [[274, "main-dir-uncertainty"]], "manifest_pbr": [[285, "manifest-pbr"]], "manifest_principled": [[285, "manifest-principled"]], "manifest_standard": [[285, "manifest-standard"]], "map_coordinates_3d_4d": [[294, "map-coordinates-3d-4d"]], "markers": [[273, "markers"]], "material": [[285, "module-fury.material"]], "matplotlib_figure_to_numpy": [[277, "matplotlib-figure-to-numpy"]], "molecular": [[286, "module-fury.molecular"]], "multiprocessing RawArray": [[142, "multiprocessing-rawarray"]], "normalize_v3": [[294, "normalize-v3"]], "normals_from_actor": [[294, "normals-from-actor"]], "normals_from_v_f": [[294, "normals-from-v-f"]], "normals_to_actor": [[294, "normals-to-actor"]], "numpy_to_vtk_cells": [[294, "numpy-to-vtk-cells"]], "numpy_to_vtk_colors": [[294, "numpy-to-vtk-colors"]], "numpy_to_vtk_image_data": [[294, "numpy-to-vtk-image-data"]], "numpy_to_vtk_matrix": [[294, "numpy-to-vtk-matrix"]], "numpy_to_vtk_points": [[294, "numpy-to-vtk-points"]], "octagonalprism": [[273, "octagonalprism"]], "odf_slicer": [[273, "odf-slicer"]], "orient2rgb": [[276, "orient2rgb"]], "pcs": [[291, "pcs"]], "peak": [[273, "peak"]], "peak_slicer": [[273, "peak-slicer"]], "pentagonalprism": [[273, "pentagonalprism"]], "pick": [[287, "module-fury.pick"]], "pkg_commit_hash": [[288, "pkg-commit-hash"]], "pkg_info": [[288, "module-fury.pkg_info"]], "point": [[273, "point"]], "prim_arrow": [[289, "prim-arrow"]], "prim_box": [[289, "prim-box"]], "prim_cone": [[289, "prim-cone"]], "prim_cylinder": [[289, "prim-cylinder"]], "prim_frustum": [[289, "prim-frustum"]], "prim_icosahedron": [[289, "prim-icosahedron"]], "prim_octagonalprism": [[289, "prim-octagonalprism"]], "prim_pentagonalprism": [[289, "prim-pentagonalprism"]], "prim_rhombicuboctahedron": [[289, "prim-rhombicuboctahedron"]], "prim_sphere": [[289, "prim-sphere"]], "prim_square": [[289, "prim-square"]], "prim_star": [[289, "prim-star"]], "prim_superquadric": [[289, "prim-superquadric"]], "prim_tetrahedron": [[289, "prim-tetrahedron"]], "prim_triangularprism": [[289, "prim-triangularprism"]], "primitive": [[289, "module-fury.primitive"]], "primitives_count_from_actor": [[294, "primitives-count-from-actor"]], "primitives_count_to_actor": [[294, "primitives-count-to-actor"]], "read_viz_cubemap": [[278, "read-viz-cubemap"]], "read_viz_dmri": [[278, "read-viz-dmri"]], "read_viz_gltf": [[278, "read-viz-gltf"]], "read_viz_icons": [[278, "read-viz-icons"]], "read_viz_models": [[278, "read-viz-models"]], "read_viz_textures": [[278, "read-viz-textures"]], "record": [[295, "record"]], "rectangle": [[273, "rectangle"]], "release_context": [[295, "release-context"]], "remove_observer_from_actor": [[294, "remove-observer-from-actor"]], "remove_shm_from_resource_tracker": [[291, "remove-shm-from-resource-tracker"]], "repeat_primitive": [[289, "repeat-primitive"]], "repeat_primitive_function": [[289, "repeat-primitive-function"]], "repeat_sources": [[294, "repeat-sources"]], "replace_shader_in_actor": [[290, "replace-shader-in-actor"]], "represent_actor_as_wireframe": [[294, "represent-actor-as-wireframe"]], "rgb2hsv": [[276, "rgb2hsv"]], "rgb2lab": [[276, "rgb2lab"]], "rgb2xyz": [[276, "rgb2xyz"]], "rgb_from_xyz": [[276, "rgb-from-xyz"]], "rgb_to_vtk": [[294, "rgb-to-vtk"]], "rhombicuboctahedron": [[273, "rhombicuboctahedron"]], "ribbon": [[286, "ribbon"]], "rotate": [[292, "rotate"], [294, "rotate"]], "rotate_2d": [[293, "rotate-2d"]], "save_image": [[282, "save-image"]], "save_polydata": [[282, "save-polydata"]], "scalar_bar": [[273, "scalar-bar"]], "scale": [[292, "scale"]], "sdf": [[273, "sdf"]], "set_actor_origin": [[294, "set-actor-origin"]], "set_atomic_number": [[286, "set-atomic-number"]], "set_atomic_position": [[286, "set-atomic-position"]], "set_bond_order": [[286, "set-bond-order"]], "set_input": [[294, "set-input"]], "set_mouse": [[291, "set-mouse"]], "set_mouse_click": [[291, "set-mouse-click"]], "set_polydata_colors": [[294, "set-polydata-colors"]], "set_polydata_normals": [[294, "set-polydata-normals"]], "set_polydata_primitives_count": [[294, "set-polydata-primitives-count"]], "set_polydata_tangents": [[294, "set-polydata-tangents"]], "set_polydata_tcoords": [[294, "set-polydata-tcoords"]], "set_polydata_triangles": [[294, "set-polydata-triangles"]], "set_polydata_vertices": [[294, "set-polydata-vertices"]], "set_weel": [[291, "set-weel"]], "shader_apply_effects": [[290, "shader-apply-effects"]], "shader_to_actor": [[290, "shader-to-actor"]], "shaders": [[290, "module-fury.shaders"]], "shallow_copy": [[294, "shallow-copy"]], "show": [[295, "show"]], "slerp": [[275, "slerp"]], "slicer": [[273, "slicer"]], "snapshot": [[295, "snapshot"]], "sphere": [[273, "sphere"]], "sphere2cart": [[292, "sphere2cart"]], "sphere_cpk": [[286, "sphere-cpk"]], "spline_interpolator": [[275, "spline-interpolator"]], "square": [[273, "square"]], "ss": [[276, "ss"]], "step_interpolator": [[275, "step-interpolator"]], "stick": [[286, "stick"]], "stream": [[291, "module-fury.stream"]], "streamtube": [[273, "streamtube"]], "superquadric": [[273, "superquadric"]], "surface": [[273, "surface"]], "tan_cubic_spline_interpolator": [[275, "tan-cubic-spline-interpolator"]], "tangents_from_actor": [[294, "tangents-from-actor"]], "tangents_from_direction_of_anisotropy": [[294, "tangents-from-direction-of-anisotropy"]], "tangents_to_actor": [[294, "tangents-to-actor"]], "tensor_ellipsoid": [[274, "tensor-ellipsoid"]], "tensor_slicer": [[273, "tensor-slicer"]], "text_3d": [[273, "text-3d"]], "texture": [[273, "texture"]], "texture_2d": [[273, "texture-2d"]], "texture_on_sphere": [[273, "texture-on-sphere"]], "texture_update": [[273, "texture-update"]], "transform": [[292, "module-fury.transform"]], "transform_from_matrix": [[292, "transform-from-matrix"]], "translate": [[292, "translate"]], "triangle_order": [[294, "triangle-order"]], "triangularprism": [[273, "triangularprism"]], "ui": [[293, "module-fury.ui"]], "uncertainty_cone": [[273, "uncertainty-cone"]], "update_actor": [[294, "update-actor"]], "update_polydata_normals": [[294, "update-polydata-normals"]], "update_progressbar": [[278, "update-progressbar"]], "update_surface_actor_colors": [[294, "update-surface-actor-colors"]], "utils": [[294, "module-fury.utils"]], "vector_text": [[273, "vector-text"]], "vertices_from_actor": [[294, "vertices-from-actor"]], "vtk_matrix_to_numpy": [[294, "vtk-matrix-to-numpy"]], "web_server": [[291, "web-server"]], "web_server_raw_array": [[291, "web-server-raw-array"]], "window": [[295, "module-fury.window"]], "wrap_overflow": [[293, "wrap-overflow"]], "write_accessor": [[281, "write-accessor"]], "write_buffer": [[281, "write-buffer"]], "write_bufferview": [[281, "write-bufferview"]], "write_camera": [[281, "write-camera"]], "write_material": [[281, "write-material"]], "write_mesh": [[281, "write-mesh"]], "write_node": [[281, "write-node"]], "write_scene": [[281, "write-scene"]], "xyz2lab": [[276, "xyz2lab"]], "xyz2rgb": [[276, "xyz2rgb"]], "xyz_color_interpolator": [[275, "xyz-color-interpolator"]], "xyz_from_rgb": [[276, "xyz-from-rgb"]]}, "docnames": ["auto_examples/01_introductory/index", "auto_examples/01_introductory/sg_execution_times", "auto_examples/01_introductory/viz_arrow", "auto_examples/01_introductory/viz_cone", "auto_examples/01_introductory/viz_earth_animation", "auto_examples/01_introductory/viz_earth_coordinates", "auto_examples/01_introductory/viz_gltf", "auto_examples/01_introductory/viz_gltf_animated", "auto_examples/01_introductory/viz_gltf_export", "auto_examples/01_introductory/viz_morphing", "auto_examples/01_introductory/viz_multithread", "auto_examples/01_introductory/viz_picking", "auto_examples/01_introductory/viz_selection", "auto_examples/01_introductory/viz_skinning", "auto_examples/01_introductory/viz_slice", "auto_examples/01_introductory/viz_solar_system", "auto_examples/01_introductory/viz_sphere", "auto_examples/01_introductory/viz_spiky", "auto_examples/01_introductory/viz_surfaces", "auto_examples/01_introductory/viz_texture", "auto_examples/01_introductory/viz_timers", "auto_examples/04_demos/collision-particles", "auto_examples/04_demos/index", "auto_examples/04_demos/sg_execution_times", "auto_examples/04_demos/viz_advanced", "auto_examples/04_demos/viz_animated_surfaces", "auto_examples/04_demos/viz_brownian_motion", "auto_examples/04_demos/viz_bundles", "auto_examples/04_demos/viz_dt_ellipsoids", "auto_examples/04_demos/viz_emwave_animation", "auto_examples/04_demos/viz_fiber_odf", "auto_examples/04_demos/viz_fine_tuning_gl_context", "auto_examples/04_demos/viz_fractals", "auto_examples/04_demos/viz_helical_motion", "auto_examples/04_demos/viz_markers", "auto_examples/04_demos/viz_network", "auto_examples/04_demos/viz_network_animated", "auto_examples/04_demos/viz_pbr_interactive", "auto_examples/04_demos/viz_play_video", "auto_examples/04_demos/viz_roi_contour", "auto_examples/04_demos/viz_tesseract", "auto_examples/07_ui/index", "auto_examples/07_ui/sg_execution_times", "auto_examples/07_ui/viz_buttons", "auto_examples/07_ui/viz_card", "auto_examples/07_ui/viz_card_sprite_sheet", "auto_examples/07_ui/viz_check_boxes", "auto_examples/07_ui/viz_combobox", "auto_examples/07_ui/viz_drawpanel", "auto_examples/07_ui/viz_layout", "auto_examples/07_ui/viz_radio_buttons", "auto_examples/07_ui/viz_shapes", "auto_examples/07_ui/viz_spinbox", "auto_examples/07_ui/viz_tab", "auto_examples/07_ui/viz_ui", "auto_examples/07_ui/viz_ui_listbox", "auto_examples/07_ui/viz_ui_slider", "auto_examples/10_animation/index", "auto_examples/10_animation/sg_execution_times", "auto_examples/10_animation/viz_bezier_interpolator", "auto_examples/10_animation/viz_camera", "auto_examples/10_animation/viz_color_interpolators", "auto_examples/10_animation/viz_custom_interpolator", "auto_examples/10_animation/viz_hierarchical_animation", "auto_examples/10_animation/viz_introduction", "auto_examples/10_animation/viz_robot_arm_animation", "auto_examples/10_animation/viz_spline_interpolator", "auto_examples/10_animation/viz_timeline", "auto_examples/10_animation/viz_using_time_equations", "auto_examples/13_shaders/index", "auto_examples/13_shaders/sg_execution_times", "auto_examples/13_shaders/viz_billboard_sdf_spheres", "auto_examples/13_shaders/viz_pbr_spheres", "auto_examples/13_shaders/viz_principled_spheres", "auto_examples/13_shaders/viz_sdf_cylinder", "auto_examples/13_shaders/viz_sdfactor", "auto_examples/13_shaders/viz_shader", "auto_examples/17_pybullet/index", "auto_examples/17_pybullet/sg_execution_times", "auto_examples/17_pybullet/viz_ball_collide", "auto_examples/17_pybullet/viz_brick_wall", "auto_examples/17_pybullet/viz_chain", "auto_examples/17_pybullet/viz_domino", "auto_examples/17_pybullet/viz_wrecking_ball", "auto_examples/20_stream/index", "auto_examples/20_stream/sg_execution_times", "auto_examples/20_stream/viz_interaction", "auto_examples/20_stream/viz_no_interaction", "auto_examples/20_stream/viz_widget", "auto_examples/index", "auto_examples/sg_execution_times", "blog", "community", "fury-pybullet", "getting_started", "index", "installation", "introduction", "posts/2018/2018-09-21-release-announcement", "posts/2018/2018-10-31-release-announcement", "posts/2018/2018-11-26-release-announcement", "posts/2019/2019-03-08-release-announcement", "posts/2019/2019-06-19-brain-art", "posts/2019/2019-08-02-release-announcement", "posts/2019/2019-10-29-release-announcement", "posts/2020/2020-01-05-gsoc", "posts/2020/2020-04-09-release-announcement", "posts/2020/2020-05-30-week-1-lenix", "posts/2020/2020-05-30-week-1-soham", "posts/2020/2020-06-07-week-2-lenix", "posts/2020/2020-06-07-week-2-soham", "posts/2020/2020-06-14-week-3-lenix", "posts/2020/2020-06-14-week-3-soham", "posts/2020/2020-06-21-week-4-lenix", "posts/2020/2020-06-21-week-4-soham", "posts/2020/2020-06-28-week-5-lenix", "posts/2020/2020-06-28-week-5-soham", "posts/2020/2020-07-05-week-6-lenix", "posts/2020/2020-07-05-week-6-soham", "posts/2020/2020-07-12-week-7-soham", "posts/2020/2020-07-13-week-7-lenix", "posts/2020/2020-07-19-week-8-soham", "posts/2020/2020-07-20-release-announcement", "posts/2020/2020-07-20-week-8-lenix", "posts/2020/2020-07-26-week-9-soham", "posts/2020/2020-07-27-week-9-lenix", "posts/2020/2020-08-02-week-10-lenix", "posts/2020/2020-08-02-week-10-soham", "posts/2020/2020-08-09-week-11-lenix", "posts/2020/2020-08-09-week-11-soham", "posts/2020/2020-08-16-week-12-soham", "posts/2020/2020-08-17-week-12-lenix", "posts/2020/2020-08-18-release-announcement", "posts/2020/2020-08-23-week-13-soham", "posts/2020/2020-08-24-final-work-lenix", "posts/2020/2020-08-24-final-work-soham", "posts/2020/2020-08-24-week-13-lenix", "posts/2021/2021-03-09-gsoc", "posts/2021/2021-03-13-release-announcement", "posts/2021/2021-06-08-gsoc-devmessias-1", "posts/2021/2021-06-08-week-1-antriksh", "posts/2021/2021-06-08-week-1-sajag", "posts/2021/2021-06-12-gsoc-devmessias-2", "posts/2021/2021-06-13-week-2-antriksh", "posts/2021/2021-06-14-week-2-sajag", "posts/2021/2021-06-21-gsoc-devmessias-3", "posts/2021/2021-06-21-week-3-antriksh", "posts/2021/2021-06-21-week-3-sajag", "posts/2021/2021-06-28-gsoc-devmessias-4", "posts/2021/2021-06-28-week-4-antriksh", "posts/2021/2021-06-28-week-4-sajag", "posts/2021/2021-07-05-gsoc-devmessias-5", "posts/2021/2021-07-05-week-5-antriksh", "posts/2021/2021-07-05-week-5-sajag", "posts/2021/2021-07-12-gsoc-devmessias-6", "posts/2021/2021-07-12-week-6-antriksh", "posts/2021/2021-07-12-week-6-sajag", "posts/2021/2021-07-19-gsoc-devmessias-7", "posts/2021/2021-07-19-week-7-antriksh", "posts/2021/2021-07-19-week-7-sajag", "posts/2021/2021-07-26-gsoc-devmessias-8", "posts/2021/2021-07-26-week-8-antriksh", "posts/2021/2021-07-26-week-8-sajag", "posts/2021/2021-08-02-gsoc-devmessias-9", "posts/2021/2021-08-02-week-9-antriksh", "posts/2021/2021-08-02-week-9-sajag", "posts/2021/2021-08-03-release-announcement", "posts/2021/2021-08-09-week-10-antriksh", "posts/2021/2021-08-09-week-10-sajag", "posts/2021/2021-08-16-week-11-antriksh", "posts/2021/2021-08-16-week-11-sajag", "posts/2021/2021-08-23-final-work-antriksh", "posts/2021/2021-08-23-final-work-sajag", "posts/2021/2021-08-23-gsoc-devmessias-final-report", "posts/2021/2021-09-08-gsoc-devmessias-10", "posts/2021/2021-16-08-gsoc-devmessias-11", "posts/2022/2022-01-31-release-announcement", "posts/2022/2022-02-01-gsoc", "posts/2022/2022-05-23-first-post-mohamed", "posts/2022/2022-05-24-my-journey-to-gsoc-2022-shivam", "posts/2022/2022-05-25-pre-gsoc-journey-praneeth", "posts/2022/2022-06-08-week-1-mohamed", "posts/2022/2022-06-08-week-1-praneeth", "posts/2022/2022-06-15-week-2-praneeth", "posts/2022/2022-06-20-week1-shivam", "posts/2022/2022-06-22-week-3-praneeth", "posts/2022/2022-06-28-week-2-mohamed", "posts/2022/2022-06-29-week-4-praneeth", "posts/2022/2022-06-29-week2-shivam", "posts/2022/2022-07-04-week-3-mohamed", "posts/2022/2022-07-04-week3-shivam", "posts/2022/2022-07-06-week-5-praneeth", "posts/2022/2022-07-11-week-4-mohamed", "posts/2022/2022-07-12-week4-shivam", "posts/2022/2022-07-13-week-6-praneeth", "posts/2022/2022-07-19-week-5-mohamed", "posts/2022/2022-07-19-week5-shivam", "posts/2022/2022-07-20-week-7-praneeth", "posts/2022/2022-07-25-week-6-mohamed", "posts/2022/2022-07-25-week-6-shivam", "posts/2022/2022-07-27-week-8-praneeth", "posts/2022/2022-08-01-week-7-mohamed", "posts/2022/2022-08-01-week-7-shivam", "posts/2022/2022-08-03-week-9-praneeth", "posts/2022/2022-08-09-week-08-shivam", "posts/2022/2022-08-09-week-8-mohamed", "posts/2022/2022-08-10-week-10-praneeth", "posts/2022/2022-08-16-week-9-mohamed", "posts/2022/2022-08-17-week-09-shivam", "posts/2022/2022-08-17-week-11-praneeth", "posts/2022/2022-08-23-week-10-mohamed", "posts/2022/2022-08-24-week-12-praneeth", "posts/2022/2022-08-25-week-10-shivam", "posts/2022/2022-08-30-week-11-mohamed", "posts/2022/2022-08-31-week-11-shivam", "posts/2022/2022-08-31-week-13-praneeth", "posts/2022/2022-09-07-week-14-praneeth", "posts/2022/2022-09-08-week-12-shivam", "posts/2022/2022-09-14-week-15-praneeth", "posts/2022/2022-09-15-week-13-blog", "posts/2022/2022-09-20-week-13-mohamed", "posts/2022/2022-09-21-week-16-praneeth", "posts/2022/2022-09-28-week-14-mohamed", "posts/2022/2022-09-28-week-14-shivam", "posts/2022/2022-09-7-week-12-mohamed", "posts/2023/2023-01-24-final-report-praneeth", "posts/2023/2023-01-29-final-report-mohamed", "posts/2023/2023-01-29-final-report-shivam", "posts/2023/2023-02-01-gsoc", "posts/2023/2023-04-14-release-announcement", "posts/2023/2023-05-29-week-0-joaodellagli", "posts/2023/2023-06-02-week-0-praneeth", "posts/2023/2023-06-02-week-0-tvcastillod", "posts/2023/2023-06-03-week-1-praneeth", "posts/2023/2023-06-05-week-1-joaodellagli", "posts/2023/2023-06-05-week-1-tvcastillod", "posts/2023/2023-06-11-week-2-praneeth", "posts/2023/2023-06-12-week-2-joaodellagli", "posts/2023/2023-06-12-week-2-tvcastillod", "posts/2023/2023-06-17-week-3-praneeth", "posts/2023/2023-06-19-week-3-joaodellagli", "posts/2023/2023-06-19-week-3-tvcastillod", "posts/2023/2023-06-24-week-4-praneeth", "posts/2023/2023-06-26-week-4-joaodellagli", "posts/2023/2023-06-27-week-4-tvcastillod", "posts/2023/2023-07-01-week-5-praneeth", "posts/2023/2023-07-03-week-5-joaodellagli", "posts/2023/2023-07-03-week-5-tvcastillod", "posts/2023/2023-07-08-week-6-praneeth", "posts/2023/2023-07-10-week-6-joaodellagli", "posts/2023/2023-07-10-week-6-tvcastillod", "posts/2023/2023-07-15-week-7-praneeth", "posts/2023/2023-07-17-week-7-joaodellagli", "posts/2023/2023-07-17-week-7-tvcastillod", "posts/2023/2023-07-22-week-8-praneeth", "posts/2023/2023-07-24-week-8-joaodellagli", "posts/2023/2023-07-25-week-8-tvcastillod", "posts/2023/2023-07-29-week-9-praneeth", "posts/2023/2023-07-31-week-9-joaodellagli", "posts/2023/2023-07-31-week-9-tvcastillod", "posts/2023/2023-08-05-week-10-praneeth", "posts/2023/2023-08-07-week-10-joaodellagli", "posts/2023/2023-08-08-week-10-tvcastillod", "posts/2023/2023-08-12-week-11-praneeth", "posts/2023/2023-08-14-week-11-joaodellagli", "posts/2023/2023-08-16-week-11-tvcastillod", "posts/2023/2023-08-19-week-12-praneeth", "posts/2023/2023-08-21-joaodellagli-final-report", "posts/2023/2023-08-21-week-12-joaodellagli", "posts/2023/2023-08-24-final-report-tvcastillod", "posts/2023/2023-08-24-week-12-tvcastillod", "posts/2023/2023-08-25-final-report-praneeth", "reference/fury", "reference/fury.actor", "reference/fury.actors", "reference/fury.animation", "reference/fury.colormap", "reference/fury.convert", "reference/fury.data", "reference/fury.decorators", "reference/fury.deprecator", "reference/fury.gltf", "reference/fury.io", "reference/fury.layout", "reference/fury.lib", "reference/fury.material", "reference/fury.molecular", "reference/fury.pick", "reference/fury.pkg_info", "reference/fury.primitive", "reference/fury.shaders", "reference/fury.stream", "reference/fury.transform", "reference/fury.ui", "reference/fury.utils", "reference/fury.window", "reference/index", "release-history", "release_notes/releasev0.1.0", "release_notes/releasev0.1.1", "release_notes/releasev0.1.3", "release_notes/releasev0.1.4", "release_notes/releasev0.10.0", "release_notes/releasev0.2.0", "release_notes/releasev0.3.0", "release_notes/releasev0.4.0", "release_notes/releasev0.5.1", "release_notes/releasev0.6.0", "release_notes/releasev0.6.1", "release_notes/releasev0.7.0", "release_notes/releasev0.7.1", "release_notes/releasev0.8.0", "release_notes/releasev0.9.0", "sg_execution_times", "symlink/contributing", "symlink/license"], "envversion": {"sphinx": 61, "sphinx.domains.c": 3, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 9, "sphinx.domains.index": 1, "sphinx.domains.javascript": 3, "sphinx.domains.math": 2, "sphinx.domains.python": 4, "sphinx.domains.rst": 2, "sphinx.domains.std": 2, "sphinx.ext.intersphinx": 1, "sphinx.ext.viewcode": 1}, "filenames": ["auto_examples/01_introductory/index.rst", "auto_examples/01_introductory/sg_execution_times.rst", "auto_examples/01_introductory/viz_arrow.rst", "auto_examples/01_introductory/viz_cone.rst", "auto_examples/01_introductory/viz_earth_animation.rst", "auto_examples/01_introductory/viz_earth_coordinates.rst", "auto_examples/01_introductory/viz_gltf.rst", "auto_examples/01_introductory/viz_gltf_animated.rst", "auto_examples/01_introductory/viz_gltf_export.rst", "auto_examples/01_introductory/viz_morphing.rst", "auto_examples/01_introductory/viz_multithread.rst", "auto_examples/01_introductory/viz_picking.rst", "auto_examples/01_introductory/viz_selection.rst", "auto_examples/01_introductory/viz_skinning.rst", "auto_examples/01_introductory/viz_slice.rst", "auto_examples/01_introductory/viz_solar_system.rst", "auto_examples/01_introductory/viz_sphere.rst", "auto_examples/01_introductory/viz_spiky.rst", "auto_examples/01_introductory/viz_surfaces.rst", "auto_examples/01_introductory/viz_texture.rst", "auto_examples/01_introductory/viz_timers.rst", "auto_examples/04_demos/collision-particles.rst", "auto_examples/04_demos/index.rst", "auto_examples/04_demos/sg_execution_times.rst", "auto_examples/04_demos/viz_advanced.rst", "auto_examples/04_demos/viz_animated_surfaces.rst", "auto_examples/04_demos/viz_brownian_motion.rst", "auto_examples/04_demos/viz_bundles.rst", "auto_examples/04_demos/viz_dt_ellipsoids.rst", "auto_examples/04_demos/viz_emwave_animation.rst", "auto_examples/04_demos/viz_fiber_odf.rst", "auto_examples/04_demos/viz_fine_tuning_gl_context.rst", "auto_examples/04_demos/viz_fractals.rst", "auto_examples/04_demos/viz_helical_motion.rst", "auto_examples/04_demos/viz_markers.rst", "auto_examples/04_demos/viz_network.rst", "auto_examples/04_demos/viz_network_animated.rst", "auto_examples/04_demos/viz_pbr_interactive.rst", "auto_examples/04_demos/viz_play_video.rst", "auto_examples/04_demos/viz_roi_contour.rst", "auto_examples/04_demos/viz_tesseract.rst", "auto_examples/07_ui/index.rst", "auto_examples/07_ui/sg_execution_times.rst", "auto_examples/07_ui/viz_buttons.rst", "auto_examples/07_ui/viz_card.rst", "auto_examples/07_ui/viz_card_sprite_sheet.rst", "auto_examples/07_ui/viz_check_boxes.rst", "auto_examples/07_ui/viz_combobox.rst", "auto_examples/07_ui/viz_drawpanel.rst", "auto_examples/07_ui/viz_layout.rst", "auto_examples/07_ui/viz_radio_buttons.rst", "auto_examples/07_ui/viz_shapes.rst", "auto_examples/07_ui/viz_spinbox.rst", "auto_examples/07_ui/viz_tab.rst", "auto_examples/07_ui/viz_ui.rst", "auto_examples/07_ui/viz_ui_listbox.rst", "auto_examples/07_ui/viz_ui_slider.rst", "auto_examples/10_animation/index.rst", "auto_examples/10_animation/sg_execution_times.rst", "auto_examples/10_animation/viz_bezier_interpolator.rst", "auto_examples/10_animation/viz_camera.rst", "auto_examples/10_animation/viz_color_interpolators.rst", "auto_examples/10_animation/viz_custom_interpolator.rst", "auto_examples/10_animation/viz_hierarchical_animation.rst", "auto_examples/10_animation/viz_introduction.rst", "auto_examples/10_animation/viz_robot_arm_animation.rst", "auto_examples/10_animation/viz_spline_interpolator.rst", "auto_examples/10_animation/viz_timeline.rst", "auto_examples/10_animation/viz_using_time_equations.rst", "auto_examples/13_shaders/index.rst", "auto_examples/13_shaders/sg_execution_times.rst", "auto_examples/13_shaders/viz_billboard_sdf_spheres.rst", "auto_examples/13_shaders/viz_pbr_spheres.rst", "auto_examples/13_shaders/viz_principled_spheres.rst", "auto_examples/13_shaders/viz_sdf_cylinder.rst", "auto_examples/13_shaders/viz_sdfactor.rst", "auto_examples/13_shaders/viz_shader.rst", "auto_examples/17_pybullet/index.rst", "auto_examples/17_pybullet/sg_execution_times.rst", "auto_examples/17_pybullet/viz_ball_collide.rst", "auto_examples/17_pybullet/viz_brick_wall.rst", "auto_examples/17_pybullet/viz_chain.rst", "auto_examples/17_pybullet/viz_domino.rst", "auto_examples/17_pybullet/viz_wrecking_ball.rst", "auto_examples/20_stream/index.rst", "auto_examples/20_stream/sg_execution_times.rst", "auto_examples/20_stream/viz_interaction.rst", "auto_examples/20_stream/viz_no_interaction.rst", "auto_examples/20_stream/viz_widget.rst", "auto_examples/index.rst", "auto_examples/sg_execution_times.rst", "blog.rst", "community.rst", "fury-pybullet.rst", "getting_started.rst", "index.rst", "installation.rst", "introduction.rst", "posts/2018/2018-09-21-release-announcement.rst", "posts/2018/2018-10-31-release-announcement.rst", "posts/2018/2018-11-26-release-announcement.rst", "posts/2019/2019-03-08-release-announcement.rst", "posts/2019/2019-06-19-brain-art.rst", "posts/2019/2019-08-02-release-announcement.rst", "posts/2019/2019-10-29-release-announcement.rst", "posts/2020/2020-01-05-gsoc.rst", "posts/2020/2020-04-09-release-announcement.rst", "posts/2020/2020-05-30-week-1-lenix.rst", "posts/2020/2020-05-30-week-1-soham.rst", "posts/2020/2020-06-07-week-2-lenix.rst", "posts/2020/2020-06-07-week-2-soham.rst", "posts/2020/2020-06-14-week-3-lenix.rst", "posts/2020/2020-06-14-week-3-soham.rst", "posts/2020/2020-06-21-week-4-lenix.rst", "posts/2020/2020-06-21-week-4-soham.rst", "posts/2020/2020-06-28-week-5-lenix.rst", "posts/2020/2020-06-28-week-5-soham.rst", "posts/2020/2020-07-05-week-6-lenix.rst", "posts/2020/2020-07-05-week-6-soham.rst", "posts/2020/2020-07-12-week-7-soham.rst", "posts/2020/2020-07-13-week-7-lenix.rst", "posts/2020/2020-07-19-week-8-soham.rst", "posts/2020/2020-07-20-release-announcement.rst", "posts/2020/2020-07-20-week-8-lenix.rst", "posts/2020/2020-07-26-week-9-soham.rst", "posts/2020/2020-07-27-week-9-lenix.rst", "posts/2020/2020-08-02-week-10-lenix.rst", "posts/2020/2020-08-02-week-10-soham.rst", "posts/2020/2020-08-09-week-11-lenix.rst", "posts/2020/2020-08-09-week-11-soham.rst", "posts/2020/2020-08-16-week-12-soham.rst", "posts/2020/2020-08-17-week-12-lenix.rst", "posts/2020/2020-08-18-release-announcement.rst", "posts/2020/2020-08-23-week-13-soham.rst", "posts/2020/2020-08-24-final-work-lenix.rst", "posts/2020/2020-08-24-final-work-soham.rst", "posts/2020/2020-08-24-week-13-lenix.rst", "posts/2021/2021-03-09-gsoc.rst", "posts/2021/2021-03-13-release-announcement.rst", "posts/2021/2021-06-08-gsoc-devmessias-1.rst", "posts/2021/2021-06-08-week-1-antriksh.rst", "posts/2021/2021-06-08-week-1-sajag.rst", "posts/2021/2021-06-12-gsoc-devmessias-2.rst", "posts/2021/2021-06-13-week-2-antriksh.rst", "posts/2021/2021-06-14-week-2-sajag.rst", "posts/2021/2021-06-21-gsoc-devmessias-3.rst", "posts/2021/2021-06-21-week-3-antriksh.rst", "posts/2021/2021-06-21-week-3-sajag.rst", "posts/2021/2021-06-28-gsoc-devmessias-4.rst", "posts/2021/2021-06-28-week-4-antriksh.rst", "posts/2021/2021-06-28-week-4-sajag.rst", "posts/2021/2021-07-05-gsoc-devmessias-5.rst", "posts/2021/2021-07-05-week-5-antriksh.rst", "posts/2021/2021-07-05-week-5-sajag.rst", "posts/2021/2021-07-12-gsoc-devmessias-6.rst", "posts/2021/2021-07-12-week-6-antriksh.rst", "posts/2021/2021-07-12-week-6-sajag.rst", "posts/2021/2021-07-19-gsoc-devmessias-7.rst", "posts/2021/2021-07-19-week-7-antriksh.rst", "posts/2021/2021-07-19-week-7-sajag.rst", "posts/2021/2021-07-26-gsoc-devmessias-8.rst", "posts/2021/2021-07-26-week-8-antriksh.rst", "posts/2021/2021-07-26-week-8-sajag.rst", "posts/2021/2021-08-02-gsoc-devmessias-9.rst", "posts/2021/2021-08-02-week-9-antriksh.rst", "posts/2021/2021-08-02-week-9-sajag.rst", "posts/2021/2021-08-03-release-announcement.rst", "posts/2021/2021-08-09-week-10-antriksh.rst", "posts/2021/2021-08-09-week-10-sajag.rst", "posts/2021/2021-08-16-week-11-antriksh.rst", "posts/2021/2021-08-16-week-11-sajag.rst", "posts/2021/2021-08-23-final-work-antriksh.rst", "posts/2021/2021-08-23-final-work-sajag.rst", "posts/2021/2021-08-23-gsoc-devmessias-final-report.rst", "posts/2021/2021-09-08-gsoc-devmessias-10.rst", "posts/2021/2021-16-08-gsoc-devmessias-11.rst", "posts/2022/2022-01-31-release-announcement.rst", "posts/2022/2022-02-01-gsoc.rst", "posts/2022/2022-05-23-first-post-mohamed.rst", "posts/2022/2022-05-24-my-journey-to-gsoc-2022-shivam.rst", "posts/2022/2022-05-25-pre-gsoc-journey-praneeth.rst", "posts/2022/2022-06-08-week-1-mohamed.rst", "posts/2022/2022-06-08-week-1-praneeth.rst", "posts/2022/2022-06-15-week-2-praneeth.rst", "posts/2022/2022-06-20-week1-shivam.rst", "posts/2022/2022-06-22-week-3-praneeth.rst", "posts/2022/2022-06-28-week-2-mohamed.rst", "posts/2022/2022-06-29-week-4-praneeth.rst", "posts/2022/2022-06-29-week2-shivam.rst", "posts/2022/2022-07-04-week-3-mohamed.rst", "posts/2022/2022-07-04-week3-shivam.rst", "posts/2022/2022-07-06-week-5-praneeth.rst", "posts/2022/2022-07-11-week-4-mohamed.rst", "posts/2022/2022-07-12-week4-shivam.rst", "posts/2022/2022-07-13-week-6-praneeth.rst", "posts/2022/2022-07-19-week-5-mohamed.rst", "posts/2022/2022-07-19-week5-shivam.rst", "posts/2022/2022-07-20-week-7-praneeth.rst", "posts/2022/2022-07-25-week-6-mohamed.rst", "posts/2022/2022-07-25-week-6-shivam.rst", "posts/2022/2022-07-27-week-8-praneeth.rst", "posts/2022/2022-08-01-week-7-mohamed.rst", "posts/2022/2022-08-01-week-7-shivam.rst", "posts/2022/2022-08-03-week-9-praneeth.rst", "posts/2022/2022-08-09-week-08-shivam.rst", "posts/2022/2022-08-09-week-8-mohamed.rst", "posts/2022/2022-08-10-week-10-praneeth.rst", "posts/2022/2022-08-16-week-9-mohamed.rst", "posts/2022/2022-08-17-week-09-shivam.rst", "posts/2022/2022-08-17-week-11-praneeth.rst", "posts/2022/2022-08-23-week-10-mohamed.rst", "posts/2022/2022-08-24-week-12-praneeth.rst", "posts/2022/2022-08-25-week-10-shivam.rst", "posts/2022/2022-08-30-week-11-mohamed.rst", "posts/2022/2022-08-31-week-11-shivam.rst", "posts/2022/2022-08-31-week-13-praneeth.rst", "posts/2022/2022-09-07-week-14-praneeth.rst", "posts/2022/2022-09-08-week-12-shivam.rst", "posts/2022/2022-09-14-week-15-praneeth.rst", "posts/2022/2022-09-15-week-13-blog.rst", "posts/2022/2022-09-20-week-13-mohamed.rst", "posts/2022/2022-09-21-week-16-praneeth.rst", "posts/2022/2022-09-28-week-14-mohamed.rst", "posts/2022/2022-09-28-week-14-shivam.rst", "posts/2022/2022-09-7-week-12-mohamed.rst", "posts/2023/2023-01-24-final-report-praneeth.rst", "posts/2023/2023-01-29-final-report-mohamed.rst", "posts/2023/2023-01-29-final-report-shivam.rst", "posts/2023/2023-02-01-gsoc.rst", "posts/2023/2023-04-14-release-announcement.rst", "posts/2023/2023-05-29-week-0-joaodellagli.rst", "posts/2023/2023-06-02-week-0-praneeth.rst", "posts/2023/2023-06-02-week-0-tvcastillod.rst", "posts/2023/2023-06-03-week-1-praneeth.rst", "posts/2023/2023-06-05-week-1-joaodellagli.rst", "posts/2023/2023-06-05-week-1-tvcastillod.rst", "posts/2023/2023-06-11-week-2-praneeth.rst", "posts/2023/2023-06-12-week-2-joaodellagli.rst", "posts/2023/2023-06-12-week-2-tvcastillod.rst", "posts/2023/2023-06-17-week-3-praneeth.rst", "posts/2023/2023-06-19-week-3-joaodellagli.rst", "posts/2023/2023-06-19-week-3-tvcastillod.rst", "posts/2023/2023-06-24-week-4-praneeth.rst", "posts/2023/2023-06-26-week-4-joaodellagli.rst", "posts/2023/2023-06-27-week-4-tvcastillod.rst", "posts/2023/2023-07-01-week-5-praneeth.rst", "posts/2023/2023-07-03-week-5-joaodellagli.rst", "posts/2023/2023-07-03-week-5-tvcastillod.rst", "posts/2023/2023-07-08-week-6-praneeth.rst", "posts/2023/2023-07-10-week-6-joaodellagli.rst", "posts/2023/2023-07-10-week-6-tvcastillod.rst", "posts/2023/2023-07-15-week-7-praneeth.rst", "posts/2023/2023-07-17-week-7-joaodellagli.rst", "posts/2023/2023-07-17-week-7-tvcastillod.rst", "posts/2023/2023-07-22-week-8-praneeth.rst", "posts/2023/2023-07-24-week-8-joaodellagli.rst", "posts/2023/2023-07-25-week-8-tvcastillod.rst", "posts/2023/2023-07-29-week-9-praneeth.rst", "posts/2023/2023-07-31-week-9-joaodellagli.rst", "posts/2023/2023-07-31-week-9-tvcastillod.rst", "posts/2023/2023-08-05-week-10-praneeth.rst", "posts/2023/2023-08-07-week-10-joaodellagli.rst", "posts/2023/2023-08-08-week-10-tvcastillod.rst", "posts/2023/2023-08-12-week-11-praneeth.rst", "posts/2023/2023-08-14-week-11-joaodellagli.rst", "posts/2023/2023-08-16-week-11-tvcastillod.rst", "posts/2023/2023-08-19-week-12-praneeth.rst", "posts/2023/2023-08-21-joaodellagli-final-report.rst", "posts/2023/2023-08-21-week-12-joaodellagli.rst", "posts/2023/2023-08-24-final-report-tvcastillod.rst", "posts/2023/2023-08-24-week-12-tvcastillod.rst", "posts/2023/2023-08-25-final-report-praneeth.rst", "reference/fury.rst", "reference/fury.actor.rst", "reference/fury.actors.rst", "reference/fury.animation.rst", "reference/fury.colormap.rst", "reference/fury.convert.rst", "reference/fury.data.rst", "reference/fury.decorators.rst", "reference/fury.deprecator.rst", "reference/fury.gltf.rst", "reference/fury.io.rst", "reference/fury.layout.rst", "reference/fury.lib.rst", "reference/fury.material.rst", "reference/fury.molecular.rst", "reference/fury.pick.rst", "reference/fury.pkg_info.rst", "reference/fury.primitive.rst", "reference/fury.shaders.rst", "reference/fury.stream.rst", "reference/fury.transform.rst", "reference/fury.ui.rst", "reference/fury.utils.rst", "reference/fury.window.rst", "reference/index.rst", "release-history.rst", "release_notes/releasev0.1.0.rst", "release_notes/releasev0.1.1.rst", "release_notes/releasev0.1.3.rst", "release_notes/releasev0.1.4.rst", "release_notes/releasev0.10.0.rst", "release_notes/releasev0.2.0.rst", "release_notes/releasev0.3.0.rst", "release_notes/releasev0.4.0.rst", "release_notes/releasev0.5.1.rst", "release_notes/releasev0.6.0.rst", "release_notes/releasev0.6.1.rst", "release_notes/releasev0.7.0.rst", "release_notes/releasev0.7.1.rst", "release_notes/releasev0.8.0.rst", "release_notes/releasev0.9.0.rst", "sg_execution_times.rst", "symlink/contributing.rst", "symlink/license.rst"], "indexentries": {"__init__() (fury.actor.container method)": [[273, "fury.actor.Container.__init__", false]], "__init__() (fury.actors.odf_slicer.odfsliceractor method)": [[274, "fury.actors.odf_slicer.OdfSlicerActor.__init__", false]], "__init__() (fury.actors.peak.peakactor method)": [[274, "fury.actors.peak.PeakActor.__init__", false]], "__init__() (fury.animation.animation.animation method)": [[275, "fury.animation.animation.Animation.__init__", false]], "__init__() (fury.animation.animation.cameraanimation method)": [[275, "fury.animation.animation.CameraAnimation.__init__", false]], "__init__() (fury.animation.timeline.timeline method)": [[275, "fury.animation.timeline.Timeline.__init__", false]], "__init__() (fury.deprecator.argsdeprecationwarning method)": [[280, "fury.deprecator.ArgsDeprecationWarning.__init__", false]], "__init__() (fury.deprecator.expireddeprecationerror method)": [[280, "fury.deprecator.ExpiredDeprecationError.__init__", false]], "__init__() (fury.gltf.gltf method)": [[281, "fury.gltf.glTF.__init__", false]], "__init__() (fury.layout.gridlayout method)": [[283, "fury.layout.GridLayout.__init__", false]], "__init__() (fury.layout.horizontallayout method)": [[283, "fury.layout.HorizontalLayout.__init__", false]], "__init__() (fury.layout.layout method)": [[283, "fury.layout.Layout.__init__", false]], "__init__() (fury.layout.verticallayout method)": [[283, "fury.layout.VerticalLayout.__init__", false]], "__init__() (fury.layout.xlayout method)": [[283, "fury.layout.XLayout.__init__", false]], "__init__() (fury.layout.ylayout method)": [[283, "fury.layout.YLayout.__init__", false]], "__init__() (fury.layout.zlayout method)": [[283, "fury.layout.ZLayout.__init__", false]], "__init__() (fury.molecular.molecule method)": [[286, "fury.molecular.Molecule.__init__", false]], "__init__() (fury.molecular.ptable method)": [[286, "fury.molecular.PTable.__init__", false]], "__init__() (fury.pick.pickingmanager method)": [[287, "fury.pick.PickingManager.__init__", false]], "__init__() (fury.pick.selectionmanager method)": [[287, "fury.pick.SelectionManager.__init__", false]], "__init__() (fury.stream.client.furystreamclient method)": [[291, "fury.stream.client.FuryStreamClient.__init__", false]], "__init__() (fury.stream.client.furystreaminteraction method)": [[291, "fury.stream.client.FuryStreamInteraction.__init__", false]], "__init__() (fury.stream.server.main.rtcserver method)": [[291, "fury.stream.server.main.RTCServer.__init__", false]], "__init__() (fury.stream.tools.arraycircularqueue method)": [[291, "fury.stream.tools.ArrayCircularQueue.__init__", false]], "__init__() (fury.stream.tools.genericcircularqueue method)": [[291, "fury.stream.tools.GenericCircularQueue.__init__", false]], "__init__() (fury.stream.tools.genericimagebuffermanager method)": [[291, "fury.stream.tools.GenericImageBufferManager.__init__", false]], "__init__() (fury.stream.tools.genericmultidimensionalbuffer method)": [[291, "fury.stream.tools.GenericMultiDimensionalBuffer.__init__", false]], "__init__() (fury.stream.tools.intervaltimer method)": [[291, "fury.stream.tools.IntervalTimer.__init__", false]], "__init__() (fury.stream.tools.intervaltimerthreading method)": [[291, "fury.stream.tools.IntervalTimerThreading.__init__", false]], "__init__() (fury.stream.tools.rawarrayimagebuffermanager method)": [[291, "fury.stream.tools.RawArrayImageBufferManager.__init__", false]], "__init__() (fury.stream.tools.rawarraymultidimensionalbuffer method)": [[291, "fury.stream.tools.RawArrayMultiDimensionalBuffer.__init__", false]], "__init__() (fury.stream.tools.sharedmemcircularqueue method)": [[291, "fury.stream.tools.SharedMemCircularQueue.__init__", false]], "__init__() (fury.stream.tools.sharedmemimagebuffermanager method)": [[291, "fury.stream.tools.SharedMemImageBufferManager.__init__", false]], "__init__() (fury.stream.tools.sharedmemmultidimensionalbuffer method)": [[291, "fury.stream.tools.SharedMemMultiDimensionalBuffer.__init__", false]], "__init__() (fury.stream.widget.widget method)": [[291, "fury.stream.widget.Widget.__init__", false]], "__init__() (fury.ui.containers.gridui method)": [[293, "fury.ui.containers.GridUI.__init__", false]], "__init__() (fury.ui.containers.imagecontainer2d method)": [[293, "fury.ui.containers.ImageContainer2D.__init__", false]], "__init__() (fury.ui.containers.panel2d method)": [[293, "fury.ui.containers.Panel2D.__init__", false]], "__init__() (fury.ui.containers.tabpanel2d method)": [[293, "fury.ui.containers.TabPanel2D.__init__", false]], "__init__() (fury.ui.containers.tabui method)": [[293, "fury.ui.containers.TabUI.__init__", false]], "__init__() (fury.ui.core.button2d method)": [[293, "fury.ui.core.Button2D.__init__", false]], "__init__() (fury.ui.core.disk2d method)": [[293, "fury.ui.core.Disk2D.__init__", false]], "__init__() (fury.ui.core.rectangle2d method)": [[293, "fury.ui.core.Rectangle2D.__init__", false]], "__init__() (fury.ui.core.textblock2d method)": [[293, "fury.ui.core.TextBlock2D.__init__", false]], "__init__() (fury.ui.core.ui method)": [[293, "fury.ui.core.UI.__init__", false]], "__init__() (fury.ui.elements.card2d method)": [[293, "fury.ui.elements.Card2D.__init__", false]], "__init__() (fury.ui.elements.checkbox method)": [[293, "fury.ui.elements.Checkbox.__init__", false]], "__init__() (fury.ui.elements.combobox2d method)": [[293, "fury.ui.elements.ComboBox2D.__init__", false]], "__init__() (fury.ui.elements.drawpanel method)": [[293, "fury.ui.elements.DrawPanel.__init__", false]], "__init__() (fury.ui.elements.drawshape method)": [[293, "fury.ui.elements.DrawShape.__init__", false]], "__init__() (fury.ui.elements.filemenu2d method)": [[293, "fury.ui.elements.FileMenu2D.__init__", false]], "__init__() (fury.ui.elements.linedoubleslider2d method)": [[293, "fury.ui.elements.LineDoubleSlider2D.__init__", false]], "__init__() (fury.ui.elements.lineslider2d method)": [[293, "fury.ui.elements.LineSlider2D.__init__", false]], "__init__() (fury.ui.elements.listbox2d method)": [[293, "fury.ui.elements.ListBox2D.__init__", false]], "__init__() (fury.ui.elements.listboxitem2d method)": [[293, "fury.ui.elements.ListBoxItem2D.__init__", false]], "__init__() (fury.ui.elements.option method)": [[293, "fury.ui.elements.Option.__init__", false]], "__init__() (fury.ui.elements.playbackpanel method)": [[293, "fury.ui.elements.PlaybackPanel.__init__", false]], "__init__() (fury.ui.elements.radiobutton method)": [[293, "fury.ui.elements.RadioButton.__init__", false]], "__init__() (fury.ui.elements.rangeslider method)": [[293, "fury.ui.elements.RangeSlider.__init__", false]], "__init__() (fury.ui.elements.ringslider2d method)": [[293, "fury.ui.elements.RingSlider2D.__init__", false]], "__init__() (fury.ui.elements.spinbox method)": [[293, "fury.ui.elements.SpinBox.__init__", false]], "__init__() (fury.ui.elements.textbox2d method)": [[293, "fury.ui.elements.TextBox2D.__init__", false]], "__init__() (fury.window.scene method)": [[295, "fury.window.Scene.__init__", false]], "__init__() (fury.window.showmanager method)": [[295, "fury.window.ShowManager.__init__", false]], "_cqueue() (in module fury.stream.constants)": [[291, "fury.stream.constants._CQUEUE", false]], "_cqueue_event_ids() (in module fury.stream.constants)": [[291, "fury.stream.constants._CQUEUE_EVENT_IDs", false]], "_cqueue_index_info() (in module fury.stream.constants)": [[291, "fury.stream.constants._CQUEUE_INDEX_INFO", false]], "_leading_white() (in module fury.deprecator)": [[280, "fury.deprecator._LEADING_WHITE", false]], "_tuple2axes() (in module fury.transform)": [[292, "fury.transform._TUPLE2AXES", false]], "active_color (fury.ui.elements.linedoubleslider2d attribute)": [[293, "fury.ui.elements.LineDoubleSlider2D.active_color", false]], "active_color (fury.ui.elements.lineslider2d attribute)": [[293, "fury.ui.elements.LineSlider2D.active_color", false]], "active_color (fury.ui.elements.ringslider2d attribute)": [[293, "fury.ui.elements.RingSlider2D.active_color", false]], "actor (fury.ui.core.textblock2d attribute)": [[293, "fury.ui.core.TextBlock2D.actor", false]], "actor (fury.ui.elements.textbox2d attribute)": [[293, "fury.ui.elements.TextBox2D.actor", false]], "actor (in module fury.lib)": [[284, "fury.lib.Actor", false]], "actor2d (in module fury.lib)": [[284, "fury.lib.Actor2D", false]], "actors (fury.animation.animation.animation attribute)": [[275, "fury.animation.animation.Animation.actors", false]], "actors (fury.animation.animation.animation property)": [[275, "id0", false]], "actors (fury.ui.core.ui property)": [[293, "fury.ui.core.UI.actors", false]], "actors() (fury.gltf.gltf method)": [[281, "fury.gltf.glTF.actors", false]], "add() (fury.actor.container method)": [[273, "fury.actor.Container.add", false]], "add() (fury.animation.animation.animation method)": [[275, "fury.animation.animation.Animation.add", false]], "add() (fury.window.scene method)": [[295, "fury.window.Scene.add", false]], "add_actor() (fury.animation.animation.animation method)": [[275, "fury.animation.animation.Animation.add_actor", false]], "add_animation() (fury.animation.timeline.timeline method)": [[275, "fury.animation.timeline.Timeline.add_animation", false]], "add_animation() (fury.window.showmanager method)": [[295, "fury.window.ShowManager.add_animation", false]], "add_atom() (in module fury.molecular)": [[286, "fury.molecular.add_atom", false]], "add_bond() (in module fury.molecular)": [[286, "fury.molecular.add_bond", false]], "add_callback() (fury.ui.core.ui method)": [[293, "fury.ui.core.UI.add_callback", false]], "add_character() (fury.ui.elements.textbox2d method)": [[293, "fury.ui.elements.TextBox2D.add_character", false]], "add_child_animation() (fury.animation.animation.animation method)": [[275, "fury.animation.animation.Animation.add_child_animation", false]], "add_element() (fury.ui.containers.panel2d method)": [[293, "fury.ui.containers.Panel2D.add_element", false]], "add_element() (fury.ui.containers.tabpanel2d method)": [[293, "fury.ui.containers.TabPanel2D.add_element", false]], "add_element() (fury.ui.containers.tabui method)": [[293, "fury.ui.containers.TabUI.add_element", false]], "add_iren_callback() (fury.window.showmanager method)": [[295, "fury.window.ShowManager.add_iren_callback", false]], "add_polydata_numeric_field() (in module fury.utils)": [[294, "fury.utils.add_polydata_numeric_field", false]], "add_shader_callback() (in module fury.shaders.base)": [[290, "fury.shaders.base.add_shader_callback", false]], "add_static_actor() (fury.animation.animation.animation method)": [[275, "fury.animation.animation.Animation.add_static_actor", false]], "add_timer_callback() (fury.window.showmanager method)": [[295, "fury.window.ShowManager.add_timer_callback", false]], "add_to_scene() (fury.actor.container method)": [[273, "fury.actor.Container.add_to_scene", false]], "add_to_scene() (fury.animation.animation.animation method)": [[275, "fury.animation.animation.Animation.add_to_scene", false]], "add_to_scene() (fury.animation.timeline.timeline method)": [[275, "fury.animation.timeline.Timeline.add_to_scene", false]], "add_to_scene() (fury.ui.core.ui method)": [[293, "fury.ui.core.UI.add_to_scene", false]], "add_to_scene_at() (fury.animation.animation.animation method)": [[275, "fury.animation.animation.Animation.add_to_scene_at", false]], "add_update_callback() (fury.animation.animation.animation method)": [[275, "fury.animation.animation.Animation.add_update_callback", false]], "add_window_callback() (fury.window.showmanager method)": [[295, "fury.window.ShowManager.add_window_callback", false]], "addposition() (fury.actor.container method)": [[273, "fury.actor.Container.AddPosition", false]], "algorithmoutput (in module fury.lib)": [[284, "fury.lib.AlgorithmOutput", false]], "alignment (fury.ui.containers.panel2d attribute)": [[293, "fury.ui.containers.Panel2D.alignment", false]], "analyze_scene() (in module fury.window)": [[295, "fury.window.analyze_scene", false]], "analyze_snapshot() (in module fury.window)": [[295, "fury.window.analyze_snapshot", false]], "anchor (fury.actor.container attribute)": [[273, "fury.actor.Container.anchor", false]], "angle (fury.ui.elements.ringslider2d property)": [[293, "fury.ui.elements.RingSlider2D.angle", false]], "animation (class in fury.animation.animation)": [[275, "fury.animation.animation.Animation", false]], "animations (fury.animation.timeline.timeline attribute)": [[275, "fury.animation.timeline.Timeline.animations", false]], "animations (fury.animation.timeline.timeline property)": [[275, "id4", false]], "animations (fury.window.showmanager property)": [[295, "fury.window.ShowManager.animations", false]], "antialiasing() (in module fury.window)": [[295, "fury.window.antialiasing", false]], "anticlockwise_rotation_x (fury.ui.containers.gridui attribute)": [[293, "fury.ui.containers.GridUI.ANTICLOCKWISE_ROTATION_X", false]], "anticlockwise_rotation_y (fury.ui.containers.gridui attribute)": [[293, "fury.ui.containers.GridUI.ANTICLOCKWISE_ROTATION_Y", false]], "append_item() (fury.ui.elements.combobox2d method)": [[293, "fury.ui.elements.ComboBox2D.append_item", false]], "apply() (fury.layout.layout method)": [[283, "fury.layout.Layout.apply", false]], "apply() (fury.layout.xlayout method)": [[283, "fury.layout.XLayout.apply", false]], "apply() (fury.layout.ylayout method)": [[283, "fury.layout.YLayout.apply", false]], "apply() (fury.layout.zlayout method)": [[283, "fury.layout.ZLayout.apply", false]], "apply_affine() (in module fury.utils)": [[294, "fury.utils.apply_affine", false]], "apply_affine_to_actor() (in module fury.utils)": [[294, "fury.utils.apply_affine_to_actor", false]], "apply_morph_vertices() (fury.gltf.gltf method)": [[281, "fury.gltf.glTF.apply_morph_vertices", false]], "apply_skin_matrix() (fury.gltf.gltf method)": [[281, "fury.gltf.glTF.apply_skin_matrix", false]], "apply_transformation() (in module fury.transform)": [[292, "fury.transform.apply_transformation", false]], "argsdeprecationwarning (class in fury.deprecator)": [[280, "fury.deprecator.ArgsDeprecationWarning", false]], "array_from_actor() (in module fury.utils)": [[294, "fury.utils.array_from_actor", false]], "arraycircularqueue (class in fury.stream.tools)": [[291, "fury.stream.tools.ArrayCircularQueue", false]], "arrow() (in module fury.actor)": [[273, "fury.actor.arrow", false]], "arrowsource (in module fury.lib)": [[284, "fury.lib.ArrowSource", false]], "asbytes() (in module fury.utils)": [[294, "fury.utils.asbytes", false]], "assembly (in module fury.lib)": [[284, "fury.lib.Assembly", false]], "async_get_jpeg() (fury.stream.tools.genericimagebuffermanager method)": [[291, "fury.stream.tools.GenericImageBufferManager.async_get_jpeg", false]], "atom_color() (fury.molecular.ptable method)": [[286, "fury.molecular.PTable.atom_color", false]], "atomic_number() (fury.molecular.ptable method)": [[286, "fury.molecular.PTable.atomic_number", false]], "atomic_radius() (fury.molecular.ptable method)": [[286, "fury.molecular.PTable.atomic_radius", false]], "atomic_symbol() (fury.molecular.ptable method)": [[286, "fury.molecular.PTable.atomic_symbol", false]], "attribute_to_actor() (in module fury.shaders.base)": [[290, "fury.shaders.base.attribute_to_actor", false]], "auto_font_scale (fury.ui.core.textblock2d attribute)": [[293, "fury.ui.core.TextBlock2D.auto_font_scale", false]], "auto_font_scale (fury.ui.core.textblock2d property)": [[293, "id4", false]], "axes() (in module fury.actor)": [[273, "fury.actor.axes", false]], "azimuth() (fury.window.scene method)": [[295, "fury.window.Scene.azimuth", false]], "background() (fury.window.scene method)": [[295, "fury.window.Scene.background", false]], "background_color (fury.ui.core.textblock2d property)": [[293, "fury.ui.core.TextBlock2D.background_color", false]], "ball_stick() (in module fury.molecular)": [[286, "fury.molecular.ball_stick", false]], "base (in module fury.colormap)": [[276, "fury.colormap.base", false], [276, "id15", false]], "bg_color (fury.ui.core.textblock2d attribute)": [[293, "fury.ui.core.TextBlock2D.bg_color", false]], "billboard() (in module fury.actor)": [[273, "fury.actor.billboard", false]], "bmpreader (in module fury.lib)": [[284, "fury.lib.BMPReader", false]], "bmpwriter (in module fury.lib)": [[284, "fury.lib.BMPWriter", false]], "body (fury.ui.elements.card2d property)": [[293, "fury.ui.elements.Card2D.body", false]], "body_box (fury.ui.elements.card2d attribute)": [[293, "fury.ui.elements.Card2D.body_box", false]], "bold (fury.ui.core.textblock2d attribute)": [[293, "fury.ui.core.TextBlock2D.bold", false]], "bold (fury.ui.core.textblock2d property)": [[293, "id5", false]], "border_color (fury.ui.containers.panel2d property)": [[293, "fury.ui.containers.Panel2D.border_color", false]], "border_width (fury.ui.containers.panel2d property)": [[293, "fury.ui.containers.Panel2D.border_width", false]], "bottom_disk_ratio (fury.ui.elements.linedoubleslider2d property)": [[293, "fury.ui.elements.LineDoubleSlider2D.bottom_disk_ratio", false]], "bottom_disk_value (fury.ui.elements.linedoubleslider2d property)": [[293, "fury.ui.elements.LineDoubleSlider2D.bottom_disk_value", false]], "bottom_y_position (fury.ui.elements.linedoubleslider2d property)": [[293, "fury.ui.elements.LineDoubleSlider2D.bottom_y_position", false]], "bottom_y_position (fury.ui.elements.lineslider2d property)": [[293, "fury.ui.elements.LineSlider2D.bottom_y_position", false]], "bounding_box() (in module fury.molecular)": [[286, "fury.molecular.bounding_box", false]], "box() (in module fury.actor)": [[273, "fury.actor.box", false]], "boys2rgb() (in module fury.colormap)": [[276, "fury.colormap.boys2rgb", false]], "buffer (fury.stream.tools.genericmultidimensionalbuffer property)": [[291, "fury.stream.tools.GenericMultiDimensionalBuffer.buffer", false]], "buffer_index (fury.stream.tools.genericimagebuffermanager property)": [[291, "fury.stream.tools.GenericImageBufferManager.buffer_index", false]], "butterflysubdivisionfilter (in module fury.lib)": [[284, "fury.lib.ButterflySubdivisionFilter", false]], "button2d (class in fury.ui.core)": [[293, "fury.ui.core.Button2D", false]], "cal_bounding_box() (fury.ui.elements.drawshape method)": [[293, "fury.ui.elements.DrawShape.cal_bounding_box", false]], "cal_bounding_box_2d() (in module fury.ui.helpers)": [[293, "fury.ui.helpers.cal_bounding_box_2d", false]], "cal_min_boundary_distance() (fury.ui.elements.drawpanel method)": [[293, "fury.ui.elements.DrawPanel.cal_min_boundary_distance", false]], "cal_size_from_message() (fury.ui.core.textblock2d method)": [[293, "fury.ui.core.TextBlock2D.cal_size_from_message", false]], "callback_stream_client() (in module fury.stream.client)": [[291, "fury.stream.client.callback_stream_client", false]], "camera (fury.animation.animation.cameraanimation attribute)": [[275, "fury.animation.animation.CameraAnimation.camera", false]], "camera (fury.animation.animation.cameraanimation property)": [[275, "id3", false]], "camera (in module fury.lib)": [[284, "fury.lib.Camera", false]], "camera() (fury.window.scene method)": [[295, "fury.window.Scene.camera", false]], "camera_direction() (fury.window.scene method)": [[295, "fury.window.Scene.camera_direction", false]], "camera_info() (fury.window.scene method)": [[295, "fury.window.Scene.camera_info", false]], "cameraanimation (class in fury.animation.animation)": [[275, "fury.animation.animation.CameraAnimation", false]], "card2d (class in fury.ui.elements)": [[293, "fury.ui.elements.Card2D", false]], "caret_pos (fury.ui.elements.textbox2d attribute)": [[293, "fury.ui.elements.TextBox2D.caret_pos", false]], "cart2sphere() (in module fury.transform)": [[292, "fury.transform.cart2sphere", false]], "cc() (in module fury.colormap)": [[276, "fury.colormap.cc", false]], "cellarray (in module fury.lib)": [[284, "fury.lib.CellArray", false]], "cellpicker (in module fury.lib)": [[284, "fury.lib.CellPicker", false]], "center (fury.ui.core.ui attribute)": [[293, "fury.ui.core.UI.center", false]], "center (fury.ui.core.ui property)": [[293, "id0", false]], "center (fury.ui.elements.drawshape property)": [[293, "fury.ui.elements.DrawShape.center", false]], "change_vertices_order() (in module fury.utils)": [[294, "fury.utils.change_vertices_order", false]], "check_overflow() (in module fury.ui.helpers)": [[293, "fury.ui.helpers.check_overflow", false]], "check_port_is_available() (in module fury.stream.widget)": [[291, "fury.stream.widget.check_port_is_available", false]], "check_sha() (in module fury.data.fetcher)": [[278, "fury.data.fetcher.check_sha", false]], "checkbox (class in fury.ui.elements)": [[293, "fury.ui.elements.Checkbox", false]], "child_animations (fury.animation.animation.animation property)": [[275, "fury.animation.animation.Animation.child_animations", false]], "clamp_mouse_position() (fury.ui.elements.drawpanel method)": [[293, "fury.ui.elements.DrawPanel.clamp_mouse_position", false]], "clamp_position() (fury.ui.elements.drawshape method)": [[293, "fury.ui.elements.DrawShape.clamp_position", false]], "cleanpolydata (in module fury.lib)": [[284, "fury.lib.CleanPolyData", false]], "cleanup() (fury.stream.client.furystreamclient method)": [[291, "fury.stream.client.FuryStreamClient.cleanup", false]], "cleanup() (fury.stream.client.furystreaminteraction method)": [[291, "fury.stream.client.FuryStreamInteraction.cleanup", false]], "cleanup() (fury.stream.tools.arraycircularqueue method)": [[291, "fury.stream.tools.ArrayCircularQueue.cleanup", false]], "cleanup() (fury.stream.tools.genericcircularqueue method)": [[291, "fury.stream.tools.GenericCircularQueue.cleanup", false]], "cleanup() (fury.stream.tools.genericimagebuffermanager method)": [[291, "fury.stream.tools.GenericImageBufferManager.cleanup", false]], "cleanup() (fury.stream.tools.genericmultidimensionalbuffer method)": [[291, "fury.stream.tools.GenericMultiDimensionalBuffer.cleanup", false]], "cleanup() (fury.stream.tools.rawarrayimagebuffermanager method)": [[291, "fury.stream.tools.RawArrayImageBufferManager.cleanup", false]], "cleanup() (fury.stream.tools.rawarraymultidimensionalbuffer method)": [[291, "fury.stream.tools.RawArrayMultiDimensionalBuffer.cleanup", false]], "cleanup() (fury.stream.tools.sharedmemcircularqueue method)": [[291, "fury.stream.tools.SharedMemCircularQueue.cleanup", false]], "cleanup() (fury.stream.tools.sharedmemimagebuffermanager method)": [[291, "fury.stream.tools.SharedMemImageBufferManager.cleanup", false]], "cleanup() (fury.stream.tools.sharedmemmultidimensionalbuffer method)": [[291, "fury.stream.tools.SharedMemMultiDimensionalBuffer.cleanup", false]], "cleanup() (fury.stream.widget.widget method)": [[291, "fury.stream.widget.Widget.cleanup", false]], "clear() (fury.actor.container method)": [[273, "fury.actor.Container.clear", false]], "clear() (fury.window.scene method)": [[295, "fury.window.Scene.clear", false]], "clear_selection() (fury.ui.elements.listbox2d method)": [[293, "fury.ui.elements.ListBox2D.clear_selection", false]], "clip_overflow() (in module fury.ui.helpers)": [[293, "fury.ui.helpers.clip_overflow", false]], "clockwise_rotation_x (fury.ui.containers.gridui attribute)": [[293, "fury.ui.containers.GridUI.CLOCKWISE_ROTATION_X", false]], "clockwise_rotation_y (fury.ui.containers.gridui attribute)": [[293, "fury.ui.containers.GridUI.CLOCKWISE_ROTATION_Y", false]], "cmp_pkg_version() (in module fury.deprecator)": [[280, "fury.deprecator.cmp_pkg_version", false]], "collapse_tab_ui() (fury.ui.containers.tabui method)": [[293, "fury.ui.containers.TabUI.collapse_tab_ui", false]], "color (fury.ui.containers.panel2d property)": [[293, "fury.ui.containers.Panel2D.color", false]], "color (fury.ui.containers.tabpanel2d property)": [[293, "fury.ui.containers.TabPanel2D.color", false]], "color (fury.ui.core.button2d property)": [[293, "fury.ui.core.Button2D.color", false]], "color (fury.ui.core.disk2d property)": [[293, "fury.ui.core.Disk2D.color", false]], "color (fury.ui.core.rectangle2d property)": [[293, "fury.ui.core.Rectangle2D.color", false]], "color (fury.ui.core.textblock2d attribute)": [[293, "fury.ui.core.TextBlock2D.color", false]], "color (fury.ui.core.textblock2d property)": [[293, "id6", false]], "color (fury.ui.elements.card2d property)": [[293, "fury.ui.elements.Card2D.color", false]], "color_check() (in module fury.utils)": [[294, "fury.utils.color_check", false]], "color_interpolator() (in module fury.animation.interpolator)": [[275, "fury.animation.interpolator.color_interpolator", false]], "colormap_lookup_table() (in module fury.colormap)": [[276, "fury.colormap.colormap_lookup_table", false]], "colors_from_actor() (in module fury.utils)": [[294, "fury.utils.colors_from_actor", false]], "combobox2d (class in fury.ui.elements)": [[293, "fury.ui.elements.ComboBox2D", false]], "command (in module fury.lib)": [[284, "fury.lib.Command", false]], "command_string (fury.stream.widget.widget property)": [[291, "fury.stream.widget.Widget.command_string", false]], "compose_shader() (in module fury.shaders.base)": [[290, "fury.shaders.base.compose_shader", false]], "compute_bonding() (in module fury.molecular)": [[286, "fury.molecular.compute_bonding", false]], "compute_bounds() (in module fury.utils)": [[294, "fury.utils.compute_bounds", false]], "compute_positions() (fury.layout.gridlayout method)": [[283, "fury.layout.GridLayout.compute_positions", false]], "compute_positions() (fury.layout.horizontallayout method)": [[283, "fury.layout.HorizontalLayout.compute_positions", false]], "compute_positions() (fury.layout.layout method)": [[283, "fury.layout.Layout.compute_positions", false]], "compute_positions() (fury.layout.verticallayout method)": [[283, "fury.layout.VerticalLayout.compute_positions", false]], "compute_positions() (fury.layout.xlayout method)": [[283, "fury.layout.XLayout.compute_positions", false]], "compute_positions() (fury.layout.ylayout method)": [[283, "fury.layout.YLayout.compute_positions", false]], "compute_positions() (fury.layout.zlayout method)": [[283, "fury.layout.ZLayout.compute_positions", false]], "compute_sizes() (fury.layout.gridlayout method)": [[283, "fury.layout.GridLayout.compute_sizes", false]], "cone() (in module fury.actor)": [[273, "fury.actor.cone", false]], "conesource (in module fury.lib)": [[284, "fury.lib.ConeSource", false]], "container (class in fury.actor)": [[273, "fury.actor.Container", false]], "content_panel (fury.ui.containers.tabpanel2d attribute)": [[293, "fury.ui.containers.TabPanel2D.content_panel", false]], "contour_from_label() (in module fury.actor)": [[273, "fury.actor.contour_from_label", false]], "contour_from_roi() (in module fury.actor)": [[273, "fury.actor.contour_from_roi", false]], "contourfilter (in module fury.lib)": [[284, "fury.lib.ContourFilter", false]], "coord_to_ratio() (fury.ui.elements.linedoubleslider2d method)": [[293, "fury.ui.elements.LineDoubleSlider2D.coord_to_ratio", false]], "copyfileobj_withprogress() (in module fury.data.fetcher)": [[278, "fury.data.fetcher.copyfileobj_withprogress", false]], "create_colormap() (in module fury.colormap)": [[276, "fury.colormap.create_colormap", false]], "create_mem_resource() (fury.stream.tools.arraycircularqueue method)": [[291, "fury.stream.tools.ArrayCircularQueue.create_mem_resource", false]], "create_mem_resource() (fury.stream.tools.genericcircularqueue method)": [[291, "fury.stream.tools.GenericCircularQueue.create_mem_resource", false]], "create_mem_resource() (fury.stream.tools.genericimagebuffermanager method)": [[291, "fury.stream.tools.GenericImageBufferManager.create_mem_resource", false]], "create_mem_resource() (fury.stream.tools.genericmultidimensionalbuffer method)": [[291, "fury.stream.tools.GenericMultiDimensionalBuffer.create_mem_resource", false]], "create_mem_resource() (fury.stream.tools.rawarrayimagebuffermanager method)": [[291, "fury.stream.tools.RawArrayImageBufferManager.create_mem_resource", false]], "create_mem_resource() (fury.stream.tools.rawarraymultidimensionalbuffer method)": [[291, "fury.stream.tools.RawArrayMultiDimensionalBuffer.create_mem_resource", false]], "create_mem_resource() (fury.stream.tools.sharedmemcircularqueue method)": [[291, "fury.stream.tools.SharedMemCircularQueue.create_mem_resource", false]], "create_mem_resource() (fury.stream.tools.sharedmemimagebuffermanager method)": [[291, "fury.stream.tools.SharedMemImageBufferManager.create_mem_resource", false]], "create_mem_resource() (fury.stream.tools.sharedmemmultidimensionalbuffer method)": [[291, "fury.stream.tools.SharedMemMultiDimensionalBuffer.create_mem_resource", false]], "cross_section (fury.actors.peak.peakactor property)": [[274, "fury.actors.peak.PeakActor.cross_section", false]], "ctypes (in module fury.colormap)": [[276, "fury.colormap.ctypes", false], [276, "id14", false]], "cube() (in module fury.actor)": [[273, "fury.actor.cube", false]], "cubic_bezier_interpolator() (in module fury.animation.interpolator)": [[275, "fury.animation.interpolator.cubic_bezier_interpolator", false]], "cubic_spline_interpolator() (in module fury.animation.interpolator)": [[275, "fury.animation.interpolator.cubic_spline_interpolator", false]], "current_mode (fury.ui.elements.drawpanel property)": [[293, "fury.ui.elements.DrawPanel.current_mode", false]], "current_time (fury.ui.elements.playbackpanel property)": [[293, "fury.ui.elements.PlaybackPanel.current_time", false]], "current_time_str (fury.ui.elements.playbackpanel property)": [[293, "fury.ui.elements.PlaybackPanel.current_time_str", false]], "current_timestamp (fury.animation.animation.animation property)": [[275, "fury.animation.animation.Animation.current_timestamp", false]], "current_timestamp (fury.animation.timeline.timeline property)": [[275, "fury.animation.timeline.Timeline.current_timestamp", false]], "cylinder() (in module fury.actor)": [[273, "fury.actor.cylinder", false]], "cylindersource (in module fury.lib)": [[284, "fury.lib.CylinderSource", false]], "data (in module fury.colormap)": [[276, "fury.colormap.data", false], [276, "id2", false]], "data_dir() (in module fury.data)": [[278, "fury.data.DATA_DIR", false]], "dataobject (in module fury.lib)": [[284, "fury.lib.DataObject", false], [284, "id0", false]], "datasetattributes (in module fury.lib)": [[284, "fury.lib.DataSetAttributes", false]], "datasetmapper (in module fury.lib)": [[284, "fury.lib.DataSetMapper", false]], "decrement() (fury.ui.elements.spinbox method)": [[293, "fury.ui.elements.SpinBox.decrement", false]], "decrement_callback() (fury.ui.elements.spinbox method)": [[293, "fury.ui.elements.SpinBox.decrement_callback", false]], "deep_copy_molecule() (in module fury.molecular)": [[286, "fury.molecular.deep_copy_molecule", false]], "default_color (fury.ui.elements.linedoubleslider2d attribute)": [[293, "fury.ui.elements.LineDoubleSlider2D.default_color", false]], "default_color (fury.ui.elements.lineslider2d attribute)": [[293, "fury.ui.elements.LineSlider2D.default_color", false]], "default_color (fury.ui.elements.ringslider2d attribute)": [[293, "fury.ui.elements.RingSlider2D.default_color", false]], "deprecate_with_version() (in module fury.deprecator)": [[280, "fury.deprecator.deprecate_with_version", false]], "deprecated_params() (in module fury.deprecator)": [[280, "fury.deprecator.deprecated_params", false]], "dequeue() (fury.stream.tools.arraycircularqueue method)": [[291, "fury.stream.tools.ArrayCircularQueue.dequeue", false]], "dequeue() (fury.stream.tools.genericcircularqueue method)": [[291, "fury.stream.tools.GenericCircularQueue.dequeue", false]], "dequeue() (fury.stream.tools.sharedmemcircularqueue method)": [[291, "fury.stream.tools.SharedMemCircularQueue.dequeue", false]], "deselect() (fury.ui.elements.listboxitem2d method)": [[293, "fury.ui.elements.ListBoxItem2D.deselect", false]], "deselect() (fury.ui.elements.option method)": [[293, "fury.ui.elements.Option.deselect", false]], "destroy_timer() (fury.window.showmanager method)": [[295, "fury.window.ShowManager.destroy_timer", false]], "destroy_timers() (fury.window.showmanager method)": [[295, "fury.window.ShowManager.destroy_timers", false]], "directory_click_callback() (fury.ui.elements.filemenu2d method)": [[293, "fury.ui.elements.FileMenu2D.directory_click_callback", false]], "disable_warnings() (in module fury)": [[272, "fury.disable_warnings", false]], "disk() (in module fury.actor)": [[273, "fury.actor.disk", false]], "disk2d (class in fury.ui.core)": [[293, "fury.ui.core.Disk2D", false]], "disksource (in module fury.lib)": [[284, "fury.lib.DiskSource", false]], "display() (fury.actors.odf_slicer.odfsliceractor method)": [[274, "fury.actors.odf_slicer.OdfSlicerActor.display", false]], "display() (fury.stream.widget.widget method)": [[291, "fury.stream.widget.Widget.display", false]], "display_cross_section() (fury.actors.peak.peakactor method)": [[274, "fury.actors.peak.PeakActor.display_cross_section", false]], "display_extent() (fury.actors.odf_slicer.odfsliceractor method)": [[274, "fury.actors.odf_slicer.OdfSlicerActor.display_extent", false]], "display_extent() (fury.actors.peak.peakactor method)": [[274, "fury.actors.peak.PeakActor.display_extent", false]], "distinguishable_colormap() (in module fury.colormap)": [[276, "fury.colormap.distinguishable_colormap", false]], "doctest_skip_parser() (in module fury.decorators)": [[279, "fury.decorators.doctest_skip_parser", false]], "dolly() (fury.window.scene method)": [[295, "fury.window.Scene.dolly", false]], "dot() (in module fury.actor)": [[273, "fury.actor.dot", false]], "dots() (in module fury.actor)": [[273, "fury.actor.dots", false]], "double_cone() (in module fury.actors.tensor)": [[274, "fury.actors.tensor.double_cone", false]], "doublearray (in module fury.lib)": [[284, "fury.lib.DoubleArray", false]], "down_button_callback() (fury.ui.elements.listbox2d method)": [[293, "fury.ui.elements.ListBox2D.down_button_callback", false]], "draw_shape() (fury.ui.elements.drawpanel method)": [[293, "fury.ui.elements.DrawPanel.draw_shape", false]], "drawpanel (class in fury.ui.elements)": [[293, "fury.ui.elements.DrawPanel", false]], "drawshape (class in fury.ui.elements)": [[293, "fury.ui.elements.DrawShape", false]], "drop_down_button (fury.ui.elements.combobox2d attribute)": [[293, "fury.ui.elements.ComboBox2D.drop_down_button", false]], "drop_down_menu (fury.ui.elements.combobox2d attribute)": [[293, "fury.ui.elements.ComboBox2D.drop_down_menu", false]], "dtype (in module fury.colormap)": [[276, "fury.colormap.dtype", false], [276, "id3", false]], "duration (fury.animation.animation.animation property)": [[275, "fury.animation.animation.Animation.duration", false]], "duration (fury.animation.timeline.timeline property)": [[275, "fury.animation.timeline.Timeline.duration", false]], "dynamic_bbox (fury.ui.core.textblock2d attribute)": [[293, "fury.ui.core.TextBlock2D.dynamic_bbox", false]], "dynamic_bbox (fury.ui.core.textblock2d property)": [[293, "id7", false]], "edit_mode() (fury.ui.elements.textbox2d method)": [[293, "fury.ui.elements.TextBox2D.edit_mode", false]], "element (fury.ui.elements.listboxitem2d property)": [[293, "fury.ui.elements.ListBoxItem2D.element", false]], "element_name() (fury.molecular.ptable method)": [[286, "fury.molecular.PTable.element_name", false]], "elevation() (fury.window.scene method)": [[295, "fury.window.Scene.elevation", false]], "ellipsoid() (in module fury.actor)": [[273, "fury.actor.ellipsoid", false]], "enable_stereo() (in module fury.window)": [[295, "fury.window.enable_stereo", false]], "enable_warnings() (in module fury)": [[272, "fury.enable_warnings", false]], "enqueue() (fury.stream.tools.arraycircularqueue method)": [[291, "fury.stream.tools.ArrayCircularQueue.enqueue", false]], "enqueue() (fury.stream.tools.genericcircularqueue method)": [[291, "fury.stream.tools.GenericCircularQueue.enqueue", false]], "enqueue() (fury.stream.tools.sharedmemcircularqueue method)": [[291, "fury.stream.tools.SharedMemCircularQueue.enqueue", false]], "euclidean_distances() (in module fury.animation.helpers)": [[275, "fury.animation.helpers.euclidean_distances", false]], "euler_matrix() (in module fury.transform)": [[292, "fury.transform.euler_matrix", false]], "event_position() (fury.pick.pickingmanager method)": [[287, "fury.pick.PickingManager.event_position", false]], "event_position() (fury.pick.selectionmanager method)": [[287, "fury.pick.SelectionManager.event_position", false]], "exit() (fury.window.showmanager method)": [[295, "fury.window.ShowManager.exit", false]], "expireddeprecationerror (class in fury.deprecator)": [[280, "fury.deprecator.ExpiredDeprecationError", false]], "export_scene() (in module fury.gltf)": [[281, "fury.gltf.export_scene", false]], "extensions (fury.ui.elements.filemenu2d attribute)": [[293, "fury.ui.elements.FileMenu2D.extensions", false]], "faces_from_sphere_vertices() (in module fury.primitive)": [[289, "fury.primitive.faces_from_sphere_vertices", false]], "fetch_data() (in module fury.data.fetcher)": [[278, "fury.data.fetcher.fetch_data", false]], "fetch_gltf() (in module fury.data.fetcher)": [[278, "fury.data.fetcher.fetch_gltf", false]], "fetch_viz_cubemaps() (in module fury.data.fetcher)": [[278, "fury.data.fetcher.fetch_viz_cubemaps", false]], "fetch_viz_dmri() (in module fury.data.fetcher)": [[278, "fury.data.fetcher.fetch_viz_dmri", false]], "fetch_viz_icons() (in module fury.data.fetcher)": [[278, "fury.data.fetcher.fetch_viz_icons", false]], "fetch_viz_models() (in module fury.data.fetcher)": [[278, "fury.data.fetcher.fetch_viz_models", false]], "fetch_viz_new_icons() (in module fury.data.fetcher)": [[278, "fury.data.fetcher.fetch_viz_new_icons", false]], "fetch_viz_textures() (in module fury.data.fetcher)": [[278, "fury.data.fetcher.fetch_viz_textures", false]], "fetch_viz_wiki_nw() (in module fury.data.fetcher)": [[278, "fury.data.fetcher.fetch_viz_wiki_nw", false]], "figure() (in module fury.actor)": [[273, "fury.actor.figure", false]], "filemenu2d (class in fury.ui.elements)": [[293, "fury.ui.elements.FileMenu2D", false]], "final_time (fury.ui.elements.playbackpanel property)": [[293, "fury.ui.elements.PlaybackPanel.final_time", false]], "fix_winding_order() (in module fury.utils)": [[294, "fury.utils.fix_winding_order", false]], "flags (in module fury.colormap)": [[276, "fury.colormap.flags", false], [276, "id4", false]], "flat (in module fury.colormap)": [[276, "fury.colormap.flat", false], [276, "id5", false]], "floatarray (in module fury.lib)": [[284, "fury.lib.FloatArray", false]], "follower (in module fury.lib)": [[284, "fury.lib.Follower", false]], "font_family (fury.ui.core.textblock2d attribute)": [[293, "fury.ui.core.TextBlock2D.font_family", false]], "font_family (fury.ui.core.textblock2d property)": [[293, "id8", false]], "font_size (fury.ui.core.textblock2d attribute)": [[293, "fury.ui.core.TextBlock2D.font_size", false]], "font_size (fury.ui.core.textblock2d property)": [[293, "id9", false]], "font_size (fury.ui.elements.checkbox property)": [[293, "fury.ui.elements.Checkbox.font_size", false]], "font_size (fury.ui.elements.option attribute)": [[293, "fury.ui.elements.Option.font_size", false]], "format_text() (fury.ui.elements.linedoubleslider2d method)": [[293, "fury.ui.elements.LineDoubleSlider2D.format_text", false]], "format_text() (fury.ui.elements.lineslider2d method)": [[293, "fury.ui.elements.LineSlider2D.format_text", false]], "format_text() (fury.ui.elements.ringslider2d method)": [[293, "fury.ui.elements.RingSlider2D.format_text", false]], "frame_rate (fury.window.showmanager property)": [[295, "fury.window.ShowManager.frame_rate", false]], "frustum() (in module fury.actor)": [[273, "fury.actor.frustum", false]], "fury": [[272, "module-fury", false]], "fury.actor": [[273, "module-fury.actor", false]], "fury.actors": [[274, "module-fury.actors", false]], "fury.actors.odf_slicer": [[274, "module-fury.actors.odf_slicer", false]], "fury.actors.peak": [[274, "module-fury.actors.peak", false]], "fury.actors.tensor": [[274, "module-fury.actors.tensor", false]], "fury.animation": [[275, "module-fury.animation", false]], "fury.animation.animation": [[275, "module-fury.animation.animation", false]], "fury.animation.helpers": [[275, "module-fury.animation.helpers", false]], "fury.animation.interpolator": [[275, "module-fury.animation.interpolator", false]], "fury.animation.timeline": [[275, "module-fury.animation.timeline", false]], "fury.colormap": [[276, "module-fury.colormap", false]], "fury.convert": [[277, "module-fury.convert", false]], "fury.data": [[278, "module-fury.data", false]], "fury.data.fetcher": [[278, "module-fury.data.fetcher", false]], "fury.decorators": [[279, "module-fury.decorators", false]], "fury.deprecator": [[280, "module-fury.deprecator", false]], "fury.gltf": [[281, "module-fury.gltf", false]], "fury.io": [[282, "module-fury.io", false]], "fury.layout": [[283, "module-fury.layout", false]], "fury.lib": [[284, "module-fury.lib", false]], "fury.material": [[285, "module-fury.material", false]], "fury.molecular": [[286, "module-fury.molecular", false]], "fury.pick": [[287, "module-fury.pick", false]], "fury.pkg_info": [[288, "module-fury.pkg_info", false]], "fury.primitive": [[289, "module-fury.primitive", false]], "fury.shaders": [[290, "module-fury.shaders", false]], "fury.shaders.base": [[290, "module-fury.shaders.base", false]], "fury.stream": [[291, "module-fury.stream", false]], "fury.stream.client": [[291, "module-fury.stream.client", false]], "fury.stream.constants": [[291, "module-fury.stream.constants", false]], "fury.stream.server": [[291, "module-fury.stream.server", false]], "fury.stream.server.async_app": [[291, "module-fury.stream.server.async_app", false]], "fury.stream.server.main": [[291, "module-fury.stream.server.main", false]], "fury.stream.tools": [[291, "module-fury.stream.tools", false]], "fury.stream.widget": [[291, "module-fury.stream.widget", false]], "fury.transform": [[292, "module-fury.transform", false]], "fury.ui": [[293, "module-fury.ui", false]], "fury.ui.containers": [[293, "module-fury.ui.containers", false]], "fury.ui.core": [[293, "module-fury.ui.core", false]], "fury.ui.elements": [[293, "module-fury.ui.elements", false]], "fury.ui.helpers": [[293, "module-fury.ui.helpers", false]], "fury.utils": [[294, "module-fury.utils", false]], "fury.window": [[295, "module-fury.window", false]], "furystreamclient (class in fury.stream.client)": [[291, "fury.stream.client.FuryStreamClient", false]], "furystreaminteraction (class in fury.stream.client)": [[291, "fury.stream.client.FuryStreamInteraction", false]], "fxaa_off() (fury.window.scene method)": [[295, "fury.window.Scene.fxaa_off", false]], "fxaa_on() (fury.window.scene method)": [[295, "fury.window.Scene.fxaa_on", false]], "generate_tmatrix() (fury.gltf.gltf method)": [[281, "fury.gltf.glTF.generate_tmatrix", false]], "genericcircularqueue (class in fury.stream.tools)": [[291, "fury.stream.tools.GenericCircularQueue", false]], "genericimagebuffermanager (class in fury.stream.tools)": [[291, "fury.stream.tools.GenericImageBufferManager", false]], "genericmultidimensionalbuffer (class in fury.stream.tools)": [[291, "fury.stream.tools.GenericMultiDimensionalBuffer", false]], "get_acc_data() (fury.gltf.gltf method)": [[281, "fury.gltf.glTF.get_acc_data", false]], "get_actor_from_polydata() (in module fury.utils)": [[294, "fury.utils.get_actor_from_polydata", false]], "get_actor_from_polymapper() (in module fury.utils)": [[294, "fury.utils.get_actor_from_polymapper", false]], "get_actor_from_primitive() (in module fury.utils)": [[294, "fury.utils.get_actor_from_primitive", false]], "get_all_atomic_numbers() (in module fury.molecular)": [[286, "fury.molecular.get_all_atomic_numbers", false]], "get_all_atomic_positions() (in module fury.molecular)": [[286, "fury.molecular.get_all_atomic_positions", false]], "get_all_bond_orders() (in module fury.molecular)": [[286, "fury.molecular.get_all_bond_orders", false]], "get_all_file_names() (fury.ui.elements.filemenu2d method)": [[293, "fury.ui.elements.FileMenu2D.get_all_file_names", false]], "get_animations() (fury.gltf.gltf method)": [[281, "fury.gltf.glTF.get_animations", false]], "get_app() (in module fury.stream.server.async_app)": [[291, "fury.stream.server.async_app.get_app", false]], "get_atomic_number() (in module fury.molecular)": [[286, "fury.molecular.get_atomic_number", false]], "get_atomic_position() (in module fury.molecular)": [[286, "fury.molecular.get_atomic_position", false]], "get_bond_order() (in module fury.molecular)": [[286, "fury.molecular.get_bond_order", false]], "get_bounding_box_sizes() (in module fury.utils)": [[294, "fury.utils.get_bounding_box_sizes", false]], "get_bounds() (in module fury.utils)": [[294, "fury.utils.get_bounds", false]], "get_buff_array() (fury.gltf.gltf method)": [[281, "fury.gltf.glTF.get_buff_array", false]], "get_camera() (fury.window.scene method)": [[295, "fury.window.Scene.get_camera", false]], "get_cells_shape() (fury.layout.gridlayout method)": [[283, "fury.layout.GridLayout.get_cells_shape", false]], "get_cells_shape() (fury.layout.xlayout method)": [[283, "fury.layout.XLayout.get_cells_shape", false]], "get_cells_shape() (fury.layout.ylayout method)": [[283, "fury.layout.YLayout.get_cells_shape", false]], "get_cells_shape() (fury.layout.zlayout method)": [[283, "fury.layout.ZLayout.get_cells_shape", false]], "get_cmap() (in module fury.colormap)": [[276, "fury.colormap.get_cmap", false]], "get_color() (fury.animation.animation.animation method)": [[275, "fury.animation.animation.Animation.get_color", false]], "get_current_frame() (fury.stream.tools.genericimagebuffermanager method)": [[291, "fury.stream.tools.GenericImageBufferManager.get_current_frame", false]], "get_current_value() (fury.animation.animation.animation method)": [[275, "fury.animation.animation.Animation.get_current_value", false]], "get_directory_names() (fury.ui.elements.filemenu2d method)": [[293, "fury.ui.elements.FileMenu2D.get_directory_names", false]], "get_file_names() (fury.ui.elements.filemenu2d method)": [[293, "fury.ui.elements.FileMenu2D.get_file_names", false]], "get_focal() (fury.animation.animation.cameraanimation method)": [[275, "fury.animation.animation.CameraAnimation.get_focal", false]], "get_grid_cells_position() (in module fury.utils)": [[294, "fury.utils.get_grid_cells_position", false]], "get_info() (in module fury)": [[272, "fury.get_info", false]], "get_joint_actors() (fury.gltf.gltf method)": [[281, "fury.gltf.glTF.get_joint_actors", false]], "get_jpeg() (fury.stream.tools.genericimagebuffermanager method)": [[291, "fury.stream.tools.GenericImageBufferManager.get_jpeg", false]], "get_keyframes() (fury.animation.animation.animation method)": [[275, "fury.animation.animation.Animation.get_keyframes", false]], "get_materials() (fury.gltf.gltf method)": [[281, "fury.gltf.glTF.get_materials", false]], "get_matrix_from_sampler() (fury.gltf.gltf method)": [[281, "fury.gltf.glTF.get_matrix_from_sampler", false]], "get_morph_data() (fury.gltf.gltf method)": [[281, "fury.gltf.glTF.get_morph_data", false]], "get_next_timestamp() (in module fury.animation.helpers)": [[275, "fury.animation.helpers.get_next_timestamp", false]], "get_opacity() (fury.animation.animation.animation method)": [[275, "fury.animation.animation.Animation.get_opacity", false]], "get_polydata_colors() (in module fury.utils)": [[294, "fury.utils.get_polydata_colors", false]], "get_polydata_field() (in module fury.utils)": [[294, "fury.utils.get_polydata_field", false]], "get_polydata_lines() (in module fury.utils)": [[294, "fury.utils.get_polydata_lines", false]], "get_polydata_normals() (in module fury.utils)": [[294, "fury.utils.get_polydata_normals", false]], "get_polydata_primitives_count() (in module fury.utils)": [[294, "fury.utils.get_polydata_primitives_count", false]], "get_polydata_tangents() (in module fury.utils)": [[294, "fury.utils.get_polydata_tangents", false]], "get_polydata_tcoord() (in module fury.utils)": [[294, "fury.utils.get_polydata_tcoord", false]], "get_polydata_triangles() (in module fury.utils)": [[294, "fury.utils.get_polydata_triangles", false]], "get_polydata_vertices() (in module fury.utils)": [[294, "fury.utils.get_polydata_vertices", false]], "get_polymapper_from_polydata() (in module fury.utils)": [[294, "fury.utils.get_polymapper_from_polydata", false]], "get_position() (fury.animation.animation.animation method)": [[275, "fury.animation.animation.Animation.get_position", false]], "get_previous_timestamp() (in module fury.animation.helpers)": [[275, "fury.animation.helpers.get_previous_timestamp", false]], "get_prim() (in module fury.gltf)": [[281, "fury.gltf.get_prim", false]], "get_rotation() (fury.animation.animation.animation method)": [[275, "fury.animation.animation.Animation.get_rotation", false]], "get_sampler_data() (fury.gltf.gltf method)": [[281, "fury.gltf.glTF.get_sampler_data", false]], "get_scale() (fury.animation.animation.animation method)": [[275, "fury.animation.animation.Animation.get_scale", false]], "get_skin_data() (fury.gltf.gltf method)": [[281, "fury.gltf.glTF.get_skin_data", false]], "get_start_end() (fury.stream.tools.genericmultidimensionalbuffer method)": [[291, "fury.stream.tools.GenericMultiDimensionalBuffer.get_start_end", false]], "get_texture() (fury.gltf.gltf method)": [[281, "fury.gltf.glTF.get_texture", false]], "get_time_tau() (in module fury.animation.helpers)": [[275, "fury.animation.helpers.get_time_tau", false]], "get_timestamps_from_keyframes() (in module fury.animation.helpers)": [[275, "fury.animation.helpers.get_timestamps_from_keyframes", false]], "get_value() (fury.animation.animation.animation method)": [[275, "fury.animation.animation.Animation.get_value", false]], "get_values_from_keyframes() (in module fury.animation.helpers)": [[275, "fury.animation.helpers.get_values_from_keyframes", false]], "get_view_up() (fury.animation.animation.cameraanimation method)": [[275, "fury.animation.animation.CameraAnimation.get_view_up", false]], "get_xyz_coords() (in module fury.colormap)": [[276, "fury.colormap.get_xyz_coords", false]], "getbounds() (fury.actor.container method)": [[273, "fury.actor.Container.GetBounds", false]], "getcenter() (fury.actor.container method)": [[273, "fury.actor.Container.GetCenter", false]], "getlength() (fury.actor.container method)": [[273, "fury.actor.Container.GetLength", false]], "getposition() (fury.actor.container method)": [[273, "fury.actor.Container.GetPosition", false]], "getvisibility() (fury.actor.container method)": [[273, "fury.actor.Container.GetVisibility", false]], "gl_disable_blend() (in module fury.window)": [[295, "fury.window.gl_disable_blend", false]], "gl_disable_depth() (in module fury.window)": [[295, "fury.window.gl_disable_depth", false]], "gl_enable_blend() (in module fury.window)": [[295, "fury.window.gl_enable_blend", false]], "gl_enable_depth() (in module fury.window)": [[295, "fury.window.gl_enable_depth", false]], "gl_get_current_state() (in module fury.window)": [[295, "fury.window.gl_get_current_state", false]], "gl_reset_blend() (in module fury.window)": [[295, "fury.window.gl_reset_blend", false]], "gl_set_additive_blending() (in module fury.window)": [[295, "fury.window.gl_set_additive_blending", false]], "gl_set_additive_blending_white_background() (in module fury.window)": [[295, "fury.window.gl_set_additive_blending_white_background", false]], "gl_set_multiplicative_blending() (in module fury.window)": [[295, "fury.window.gl_set_multiplicative_blending", false]], "gl_set_normal_blending() (in module fury.window)": [[295, "fury.window.gl_set_normal_blending", false]], "gl_set_subtractive_blending() (in module fury.window)": [[295, "fury.window.gl_set_subtractive_blending", false]], "global_opacity (fury.actors.peak.peakactor property)": [[274, "fury.actors.peak.PeakActor.global_opacity", false]], "gltf (class in fury.gltf)": [[281, "fury.gltf.glTF", false]], "glyph3d (in module fury.lib)": [[284, "fury.lib.Glyph3D", false]], "grid() (in module fury.actor)": [[273, "fury.actor.grid", false]], "gridlayout (class in fury.layout)": [[283, "fury.layout.GridLayout", false]], "gridui (class in fury.ui.containers)": [[293, "fury.ui.containers.GridUI", false]], "handle (fury.ui.elements.lineslider2d attribute)": [[293, "fury.ui.elements.LineSlider2D.handle", false]], "handle (fury.ui.elements.ringslider2d attribute)": [[293, "fury.ui.elements.RingSlider2D.handle", false]], "handle_character() (fury.ui.elements.textbox2d method)": [[293, "fury.ui.elements.TextBox2D.handle_character", false]], "handle_events() (fury.ui.core.ui method)": [[293, "fury.ui.core.UI.handle_events", false]], "handle_mouse_click() (fury.ui.elements.drawpanel method)": [[293, "fury.ui.elements.DrawPanel.handle_mouse_click", false]], "handle_mouse_drag() (fury.ui.elements.drawpanel method)": [[293, "fury.ui.elements.DrawPanel.handle_mouse_drag", false]], "handle_move_callback() (fury.ui.elements.linedoubleslider2d method)": [[293, "fury.ui.elements.LineDoubleSlider2D.handle_move_callback", false]], "handle_move_callback() (fury.ui.elements.lineslider2d method)": [[293, "fury.ui.elements.LineSlider2D.handle_move_callback", false]], "handle_move_callback() (fury.ui.elements.ringslider2d method)": [[293, "fury.ui.elements.RingSlider2D.handle_move_callback", false]], "handle_release_callback() (fury.ui.elements.linedoubleslider2d method)": [[293, "fury.ui.elements.LineDoubleSlider2D.handle_release_callback", false]], "handle_release_callback() (fury.ui.elements.lineslider2d method)": [[293, "fury.ui.elements.LineSlider2D.handle_release_callback", false]], "handle_release_callback() (fury.ui.elements.ringslider2d method)": [[293, "fury.ui.elements.RingSlider2D.handle_release_callback", false]], "handles (fury.ui.elements.linedoubleslider2d attribute)": [[293, "fury.ui.elements.LineDoubleSlider2D.handles", false]], "hardwareselector (in module fury.lib)": [[284, "fury.lib.HardwareSelector", false]], "has_playback_panel (fury.animation.timeline.timeline property)": [[275, "fury.animation.timeline.Timeline.has_playback_panel", false]], "head (fury.stream.tools.genericcircularqueue property)": [[291, "fury.stream.tools.GenericCircularQueue.head", false]], "height (fury.ui.core.rectangle2d property)": [[293, "fury.ui.core.Rectangle2D.height", false]], "height (fury.ui.elements.textbox2d attribute)": [[293, "fury.ui.elements.TextBox2D.height", false]], "hex_to_rgb() (in module fury.colormap)": [[276, "fury.colormap.hex_to_rgb", false]], "hide() (fury.ui.elements.playbackpanel method)": [[293, "fury.ui.elements.PlaybackPanel.hide", false]], "high_ranges (fury.actors.peak.peakactor property)": [[274, "fury.actors.peak.PeakActor.high_ranges", false]], "horizontallayout (class in fury.layout)": [[283, "fury.layout.HorizontalLayout", false]], "hsv2rgb() (in module fury.colormap)": [[276, "fury.colormap.hsv2rgb", false]], "hsv_color_interpolator() (in module fury.animation.interpolator)": [[275, "fury.animation.interpolator.hsv_color_interpolator", false]], "idtypearray (in module fury.lib)": [[284, "fury.lib.IdTypeArray", false]], "imag (in module fury.colormap)": [[276, "fury.colormap.imag", false], [276, "id6", false]], "image (fury.ui.elements.card2d attribute)": [[293, "fury.ui.elements.Card2D.image", false]], "imageactor (in module fury.lib)": [[284, "fury.lib.ImageActor", false]], "imagecontainer2d (class in fury.ui.containers)": [[293, "fury.ui.containers.ImageContainer2D", false]], "imagedata (in module fury.lib)": [[284, "fury.lib.ImageData", false]], "imageflip (in module fury.lib)": [[284, "fury.lib.ImageFlip", false]], "imagemaptocolors (in module fury.lib)": [[284, "fury.lib.ImageMapToColors", false]], "imagereader2factory (in module fury.lib)": [[284, "fury.lib.ImageReader2Factory", false]], "imagereslice (in module fury.lib)": [[284, "fury.lib.ImageReslice", false]], "img (fury.ui.containers.imagecontainer2d attribute)": [[293, "fury.ui.containers.ImageContainer2D.img", false]], "import_fury_shader() (in module fury.shaders.base)": [[290, "fury.shaders.base.import_fury_shader", false]], "increment() (fury.ui.elements.spinbox method)": [[293, "fury.ui.elements.SpinBox.increment", false]], "increment_callback() (fury.ui.elements.spinbox method)": [[293, "fury.ui.elements.SpinBox.increment_callback", false]], "init (fury.ui.elements.textbox2d attribute)": [[293, "fury.ui.elements.TextBox2D.init", false]], "initialize() (fury.window.showmanager method)": [[295, "fury.window.ShowManager.initialize", false]], "initialize_skin() (fury.gltf.gltf method)": [[281, "fury.gltf.glTF.initialize_skin", false]], "inner_radius (fury.ui.core.disk2d property)": [[293, "fury.ui.core.Disk2D.inner_radius", false]], "inspect_scene() (fury.gltf.gltf method)": [[281, "fury.gltf.glTF.inspect_scene", false]], "interaction_callback() (in module fury.stream.client)": [[291, "fury.stream.client.interaction_callback", false]], "interactoreventrecorder (in module fury.lib)": [[284, "fury.lib.InteractorEventRecorder", false]], "interactorstyle (in module fury.lib)": [[284, "fury.lib.InteractorStyle", false]], "interactorstyleimage (in module fury.lib)": [[284, "fury.lib.InteractorStyleImage", false]], "interactorstyletrackballactor (in module fury.lib)": [[284, "fury.lib.InteractorStyleTrackballActor", false]], "interactorstyletrackballcamera (in module fury.lib)": [[284, "fury.lib.InteractorStyleTrackballCamera", false]], "interactorstyleuser (in module fury.lib)": [[284, "fury.lib.InteractorStyleUser", false]], "intervaltimer (class in fury.stream.tools)": [[291, "fury.stream.tools.IntervalTimer", false]], "intervaltimerthreading (class in fury.stream.tools)": [[291, "fury.stream.tools.IntervalTimerThreading", false]], "iren (fury.window.showmanager attribute)": [[295, "fury.window.ShowManager.iren", false]], "is_bad_version() (in module fury.deprecator)": [[280, "fury.deprecator.is_bad_version", false]], "is_done() (fury.window.showmanager method)": [[295, "fury.window.ShowManager.is_done", false]], "is_inside_scene_at() (fury.animation.animation.animation method)": [[275, "fury.animation.animation.Animation.is_inside_scene_at", false]], "is_interpolatable() (fury.animation.animation.animation method)": [[275, "fury.animation.animation.Animation.is_interpolatable", false]], "is_range (fury.actors.peak.peakactor property)": [[274, "fury.actors.peak.PeakActor.is_range", false]], "is_selected (fury.ui.elements.drawshape property)": [[293, "fury.ui.elements.DrawShape.is_selected", false]], "is_ui() (in module fury.utils)": [[294, "fury.utils.is_ui", false]], "is_unlocked() (fury.stream.tools.sharedmemcircularqueue method)": [[291, "fury.stream.tools.SharedMemCircularQueue.is_unlocked", false]], "italic (fury.ui.core.textblock2d attribute)": [[293, "fury.ui.core.TextBlock2D.italic", false]], "italic (fury.ui.core.textblock2d property)": [[293, "id10", false]], "items (fury.actor.container property)": [[273, "fury.actor.Container.items", false]], "itemsize (in module fury.colormap)": [[276, "fury.colormap.itemsize", false], [276, "id9", false]], "jpegreader (in module fury.lib)": [[284, "fury.lib.JPEGReader", false]], "jpegwriter (in module fury.lib)": [[284, "fury.lib.JPEGWriter", false]], "justification (fury.ui.core.textblock2d attribute)": [[293, "fury.ui.core.TextBlock2D.justification", false]], "justification (fury.ui.core.textblock2d property)": [[293, "id11", false]], "key_press() (fury.ui.elements.textbox2d method)": [[293, "fury.ui.elements.TextBox2D.key_press", false]], "key_press_callback() (fury.ui.containers.gridui method)": [[293, "fury.ui.containers.GridUI.key_press_callback", false]], "key_press_callback() (fury.ui.core.ui static method)": [[293, "fury.ui.core.UI.key_press_callback", false]], "lab2rgb() (in module fury.colormap)": [[276, "fury.colormap.lab2rgb", false]], "lab2xyz() (in module fury.colormap)": [[276, "fury.colormap.lab2xyz", false]], "lab_color_interpolator() (in module fury.animation.interpolator)": [[275, "fury.animation.interpolator.lab_color_interpolator", false]], "label (fury.ui.elements.option attribute)": [[293, "fury.ui.elements.Option.label", false]], "label() (in module fury.actor)": [[273, "fury.actor.label", false]], "labels (fury.ui.elements.checkbox attribute)": [[293, "fury.ui.elements.Checkbox.labels", false]], "labels (fury.ui.elements.radiobutton attribute)": [[293, "fury.ui.elements.RadioButton.labels", false]], "last_render_time (fury.window.scene property)": [[295, "fury.window.Scene.last_render_time", false]], "layout (class in fury.layout)": [[283, "fury.layout.Layout", false]], "left_button_click_callback() (fury.ui.core.ui static method)": [[293, "fury.ui.core.UI.left_button_click_callback", false]], "left_button_clicked() (fury.ui.elements.listboxitem2d method)": [[293, "fury.ui.elements.ListBoxItem2D.left_button_clicked", false]], "left_button_dragged() (fury.ui.containers.panel2d method)": [[293, "fury.ui.containers.Panel2D.left_button_dragged", false]], "left_button_dragged() (fury.ui.containers.tabui method)": [[293, "fury.ui.containers.TabUI.left_button_dragged", false]], "left_button_dragged() (fury.ui.elements.card2d method)": [[293, "fury.ui.elements.Card2D.left_button_dragged", false]], "left_button_dragged() (fury.ui.elements.combobox2d method)": [[293, "fury.ui.elements.ComboBox2D.left_button_dragged", false]], "left_button_dragged() (fury.ui.elements.drawpanel method)": [[293, "fury.ui.elements.DrawPanel.left_button_dragged", false]], "left_button_dragged() (fury.ui.elements.drawshape method)": [[293, "fury.ui.elements.DrawShape.left_button_dragged", false]], "left_button_press() (fury.ui.elements.textbox2d method)": [[293, "fury.ui.elements.TextBox2D.left_button_press", false]], "left_button_pressed() (fury.ui.containers.panel2d method)": [[293, "fury.ui.containers.Panel2D.left_button_pressed", false]], "left_button_pressed() (fury.ui.containers.tabui method)": [[293, "fury.ui.containers.TabUI.left_button_pressed", false]], "left_button_pressed() (fury.ui.elements.card2d method)": [[293, "fury.ui.elements.Card2D.left_button_pressed", false]], "left_button_pressed() (fury.ui.elements.combobox2d method)": [[293, "fury.ui.elements.ComboBox2D.left_button_pressed", false]], "left_button_pressed() (fury.ui.elements.drawpanel method)": [[293, "fury.ui.elements.DrawPanel.left_button_pressed", false]], "left_button_pressed() (fury.ui.elements.drawshape method)": [[293, "fury.ui.elements.DrawShape.left_button_pressed", false]], "left_button_release_callback() (fury.ui.core.ui static method)": [[293, "fury.ui.core.UI.left_button_release_callback", false]], "left_button_released() (fury.ui.elements.drawshape method)": [[293, "fury.ui.elements.DrawShape.left_button_released", false]], "left_click_callback() (fury.ui.containers.gridui static method)": [[293, "fury.ui.containers.GridUI.left_click_callback", false]], "left_click_callback2() (fury.ui.containers.gridui static method)": [[293, "fury.ui.containers.GridUI.left_click_callback2", false]], "left_disk_ratio (fury.ui.elements.linedoubleslider2d property)": [[293, "fury.ui.elements.LineDoubleSlider2D.left_disk_ratio", false]], "left_disk_value (fury.ui.elements.linedoubleslider2d property)": [[293, "fury.ui.elements.LineDoubleSlider2D.left_disk_value", false]], "left_move_left() (fury.ui.elements.textbox2d method)": [[293, "fury.ui.elements.TextBox2D.left_move_left", false]], "left_move_right() (fury.ui.elements.textbox2d method)": [[293, "fury.ui.elements.TextBox2D.left_move_right", false]], "left_release_callback() (fury.ui.containers.gridui static method)": [[293, "fury.ui.containers.GridUI.left_release_callback", false]], "left_release_callback2() (fury.ui.containers.gridui static method)": [[293, "fury.ui.containers.GridUI.left_release_callback2", false]], "left_x_position (fury.ui.elements.linedoubleslider2d property)": [[293, "fury.ui.elements.LineDoubleSlider2D.left_x_position", false]], "left_x_position (fury.ui.elements.lineslider2d property)": [[293, "fury.ui.elements.LineSlider2D.left_x_position", false]], "length (fury.animation.animation.animation attribute)": [[275, "fury.animation.animation.Animation.length", false]], "length (fury.animation.animation.cameraanimation attribute)": [[275, "fury.animation.animation.CameraAnimation.length", false]], "length (fury.animation.timeline.timeline attribute)": [[275, "fury.animation.timeline.Timeline.length", false]], "length (fury.ui.elements.linedoubleslider2d attribute)": [[293, "fury.ui.elements.LineDoubleSlider2D.length", false]], "length (fury.ui.elements.lineslider2d attribute)": [[293, "fury.ui.elements.LineSlider2D.length", false]], "lerp() (in module fury.animation.helpers)": [[275, "fury.animation.helpers.lerp", false]], "line() (in module fury.actor)": [[273, "fury.actor.line", false]], "line_colors() (in module fury.colormap)": [[276, "fury.colormap.line_colors", false]], "line_width (fury.ui.elements.linedoubleslider2d attribute)": [[293, "fury.ui.elements.LineDoubleSlider2D.line_width", false]], "line_width (fury.ui.elements.lineslider2d attribute)": [[293, "fury.ui.elements.LineSlider2D.line_width", false]], "linear_interpolator() (in module fury.animation.interpolator)": [[275, "fury.animation.interpolator.linear_interpolator", false]], "linearextrusionfilter (in module fury.lib)": [[284, "fury.lib.LinearExtrusionFilter", false]], "linedoubleslider2d (class in fury.ui.elements)": [[293, "fury.ui.elements.LineDoubleSlider2D", false]], "lines_to_vtk_polydata() (in module fury.utils)": [[294, "fury.utils.lines_to_vtk_polydata", false]], "lineslider2d (class in fury.ui.elements)": [[293, "fury.ui.elements.LineSlider2D", false]], "linewidth (fury.actors.peak.peakactor property)": [[274, "fury.actors.peak.PeakActor.linewidth", false]], "list_gltf_sample_models() (in module fury.data.fetcher)": [[278, "fury.data.fetcher.list_gltf_sample_models", false]], "listbox (fury.ui.elements.filemenu2d attribute)": [[293, "fury.ui.elements.FileMenu2D.listbox", false]], "listbox2d (class in fury.ui.elements)": [[293, "fury.ui.elements.ListBox2D", false]], "listboxitem2d (class in fury.ui.elements)": [[293, "fury.ui.elements.ListBoxItem2D", false]], "load() (in module fury.shaders.base)": [[290, "fury.shaders.base.load", false]], "load_camera() (fury.gltf.gltf method)": [[281, "fury.gltf.glTF.load_camera", false]], "load_cubemap_texture() (in module fury.io)": [[282, "fury.io.load_cubemap_texture", false]], "load_image() (in module fury.io)": [[282, "fury.io.load_image", false]], "load_mem_resource() (fury.stream.tools.arraycircularqueue method)": [[291, "fury.stream.tools.ArrayCircularQueue.load_mem_resource", false]], "load_mem_resource() (fury.stream.tools.genericcircularqueue method)": [[291, "fury.stream.tools.GenericCircularQueue.load_mem_resource", false]], "load_mem_resource() (fury.stream.tools.genericimagebuffermanager method)": [[291, "fury.stream.tools.GenericImageBufferManager.load_mem_resource", false]], "load_mem_resource() (fury.stream.tools.genericmultidimensionalbuffer method)": [[291, "fury.stream.tools.GenericMultiDimensionalBuffer.load_mem_resource", false]], "load_mem_resource() (fury.stream.tools.rawarrayimagebuffermanager method)": [[291, "fury.stream.tools.RawArrayImageBufferManager.load_mem_resource", false]], "load_mem_resource() (fury.stream.tools.rawarraymultidimensionalbuffer method)": [[291, "fury.stream.tools.RawArrayMultiDimensionalBuffer.load_mem_resource", false]], "load_mem_resource() (fury.stream.tools.sharedmemcircularqueue method)": [[291, "fury.stream.tools.SharedMemCircularQueue.load_mem_resource", false]], "load_mem_resource() (fury.stream.tools.sharedmemimagebuffermanager method)": [[291, "fury.stream.tools.SharedMemImageBufferManager.load_mem_resource", false]], "load_mem_resource() (fury.stream.tools.sharedmemmultidimensionalbuffer method)": [[291, "fury.stream.tools.SharedMemMultiDimensionalBuffer.load_mem_resource", false]], "load_mesh() (fury.gltf.gltf method)": [[281, "fury.gltf.glTF.load_mesh", false]], "load_polydata() (in module fury.io)": [[282, "fury.io.load_polydata", false]], "load_shader() (in module fury.shaders.base)": [[290, "fury.shaders.base.load_shader", false]], "load_sprite_sheet() (in module fury.io)": [[282, "fury.io.load_sprite_sheet", false]], "load_text() (in module fury.io)": [[282, "fury.io.load_text", false]], "lock() (fury.stream.tools.sharedmemcircularqueue method)": [[291, "fury.stream.tools.SharedMemCircularQueue.lock", false]], "lock() (fury.window.showmanager method)": [[295, "fury.window.ShowManager.lock", false]], "lock_current() (fury.window.showmanager method)": [[295, "fury.window.ShowManager.lock_current", false]], "lodactor (in module fury.lib)": [[284, "fury.lib.LODActor", false]], "lookuptable (in module fury.lib)": [[284, "fury.lib.LookupTable", false]], "loop (fury.animation.animation.animation attribute)": [[275, "fury.animation.animation.Animation.loop", false]], "loop (fury.animation.animation.animation property)": [[275, "id2", false]], "loop (fury.animation.animation.cameraanimation attribute)": [[275, "fury.animation.animation.CameraAnimation.loop", false]], "loop (fury.animation.timeline.timeline attribute)": [[275, "fury.animation.timeline.Timeline.loop", false]], "loop (fury.animation.timeline.timeline property)": [[275, "id5", false]], "loop() (fury.ui.elements.playbackpanel method)": [[293, "fury.ui.elements.PlaybackPanel.loop", false]], "loopsubdivisionfilter (in module fury.lib)": [[284, "fury.lib.LoopSubdivisionFilter", false]], "low_ranges (fury.actors.peak.peakactor property)": [[274, "fury.actors.peak.PeakActor.low_ranges", false]], "main_animation() (fury.gltf.gltf method)": [[281, "fury.gltf.glTF.main_animation", false]], "main_dir_uncertainty() (in module fury.actors.tensor)": [[274, "fury.actors.tensor.main_dir_uncertainty", false]], "manifest_pbr() (in module fury.material)": [[285, "fury.material.manifest_pbr", false]], "manifest_principled() (in module fury.material)": [[285, "fury.material.manifest_principled", false]], "manifest_standard() (in module fury.material)": [[285, "fury.material.manifest_standard", false]], "map_coordinates_3d_4d() (in module fury.utils)": [[294, "fury.utils.map_coordinates_3d_4d", false]], "markers() (in module fury.actor)": [[273, "fury.actor.markers", false]], "matplotlib_figure_to_numpy() (in module fury.convert)": [[277, "fury.convert.matplotlib_figure_to_numpy", false]], "matrix3x3 (in module fury.lib)": [[284, "fury.lib.Matrix3x3", false]], "matrix4x4 (in module fury.lib)": [[284, "fury.lib.Matrix4x4", false]], "max_centers (fury.actors.peak.peakactor property)": [[274, "fury.actors.peak.PeakActor.max_centers", false]], "menu_toggle_callback() (fury.ui.elements.combobox2d method)": [[293, "fury.ui.elements.ComboBox2D.menu_toggle_callback", false]], "message (fury.ui.core.textblock2d attribute)": [[293, "fury.ui.core.TextBlock2D.message", false]], "message (fury.ui.core.textblock2d property)": [[293, "id12", false]], "mid_track_radius (fury.ui.elements.ringslider2d attribute)": [[293, "fury.ui.elements.RingSlider2D.mid_track_radius", false]], "mid_track_radius (fury.ui.elements.ringslider2d property)": [[293, "id15", false]], "middle_button_click_callback() (fury.ui.core.ui static method)": [[293, "fury.ui.core.UI.middle_button_click_callback", false]], "middle_button_release_callback() (fury.ui.core.ui static method)": [[293, "fury.ui.core.UI.middle_button_release_callback", false]], "min_centers (fury.actors.peak.peakactor property)": [[274, "fury.actors.peak.PeakActor.min_centers", false]], "mniobjectreader (in module fury.lib)": [[284, "fury.lib.MNIObjectReader", false]], "mniobjectwriter (in module fury.lib)": [[284, "fury.lib.MNIObjectWriter", false]], "module": [[272, "module-fury", false], [273, "module-fury.actor", false], [274, "module-fury.actors", false], [274, "module-fury.actors.odf_slicer", false], [274, "module-fury.actors.peak", false], [274, "module-fury.actors.tensor", false], [275, "module-fury.animation", false], [275, "module-fury.animation.animation", false], [275, "module-fury.animation.helpers", false], [275, "module-fury.animation.interpolator", false], [275, "module-fury.animation.timeline", false], [276, "module-fury.colormap", false], [277, "module-fury.convert", false], [278, "module-fury.data", false], [278, "module-fury.data.fetcher", false], [279, "module-fury.decorators", false], [280, "module-fury.deprecator", false], [281, "module-fury.gltf", false], [282, "module-fury.io", false], [283, "module-fury.layout", false], [284, "module-fury.lib", false], [285, "module-fury.material", false], [286, "module-fury.molecular", false], [287, "module-fury.pick", false], [288, "module-fury.pkg_info", false], [289, "module-fury.primitive", false], [290, "module-fury.shaders", false], [290, "module-fury.shaders.base", false], [291, "module-fury.stream", false], [291, "module-fury.stream.client", false], [291, "module-fury.stream.constants", false], [291, "module-fury.stream.server", false], [291, "module-fury.stream.server.async_app", false], [291, "module-fury.stream.server.main", false], [291, "module-fury.stream.tools", false], [291, "module-fury.stream.widget", false], [292, "module-fury.transform", false], [293, "module-fury.ui", false], [293, "module-fury.ui.containers", false], [293, "module-fury.ui.core", false], [293, "module-fury.ui.elements", false], [293, "module-fury.ui.helpers", false], [294, "module-fury.utils", false], [295, "module-fury.window", false]], "molecule (class in fury.molecular)": [[286, "fury.molecular.Molecule", false]], "molecule (in module fury.lib)": [[284, "fury.lib.Molecule", false]], "morph_animation() (fury.gltf.gltf method)": [[281, "fury.gltf.glTF.morph_animation", false]], "motion_path_res (fury.animation.animation.animation attribute)": [[275, "fury.animation.animation.Animation.motion_path_res", false]], "motion_path_res (fury.animation.animation.cameraanimation attribute)": [[275, "fury.animation.animation.CameraAnimation.motion_path_res", false]], "mouse_move_callback() (fury.ui.containers.gridui static method)": [[293, "fury.ui.containers.GridUI.mouse_move_callback", false]], "mouse_move_callback() (fury.ui.core.ui static method)": [[293, "fury.ui.core.UI.mouse_move_callback", false]], "mouse_move_callback2() (fury.ui.containers.gridui static method)": [[293, "fury.ui.containers.GridUI.mouse_move_callback2", false]], "move_caret_left() (fury.ui.elements.textbox2d method)": [[293, "fury.ui.elements.TextBox2D.move_caret_left", false]], "move_caret_right() (fury.ui.elements.textbox2d method)": [[293, "fury.ui.elements.TextBox2D.move_caret_right", false]], "move_handle() (fury.ui.elements.ringslider2d method)": [[293, "fury.ui.elements.RingSlider2D.move_handle", false]], "move_left() (fury.ui.elements.textbox2d method)": [[293, "fury.ui.elements.TextBox2D.move_left", false]], "move_right() (fury.ui.elements.textbox2d method)": [[293, "fury.ui.elements.TextBox2D.move_right", false]], "nbytes (in module fury.colormap)": [[276, "fury.colormap.nbytes", false], [276, "id10", false]], "ndim (in module fury.colormap)": [[276, "fury.colormap.ndim", false], [276, "id11", false]], "newinstance() (fury.actor.container method)": [[273, "fury.actor.Container.NewInstance", false]], "next_buffer_index (fury.stream.tools.genericimagebuffermanager property)": [[291, "fury.stream.tools.GenericImageBufferManager.next_buffer_index", false]], "next_icon() (fury.ui.core.button2d method)": [[293, "fury.ui.core.Button2D.next_icon", false]], "next_icon_id() (fury.ui.core.button2d method)": [[293, "fury.ui.core.Button2D.next_icon_id", false]], "normalize_v3() (in module fury.utils)": [[294, "fury.utils.normalize_v3", false]], "normals_from_actor() (in module fury.utils)": [[294, "fury.utils.normals_from_actor", false]], "normals_from_v_f() (in module fury.utils)": [[294, "fury.utils.normals_from_v_f", false]], "normals_to_actor() (in module fury.utils)": [[294, "fury.utils.normals_to_actor", false]], "numpy_to_vtk_cells() (in module fury.utils)": [[294, "fury.utils.numpy_to_vtk_cells", false]], "numpy_to_vtk_colors() (in module fury.utils)": [[294, "fury.utils.numpy_to_vtk_colors", false]], "numpy_to_vtk_image_data() (in module fury.utils)": [[294, "fury.utils.numpy_to_vtk_image_data", false]], "numpy_to_vtk_matrix() (in module fury.utils)": [[294, "fury.utils.numpy_to_vtk_matrix", false]], "numpy_to_vtk_points() (in module fury.utils)": [[294, "fury.utils.numpy_to_vtk_points", false]], "objreader (in module fury.lib)": [[284, "fury.lib.OBJReader", false]], "octagonalprism() (in module fury.actor)": [[273, "fury.actor.octagonalprism", false]], "odf_slicer() (in module fury.actor)": [[273, "fury.actor.odf_slicer", false]], "odfsliceractor (class in fury.actors.odf_slicer)": [[274, "fury.actors.odf_slicer.OdfSlicerActor", false]], "on_change (fury.ui.elements.listbox2d attribute)": [[293, "fury.ui.elements.ListBox2D.on_change", false]], "on_key_press (fury.ui.core.ui attribute)": [[293, "fury.ui.core.UI.on_key_press", false]], "on_left_mouse_button_clicked (fury.ui.core.ui attribute)": [[293, "fury.ui.core.UI.on_left_mouse_button_clicked", false]], "on_left_mouse_button_dragged (fury.ui.core.ui attribute)": [[293, "fury.ui.core.UI.on_left_mouse_button_dragged", false]], "on_left_mouse_button_pressed (fury.ui.core.ui attribute)": [[293, "fury.ui.core.UI.on_left_mouse_button_pressed", false]], "on_left_mouse_button_released (fury.ui.core.ui attribute)": [[293, "fury.ui.core.UI.on_left_mouse_button_released", false]], "on_left_mouse_double_clicked (fury.ui.core.ui attribute)": [[293, "fury.ui.core.UI.on_left_mouse_double_clicked", false]], "on_middle_mouse_button_clicked (fury.ui.core.ui attribute)": [[293, "fury.ui.core.UI.on_middle_mouse_button_clicked", false]], "on_middle_mouse_button_dragged (fury.ui.core.ui attribute)": [[293, "fury.ui.core.UI.on_middle_mouse_button_dragged", false]], "on_middle_mouse_button_pressed (fury.ui.core.ui attribute)": [[293, "fury.ui.core.UI.on_middle_mouse_button_pressed", false]], "on_middle_mouse_button_released (fury.ui.core.ui attribute)": [[293, "fury.ui.core.UI.on_middle_mouse_button_released", false]], "on_middle_mouse_double_clicked (fury.ui.core.ui attribute)": [[293, "fury.ui.core.UI.on_middle_mouse_double_clicked", false]], "on_right_mouse_button_clicked (fury.ui.core.ui attribute)": [[293, "fury.ui.core.UI.on_right_mouse_button_clicked", false]], "on_right_mouse_button_dragged (fury.ui.core.ui attribute)": [[293, "fury.ui.core.UI.on_right_mouse_button_dragged", false]], "on_right_mouse_button_pressed (fury.ui.core.ui attribute)": [[293, "fury.ui.core.UI.on_right_mouse_button_pressed", false]], "on_right_mouse_button_released (fury.ui.core.ui attribute)": [[293, "fury.ui.core.UI.on_right_mouse_button_released", false]], "on_right_mouse_double_clicked (fury.ui.core.ui attribute)": [[293, "fury.ui.core.UI.on_right_mouse_double_clicked", false]], "opacity (fury.ui.containers.panel2d property)": [[293, "fury.ui.containers.Panel2D.opacity", false]], "opacity (fury.ui.core.disk2d property)": [[293, "fury.ui.core.Disk2D.opacity", false]], "opacity (fury.ui.core.rectangle2d property)": [[293, "fury.ui.core.Rectangle2D.opacity", false]], "openglmoleculemapper (in module fury.lib)": [[284, "fury.lib.OpenGLMoleculeMapper", false]], "openglrenderer (in module fury.lib)": [[284, "fury.lib.OpenGLRenderer", false]], "option (class in fury.ui.elements)": [[293, "fury.ui.elements.Option", false]], "options (fury.ui.elements.checkbox attribute)": [[293, "fury.ui.elements.Checkbox.options", false]], "options (fury.ui.elements.radiobutton attribute)": [[293, "fury.ui.elements.RadioButton.options", false]], "orient2rgb() (in module fury.colormap)": [[276, "fury.colormap.orient2rgb", false]], "outer_radius (fury.ui.core.disk2d property)": [[293, "fury.ui.core.Disk2D.outer_radius", false]], "outlinefilter (in module fury.lib)": [[284, "fury.lib.OutlineFilter", false]], "padding (fury.actor.container attribute)": [[273, "fury.actor.Container.padding", false]], "padding (fury.ui.elements.checkbox attribute)": [[293, "fury.ui.elements.Checkbox.padding", false]], "padding (fury.ui.elements.checkbox property)": [[293, "id17", false]], "padding (fury.ui.elements.radiobutton attribute)": [[293, "fury.ui.elements.RadioButton.padding", false]], "panel2d (class in fury.ui.containers)": [[293, "fury.ui.containers.Panel2D", false]], "parent_animation (fury.animation.animation.animation property)": [[275, "fury.animation.animation.Animation.parent_animation", false]], "pause() (fury.animation.timeline.timeline method)": [[275, "fury.animation.timeline.Timeline.pause", false]], "pause() (fury.ui.elements.playbackpanel method)": [[293, "fury.ui.elements.PlaybackPanel.pause", false]], "paused (fury.animation.timeline.timeline property)": [[275, "fury.animation.timeline.Timeline.paused", false]], "pcs() (in module fury.stream.server.async_app)": [[291, "fury.stream.server.async_app.pcs", false]], "peak() (in module fury.actor)": [[273, "fury.actor.peak", false]], "peak_slicer() (in module fury.actor)": [[273, "fury.actor.peak_slicer", false]], "peakactor (class in fury.actors.peak)": [[274, "fury.actors.peak.PeakActor", false]], "pentagonalprism() (in module fury.actor)": [[273, "fury.actor.pentagonalprism", false]], "periodictable (in module fury.lib)": [[284, "fury.lib.PeriodicTable", false]], "pick() (fury.pick.pickingmanager method)": [[287, "fury.pick.PickingManager.pick", false]], "pick() (fury.pick.selectionmanager method)": [[287, "fury.pick.SelectionManager.pick", false], [287, "id0", false]], "pickable_off() (fury.pick.pickingmanager method)": [[287, "fury.pick.PickingManager.pickable_off", false]], "pickable_on() (fury.pick.pickingmanager method)": [[287, "fury.pick.PickingManager.pickable_on", false]], "pickingmanager (class in fury.pick)": [[287, "fury.pick.PickingManager", false]], "pitch() (fury.window.scene method)": [[295, "fury.window.Scene.pitch", false]], "pkg_commit_hash() (in module fury.pkg_info)": [[288, "fury.pkg_info.pkg_commit_hash", false]], "play() (fury.animation.timeline.timeline method)": [[275, "fury.animation.timeline.Timeline.play", false]], "play() (fury.ui.elements.playbackpanel method)": [[293, "fury.ui.elements.PlaybackPanel.play", false]], "play_events() (fury.window.showmanager method)": [[295, "fury.window.ShowManager.play_events", false]], "play_events_from_file() (fury.window.showmanager method)": [[295, "fury.window.ShowManager.play_events_from_file", false]], "play_once() (fury.ui.elements.playbackpanel method)": [[293, "fury.ui.elements.PlaybackPanel.play_once", false]], "playback_panel (fury.animation.timeline.timeline attribute)": [[275, "fury.animation.timeline.Timeline.playback_panel", false]], "playbackpanel (class in fury.ui.elements)": [[293, "fury.ui.elements.PlaybackPanel", false]], "playing (fury.animation.timeline.timeline property)": [[275, "fury.animation.timeline.Timeline.playing", false]], "plyreader (in module fury.lib)": [[284, "fury.lib.PLYReader", false]], "plywriter (in module fury.lib)": [[284, "fury.lib.PLYWriter", false]], "pngreader (in module fury.lib)": [[284, "fury.lib.PNGReader", false]], "pngwriter (in module fury.lib)": [[284, "fury.lib.PNGWriter", false]], "point() (in module fury.actor)": [[273, "fury.actor.point", false]], "pointpicker (in module fury.lib)": [[284, "fury.lib.PointPicker", false]], "points (in module fury.lib)": [[284, "fury.lib.Points", false]], "polydata (in module fury.lib)": [[284, "fury.lib.PolyData", false]], "polydatamapper (in module fury.lib)": [[284, "fury.lib.PolyDataMapper", false]], "polydatamapper2d (in module fury.lib)": [[284, "fury.lib.PolyDataMapper2D", false]], "polydatanormals (in module fury.lib)": [[284, "fury.lib.PolyDataNormals", false]], "polydatareader (in module fury.lib)": [[284, "fury.lib.PolyDataReader", false]], "polydatawriter (in module fury.lib)": [[284, "fury.lib.PolyDataWriter", false]], "polygon (in module fury.lib)": [[284, "fury.lib.Polygon", false]], "polyvertex (in module fury.lib)": [[284, "fury.lib.PolyVertex", false]], "position (fury.ui.core.textblock2d attribute)": [[293, "fury.ui.core.TextBlock2D.position", false]], "position (fury.ui.core.ui attribute)": [[293, "fury.ui.core.UI.position", false]], "position (fury.ui.core.ui property)": [[293, "id2", false]], "previous_value (fury.ui.elements.ringslider2d attribute)": [[293, "fury.ui.elements.RingSlider2D.previous_value", false]], "previous_value (fury.ui.elements.ringslider2d property)": [[293, "id16", false]], "prim_arrow() (in module fury.primitive)": [[289, "fury.primitive.prim_arrow", false]], "prim_box() (in module fury.primitive)": [[289, "fury.primitive.prim_box", false]], "prim_cone() (in module fury.primitive)": [[289, "fury.primitive.prim_cone", false]], "prim_cylinder() (in module fury.primitive)": [[289, "fury.primitive.prim_cylinder", false]], "prim_frustum() (in module fury.primitive)": [[289, "fury.primitive.prim_frustum", false]], "prim_icosahedron() (in module fury.primitive)": [[289, "fury.primitive.prim_icosahedron", false]], "prim_octagonalprism() (in module fury.primitive)": [[289, "fury.primitive.prim_octagonalprism", false]], "prim_pentagonalprism() (in module fury.primitive)": [[289, "fury.primitive.prim_pentagonalprism", false]], "prim_rhombicuboctahedron() (in module fury.primitive)": [[289, "fury.primitive.prim_rhombicuboctahedron", false]], "prim_sphere() (in module fury.primitive)": [[289, "fury.primitive.prim_sphere", false]], "prim_square() (in module fury.primitive)": [[289, "fury.primitive.prim_square", false]], "prim_star() (in module fury.primitive)": [[289, "fury.primitive.prim_star", false]], "prim_superquadric() (in module fury.primitive)": [[289, "fury.primitive.prim_superquadric", false]], "prim_tetrahedron() (in module fury.primitive)": [[289, "fury.primitive.prim_tetrahedron", false]], "prim_triangularprism() (in module fury.primitive)": [[289, "fury.primitive.prim_triangularprism", false]], "primitives_count_from_actor() (in module fury.utils)": [[294, "fury.utils.primitives_count_from_actor", false]], "primitives_count_to_actor() (in module fury.utils)": [[294, "fury.utils.primitives_count_to_actor", false]], "projection() (fury.window.scene method)": [[295, "fury.window.Scene.projection", false]], "property2d (in module fury.lib)": [[284, "fury.lib.Property2D", false]], "proppicker (in module fury.lib)": [[284, "fury.lib.PropPicker", false]], "proteinribbonfilter (in module fury.lib)": [[284, "fury.lib.ProteinRibbonFilter", false]], "ptable (class in fury.molecular)": [[286, "fury.molecular.PTable", false]], "radiobutton (class in fury.ui.elements)": [[293, "fury.ui.elements.RadioButton", false]], "range_slider (fury.ui.elements.rangeslider attribute)": [[293, "fury.ui.elements.RangeSlider.range_slider", false]], "range_slider_center (fury.ui.elements.rangeslider attribute)": [[293, "fury.ui.elements.RangeSlider.range_slider_center", false]], "range_slider_handle_move_callback() (fury.ui.elements.rangeslider method)": [[293, "fury.ui.elements.RangeSlider.range_slider_handle_move_callback", false]], "rangeslider (class in fury.ui.elements)": [[293, "fury.ui.elements.RangeSlider", false]], "ratio (fury.ui.elements.lineslider2d property)": [[293, "fury.ui.elements.LineSlider2D.ratio", false]], "ratio (fury.ui.elements.ringslider2d property)": [[293, "fury.ui.elements.RingSlider2D.ratio", false]], "ratio_to_coord() (fury.ui.elements.linedoubleslider2d method)": [[293, "fury.ui.elements.LineDoubleSlider2D.ratio_to_coord", false]], "ratio_to_value() (fury.ui.elements.linedoubleslider2d method)": [[293, "fury.ui.elements.LineDoubleSlider2D.ratio_to_value", false]], "rawarrayimagebuffermanager (class in fury.stream.tools)": [[291, "fury.stream.tools.RawArrayImageBufferManager", false]], "rawarraymultidimensionalbuffer (class in fury.stream.tools)": [[291, "fury.stream.tools.RawArrayMultiDimensionalBuffer", false]], "re_align() (fury.ui.containers.panel2d method)": [[293, "fury.ui.containers.Panel2D.re_align", false]], "read_viz_cubemap() (in module fury.data.fetcher)": [[278, "fury.data.fetcher.read_viz_cubemap", false]], "read_viz_dmri() (in module fury.data.fetcher)": [[278, "fury.data.fetcher.read_viz_dmri", false]], "read_viz_gltf() (in module fury.data.fetcher)": [[278, "fury.data.fetcher.read_viz_gltf", false]], "read_viz_icons() (in module fury.data.fetcher)": [[278, "fury.data.fetcher.read_viz_icons", false]], "read_viz_models() (in module fury.data.fetcher)": [[278, "fury.data.fetcher.read_viz_models", false]], "read_viz_textures() (in module fury.data.fetcher)": [[278, "fury.data.fetcher.read_viz_textures", false]], "real (in module fury.colormap)": [[276, "fury.colormap.real", false], [276, "id7", false]], "record() (fury.animation.timeline.timeline method)": [[275, "fury.animation.timeline.Timeline.record", false]], "record() (in module fury.window)": [[295, "fury.window.record", false]], "record_events() (fury.window.showmanager method)": [[295, "fury.window.ShowManager.record_events", false]], "record_events_to_file() (fury.window.showmanager method)": [[295, "fury.window.ShowManager.record_events_to_file", false]], "rectangle() (in module fury.actor)": [[273, "fury.actor.rectangle", false]], "rectangle2d (class in fury.ui.core)": [[293, "fury.ui.core.Rectangle2D", false]], "recv() (fury.stream.server.main.rtcserver method)": [[291, "fury.stream.server.main.RTCServer.recv", false]], "regularpolygonsource (in module fury.lib)": [[284, "fury.lib.RegularPolygonSource", false]], "release() (fury.stream.server.main.rtcserver method)": [[291, "fury.stream.server.main.RTCServer.release", false]], "release_context() (in module fury.window)": [[295, "fury.window.release_context", false]], "release_current() (fury.window.showmanager method)": [[295, "fury.window.ShowManager.release_current", false]], "release_lock() (fury.window.showmanager method)": [[295, "fury.window.ShowManager.release_lock", false]], "remove() (fury.ui.elements.drawshape method)": [[293, "fury.ui.elements.DrawShape.remove", false]], "remove_actor() (fury.animation.animation.animation method)": [[275, "fury.animation.animation.Animation.remove_actor", false]], "remove_actors() (fury.animation.animation.animation method)": [[275, "fury.animation.animation.Animation.remove_actors", false]], "remove_animation() (fury.window.showmanager method)": [[295, "fury.window.ShowManager.remove_animation", false]], "remove_animations() (fury.animation.animation.animation method)": [[275, "fury.animation.animation.Animation.remove_animations", false]], "remove_character() (fury.ui.elements.textbox2d method)": [[293, "fury.ui.elements.TextBox2D.remove_character", false]], "remove_element() (fury.ui.containers.panel2d method)": [[293, "fury.ui.containers.Panel2D.remove_element", false]], "remove_element() (fury.ui.containers.tabpanel2d method)": [[293, "fury.ui.containers.TabPanel2D.remove_element", false]], "remove_element() (fury.ui.containers.tabui method)": [[293, "fury.ui.containers.TabUI.remove_element", false]], "remove_from_scene() (fury.actor.container method)": [[273, "fury.actor.Container.remove_from_scene", false]], "remove_from_scene() (fury.animation.animation.animation method)": [[275, "fury.animation.animation.Animation.remove_from_scene", false]], "remove_from_scene() (fury.animation.timeline.timeline method)": [[275, "fury.animation.timeline.Timeline.remove_from_scene", false]], "remove_from_scene_at() (fury.animation.animation.animation method)": [[275, "fury.animation.animation.Animation.remove_from_scene_at", false]], "remove_observer_from_actor() (in module fury.utils)": [[294, "fury.utils.remove_observer_from_actor", false]], "remove_shm_from_resource_tracker() (in module fury.stream.tools)": [[291, "fury.stream.tools.remove_shm_from_resource_tracker", false]], "render() (fury.window.showmanager method)": [[295, "fury.window.ShowManager.render", false]], "render_text() (fury.ui.elements.textbox2d method)": [[293, "fury.ui.elements.TextBox2D.render_text", false]], "renderer (in module fury.lib)": [[284, "fury.lib.Renderer", false]], "renderlargeimage (in module fury.lib)": [[284, "fury.lib.RenderLargeImage", false]], "renderwindow (in module fury.lib)": [[284, "fury.lib.RenderWindow", false]], "renderwindowinteractor (in module fury.lib)": [[284, "fury.lib.RenderWindowInteractor", false]], "repeat_primitive() (in module fury.primitive)": [[289, "fury.primitive.repeat_primitive", false]], "repeat_primitive_function() (in module fury.primitive)": [[289, "fury.primitive.repeat_primitive_function", false]], "repeat_sources() (in module fury.utils)": [[294, "fury.utils.repeat_sources", false]], "replace_shader_in_actor() (in module fury.shaders.base)": [[290, "fury.shaders.base.replace_shader_in_actor", false]], "represent_actor_as_wireframe() (in module fury.utils)": [[294, "fury.utils.represent_actor_as_wireframe", false]], "reset_camera() (fury.window.scene method)": [[295, "fury.window.Scene.reset_camera", false]], "reset_camera_tight() (fury.window.scene method)": [[295, "fury.window.Scene.reset_camera_tight", false]], "reset_clipping_range() (fury.window.scene method)": [[295, "fury.window.Scene.reset_clipping_range", false]], "resize() (fury.ui.containers.gridui method)": [[293, "fury.ui.containers.GridUI.resize", false]], "resize() (fury.ui.containers.imagecontainer2d method)": [[293, "fury.ui.containers.ImageContainer2D.resize", false]], "resize() (fury.ui.containers.panel2d method)": [[293, "fury.ui.containers.Panel2D.resize", false]], "resize() (fury.ui.containers.tabpanel2d method)": [[293, "fury.ui.containers.TabPanel2D.resize", false]], "resize() (fury.ui.core.button2d method)": [[293, "fury.ui.core.Button2D.resize", false]], "resize() (fury.ui.core.rectangle2d method)": [[293, "fury.ui.core.Rectangle2D.resize", false]], "resize() (fury.ui.core.textblock2d method)": [[293, "fury.ui.core.TextBlock2D.resize", false]], "resize() (fury.ui.elements.card2d method)": [[293, "fury.ui.elements.Card2D.resize", false]], "resize() (fury.ui.elements.combobox2d method)": [[293, "fury.ui.elements.ComboBox2D.resize", false]], "resize() (fury.ui.elements.drawpanel method)": [[293, "fury.ui.elements.DrawPanel.resize", false]], "resize() (fury.ui.elements.drawshape method)": [[293, "fury.ui.elements.DrawShape.resize", false]], "resize() (fury.ui.elements.filemenu2d method)": [[293, "fury.ui.elements.FileMenu2D.resize", false]], "resize() (fury.ui.elements.listbox2d method)": [[293, "fury.ui.elements.ListBox2D.resize", false]], "resize() (fury.ui.elements.listboxitem2d method)": [[293, "fury.ui.elements.ListBoxItem2D.resize", false]], "resize() (fury.ui.elements.spinbox method)": [[293, "fury.ui.elements.SpinBox.resize", false]], "resize_shape() (fury.ui.elements.drawpanel method)": [[293, "fury.ui.elements.DrawPanel.resize_shape", false]], "restart() (fury.animation.timeline.timeline method)": [[275, "fury.animation.timeline.Timeline.restart", false]], "return_iframe() (fury.stream.widget.widget method)": [[291, "fury.stream.widget.Widget.return_iframe", false]], "rgb2hsv() (in module fury.colormap)": [[276, "fury.colormap.rgb2hsv", false]], "rgb2lab() (in module fury.colormap)": [[276, "fury.colormap.rgb2lab", false]], "rgb2xyz() (in module fury.colormap)": [[276, "fury.colormap.rgb2xyz", false]], "rgb_from_xyz() (in module fury.colormap)": [[276, "fury.colormap.rgb_from_xyz", false]], "rgb_to_vtk() (in module fury.utils)": [[294, "fury.utils.rgb_to_vtk", false]], "rhombicuboctahedron() (in module fury.actor)": [[273, "fury.actor.rhombicuboctahedron", false]], "ribbon() (in module fury.molecular)": [[286, "fury.molecular.ribbon", false]], "right_button_click_callback() (fury.ui.core.ui static method)": [[293, "fury.ui.core.UI.right_button_click_callback", false]], "right_button_release_callback() (fury.ui.core.ui static method)": [[293, "fury.ui.core.UI.right_button_release_callback", false]], "right_disk_ratio (fury.ui.elements.linedoubleslider2d property)": [[293, "fury.ui.elements.LineDoubleSlider2D.right_disk_ratio", false]], "right_disk_value (fury.ui.elements.linedoubleslider2d property)": [[293, "fury.ui.elements.LineDoubleSlider2D.right_disk_value", false]], "right_move_left() (fury.ui.elements.textbox2d method)": [[293, "fury.ui.elements.TextBox2D.right_move_left", false]], "right_move_right() (fury.ui.elements.textbox2d method)": [[293, "fury.ui.elements.TextBox2D.right_move_right", false]], "right_x_position (fury.ui.elements.linedoubleslider2d property)": [[293, "fury.ui.elements.LineDoubleSlider2D.right_x_position", false]], "right_x_position (fury.ui.elements.lineslider2d property)": [[293, "fury.ui.elements.LineSlider2D.right_x_position", false]], "ringslider2d (class in fury.ui.elements)": [[293, "fury.ui.elements.RingSlider2D", false]], "rm() (fury.window.scene method)": [[295, "fury.window.Scene.rm", false]], "rm_all() (fury.window.scene method)": [[295, "fury.window.Scene.rm_all", false]], "roll() (fury.window.scene method)": [[295, "fury.window.Scene.roll", false]], "rotate() (fury.ui.elements.drawshape method)": [[293, "fury.ui.elements.DrawShape.rotate", false]], "rotate() (in module fury.transform)": [[292, "fury.transform.rotate", false]], "rotate() (in module fury.utils)": [[294, "fury.utils.rotate", false]], "rotate_2d() (in module fury.ui.helpers)": [[293, "fury.ui.helpers.rotate_2d", false]], "rtcserver (class in fury.stream.server.main)": [[291, "fury.stream.server.main.RTCServer", false]], "run_command() (fury.stream.widget.widget method)": [[291, "fury.stream.widget.Widget.run_command", false]], "save_image() (in module fury.io)": [[282, "fury.io.save_image", false]], "save_polydata() (in module fury.io)": [[282, "fury.io.save_polydata", false]], "save_screenshot() (fury.window.showmanager method)": [[295, "fury.window.ShowManager.save_screenshot", false]], "scalar_bar() (in module fury.actor)": [[273, "fury.actor.scalar_bar", false]], "scalarbaractor (in module fury.lib)": [[284, "fury.lib.ScalarBarActor", false]], "scale() (fury.ui.containers.imagecontainer2d method)": [[293, "fury.ui.containers.ImageContainer2D.scale", false]], "scale() (fury.ui.core.button2d method)": [[293, "fury.ui.core.Button2D.scale", false]], "scale() (in module fury.transform)": [[292, "fury.transform.scale", false]], "scene (class in fury.window)": [[295, "fury.window.Scene", false]], "scene (fury.window.showmanager attribute)": [[295, "fury.window.ShowManager.scene", false]], "scroll_callback() (fury.ui.elements.filemenu2d method)": [[293, "fury.ui.elements.FileMenu2D.scroll_callback", false]], "scroll_click_callback() (fury.ui.elements.listbox2d method)": [[293, "fury.ui.elements.ListBox2D.scroll_click_callback", false]], "scroll_drag_callback() (fury.ui.elements.listbox2d method)": [[293, "fury.ui.elements.ListBox2D.scroll_drag_callback", false]], "scroll_release_callback() (fury.ui.elements.listbox2d method)": [[293, "fury.ui.elements.ListBox2D.scroll_release_callback", false]], "sdf() (in module fury.actor)": [[273, "fury.actor.sdf", false]], "seek() (fury.animation.timeline.timeline method)": [[275, "fury.animation.timeline.Timeline.seek", false]], "seek_percent() (fury.animation.timeline.timeline method)": [[275, "fury.animation.timeline.Timeline.seek_percent", false]], "select() (fury.pick.selectionmanager method)": [[287, "fury.pick.SelectionManager.select", false], [287, "id1", false]], "select() (fury.ui.elements.listbox2d method)": [[293, "fury.ui.elements.ListBox2D.select", false]], "select() (fury.ui.elements.listboxitem2d method)": [[293, "fury.ui.elements.ListBoxItem2D.select", false]], "select() (fury.ui.elements.option method)": [[293, "fury.ui.elements.Option.select", false]], "select_option_callback() (fury.ui.elements.combobox2d method)": [[293, "fury.ui.elements.ComboBox2D.select_option_callback", false]], "select_tab_callback() (fury.ui.containers.tabui method)": [[293, "fury.ui.containers.TabUI.select_tab_callback", false]], "selectable_off() (fury.pick.selectionmanager method)": [[287, "fury.pick.SelectionManager.selectable_off", false]], "selectable_on() (fury.pick.selectionmanager method)": [[287, "fury.pick.SelectionManager.selectable_on", false]], "selected_text (fury.ui.elements.combobox2d property)": [[293, "fury.ui.elements.ComboBox2D.selected_text", false]], "selected_text_index (fury.ui.elements.combobox2d property)": [[293, "fury.ui.elements.ComboBox2D.selected_text_index", false]], "selection_box (fury.ui.elements.combobox2d attribute)": [[293, "fury.ui.elements.ComboBox2D.selection_box", false]], "selection_change() (fury.ui.elements.drawshape method)": [[293, "fury.ui.elements.DrawShape.selection_change", false]], "selectionmanager (class in fury.pick)": [[287, "fury.pick.SelectionManager", false]], "set_actor_origin() (in module fury.utils)": [[294, "fury.utils.set_actor_origin", false]], "set_atomic_number() (in module fury.molecular)": [[286, "fury.molecular.set_atomic_number", false]], "set_atomic_position() (in module fury.molecular)": [[286, "fury.molecular.set_atomic_position", false]], "set_bond_order() (in module fury.molecular)": [[286, "fury.molecular.set_bond_order", false]], "set_camera() (fury.window.scene method)": [[295, "fury.window.Scene.set_camera", false]], "set_color() (fury.animation.animation.animation method)": [[275, "fury.animation.animation.Animation.set_color", false]], "set_color_interpolator() (fury.animation.animation.animation method)": [[275, "fury.animation.animation.Animation.set_color_interpolator", false]], "set_color_keyframes() (fury.animation.animation.animation method)": [[275, "fury.animation.animation.Animation.set_color_keyframes", false]], "set_focal() (fury.animation.animation.cameraanimation method)": [[275, "fury.animation.animation.CameraAnimation.set_focal", false]], "set_focal_interpolator() (fury.animation.animation.cameraanimation method)": [[275, "fury.animation.animation.CameraAnimation.set_focal_interpolator", false]], "set_focal_keyframes() (fury.animation.animation.cameraanimation method)": [[275, "fury.animation.animation.CameraAnimation.set_focal_keyframes", false]], "set_head_tail() (fury.stream.tools.genericcircularqueue method)": [[291, "fury.stream.tools.GenericCircularQueue.set_head_tail", false]], "set_icon() (fury.ui.core.button2d method)": [[293, "fury.ui.core.Button2D.set_icon", false]], "set_icon_by_name() (fury.ui.core.button2d method)": [[293, "fury.ui.core.Button2D.set_icon_by_name", false]], "set_img() (fury.ui.containers.imagecontainer2d method)": [[293, "fury.ui.containers.ImageContainer2D.set_img", false]], "set_input() (in module fury.utils)": [[294, "fury.utils.set_input", false]], "set_interpolator() (fury.animation.animation.animation method)": [[275, "fury.animation.animation.Animation.set_interpolator", false]], "set_keyframe() (fury.animation.animation.animation method)": [[275, "fury.animation.animation.Animation.set_keyframe", false]], "set_keyframes() (fury.animation.animation.animation method)": [[275, "fury.animation.animation.Animation.set_keyframes", false]], "set_message() (fury.ui.elements.textbox2d method)": [[293, "fury.ui.elements.TextBox2D.set_message", false]], "set_mouse() (in module fury.stream.server.async_app)": [[291, "fury.stream.server.async_app.set_mouse", false]], "set_mouse_click() (in module fury.stream.server.async_app)": [[291, "fury.stream.server.async_app.set_mouse_click", false]], "set_opacity() (fury.actors.odf_slicer.odfsliceractor method)": [[274, "fury.actors.odf_slicer.OdfSlicerActor.set_opacity", false]], "set_opacity() (fury.animation.animation.animation method)": [[275, "fury.animation.animation.Animation.set_opacity", false]], "set_opacity_interpolator() (fury.animation.animation.animation method)": [[275, "fury.animation.animation.Animation.set_opacity_interpolator", false]], "set_opacity_keyframes() (fury.animation.animation.animation method)": [[275, "fury.animation.animation.Animation.set_opacity_keyframes", false]], "set_polydata_colors() (in module fury.utils)": [[294, "fury.utils.set_polydata_colors", false]], "set_polydata_normals() (in module fury.utils)": [[294, "fury.utils.set_polydata_normals", false]], "set_polydata_primitives_count() (in module fury.utils)": [[294, "fury.utils.set_polydata_primitives_count", false]], "set_polydata_tangents() (in module fury.utils)": [[294, "fury.utils.set_polydata_tangents", false]], "set_polydata_tcoords() (in module fury.utils)": [[294, "fury.utils.set_polydata_tcoords", false]], "set_polydata_triangles() (in module fury.utils)": [[294, "fury.utils.set_polydata_triangles", false]], "set_polydata_vertices() (in module fury.utils)": [[294, "fury.utils.set_polydata_vertices", false]], "set_position() (fury.animation.animation.animation method)": [[275, "fury.animation.animation.Animation.set_position", false]], "set_position() (fury.ui.elements.linedoubleslider2d method)": [[293, "fury.ui.elements.LineDoubleSlider2D.set_position", false]], "set_position() (fury.ui.elements.lineslider2d method)": [[293, "fury.ui.elements.LineSlider2D.set_position", false]], "set_position_interpolator() (fury.animation.animation.animation method)": [[275, "fury.animation.animation.Animation.set_position_interpolator", false]], "set_position_keyframes() (fury.animation.animation.animation method)": [[275, "fury.animation.animation.Animation.set_position_keyframes", false]], "set_rotation() (fury.animation.animation.animation method)": [[275, "fury.animation.animation.Animation.set_rotation", false]], "set_rotation_as_vector() (fury.animation.animation.animation method)": [[275, "fury.animation.animation.Animation.set_rotation_as_vector", false]], "set_rotation_interpolator() (fury.animation.animation.animation method)": [[275, "fury.animation.animation.Animation.set_rotation_interpolator", false]], "set_scale() (fury.animation.animation.animation method)": [[275, "fury.animation.animation.Animation.set_scale", false]], "set_scale_interpolator() (fury.animation.animation.animation method)": [[275, "fury.animation.animation.Animation.set_scale_interpolator", false]], "set_scale_keyframes() (fury.animation.animation.animation method)": [[275, "fury.animation.animation.Animation.set_scale_keyframes", false]], "set_slot_colors() (fury.ui.elements.filemenu2d method)": [[293, "fury.ui.elements.FileMenu2D.set_slot_colors", false]], "set_view_up() (fury.animation.animation.cameraanimation method)": [[275, "fury.animation.animation.CameraAnimation.set_view_up", false]], "set_view_up_interpolator() (fury.animation.animation.cameraanimation method)": [[275, "fury.animation.animation.CameraAnimation.set_view_up_interpolator", false]], "set_view_up_keyframes() (fury.animation.animation.cameraanimation method)": [[275, "fury.animation.animation.CameraAnimation.set_view_up_keyframes", false]], "set_visibility() (fury.ui.containers.panel2d method)": [[293, "fury.ui.containers.Panel2D.set_visibility", false]], "set_visibility() (fury.ui.core.ui method)": [[293, "fury.ui.core.UI.set_visibility", false]], "set_visibility() (fury.ui.elements.combobox2d method)": [[293, "fury.ui.elements.ComboBox2D.set_visibility", false]], "set_weel() (in module fury.stream.server.async_app)": [[291, "fury.stream.server.async_app.set_weel", false]], "setposition() (fury.actor.container method)": [[273, "fury.actor.Container.SetPosition", false]], "setvisibility() (fury.actor.container method)": [[273, "fury.actor.Container.SetVisibility", false]], "shader (in module fury.lib)": [[284, "fury.lib.Shader", false]], "shader_apply_effects() (in module fury.shaders.base)": [[290, "fury.shaders.base.shader_apply_effects", false]], "shader_to_actor() (in module fury.shaders.base)": [[290, "fury.shaders.base.shader_to_actor", false]], "shaders_dir() (in module fury.shaders.base)": [[290, "fury.shaders.base.SHADERS_DIR", false]], "shadow (fury.ui.core.textblock2d attribute)": [[293, "fury.ui.core.TextBlock2D.shadow", false]], "shadow (fury.ui.core.textblock2d property)": [[293, "id13", false]], "shallow_copy() (in module fury.utils)": [[294, "fury.utils.shallow_copy", false]], "shallowcopy() (fury.actor.container method)": [[273, "fury.actor.Container.ShallowCopy", false]], "shape (fury.ui.elements.linedoubleslider2d attribute)": [[293, "fury.ui.elements.LineDoubleSlider2D.shape", false]], "shape (fury.ui.elements.lineslider2d attribute)": [[293, "fury.ui.elements.LineSlider2D.shape", false]], "shape (in module fury.colormap)": [[276, "fury.colormap.shape", false], [276, "id12", false]], "sharedmemcircularqueue (class in fury.stream.tools)": [[291, "fury.stream.tools.SharedMemCircularQueue", false]], "sharedmemimagebuffermanager (class in fury.stream.tools)": [[291, "fury.stream.tools.SharedMemImageBufferManager", false]], "sharedmemmultidimensionalbuffer (class in fury.stream.tools)": [[291, "fury.stream.tools.SharedMemMultiDimensionalBuffer", false]], "show() (fury.ui.elements.playbackpanel method)": [[293, "fury.ui.elements.PlaybackPanel.show", false]], "show() (in module fury.window)": [[295, "fury.window.show", false]], "show_rotation_slider() (fury.ui.elements.drawpanel method)": [[293, "fury.ui.elements.DrawPanel.show_rotation_slider", false]], "showable_text() (fury.ui.elements.textbox2d method)": [[293, "fury.ui.elements.TextBox2D.showable_text", false]], "showmanager (class in fury.window)": [[295, "fury.window.ShowManager", false]], "simplebondperceiver (in module fury.lib)": [[284, "fury.lib.SimpleBondPerceiver", false]], "size (fury.ui.containers.imagecontainer2d attribute)": [[293, "fury.ui.containers.ImageContainer2D.size", false]], "size (fury.ui.core.textblock2d attribute)": [[293, "fury.ui.core.TextBlock2D.size", false]], "size (fury.ui.core.ui attribute)": [[293, "fury.ui.core.UI.size", false]], "size (fury.ui.core.ui property)": [[293, "id3", false]], "size (in module fury.colormap)": [[276, "fury.colormap.size", false], [276, "id8", false]], "size() (fury.window.scene method)": [[295, "fury.window.Scene.size", false]], "skin_animation() (fury.gltf.gltf method)": [[281, "fury.gltf.glTF.skin_animation", false]], "skip_re() (in module fury.decorators)": [[279, "fury.decorators.SKIP_RE", false]], "skybox (in module fury.lib)": [[284, "fury.lib.Skybox", false]], "skybox() (fury.window.scene method)": [[295, "fury.window.Scene.skybox", false]], "slerp() (in module fury.animation.interpolator)": [[275, "fury.animation.interpolator.slerp", false]], "slice_along_axis() (fury.actors.odf_slicer.odfsliceractor method)": [[274, "fury.actors.odf_slicer.OdfSlicerActor.slice_along_axis", false]], "slicer() (in module fury.actor)": [[273, "fury.actor.slicer", false]], "snapshot() (in module fury.window)": [[295, "fury.window.snapshot", false]], "speed (fury.animation.timeline.timeline property)": [[275, "fury.animation.timeline.Timeline.speed", false]], "speed (fury.ui.elements.playbackpanel property)": [[293, "fury.ui.elements.PlaybackPanel.speed", false]], "sphere() (in module fury.actor)": [[273, "fury.actor.sphere", false]], "sphere2cart() (in module fury.transform)": [[292, "fury.transform.sphere2cart", false]], "sphere_cpk() (in module fury.molecular)": [[286, "fury.molecular.sphere_cpk", false]], "spheresource (in module fury.lib)": [[284, "fury.lib.SphereSource", false]], "spinbox (class in fury.ui.elements)": [[293, "fury.ui.elements.SpinBox", false]], "spline_interpolator() (in module fury.animation.interpolator)": [[275, "fury.animation.interpolator.spline_interpolator", false]], "splinefilter (in module fury.lib)": [[284, "fury.lib.SplineFilter", false]], "square() (in module fury.actor)": [[273, "fury.actor.square", false]], "ss() (in module fury.colormap)": [[276, "fury.colormap.ss", false]], "start() (fury.stream.client.furystreamclient method)": [[291, "fury.stream.client.FuryStreamClient.start", false]], "start() (fury.stream.client.furystreaminteraction method)": [[291, "fury.stream.client.FuryStreamInteraction.start", false]], "start() (fury.stream.tools.intervaltimer method)": [[291, "fury.stream.tools.IntervalTimer.start", false]], "start() (fury.stream.tools.intervaltimerthreading method)": [[291, "fury.stream.tools.IntervalTimerThreading.start", false]], "start() (fury.stream.widget.widget method)": [[291, "fury.stream.widget.Widget.start", false]], "start() (fury.window.showmanager method)": [[295, "fury.window.ShowManager.start", false]], "static_actors (fury.animation.animation.animation property)": [[275, "fury.animation.animation.Animation.static_actors", false]], "step_interpolator() (in module fury.animation.interpolator)": [[275, "fury.animation.interpolator.step_interpolator", false]], "stick() (in module fury.molecular)": [[286, "fury.molecular.stick", false]], "stlreader (in module fury.lib)": [[284, "fury.lib.STLReader", false]], "stlwriter (in module fury.lib)": [[284, "fury.lib.STLWriter", false]], "stop() (fury.animation.timeline.timeline method)": [[275, "fury.animation.timeline.Timeline.stop", false]], "stop() (fury.stream.client.furystreamclient method)": [[291, "fury.stream.client.FuryStreamClient.stop", false]], "stop() (fury.stream.client.furystreaminteraction method)": [[291, "fury.stream.client.FuryStreamInteraction.stop", false]], "stop() (fury.stream.tools.intervaltimer method)": [[291, "fury.stream.tools.IntervalTimer.stop", false]], "stop() (fury.stream.tools.intervaltimerthreading method)": [[291, "fury.stream.tools.IntervalTimerThreading.stop", false]], "stop() (fury.stream.widget.widget method)": [[291, "fury.stream.widget.Widget.stop", false]], "stop() (fury.ui.elements.playbackpanel method)": [[293, "fury.ui.elements.PlaybackPanel.stop", false]], "stopped (fury.animation.timeline.timeline property)": [[275, "fury.animation.timeline.Timeline.stopped", false]], "streamtube() (in module fury.actor)": [[273, "fury.actor.streamtube", false]], "strides (in module fury.colormap)": [[276, "fury.colormap.strides", false], [276, "id13", false]], "stringarray (in module fury.lib)": [[284, "fury.lib.StringArray", false]], "style (fury.window.showmanager attribute)": [[295, "fury.window.ShowManager.style", false]], "superquadric() (in module fury.actor)": [[273, "fury.actor.superquadric", false]], "surface() (in module fury.actor)": [[273, "fury.actor.surface", false]], "t (in module fury.colormap)": [[276, "fury.colormap.T", false], [276, "id0", false]], "tabpanel2d (class in fury.ui.containers)": [[293, "fury.ui.containers.TabPanel2D", false]], "tabs (fury.ui.containers.tabui attribute)": [[293, "fury.ui.containers.TabUI.tabs", false]], "tabui (class in fury.ui.containers)": [[293, "fury.ui.containers.TabUI", false]], "tail (fury.stream.tools.genericcircularqueue property)": [[291, "fury.stream.tools.GenericCircularQueue.tail", false]], "tan_cubic_spline_interpolator() (in module fury.animation.interpolator)": [[275, "fury.animation.interpolator.tan_cubic_spline_interpolator", false]], "tangents_from_actor() (in module fury.utils)": [[294, "fury.utils.tangents_from_actor", false]], "tangents_from_direction_of_anisotropy() (in module fury.utils)": [[294, "fury.utils.tangents_from_direction_of_anisotropy", false]], "tangents_to_actor() (in module fury.utils)": [[294, "fury.utils.tangents_to_actor", false]], "tensor_ellipsoid() (in module fury.actors.tensor)": [[274, "fury.actors.tensor.tensor_ellipsoid", false]], "tensor_slicer() (in module fury.actor)": [[273, "fury.actor.tensor_slicer", false]], "text (fury.ui.elements.linedoubleslider2d attribute)": [[293, "fury.ui.elements.LineDoubleSlider2D.text", false]], "text (fury.ui.elements.lineslider2d attribute)": [[293, "fury.ui.elements.LineSlider2D.text", false]], "text (fury.ui.elements.ringslider2d attribute)": [[293, "fury.ui.elements.RingSlider2D.text", false]], "text (fury.ui.elements.textbox2d attribute)": [[293, "fury.ui.elements.TextBox2D.text", false]], "text_3d() (in module fury.actor)": [[273, "fury.actor.text_3d", false]], "text_block (fury.ui.containers.tabpanel2d attribute)": [[293, "fury.ui.containers.TabPanel2D.text_block", false]], "textactor (in module fury.lib)": [[284, "fury.lib.TextActor", false]], "textactor3d (in module fury.lib)": [[284, "fury.lib.TextActor3D", false]], "textblock2d (class in fury.ui.core)": [[293, "fury.ui.core.TextBlock2D", false]], "textbox2d (class in fury.ui.elements)": [[293, "fury.ui.elements.TextBox2D", false]], "textbox_update_value() (fury.ui.elements.spinbox method)": [[293, "fury.ui.elements.SpinBox.textbox_update_value", false]], "texture (in module fury.lib)": [[284, "fury.lib.Texture", false]], "texture() (in module fury.actor)": [[273, "fury.actor.texture", false]], "texture_2d() (in module fury.actor)": [[273, "fury.actor.texture_2d", false]], "texture_on_sphere() (in module fury.actor)": [[273, "fury.actor.texture_on_sphere", false]], "texture_update() (in module fury.actor)": [[273, "fury.actor.texture_update", false]], "texturedactor2d (in module fury.lib)": [[284, "fury.lib.TexturedActor2D", false]], "texturedspheresource (in module fury.lib)": [[284, "fury.lib.TexturedSphereSource", false]], "texturemaptoplane (in module fury.lib)": [[284, "fury.lib.TextureMapToPlane", false]], "tiffreader (in module fury.lib)": [[284, "fury.lib.TIFFReader", false]], "tiffwriter (in module fury.lib)": [[284, "fury.lib.TIFFWriter", false]], "timeline (class in fury.animation.timeline)": [[275, "fury.animation.timeline.Timeline", false]], "timeline (fury.animation.animation.animation property)": [[275, "fury.animation.animation.Animation.timeline", false]], "timelines (fury.window.showmanager property)": [[295, "fury.window.ShowManager.timelines", false]], "title (fury.ui.containers.tabpanel2d property)": [[293, "fury.ui.containers.TabPanel2D.title", false]], "title (fury.ui.elements.card2d property)": [[293, "fury.ui.elements.Card2D.title", false]], "title_bold (fury.ui.containers.tabpanel2d property)": [[293, "fury.ui.containers.TabPanel2D.title_bold", false]], "title_box (fury.ui.elements.card2d attribute)": [[293, "fury.ui.elements.Card2D.title_box", false]], "title_color (fury.ui.containers.tabpanel2d property)": [[293, "fury.ui.containers.TabPanel2D.title_color", false]], "title_font_size (fury.ui.containers.tabpanel2d property)": [[293, "fury.ui.containers.TabPanel2D.title_font_size", false]], "title_italic (fury.ui.containers.tabpanel2d property)": [[293, "fury.ui.containers.TabPanel2D.title_italic", false]], "toggle() (fury.ui.elements.option method)": [[293, "fury.ui.elements.Option.toggle", false]], "top_disk_ratio (fury.ui.elements.linedoubleslider2d property)": [[293, "fury.ui.elements.LineDoubleSlider2D.top_disk_ratio", false]], "top_disk_value (fury.ui.elements.linedoubleslider2d property)": [[293, "fury.ui.elements.LineDoubleSlider2D.top_disk_value", false]], "top_y_position (fury.ui.elements.linedoubleslider2d property)": [[293, "fury.ui.elements.LineDoubleSlider2D.top_y_position", false]], "top_y_position (fury.ui.elements.lineslider2d property)": [[293, "fury.ui.elements.LineSlider2D.top_y_position", false]], "total_num_atoms (fury.molecular.molecule property)": [[286, "fury.molecular.Molecule.total_num_atoms", false]], "total_num_bonds (fury.molecular.molecule property)": [[286, "fury.molecular.Molecule.total_num_bonds", false]], "track (fury.ui.elements.linedoubleslider2d attribute)": [[293, "fury.ui.elements.LineDoubleSlider2D.track", false]], "track (fury.ui.elements.lineslider2d attribute)": [[293, "fury.ui.elements.LineSlider2D.track", false]], "track (fury.ui.elements.ringslider2d attribute)": [[293, "fury.ui.elements.RingSlider2D.track", false]], "track_click_callback() (fury.ui.elements.lineslider2d method)": [[293, "fury.ui.elements.LineSlider2D.track_click_callback", false]], "track_click_callback() (fury.ui.elements.ringslider2d method)": [[293, "fury.ui.elements.RingSlider2D.track_click_callback", false]], "transform (in module fury.lib)": [[284, "fury.lib.Transform", false]], "transform_from_matrix() (in module fury.transform)": [[292, "fury.transform.transform_from_matrix", false]], "transformpolydatafilter (in module fury.lib)": [[284, "fury.lib.TransformPolyDataFilter", false]], "translate() (in module fury.transform)": [[292, "fury.transform.translate", false]], "transverse_animations() (fury.gltf.gltf method)": [[281, "fury.gltf.glTF.transverse_animations", false]], "transverse_bones() (fury.gltf.gltf method)": [[281, "fury.gltf.glTF.transverse_bones", false]], "transverse_channels() (fury.gltf.gltf method)": [[281, "fury.gltf.glTF.transverse_channels", false]], "transverse_node() (fury.gltf.gltf method)": [[281, "fury.gltf.glTF.transverse_node", false]], "triangle_order() (in module fury.utils)": [[294, "fury.utils.triangle_order", false]], "trianglefilter (in module fury.lib)": [[284, "fury.lib.TriangleFilter", false]], "triangularprism() (in module fury.actor)": [[273, "fury.actor.triangularprism", false]], "tubefilter (in module fury.lib)": [[284, "fury.lib.TubeFilter", false]], "ui (class in fury.ui.core)": [[293, "fury.ui.core.UI", false]], "uncertainty_cone() (in module fury.actor)": [[273, "fury.actor.uncertainty_cone", false]], "unlock() (fury.stream.tools.sharedmemcircularqueue method)": [[291, "fury.stream.tools.SharedMemCircularQueue.unlock", false]], "unsignedchararray (in module fury.lib)": [[284, "fury.lib.UnsignedCharArray", false]], "unstructuredgrid (in module fury.lib)": [[284, "fury.lib.UnstructuredGrid", false]], "up_button_callback() (fury.ui.elements.listbox2d method)": [[293, "fury.ui.elements.ListBox2D.up_button_callback", false]], "update() (fury.actor.container method)": [[273, "fury.actor.Container.update", false]], "update() (fury.animation.timeline.timeline method)": [[275, "fury.animation.timeline.Timeline.update", false]], "update() (fury.ui.elements.linedoubleslider2d method)": [[293, "fury.ui.elements.LineDoubleSlider2D.update", false]], "update() (fury.ui.elements.lineslider2d method)": [[293, "fury.ui.elements.LineSlider2D.update", false]], "update() (fury.ui.elements.listbox2d method)": [[293, "fury.ui.elements.ListBox2D.update", false]], "update() (fury.ui.elements.ringslider2d method)": [[293, "fury.ui.elements.RingSlider2D.update", false]], "update_actor() (in module fury.utils)": [[294, "fury.utils.update_actor", false]], "update_alignment() (fury.ui.core.textblock2d method)": [[293, "fury.ui.core.TextBlock2D.update_alignment", false]], "update_animation() (fury.animation.animation.animation method)": [[275, "fury.animation.animation.Animation.update_animation", false]], "update_animation() (fury.animation.animation.cameraanimation method)": [[275, "fury.animation.animation.CameraAnimation.update_animation", false]], "update_border_coords() (fury.ui.containers.panel2d method)": [[293, "fury.ui.containers.Panel2D.update_border_coords", false]], "update_bounding_box() (fury.ui.core.textblock2d method)": [[293, "fury.ui.core.TextBlock2D.update_bounding_box", false]], "update_button_icons() (fury.ui.elements.drawpanel method)": [[293, "fury.ui.elements.DrawPanel.update_button_icons", false]], "update_duration() (fury.animation.animation.animation method)": [[275, "fury.animation.animation.Animation.update_duration", false]], "update_duration() (fury.animation.timeline.timeline method)": [[275, "fury.animation.timeline.Timeline.update_duration", false]], "update_element() (fury.ui.containers.panel2d method)": [[293, "fury.ui.containers.Panel2D.update_element", false]], "update_element() (fury.ui.containers.tabpanel2d method)": [[293, "fury.ui.containers.TabPanel2D.update_element", false]], "update_element() (fury.ui.containers.tabui method)": [[293, "fury.ui.containers.TabUI.update_element", false]], "update_morph() (fury.gltf.gltf method)": [[281, "fury.gltf.glTF.update_morph", false]], "update_motion_path() (fury.animation.animation.animation method)": [[275, "fury.animation.animation.Animation.update_motion_path", false]], "update_polydata_normals() (in module fury.utils)": [[294, "fury.utils.update_polydata_normals", false]], "update_progressbar() (in module fury.data.fetcher)": [[278, "fury.data.fetcher.update_progressbar", false]], "update_scrollbar() (fury.ui.elements.listbox2d method)": [[293, "fury.ui.elements.ListBox2D.update_scrollbar", false]], "update_selection_type() (fury.pick.selectionmanager method)": [[287, "fury.pick.SelectionManager.update_selection_type", false]], "update_shape_position() (fury.ui.elements.drawshape method)": [[293, "fury.ui.elements.DrawShape.update_shape_position", false]], "update_shape_selection() (fury.ui.elements.drawpanel method)": [[293, "fury.ui.elements.DrawPanel.update_shape_selection", false]], "update_skin() (fury.gltf.gltf method)": [[281, "fury.gltf.glTF.update_skin", false]], "update_sphere() (fury.actors.odf_slicer.odfsliceractor method)": [[274, "fury.actors.odf_slicer.OdfSlicerActor.update_sphere", false]], "update_surface_actor_colors() (in module fury.utils)": [[294, "fury.utils.update_surface_actor_colors", false]], "update_tabs() (fury.ui.containers.tabui method)": [[293, "fury.ui.containers.TabUI.update_tabs", false]], "url (fury.stream.widget.widget property)": [[291, "fury.stream.widget.Widget.url", false]], "validate_value() (fury.ui.elements.spinbox method)": [[293, "fury.ui.elements.SpinBox.validate_value", false]], "value (fury.ui.elements.lineslider2d property)": [[293, "fury.ui.elements.LineSlider2D.value", false]], "value (fury.ui.elements.ringslider2d property)": [[293, "fury.ui.elements.RingSlider2D.value", false]], "value (fury.ui.elements.spinbox property)": [[293, "fury.ui.elements.SpinBox.value", false]], "value_slider (fury.ui.elements.rangeslider attribute)": [[293, "fury.ui.elements.RangeSlider.value_slider", false]], "value_slider_center (fury.ui.elements.rangeslider attribute)": [[293, "fury.ui.elements.RangeSlider.value_slider_center", false]], "value_to_ratio() (fury.ui.elements.linedoubleslider2d method)": [[293, "fury.ui.elements.LineDoubleSlider2D.value_to_ratio", false]], "vector_text() (in module fury.actor)": [[273, "fury.actor.vector_text", false]], "vectortext (in module fury.lib)": [[284, "fury.lib.VectorText", false]], "vertical_justification (fury.ui.core.textblock2d attribute)": [[293, "fury.ui.core.TextBlock2D.vertical_justification", false]], "vertical_justification (fury.ui.core.textblock2d property)": [[293, "id14", false]], "verticallayout (class in fury.layout)": [[283, "fury.layout.VerticalLayout", false]], "vertices_from_actor() (in module fury.utils)": [[294, "fury.utils.vertices_from_actor", false]], "volume (in module fury.lib)": [[284, "fury.lib.Volume", false]], "vtk_matrix_to_numpy() (in module fury.utils)": [[294, "fury.utils.vtk_matrix_to_numpy", false]], "vtk_version() (in module fury.lib)": [[284, "fury.lib.VTK_VERSION", false]], "wait() (fury.window.showmanager method)": [[295, "fury.window.ShowManager.wait", false]], "web_server() (in module fury.stream.server.main)": [[291, "fury.stream.server.main.web_server", false]], "web_server_raw_array() (in module fury.stream.server.main)": [[291, "fury.stream.server.main.web_server_raw_array", false]], "widget (class in fury.stream.widget)": [[291, "fury.stream.widget.Widget", false]], "width (fury.ui.core.rectangle2d property)": [[293, "fury.ui.core.Rectangle2D.width", false]], "width (fury.ui.elements.playbackpanel property)": [[293, "fury.ui.elements.PlaybackPanel.width", false]], "width (fury.ui.elements.textbox2d attribute)": [[293, "fury.ui.elements.TextBox2D.width", false]], "width_set_text() (fury.ui.elements.textbox2d method)": [[293, "fury.ui.elements.TextBox2D.width_set_text", false]], "window (fury.window.showmanager attribute)": [[295, "fury.window.ShowManager.window", false]], "window_left (fury.ui.elements.textbox2d attribute)": [[293, "fury.ui.elements.TextBox2D.window_left", false]], "window_right (fury.ui.elements.textbox2d attribute)": [[293, "fury.ui.elements.TextBox2D.window_right", false]], "windowtoimagefilter (in module fury.lib)": [[284, "fury.lib.WindowToImageFilter", false]], "worldpointpicker (in module fury.lib)": [[284, "fury.lib.WorldPointPicker", false]], "wrap_overflow() (in module fury.ui.helpers)": [[293, "fury.ui.helpers.wrap_overflow", false]], "write_accessor() (in module fury.gltf)": [[281, "fury.gltf.write_accessor", false]], "write_buffer() (in module fury.gltf)": [[281, "fury.gltf.write_buffer", false]], "write_bufferview() (in module fury.gltf)": [[281, "fury.gltf.write_bufferview", false]], "write_camera() (in module fury.gltf)": [[281, "fury.gltf.write_camera", false]], "write_into() (fury.stream.tools.genericimagebuffermanager method)": [[291, "fury.stream.tools.GenericImageBufferManager.write_into", false]], "write_material() (in module fury.gltf)": [[281, "fury.gltf.write_material", false]], "write_mesh() (in module fury.gltf)": [[281, "fury.gltf.write_mesh", false]], "write_node() (in module fury.gltf)": [[281, "fury.gltf.write_node", false]], "write_scene() (in module fury.gltf)": [[281, "fury.gltf.write_scene", false]], "xlayout (class in fury.layout)": [[283, "fury.layout.XLayout", false]], "xmlpolydatareader (in module fury.lib)": [[284, "fury.lib.XMLPolyDataReader", false]], "xmlpolydatawriter (in module fury.lib)": [[284, "fury.lib.XMLPolyDataWriter", false]], "xyz2lab() (in module fury.colormap)": [[276, "fury.colormap.xyz2lab", false]], "xyz2rgb() (in module fury.colormap)": [[276, "fury.colormap.xyz2rgb", false]], "xyz_color_interpolator() (in module fury.animation.interpolator)": [[275, "fury.animation.interpolator.xyz_color_interpolator", false]], "xyz_from_rgb() (in module fury.colormap)": [[276, "fury.colormap.xyz_from_rgb", false]], "yaw() (fury.window.scene method)": [[295, "fury.window.Scene.yaw", false]], "ylayout (class in fury.layout)": [[283, "fury.layout.YLayout", false]], "zlayout (class in fury.layout)": [[283, "fury.layout.ZLayout", false]], "zoom() (fury.window.scene method)": [[295, "fury.window.Scene.zoom", false]]}, "objects": {"": [[272, 0, 0, "-", "fury"]], "fury": [[273, 0, 0, "-", "actor"], [274, 0, 0, "-", "actors"], [275, 0, 0, "-", "animation"], [276, 0, 0, "-", "colormap"], [277, 0, 0, "-", "convert"], [278, 0, 0, "-", "data"], [279, 0, 0, "-", "decorators"], [280, 0, 0, "-", "deprecator"], [272, 5, 1, "", "disable_warnings"], [272, 5, 1, "", "enable_warnings"], [272, 5, 1, "", "get_info"], [281, 0, 0, "-", "gltf"], [282, 0, 0, "-", "io"], [283, 0, 0, "-", "layout"], [284, 0, 0, "-", "lib"], [285, 0, 0, "-", "material"], [286, 0, 0, "-", "molecular"], [287, 0, 0, "-", "pick"], [288, 0, 0, "-", "pkg_info"], [289, 0, 0, "-", "primitive"], [290, 0, 0, "-", "shaders"], [291, 0, 0, "-", "stream"], [292, 0, 0, "-", "transform"], [293, 0, 0, "-", "ui"], [294, 0, 0, "-", "utils"], [295, 0, 0, "-", "window"]], "fury.actor": [[273, 1, 1, "", "Container"], [273, 5, 1, "", "arrow"], [273, 5, 1, "", "axes"], [273, 5, 1, "", "billboard"], [273, 5, 1, "", "box"], [273, 5, 1, "", "cone"], [273, 5, 1, "", "contour_from_label"], [273, 5, 1, "", "contour_from_roi"], [273, 5, 1, "", "cube"], [273, 5, 1, "", "cylinder"], [273, 5, 1, "", "disk"], [273, 5, 1, "", "dot"], [273, 5, 1, "", "dots"], [273, 5, 1, "", "ellipsoid"], [273, 5, 1, "", "figure"], [273, 5, 1, "", "frustum"], [273, 5, 1, "", "grid"], [273, 5, 1, "", "label"], [273, 5, 1, "", "line"], [273, 5, 1, "", "markers"], [273, 5, 1, "", "octagonalprism"], [273, 5, 1, "", "odf_slicer"], [273, 5, 1, "", "peak"], [273, 5, 1, "", "peak_slicer"], [273, 5, 1, "", "pentagonalprism"], [273, 5, 1, "", "point"], [273, 5, 1, "", "rectangle"], [273, 5, 1, "", "rhombicuboctahedron"], [273, 5, 1, "", "scalar_bar"], [273, 5, 1, "", "sdf"], [273, 5, 1, "", "slicer"], [273, 5, 1, "", "sphere"], [273, 5, 1, "", "square"], [273, 5, 1, "", "streamtube"], [273, 5, 1, "", "superquadric"], [273, 5, 1, "", "surface"], [273, 5, 1, "", "tensor_slicer"], [273, 5, 1, "", "text_3d"], [273, 5, 1, "", "texture"], [273, 5, 1, "", "texture_2d"], [273, 5, 1, "", "texture_on_sphere"], [273, 5, 1, "", "texture_update"], [273, 5, 1, "", "triangularprism"], [273, 5, 1, "", "uncertainty_cone"], [273, 5, 1, "", "vector_text"]], "fury.actor.Container": [[273, 2, 1, "", "AddPosition"], [273, 2, 1, "", "GetBounds"], [273, 2, 1, "", "GetCenter"], [273, 2, 1, "", "GetLength"], [273, 2, 1, "", "GetPosition"], [273, 2, 1, "", "GetVisibility"], [273, 2, 1, "", "NewInstance"], [273, 2, 1, "", "SetPosition"], [273, 2, 1, "", "SetVisibility"], [273, 2, 1, "", "ShallowCopy"], [273, 2, 1, "", "__init__"], [273, 2, 1, "", "add"], [273, 2, 1, "", "add_to_scene"], [273, 3, 1, "", "anchor"], [273, 2, 1, "", "clear"], [273, 4, 1, "", "items"], [273, 3, 1, "", "padding"], [273, 2, 1, "", "remove_from_scene"], [273, 2, 1, "", "update"]], "fury.actors": [[274, 0, 0, "-", "odf_slicer"], [274, 0, 0, "-", "peak"], [274, 0, 0, "-", "tensor"]], "fury.actors.odf_slicer": [[274, 1, 1, "", "OdfSlicerActor"]], "fury.actors.odf_slicer.OdfSlicerActor": [[274, 2, 1, "", "__init__"], [274, 2, 1, "", "display"], [274, 2, 1, "", "display_extent"], [274, 2, 1, "", "set_opacity"], [274, 2, 1, "", "slice_along_axis"], [274, 2, 1, "", "update_sphere"]], "fury.actors.peak": [[274, 1, 1, "", "PeakActor"]], "fury.actors.peak.PeakActor": [[274, 2, 1, "", "__init__"], [274, 4, 1, "", "cross_section"], [274, 2, 1, "", "display_cross_section"], [274, 2, 1, "", "display_extent"], [274, 4, 1, "", "global_opacity"], [274, 4, 1, "", "high_ranges"], [274, 4, 1, "", "is_range"], [274, 4, 1, "", "linewidth"], [274, 4, 1, "", "low_ranges"], [274, 4, 1, "", "max_centers"], [274, 4, 1, "", "min_centers"]], "fury.actors.tensor": [[274, 5, 1, "", "double_cone"], [274, 5, 1, "", "main_dir_uncertainty"], [274, 5, 1, "", "tensor_ellipsoid"]], "fury.animation": [[275, 0, 0, "-", "animation"], [275, 0, 0, "-", "helpers"], [275, 0, 0, "-", "interpolator"], [275, 0, 0, "-", "timeline"]], "fury.animation.animation": [[275, 1, 1, "", "Animation"], [275, 1, 1, "", "CameraAnimation"]], "fury.animation.animation.Animation": [[275, 2, 1, "", "__init__"], [275, 4, 1, "id0", "actors"], [275, 2, 1, "", "add"], [275, 2, 1, "", "add_actor"], [275, 2, 1, "", "add_child_animation"], [275, 2, 1, "", "add_static_actor"], [275, 2, 1, "", "add_to_scene"], [275, 2, 1, "", "add_to_scene_at"], [275, 2, 1, "", "add_update_callback"], [275, 4, 1, "", "child_animations"], [275, 4, 1, "", "current_timestamp"], [275, 4, 1, "", "duration"], [275, 2, 1, "", "get_color"], [275, 2, 1, "", "get_current_value"], [275, 2, 1, "", "get_keyframes"], [275, 2, 1, "", "get_opacity"], [275, 2, 1, "", "get_position"], [275, 2, 1, "", "get_rotation"], [275, 2, 1, "", "get_scale"], [275, 2, 1, "", "get_value"], [275, 2, 1, "", "is_inside_scene_at"], [275, 2, 1, "", "is_interpolatable"], [275, 3, 1, "", "length"], [275, 4, 1, "id2", "loop"], [275, 3, 1, "", "motion_path_res"], [275, 4, 1, "", "parent_animation"], [275, 2, 1, "", "remove_actor"], [275, 2, 1, "", "remove_actors"], [275, 2, 1, "", "remove_animations"], [275, 2, 1, "", "remove_from_scene"], [275, 2, 1, "", "remove_from_scene_at"], [275, 2, 1, "", "set_color"], [275, 2, 1, "", "set_color_interpolator"], [275, 2, 1, "", "set_color_keyframes"], [275, 2, 1, "", "set_interpolator"], [275, 2, 1, "", "set_keyframe"], [275, 2, 1, "", "set_keyframes"], [275, 2, 1, "", "set_opacity"], [275, 2, 1, "", "set_opacity_interpolator"], [275, 2, 1, "", "set_opacity_keyframes"], [275, 2, 1, "", "set_position"], [275, 2, 1, "", "set_position_interpolator"], [275, 2, 1, "", "set_position_keyframes"], [275, 2, 1, "", "set_rotation"], [275, 2, 1, "", "set_rotation_as_vector"], [275, 2, 1, "", "set_rotation_interpolator"], [275, 2, 1, "", "set_scale"], [275, 2, 1, "", "set_scale_interpolator"], [275, 2, 1, "", "set_scale_keyframes"], [275, 4, 1, "", "static_actors"], [275, 4, 1, "", "timeline"], [275, 2, 1, "", "update_animation"], [275, 2, 1, "", "update_duration"], [275, 2, 1, "", "update_motion_path"]], "fury.animation.animation.CameraAnimation": [[275, 2, 1, "", "__init__"], [275, 4, 1, "id3", "camera"], [275, 2, 1, "", "get_focal"], [275, 2, 1, "", "get_view_up"], [275, 3, 1, "", "length"], [275, 3, 1, "", "loop"], [275, 3, 1, "", "motion_path_res"], [275, 2, 1, "", "set_focal"], [275, 2, 1, "", "set_focal_interpolator"], [275, 2, 1, "", "set_focal_keyframes"], [275, 2, 1, "", "set_view_up"], [275, 2, 1, "", "set_view_up_interpolator"], [275, 2, 1, "", "set_view_up_keyframes"], [275, 2, 1, "", "update_animation"]], "fury.animation.helpers": [[275, 5, 1, "", "euclidean_distances"], [275, 5, 1, "", "get_next_timestamp"], [275, 5, 1, "", "get_previous_timestamp"], [275, 5, 1, "", "get_time_tau"], [275, 5, 1, "", "get_timestamps_from_keyframes"], [275, 5, 1, "", "get_values_from_keyframes"], [275, 5, 1, "", "lerp"]], "fury.animation.interpolator": [[275, 5, 1, "", "color_interpolator"], [275, 5, 1, "", "cubic_bezier_interpolator"], [275, 5, 1, "", "cubic_spline_interpolator"], [275, 5, 1, "", "hsv_color_interpolator"], [275, 5, 1, "", "lab_color_interpolator"], [275, 5, 1, "", "linear_interpolator"], [275, 5, 1, "", "slerp"], [275, 5, 1, "", "spline_interpolator"], [275, 5, 1, "", "step_interpolator"], [275, 5, 1, "", "tan_cubic_spline_interpolator"], [275, 5, 1, "", "xyz_color_interpolator"]], "fury.animation.timeline": [[275, 1, 1, "", "Timeline"]], "fury.animation.timeline.Timeline": [[275, 2, 1, "", "__init__"], [275, 2, 1, "", "add_animation"], [275, 2, 1, "", "add_to_scene"], [275, 4, 1, "id4", "animations"], [275, 4, 1, "", "current_timestamp"], [275, 4, 1, "", "duration"], [275, 4, 1, "", "has_playback_panel"], [275, 3, 1, "", "length"], [275, 4, 1, "id5", "loop"], [275, 2, 1, "", "pause"], [275, 4, 1, "", "paused"], [275, 2, 1, "", "play"], [275, 3, 1, "", "playback_panel"], [275, 4, 1, "", "playing"], [275, 2, 1, "", "record"], [275, 2, 1, "", "remove_from_scene"], [275, 2, 1, "", "restart"], [275, 2, 1, "", "seek"], [275, 2, 1, "", "seek_percent"], [275, 4, 1, "", "speed"], [275, 2, 1, "", "stop"], [275, 4, 1, "", "stopped"], [275, 2, 1, "", "update"], [275, 2, 1, "", "update_duration"]], "fury.colormap": [[276, 3, 1, "id0", "T"], [276, 3, 1, "id15", "base"], [276, 5, 1, "", "boys2rgb"], [276, 5, 1, "", "cc"], [276, 5, 1, "", "colormap_lookup_table"], [276, 5, 1, "", "create_colormap"], [276, 3, 1, "id14", "ctypes"], [276, 3, 1, "id2", "data"], [276, 5, 1, "", "distinguishable_colormap"], [276, 3, 1, "id3", "dtype"], [276, 3, 1, "id4", "flags"], [276, 3, 1, "id5", "flat"], [276, 5, 1, "", "get_cmap"], [276, 5, 1, "", "get_xyz_coords"], [276, 5, 1, "", "hex_to_rgb"], [276, 5, 1, "", "hsv2rgb"], [276, 3, 1, "id6", "imag"], [276, 3, 1, "id9", "itemsize"], [276, 5, 1, "", "lab2rgb"], [276, 5, 1, "", "lab2xyz"], [276, 5, 1, "", "line_colors"], [276, 3, 1, "id10", "nbytes"], [276, 3, 1, "id11", "ndim"], [276, 5, 1, "", "orient2rgb"], [276, 3, 1, "id7", "real"], [276, 5, 1, "", "rgb2hsv"], [276, 5, 1, "", "rgb2lab"], [276, 5, 1, "", "rgb2xyz"], [276, 5, 1, "", "rgb_from_xyz"], [276, 3, 1, "id12", "shape"], [276, 3, 1, "id8", "size"], [276, 5, 1, "", "ss"], [276, 3, 1, "id13", "strides"], [276, 5, 1, "", "xyz2lab"], [276, 5, 1, "", "xyz2rgb"], [276, 5, 1, "", "xyz_from_rgb"]], "fury.convert": [[277, 5, 1, "", "matplotlib_figure_to_numpy"]], "fury.data": [[278, 5, 1, "", "DATA_DIR"], [278, 0, 0, "-", "fetcher"]], "fury.data.fetcher": [[278, 5, 1, "", "check_sha"], [278, 5, 1, "", "copyfileobj_withprogress"], [278, 5, 1, "", "fetch_data"], [278, 5, 1, "", "fetch_gltf"], [278, 5, 1, "", "fetch_viz_cubemaps"], [278, 5, 1, "", "fetch_viz_dmri"], [278, 5, 1, "", "fetch_viz_icons"], [278, 5, 1, "", "fetch_viz_models"], [278, 5, 1, "", "fetch_viz_new_icons"], [278, 5, 1, "", "fetch_viz_textures"], [278, 5, 1, "", "fetch_viz_wiki_nw"], [278, 5, 1, "", "list_gltf_sample_models"], [278, 5, 1, "", "read_viz_cubemap"], [278, 5, 1, "", "read_viz_dmri"], [278, 5, 1, "", "read_viz_gltf"], [278, 5, 1, "", "read_viz_icons"], [278, 5, 1, "", "read_viz_models"], [278, 5, 1, "", "read_viz_textures"], [278, 5, 1, "", "update_progressbar"]], "fury.decorators": [[279, 5, 1, "", "SKIP_RE"], [279, 5, 1, "", "doctest_skip_parser"]], "fury.deprecator": [[280, 1, 1, "", "ArgsDeprecationWarning"], [280, 1, 1, "", "ExpiredDeprecationError"], [280, 5, 1, "", "_LEADING_WHITE"], [280, 5, 1, "", "cmp_pkg_version"], [280, 5, 1, "", "deprecate_with_version"], [280, 5, 1, "", "deprecated_params"], [280, 5, 1, "", "is_bad_version"]], "fury.deprecator.ArgsDeprecationWarning": [[280, 2, 1, "", "__init__"]], "fury.deprecator.ExpiredDeprecationError": [[280, 2, 1, "", "__init__"]], "fury.gltf": [[281, 5, 1, "", "export_scene"], [281, 5, 1, "", "get_prim"], [281, 1, 1, "", "glTF"], [281, 5, 1, "", "write_accessor"], [281, 5, 1, "", "write_buffer"], [281, 5, 1, "", "write_bufferview"], [281, 5, 1, "", "write_camera"], [281, 5, 1, "", "write_material"], [281, 5, 1, "", "write_mesh"], [281, 5, 1, "", "write_node"], [281, 5, 1, "", "write_scene"]], "fury.gltf.glTF": [[281, 2, 1, "", "__init__"], [281, 2, 1, "", "actors"], [281, 2, 1, "", "apply_morph_vertices"], [281, 2, 1, "", "apply_skin_matrix"], [281, 2, 1, "", "generate_tmatrix"], [281, 2, 1, "", "get_acc_data"], [281, 2, 1, "", "get_animations"], [281, 2, 1, "", "get_buff_array"], [281, 2, 1, "", "get_joint_actors"], [281, 2, 1, "", "get_materials"], [281, 2, 1, "", "get_matrix_from_sampler"], [281, 2, 1, "", "get_morph_data"], [281, 2, 1, "", "get_sampler_data"], [281, 2, 1, "", "get_skin_data"], [281, 2, 1, "", "get_texture"], [281, 2, 1, "", "initialize_skin"], [281, 2, 1, "", "inspect_scene"], [281, 2, 1, "", "load_camera"], [281, 2, 1, "", "load_mesh"], [281, 2, 1, "", "main_animation"], [281, 2, 1, "", "morph_animation"], [281, 2, 1, "", "skin_animation"], [281, 2, 1, "", "transverse_animations"], [281, 2, 1, "", "transverse_bones"], [281, 2, 1, "", "transverse_channels"], [281, 2, 1, "", "transverse_node"], [281, 2, 1, "", "update_morph"], [281, 2, 1, "", "update_skin"]], "fury.io": [[282, 5, 1, "", "load_cubemap_texture"], [282, 5, 1, "", "load_image"], [282, 5, 1, "", "load_polydata"], [282, 5, 1, "", "load_sprite_sheet"], [282, 5, 1, "", "load_text"], [282, 5, 1, "", "save_image"], [282, 5, 1, "", "save_polydata"]], "fury.layout": [[283, 1, 1, "", "GridLayout"], [283, 1, 1, "", "HorizontalLayout"], [283, 1, 1, "", "Layout"], [283, 1, 1, "", "VerticalLayout"], [283, 1, 1, "", "XLayout"], [283, 1, 1, "", "YLayout"], [283, 1, 1, "", "ZLayout"]], "fury.layout.GridLayout": [[283, 2, 1, "", "__init__"], [283, 2, 1, "", "compute_positions"], [283, 2, 1, "", "compute_sizes"], [283, 2, 1, "", "get_cells_shape"]], "fury.layout.HorizontalLayout": [[283, 2, 1, "", "__init__"], [283, 2, 1, "", "compute_positions"]], "fury.layout.Layout": [[283, 2, 1, "", "__init__"], [283, 2, 1, "", "apply"], [283, 2, 1, "", "compute_positions"]], "fury.layout.VerticalLayout": [[283, 2, 1, "", "__init__"], [283, 2, 1, "", "compute_positions"]], "fury.layout.XLayout": [[283, 2, 1, "", "__init__"], [283, 2, 1, "", "apply"], [283, 2, 1, "", "compute_positions"], [283, 2, 1, "", "get_cells_shape"]], "fury.layout.YLayout": [[283, 2, 1, "", "__init__"], [283, 2, 1, "", "apply"], [283, 2, 1, "", "compute_positions"], [283, 2, 1, "", "get_cells_shape"]], "fury.layout.ZLayout": [[283, 2, 1, "", "__init__"], [283, 2, 1, "", "apply"], [283, 2, 1, "", "compute_positions"], [283, 2, 1, "", "get_cells_shape"]], "fury.lib": [[284, 3, 1, "", "Actor"], [284, 3, 1, "", "Actor2D"], [284, 3, 1, "", "AlgorithmOutput"], [284, 3, 1, "", "ArrowSource"], [284, 3, 1, "", "Assembly"], [284, 3, 1, "", "BMPReader"], [284, 3, 1, "", "BMPWriter"], [284, 3, 1, "", "ButterflySubdivisionFilter"], [284, 3, 1, "", "Camera"], [284, 3, 1, "", "CellArray"], [284, 3, 1, "", "CellPicker"], [284, 3, 1, "", "CleanPolyData"], [284, 3, 1, "", "Command"], [284, 3, 1, "", "ConeSource"], [284, 3, 1, "", "ContourFilter"], [284, 3, 1, "", "CylinderSource"], [284, 3, 1, "id0", "DataObject"], [284, 3, 1, "", "DataSetAttributes"], [284, 3, 1, "", "DataSetMapper"], [284, 3, 1, "", "DiskSource"], [284, 3, 1, "", "DoubleArray"], [284, 3, 1, "", "FloatArray"], [284, 3, 1, "", "Follower"], [284, 3, 1, "", "Glyph3D"], [284, 3, 1, "", "HardwareSelector"], [284, 3, 1, "", "IdTypeArray"], [284, 3, 1, "", "ImageActor"], [284, 3, 1, "", "ImageData"], [284, 3, 1, "", "ImageFlip"], [284, 3, 1, "", "ImageMapToColors"], [284, 3, 1, "", "ImageReader2Factory"], [284, 3, 1, "", "ImageReslice"], [284, 3, 1, "", "InteractorEventRecorder"], [284, 3, 1, "", "InteractorStyle"], [284, 3, 1, "", "InteractorStyleImage"], [284, 3, 1, "", "InteractorStyleTrackballActor"], [284, 3, 1, "", "InteractorStyleTrackballCamera"], [284, 3, 1, "", "InteractorStyleUser"], [284, 3, 1, "", "JPEGReader"], [284, 3, 1, "", "JPEGWriter"], [284, 3, 1, "", "LODActor"], [284, 3, 1, "", "LinearExtrusionFilter"], [284, 3, 1, "", "LookupTable"], [284, 3, 1, "", "LoopSubdivisionFilter"], [284, 3, 1, "", "MNIObjectReader"], [284, 3, 1, "", "MNIObjectWriter"], [284, 3, 1, "", "Matrix3x3"], [284, 3, 1, "", "Matrix4x4"], [284, 3, 1, "", "Molecule"], [284, 3, 1, "", "OBJReader"], [284, 3, 1, "", "OpenGLMoleculeMapper"], [284, 3, 1, "", "OpenGLRenderer"], [284, 3, 1, "", "OutlineFilter"], [284, 3, 1, "", "PLYReader"], [284, 3, 1, "", "PLYWriter"], [284, 3, 1, "", "PNGReader"], [284, 3, 1, "", "PNGWriter"], [284, 3, 1, "", "PeriodicTable"], [284, 3, 1, "", "PointPicker"], [284, 3, 1, "", "Points"], [284, 3, 1, "", "PolyData"], [284, 3, 1, "", "PolyDataMapper"], [284, 3, 1, "", "PolyDataMapper2D"], [284, 3, 1, "", "PolyDataNormals"], [284, 3, 1, "", "PolyDataReader"], [284, 3, 1, "", "PolyDataWriter"], [284, 3, 1, "", "PolyVertex"], [284, 3, 1, "", "Polygon"], [284, 3, 1, "", "PropPicker"], [284, 3, 1, "", "Property2D"], [284, 3, 1, "", "ProteinRibbonFilter"], [284, 3, 1, "", "RegularPolygonSource"], [284, 3, 1, "", "RenderLargeImage"], [284, 3, 1, "", "RenderWindow"], [284, 3, 1, "", "RenderWindowInteractor"], [284, 3, 1, "", "Renderer"], [284, 3, 1, "", "STLReader"], [284, 3, 1, "", "STLWriter"], [284, 3, 1, "", "ScalarBarActor"], [284, 3, 1, "", "Shader"], [284, 3, 1, "", "SimpleBondPerceiver"], [284, 3, 1, "", "Skybox"], [284, 3, 1, "", "SphereSource"], [284, 3, 1, "", "SplineFilter"], [284, 3, 1, "", "StringArray"], [284, 3, 1, "", "TIFFReader"], [284, 3, 1, "", "TIFFWriter"], [284, 3, 1, "", "TextActor"], [284, 3, 1, "", "TextActor3D"], [284, 3, 1, "", "Texture"], [284, 3, 1, "", "TextureMapToPlane"], [284, 3, 1, "", "TexturedActor2D"], [284, 3, 1, "", "TexturedSphereSource"], [284, 3, 1, "", "Transform"], [284, 3, 1, "", "TransformPolyDataFilter"], [284, 3, 1, "", "TriangleFilter"], [284, 3, 1, "", "TubeFilter"], [284, 3, 1, "", "UnsignedCharArray"], [284, 3, 1, "", "UnstructuredGrid"], [284, 5, 1, "", "VTK_VERSION"], [284, 3, 1, "", "VectorText"], [284, 3, 1, "", "Volume"], [284, 3, 1, "", "WindowToImageFilter"], [284, 3, 1, "", "WorldPointPicker"], [284, 3, 1, "", "XMLPolyDataReader"], [284, 3, 1, "", "XMLPolyDataWriter"]], "fury.material": [[285, 5, 1, "", "manifest_pbr"], [285, 5, 1, "", "manifest_principled"], [285, 5, 1, "", "manifest_standard"]], "fury.molecular": [[286, 1, 1, "", "Molecule"], [286, 1, 1, "", "PTable"], [286, 5, 1, "", "add_atom"], [286, 5, 1, "", "add_bond"], [286, 5, 1, "", "ball_stick"], [286, 5, 1, "", "bounding_box"], [286, 5, 1, "", "compute_bonding"], [286, 5, 1, "", "deep_copy_molecule"], [286, 5, 1, "", "get_all_atomic_numbers"], [286, 5, 1, "", "get_all_atomic_positions"], [286, 5, 1, "", "get_all_bond_orders"], [286, 5, 1, "", "get_atomic_number"], [286, 5, 1, "", "get_atomic_position"], [286, 5, 1, "", "get_bond_order"], [286, 5, 1, "", "ribbon"], [286, 5, 1, "", "set_atomic_number"], [286, 5, 1, "", "set_atomic_position"], [286, 5, 1, "", "set_bond_order"], [286, 5, 1, "", "sphere_cpk"], [286, 5, 1, "", "stick"]], "fury.molecular.Molecule": [[286, 2, 1, "", "__init__"], [286, 4, 1, "", "total_num_atoms"], [286, 4, 1, "", "total_num_bonds"]], "fury.molecular.PTable": [[286, 2, 1, "", "__init__"], [286, 2, 1, "", "atom_color"], [286, 2, 1, "", "atomic_number"], [286, 2, 1, "", "atomic_radius"], [286, 2, 1, "", "atomic_symbol"], [286, 2, 1, "", "element_name"]], "fury.pick": [[287, 1, 1, "", "PickingManager"], [287, 1, 1, "", "SelectionManager"]], "fury.pick.PickingManager": [[287, 2, 1, "", "__init__"], [287, 2, 1, "", "event_position"], [287, 2, 1, "", "pick"], [287, 2, 1, "", "pickable_off"], [287, 2, 1, "", "pickable_on"]], "fury.pick.SelectionManager": [[287, 2, 1, "", "__init__"], [287, 2, 1, "", "event_position"], [287, 2, 1, "id0", "pick"], [287, 2, 1, "id1", "select"], [287, 2, 1, "", "selectable_off"], [287, 2, 1, "", "selectable_on"], [287, 2, 1, "", "update_selection_type"]], "fury.pkg_info": [[288, 5, 1, "", "pkg_commit_hash"]], "fury.primitive": [[289, 5, 1, "", "faces_from_sphere_vertices"], [289, 5, 1, "", "prim_arrow"], [289, 5, 1, "", "prim_box"], [289, 5, 1, "", "prim_cone"], [289, 5, 1, "", "prim_cylinder"], [289, 5, 1, "", "prim_frustum"], [289, 5, 1, "", "prim_icosahedron"], [289, 5, 1, "", "prim_octagonalprism"], [289, 5, 1, "", "prim_pentagonalprism"], [289, 5, 1, "", "prim_rhombicuboctahedron"], [289, 5, 1, "", "prim_sphere"], [289, 5, 1, "", "prim_square"], [289, 5, 1, "", "prim_star"], [289, 5, 1, "", "prim_superquadric"], [289, 5, 1, "", "prim_tetrahedron"], [289, 5, 1, "", "prim_triangularprism"], [289, 5, 1, "", "repeat_primitive"], [289, 5, 1, "", "repeat_primitive_function"]], "fury.shaders": [[290, 0, 0, "-", "base"]], "fury.shaders.base": [[290, 5, 1, "", "SHADERS_DIR"], [290, 5, 1, "", "add_shader_callback"], [290, 5, 1, "", "attribute_to_actor"], [290, 5, 1, "", "compose_shader"], [290, 5, 1, "", "import_fury_shader"], [290, 5, 1, "", "load"], [290, 5, 1, "", "load_shader"], [290, 5, 1, "", "replace_shader_in_actor"], [290, 5, 1, "", "shader_apply_effects"], [290, 5, 1, "", "shader_to_actor"]], "fury.stream": [[291, 0, 0, "-", "client"], [291, 0, 0, "-", "constants"], [291, 0, 0, "-", "server"], [291, 0, 0, "-", "tools"], [291, 0, 0, "-", "widget"]], "fury.stream.client": [[291, 1, 1, "", "FuryStreamClient"], [291, 1, 1, "", "FuryStreamInteraction"], [291, 5, 1, "", "callback_stream_client"], [291, 5, 1, "", "interaction_callback"]], "fury.stream.client.FuryStreamClient": [[291, 2, 1, "", "__init__"], [291, 2, 1, "", "cleanup"], [291, 2, 1, "", "start"], [291, 2, 1, "", "stop"]], "fury.stream.client.FuryStreamInteraction": [[291, 2, 1, "", "__init__"], [291, 2, 1, "", "cleanup"], [291, 2, 1, "", "start"], [291, 2, 1, "", "stop"]], "fury.stream.constants": [[291, 5, 1, "", "_CQUEUE"], [291, 5, 1, "", "_CQUEUE_EVENT_IDs"], [291, 5, 1, "", "_CQUEUE_INDEX_INFO"]], "fury.stream.server": [[291, 0, 0, "-", "async_app"], [291, 0, 0, "-", "main"]], "fury.stream.server.async_app": [[291, 5, 1, "", "get_app"], [291, 5, 1, "", "pcs"], [291, 5, 1, "", "set_mouse"], [291, 5, 1, "", "set_mouse_click"], [291, 5, 1, "", "set_weel"]], "fury.stream.server.main": [[291, 1, 1, "", "RTCServer"], [291, 5, 1, "", "web_server"], [291, 5, 1, "", "web_server_raw_array"]], "fury.stream.server.main.RTCServer": [[291, 2, 1, "", "__init__"], [291, 2, 1, "", "recv"], [291, 2, 1, "", "release"]], "fury.stream.tools": [[291, 1, 1, "", "ArrayCircularQueue"], [291, 1, 1, "", "GenericCircularQueue"], [291, 1, 1, "", "GenericImageBufferManager"], [291, 1, 1, "", "GenericMultiDimensionalBuffer"], [291, 1, 1, "", "IntervalTimer"], [291, 1, 1, "", "IntervalTimerThreading"], [291, 1, 1, "", "RawArrayImageBufferManager"], [291, 1, 1, "", "RawArrayMultiDimensionalBuffer"], [291, 1, 1, "", "SharedMemCircularQueue"], [291, 1, 1, "", "SharedMemImageBufferManager"], [291, 1, 1, "", "SharedMemMultiDimensionalBuffer"], [291, 5, 1, "", "remove_shm_from_resource_tracker"]], "fury.stream.tools.ArrayCircularQueue": [[291, 2, 1, "", "__init__"], [291, 2, 1, "", "cleanup"], [291, 2, 1, "", "create_mem_resource"], [291, 2, 1, "", "dequeue"], [291, 2, 1, "", "enqueue"], [291, 2, 1, "", "load_mem_resource"]], "fury.stream.tools.GenericCircularQueue": [[291, 2, 1, "", "__init__"], [291, 2, 1, "", "cleanup"], [291, 2, 1, "", "create_mem_resource"], [291, 2, 1, "", "dequeue"], [291, 2, 1, "", "enqueue"], [291, 4, 1, "", "head"], [291, 2, 1, "", "load_mem_resource"], [291, 2, 1, "", "set_head_tail"], [291, 4, 1, "", "tail"]], "fury.stream.tools.GenericImageBufferManager": [[291, 2, 1, "", "__init__"], [291, 2, 1, "", "async_get_jpeg"], [291, 4, 1, "", "buffer_index"], [291, 2, 1, "", "cleanup"], [291, 2, 1, "", "create_mem_resource"], [291, 2, 1, "", "get_current_frame"], [291, 2, 1, "", "get_jpeg"], [291, 2, 1, "", "load_mem_resource"], [291, 4, 1, "", "next_buffer_index"], [291, 2, 1, "", "write_into"]], "fury.stream.tools.GenericMultiDimensionalBuffer": [[291, 2, 1, "", "__init__"], [291, 4, 1, "", "buffer"], [291, 2, 1, "", "cleanup"], [291, 2, 1, "", "create_mem_resource"], [291, 2, 1, "", "get_start_end"], [291, 2, 1, "", "load_mem_resource"]], "fury.stream.tools.IntervalTimer": [[291, 2, 1, "", "__init__"], [291, 2, 1, "", "start"], [291, 2, 1, "", "stop"]], "fury.stream.tools.IntervalTimerThreading": [[291, 2, 1, "", "__init__"], [291, 2, 1, "", "start"], [291, 2, 1, "", "stop"]], "fury.stream.tools.RawArrayImageBufferManager": [[291, 2, 1, "", "__init__"], [291, 2, 1, "", "cleanup"], [291, 2, 1, "", "create_mem_resource"], [291, 2, 1, "", "load_mem_resource"]], "fury.stream.tools.RawArrayMultiDimensionalBuffer": [[291, 2, 1, "", "__init__"], [291, 2, 1, "", "cleanup"], [291, 2, 1, "", "create_mem_resource"], [291, 2, 1, "", "load_mem_resource"]], "fury.stream.tools.SharedMemCircularQueue": [[291, 2, 1, "", "__init__"], [291, 2, 1, "", "cleanup"], [291, 2, 1, "", "create_mem_resource"], [291, 2, 1, "", "dequeue"], [291, 2, 1, "", "enqueue"], [291, 2, 1, "", "is_unlocked"], [291, 2, 1, "", "load_mem_resource"], [291, 2, 1, "", "lock"], [291, 2, 1, "", "unlock"]], "fury.stream.tools.SharedMemImageBufferManager": [[291, 2, 1, "", "__init__"], [291, 2, 1, "", "cleanup"], [291, 2, 1, "", "create_mem_resource"], [291, 2, 1, "", "load_mem_resource"]], "fury.stream.tools.SharedMemMultiDimensionalBuffer": [[291, 2, 1, "", "__init__"], [291, 2, 1, "", "cleanup"], [291, 2, 1, "", "create_mem_resource"], [291, 2, 1, "", "load_mem_resource"]], "fury.stream.widget": [[291, 1, 1, "", "Widget"], [291, 5, 1, "", "check_port_is_available"]], "fury.stream.widget.Widget": [[291, 2, 1, "", "__init__"], [291, 2, 1, "", "cleanup"], [291, 4, 1, "", "command_string"], [291, 2, 1, "", "display"], [291, 2, 1, "", "return_iframe"], [291, 2, 1, "", "run_command"], [291, 2, 1, "", "start"], [291, 2, 1, "", "stop"], [291, 4, 1, "", "url"]], "fury.transform": [[292, 5, 1, "", "_TUPLE2AXES"], [292, 5, 1, "", "apply_transformation"], [292, 5, 1, "", "cart2sphere"], [292, 5, 1, "", "euler_matrix"], [292, 5, 1, "", "rotate"], [292, 5, 1, "", "scale"], [292, 5, 1, "", "sphere2cart"], [292, 5, 1, "", "transform_from_matrix"], [292, 5, 1, "", "translate"]], "fury.ui": [[293, 0, 0, "-", "containers"], [293, 0, 0, "-", "core"], [293, 0, 0, "-", "elements"], [293, 0, 0, "-", "helpers"]], "fury.ui.containers": [[293, 1, 1, "", "GridUI"], [293, 1, 1, "", "ImageContainer2D"], [293, 1, 1, "", "Panel2D"], [293, 1, 1, "", "TabPanel2D"], [293, 1, 1, "", "TabUI"]], "fury.ui.containers.GridUI": [[293, 3, 1, "", "ANTICLOCKWISE_ROTATION_X"], [293, 3, 1, "", "ANTICLOCKWISE_ROTATION_Y"], [293, 3, 1, "", "CLOCKWISE_ROTATION_X"], [293, 3, 1, "", "CLOCKWISE_ROTATION_Y"], [293, 2, 1, "", "__init__"], [293, 2, 1, "", "key_press_callback"], [293, 2, 1, "", "left_click_callback"], [293, 2, 1, "", "left_click_callback2"], [293, 2, 1, "", "left_release_callback"], [293, 2, 1, "", "left_release_callback2"], [293, 2, 1, "", "mouse_move_callback"], [293, 2, 1, "", "mouse_move_callback2"], [293, 2, 1, "", "resize"]], "fury.ui.containers.ImageContainer2D": [[293, 2, 1, "", "__init__"], [293, 3, 1, "", "img"], [293, 2, 1, "", "resize"], [293, 2, 1, "", "scale"], [293, 2, 1, "", "set_img"], [293, 3, 1, "", "size"]], "fury.ui.containers.Panel2D": [[293, 2, 1, "", "__init__"], [293, 2, 1, "", "add_element"], [293, 3, 1, "", "alignment"], [293, 4, 1, "", "border_color"], [293, 4, 1, "", "border_width"], [293, 4, 1, "", "color"], [293, 2, 1, "", "left_button_dragged"], [293, 2, 1, "", "left_button_pressed"], [293, 4, 1, "", "opacity"], [293, 2, 1, "", "re_align"], [293, 2, 1, "", "remove_element"], [293, 2, 1, "", "resize"], [293, 2, 1, "", "set_visibility"], [293, 2, 1, "", "update_border_coords"], [293, 2, 1, "", "update_element"]], "fury.ui.containers.TabPanel2D": [[293, 2, 1, "", "__init__"], [293, 2, 1, "", "add_element"], [293, 4, 1, "", "color"], [293, 3, 1, "", "content_panel"], [293, 2, 1, "", "remove_element"], [293, 2, 1, "", "resize"], [293, 3, 1, "", "text_block"], [293, 4, 1, "", "title"], [293, 4, 1, "", "title_bold"], [293, 4, 1, "", "title_color"], [293, 4, 1, "", "title_font_size"], [293, 4, 1, "", "title_italic"], [293, 2, 1, "", "update_element"]], "fury.ui.containers.TabUI": [[293, 2, 1, "", "__init__"], [293, 2, 1, "", "add_element"], [293, 2, 1, "", "collapse_tab_ui"], [293, 2, 1, "", "left_button_dragged"], [293, 2, 1, "", "left_button_pressed"], [293, 2, 1, "", "remove_element"], [293, 2, 1, "", "select_tab_callback"], [293, 3, 1, "", "tabs"], [293, 2, 1, "", "update_element"], [293, 2, 1, "", "update_tabs"]], "fury.ui.core": [[293, 1, 1, "", "Button2D"], [293, 1, 1, "", "Disk2D"], [293, 1, 1, "", "Rectangle2D"], [293, 1, 1, "", "TextBlock2D"], [293, 1, 1, "", "UI"]], "fury.ui.core.Button2D": [[293, 2, 1, "", "__init__"], [293, 4, 1, "", "color"], [293, 2, 1, "", "next_icon"], [293, 2, 1, "", "next_icon_id"], [293, 2, 1, "", "resize"], [293, 2, 1, "", "scale"], [293, 2, 1, "", "set_icon"], [293, 2, 1, "", "set_icon_by_name"]], "fury.ui.core.Disk2D": [[293, 2, 1, "", "__init__"], [293, 4, 1, "", "color"], [293, 4, 1, "", "inner_radius"], [293, 4, 1, "", "opacity"], [293, 4, 1, "", "outer_radius"]], "fury.ui.core.Rectangle2D": [[293, 2, 1, "", "__init__"], [293, 4, 1, "", "color"], [293, 4, 1, "", "height"], [293, 4, 1, "", "opacity"], [293, 2, 1, "", "resize"], [293, 4, 1, "", "width"]], "fury.ui.core.TextBlock2D": [[293, 2, 1, "", "__init__"], [293, 3, 1, "", "actor"], [293, 4, 1, "id4", "auto_font_scale"], [293, 4, 1, "", "background_color"], [293, 3, 1, "", "bg_color"], [293, 4, 1, "id5", "bold"], [293, 2, 1, "", "cal_size_from_message"], [293, 4, 1, "id6", "color"], [293, 4, 1, "id7", "dynamic_bbox"], [293, 4, 1, "id8", "font_family"], [293, 4, 1, "id9", "font_size"], [293, 4, 1, "id10", "italic"], [293, 4, 1, "id11", "justification"], [293, 4, 1, "id12", "message"], [293, 3, 1, "", "position"], [293, 2, 1, "", "resize"], [293, 4, 1, "id13", "shadow"], [293, 3, 1, "", "size"], [293, 2, 1, "", "update_alignment"], [293, 2, 1, "", "update_bounding_box"], [293, 4, 1, "id14", "vertical_justification"]], "fury.ui.core.UI": [[293, 2, 1, "", "__init__"], [293, 4, 1, "", "actors"], [293, 2, 1, "", "add_callback"], [293, 2, 1, "", "add_to_scene"], [293, 4, 1, "id0", "center"], [293, 2, 1, "", "handle_events"], [293, 2, 1, "", "key_press_callback"], [293, 2, 1, "", "left_button_click_callback"], [293, 2, 1, "", "left_button_release_callback"], [293, 2, 1, "", "middle_button_click_callback"], [293, 2, 1, "", "middle_button_release_callback"], [293, 2, 1, "", "mouse_move_callback"], [293, 3, 1, "", "on_key_press"], [293, 3, 1, "", "on_left_mouse_button_clicked"], [293, 3, 1, "", "on_left_mouse_button_dragged"], [293, 3, 1, "", "on_left_mouse_button_pressed"], [293, 3, 1, "", "on_left_mouse_button_released"], [293, 3, 1, "", "on_left_mouse_double_clicked"], [293, 3, 1, "", "on_middle_mouse_button_clicked"], [293, 3, 1, "", "on_middle_mouse_button_dragged"], [293, 3, 1, "", "on_middle_mouse_button_pressed"], [293, 3, 1, "", "on_middle_mouse_button_released"], [293, 3, 1, "", "on_middle_mouse_double_clicked"], [293, 3, 1, "", "on_right_mouse_button_clicked"], [293, 3, 1, "", "on_right_mouse_button_dragged"], [293, 3, 1, "", "on_right_mouse_button_pressed"], [293, 3, 1, "", "on_right_mouse_button_released"], [293, 3, 1, "", "on_right_mouse_double_clicked"], [293, 4, 1, "id2", "position"], [293, 2, 1, "", "right_button_click_callback"], [293, 2, 1, "", "right_button_release_callback"], [293, 2, 1, "", "set_visibility"], [293, 4, 1, "id3", "size"]], "fury.ui.elements": [[293, 1, 1, "", "Card2D"], [293, 1, 1, "", "Checkbox"], [293, 1, 1, "", "ComboBox2D"], [293, 1, 1, "", "DrawPanel"], [293, 1, 1, "", "DrawShape"], [293, 1, 1, "", "FileMenu2D"], [293, 1, 1, "", "LineDoubleSlider2D"], [293, 1, 1, "", "LineSlider2D"], [293, 1, 1, "", "ListBox2D"], [293, 1, 1, "", "ListBoxItem2D"], [293, 1, 1, "", "Option"], [293, 1, 1, "", "PlaybackPanel"], [293, 1, 1, "", "RadioButton"], [293, 1, 1, "", "RangeSlider"], [293, 1, 1, "", "RingSlider2D"], [293, 1, 1, "", "SpinBox"], [293, 1, 1, "", "TextBox2D"]], "fury.ui.elements.Card2D": [[293, 2, 1, "", "__init__"], [293, 4, 1, "", "body"], [293, 3, 1, "", "body_box"], [293, 4, 1, "", "color"], [293, 3, 1, "", "image"], [293, 2, 1, "", "left_button_dragged"], [293, 2, 1, "", "left_button_pressed"], [293, 2, 1, "", "resize"], [293, 4, 1, "", "title"], [293, 3, 1, "", "title_box"]], "fury.ui.elements.Checkbox": [[293, 2, 1, "", "__init__"], [293, 4, 1, "", "font_size"], [293, 3, 1, "", "labels"], [293, 3, 1, "", "options"], [293, 4, 1, "id17", "padding"]], "fury.ui.elements.ComboBox2D": [[293, 2, 1, "", "__init__"], [293, 2, 1, "", "append_item"], [293, 3, 1, "", "drop_down_button"], [293, 3, 1, "", "drop_down_menu"], [293, 2, 1, "", "left_button_dragged"], [293, 2, 1, "", "left_button_pressed"], [293, 2, 1, "", "menu_toggle_callback"], [293, 2, 1, "", "resize"], [293, 2, 1, "", "select_option_callback"], [293, 4, 1, "", "selected_text"], [293, 4, 1, "", "selected_text_index"], [293, 3, 1, "", "selection_box"], [293, 2, 1, "", "set_visibility"]], "fury.ui.elements.DrawPanel": [[293, 2, 1, "", "__init__"], [293, 2, 1, "", "cal_min_boundary_distance"], [293, 2, 1, "", "clamp_mouse_position"], [293, 4, 1, "", "current_mode"], [293, 2, 1, "", "draw_shape"], [293, 2, 1, "", "handle_mouse_click"], [293, 2, 1, "", "handle_mouse_drag"], [293, 2, 1, "", "left_button_dragged"], [293, 2, 1, "", "left_button_pressed"], [293, 2, 1, "", "resize"], [293, 2, 1, "", "resize_shape"], [293, 2, 1, "", "show_rotation_slider"], [293, 2, 1, "", "update_button_icons"], [293, 2, 1, "", "update_shape_selection"]], "fury.ui.elements.DrawShape": [[293, 2, 1, "", "__init__"], [293, 2, 1, "", "cal_bounding_box"], [293, 4, 1, "", "center"], [293, 2, 1, "", "clamp_position"], [293, 4, 1, "", "is_selected"], [293, 2, 1, "", "left_button_dragged"], [293, 2, 1, "", "left_button_pressed"], [293, 2, 1, "", "left_button_released"], [293, 2, 1, "", "remove"], [293, 2, 1, "", "resize"], [293, 2, 1, "", "rotate"], [293, 2, 1, "", "selection_change"], [293, 2, 1, "", "update_shape_position"]], "fury.ui.elements.FileMenu2D": [[293, 2, 1, "", "__init__"], [293, 2, 1, "", "directory_click_callback"], [293, 3, 1, "", "extensions"], [293, 2, 1, "", "get_all_file_names"], [293, 2, 1, "", "get_directory_names"], [293, 2, 1, "", "get_file_names"], [293, 3, 1, "", "listbox"], [293, 2, 1, "", "resize"], [293, 2, 1, "", "scroll_callback"], [293, 2, 1, "", "set_slot_colors"]], "fury.ui.elements.LineDoubleSlider2D": [[293, 2, 1, "", "__init__"], [293, 3, 1, "", "active_color"], [293, 4, 1, "", "bottom_disk_ratio"], [293, 4, 1, "", "bottom_disk_value"], [293, 4, 1, "", "bottom_y_position"], [293, 2, 1, "", "coord_to_ratio"], [293, 3, 1, "", "default_color"], [293, 2, 1, "", "format_text"], [293, 2, 1, "", "handle_move_callback"], [293, 2, 1, "", "handle_release_callback"], [293, 3, 1, "", "handles"], [293, 4, 1, "", "left_disk_ratio"], [293, 4, 1, "", "left_disk_value"], [293, 4, 1, "", "left_x_position"], [293, 3, 1, "", "length"], [293, 3, 1, "", "line_width"], [293, 2, 1, "", "ratio_to_coord"], [293, 2, 1, "", "ratio_to_value"], [293, 4, 1, "", "right_disk_ratio"], [293, 4, 1, "", "right_disk_value"], [293, 4, 1, "", "right_x_position"], [293, 2, 1, "", "set_position"], [293, 3, 1, "", "shape"], [293, 3, 1, "", "text"], [293, 4, 1, "", "top_disk_ratio"], [293, 4, 1, "", "top_disk_value"], [293, 4, 1, "", "top_y_position"], [293, 3, 1, "", "track"], [293, 2, 1, "", "update"], [293, 2, 1, "", "value_to_ratio"]], "fury.ui.elements.LineSlider2D": [[293, 2, 1, "", "__init__"], [293, 3, 1, "", "active_color"], [293, 4, 1, "", "bottom_y_position"], [293, 3, 1, "", "default_color"], [293, 2, 1, "", "format_text"], [293, 3, 1, "", "handle"], [293, 2, 1, "", "handle_move_callback"], [293, 2, 1, "", "handle_release_callback"], [293, 4, 1, "", "left_x_position"], [293, 3, 1, "", "length"], [293, 3, 1, "", "line_width"], [293, 4, 1, "", "ratio"], [293, 4, 1, "", "right_x_position"], [293, 2, 1, "", "set_position"], [293, 3, 1, "", "shape"], [293, 3, 1, "", "text"], [293, 4, 1, "", "top_y_position"], [293, 3, 1, "", "track"], [293, 2, 1, "", "track_click_callback"], [293, 2, 1, "", "update"], [293, 4, 1, "", "value"]], "fury.ui.elements.ListBox2D": [[293, 2, 1, "", "__init__"], [293, 2, 1, "", "clear_selection"], [293, 2, 1, "", "down_button_callback"], [293, 3, 1, "", "on_change"], [293, 2, 1, "", "resize"], [293, 2, 1, "", "scroll_click_callback"], [293, 2, 1, "", "scroll_drag_callback"], [293, 2, 1, "", "scroll_release_callback"], [293, 2, 1, "", "select"], [293, 2, 1, "", "up_button_callback"], [293, 2, 1, "", "update"], [293, 2, 1, "", "update_scrollbar"]], "fury.ui.elements.ListBoxItem2D": [[293, 2, 1, "", "__init__"], [293, 2, 1, "", "deselect"], [293, 4, 1, "", "element"], [293, 2, 1, "", "left_button_clicked"], [293, 2, 1, "", "resize"], [293, 2, 1, "", "select"]], "fury.ui.elements.Option": [[293, 2, 1, "", "__init__"], [293, 2, 1, "", "deselect"], [293, 3, 1, "", "font_size"], [293, 3, 1, "", "label"], [293, 2, 1, "", "select"], [293, 2, 1, "", "toggle"]], "fury.ui.elements.PlaybackPanel": [[293, 2, 1, "", "__init__"], [293, 4, 1, "", "current_time"], [293, 4, 1, "", "current_time_str"], [293, 4, 1, "", "final_time"], [293, 2, 1, "", "hide"], [293, 2, 1, "", "loop"], [293, 2, 1, "", "pause"], [293, 2, 1, "", "play"], [293, 2, 1, "", "play_once"], [293, 2, 1, "", "show"], [293, 4, 1, "", "speed"], [293, 2, 1, "", "stop"], [293, 4, 1, "", "width"]], "fury.ui.elements.RadioButton": [[293, 2, 1, "", "__init__"], [293, 3, 1, "", "labels"], [293, 3, 1, "", "options"], [293, 3, 1, "", "padding"]], "fury.ui.elements.RangeSlider": [[293, 2, 1, "", "__init__"], [293, 3, 1, "", "range_slider"], [293, 3, 1, "", "range_slider_center"], [293, 2, 1, "", "range_slider_handle_move_callback"], [293, 3, 1, "", "value_slider"], [293, 3, 1, "", "value_slider_center"]], "fury.ui.elements.RingSlider2D": [[293, 2, 1, "", "__init__"], [293, 3, 1, "", "active_color"], [293, 4, 1, "", "angle"], [293, 3, 1, "", "default_color"], [293, 2, 1, "", "format_text"], [293, 3, 1, "", "handle"], [293, 2, 1, "", "handle_move_callback"], [293, 2, 1, "", "handle_release_callback"], [293, 4, 1, "id15", "mid_track_radius"], [293, 2, 1, "", "move_handle"], [293, 4, 1, "id16", "previous_value"], [293, 4, 1, "", "ratio"], [293, 3, 1, "", "text"], [293, 3, 1, "", "track"], [293, 2, 1, "", "track_click_callback"], [293, 2, 1, "", "update"], [293, 4, 1, "", "value"]], "fury.ui.elements.SpinBox": [[293, 2, 1, "", "__init__"], [293, 2, 1, "", "decrement"], [293, 2, 1, "", "decrement_callback"], [293, 2, 1, "", "increment"], [293, 2, 1, "", "increment_callback"], [293, 2, 1, "", "resize"], [293, 2, 1, "", "textbox_update_value"], [293, 2, 1, "", "validate_value"], [293, 4, 1, "", "value"]], "fury.ui.elements.TextBox2D": [[293, 2, 1, "", "__init__"], [293, 3, 1, "", "actor"], [293, 2, 1, "", "add_character"], [293, 3, 1, "", "caret_pos"], [293, 2, 1, "", "edit_mode"], [293, 2, 1, "", "handle_character"], [293, 3, 1, "", "height"], [293, 3, 1, "", "init"], [293, 2, 1, "", "key_press"], [293, 2, 1, "", "left_button_press"], [293, 2, 1, "", "left_move_left"], [293, 2, 1, "", "left_move_right"], [293, 2, 1, "", "move_caret_left"], [293, 2, 1, "", "move_caret_right"], [293, 2, 1, "", "move_left"], [293, 2, 1, "", "move_right"], [293, 2, 1, "", "remove_character"], [293, 2, 1, "", "render_text"], [293, 2, 1, "", "right_move_left"], [293, 2, 1, "", "right_move_right"], [293, 2, 1, "", "set_message"], [293, 2, 1, "", "showable_text"], [293, 3, 1, "", "text"], [293, 3, 1, "", "width"], [293, 2, 1, "", "width_set_text"], [293, 3, 1, "", "window_left"], [293, 3, 1, "", "window_right"]], "fury.ui.helpers": [[293, 5, 1, "", "cal_bounding_box_2d"], [293, 5, 1, "", "check_overflow"], [293, 5, 1, "", "clip_overflow"], [293, 5, 1, "", "rotate_2d"], [293, 5, 1, "", "wrap_overflow"]], "fury.utils": [[294, 5, 1, "", "add_polydata_numeric_field"], [294, 5, 1, "", "apply_affine"], [294, 5, 1, "", "apply_affine_to_actor"], [294, 5, 1, "", "array_from_actor"], [294, 5, 1, "", "asbytes"], [294, 5, 1, "", "change_vertices_order"], [294, 5, 1, "", "color_check"], [294, 5, 1, "", "colors_from_actor"], [294, 5, 1, "", "compute_bounds"], [294, 5, 1, "", "fix_winding_order"], [294, 5, 1, "", "get_actor_from_polydata"], [294, 5, 1, "", "get_actor_from_polymapper"], [294, 5, 1, "", "get_actor_from_primitive"], [294, 5, 1, "", "get_bounding_box_sizes"], [294, 5, 1, "", "get_bounds"], [294, 5, 1, "", "get_grid_cells_position"], [294, 5, 1, "", "get_polydata_colors"], [294, 5, 1, "", "get_polydata_field"], [294, 5, 1, "", "get_polydata_lines"], [294, 5, 1, "", "get_polydata_normals"], [294, 5, 1, "", "get_polydata_primitives_count"], [294, 5, 1, "", "get_polydata_tangents"], [294, 5, 1, "", "get_polydata_tcoord"], [294, 5, 1, "", "get_polydata_triangles"], [294, 5, 1, "", "get_polydata_vertices"], [294, 5, 1, "", "get_polymapper_from_polydata"], [294, 5, 1, "", "is_ui"], [294, 5, 1, "", "lines_to_vtk_polydata"], [294, 5, 1, "", "map_coordinates_3d_4d"], [294, 5, 1, "", "normalize_v3"], [294, 5, 1, "", "normals_from_actor"], [294, 5, 1, "", "normals_from_v_f"], [294, 5, 1, "", "normals_to_actor"], [294, 5, 1, "", "numpy_to_vtk_cells"], [294, 5, 1, "", "numpy_to_vtk_colors"], [294, 5, 1, "", "numpy_to_vtk_image_data"], [294, 5, 1, "", "numpy_to_vtk_matrix"], [294, 5, 1, "", "numpy_to_vtk_points"], [294, 5, 1, "", "primitives_count_from_actor"], [294, 5, 1, "", "primitives_count_to_actor"], [294, 5, 1, "", "remove_observer_from_actor"], [294, 5, 1, "", "repeat_sources"], [294, 5, 1, "", "represent_actor_as_wireframe"], [294, 5, 1, "", "rgb_to_vtk"], [294, 5, 1, "", "rotate"], [294, 5, 1, "", "set_actor_origin"], [294, 5, 1, "", "set_input"], [294, 5, 1, "", "set_polydata_colors"], [294, 5, 1, "", "set_polydata_normals"], [294, 5, 1, "", "set_polydata_primitives_count"], [294, 5, 1, "", "set_polydata_tangents"], [294, 5, 1, "", "set_polydata_tcoords"], [294, 5, 1, "", "set_polydata_triangles"], [294, 5, 1, "", "set_polydata_vertices"], [294, 5, 1, "", "shallow_copy"], [294, 5, 1, "", "tangents_from_actor"], [294, 5, 1, "", "tangents_from_direction_of_anisotropy"], [294, 5, 1, "", "tangents_to_actor"], [294, 5, 1, "", "triangle_order"], [294, 5, 1, "", "update_actor"], [294, 5, 1, "", "update_polydata_normals"], [294, 5, 1, "", "update_surface_actor_colors"], [294, 5, 1, "", "vertices_from_actor"], [294, 5, 1, "", "vtk_matrix_to_numpy"]], "fury.window": [[295, 1, 1, "", "Scene"], [295, 1, 1, "", "ShowManager"], [295, 5, 1, "", "analyze_scene"], [295, 5, 1, "", "analyze_snapshot"], [295, 5, 1, "", "antialiasing"], [295, 5, 1, "", "enable_stereo"], [295, 5, 1, "", "gl_disable_blend"], [295, 5, 1, "", "gl_disable_depth"], [295, 5, 1, "", "gl_enable_blend"], [295, 5, 1, "", "gl_enable_depth"], [295, 5, 1, "", "gl_get_current_state"], [295, 5, 1, "", "gl_reset_blend"], [295, 5, 1, "", "gl_set_additive_blending"], [295, 5, 1, "", "gl_set_additive_blending_white_background"], [295, 5, 1, "", "gl_set_multiplicative_blending"], [295, 5, 1, "", "gl_set_normal_blending"], [295, 5, 1, "", "gl_set_subtractive_blending"], [295, 5, 1, "", "record"], [295, 5, 1, "", "release_context"], [295, 5, 1, "", "show"], [295, 5, 1, "", "snapshot"]], "fury.window.Scene": [[295, 2, 1, "", "__init__"], [295, 2, 1, "", "add"], [295, 2, 1, "", "azimuth"], [295, 2, 1, "", "background"], [295, 2, 1, "", "camera"], [295, 2, 1, "", "camera_direction"], [295, 2, 1, "", "camera_info"], [295, 2, 1, "", "clear"], [295, 2, 1, "", "dolly"], [295, 2, 1, "", "elevation"], [295, 2, 1, "", "fxaa_off"], [295, 2, 1, "", "fxaa_on"], [295, 2, 1, "", "get_camera"], [295, 4, 1, "", "last_render_time"], [295, 2, 1, "", "pitch"], [295, 2, 1, "", "projection"], [295, 2, 1, "", "reset_camera"], [295, 2, 1, "", "reset_camera_tight"], [295, 2, 1, "", "reset_clipping_range"], [295, 2, 1, "", "rm"], [295, 2, 1, "", "rm_all"], [295, 2, 1, "", "roll"], [295, 2, 1, "", "set_camera"], [295, 2, 1, "", "size"], [295, 2, 1, "", "skybox"], [295, 2, 1, "", "yaw"], [295, 2, 1, "", "zoom"]], "fury.window.ShowManager": [[295, 2, 1, "", "__init__"], [295, 2, 1, "", "add_animation"], [295, 2, 1, "", "add_iren_callback"], [295, 2, 1, "", "add_timer_callback"], [295, 2, 1, "", "add_window_callback"], [295, 4, 1, "", "animations"], [295, 2, 1, "", "destroy_timer"], [295, 2, 1, "", "destroy_timers"], [295, 2, 1, "", "exit"], [295, 4, 1, "", "frame_rate"], [295, 2, 1, "", "initialize"], [295, 3, 1, "", "iren"], [295, 2, 1, "", "is_done"], [295, 2, 1, "", "lock"], [295, 2, 1, "", "lock_current"], [295, 2, 1, "", "play_events"], [295, 2, 1, "", "play_events_from_file"], [295, 2, 1, "", "record_events"], [295, 2, 1, "", "record_events_to_file"], [295, 2, 1, "", "release_current"], [295, 2, 1, "", "release_lock"], [295, 2, 1, "", "remove_animation"], [295, 2, 1, "", "render"], [295, 2, 1, "", "save_screenshot"], [295, 3, 1, "", "scene"], [295, 2, 1, "", "start"], [295, 3, 1, "", "style"], [295, 4, 1, "", "timelines"], [295, 2, 1, "", "wait"], [295, 3, 1, "", "window"]]}, "objnames": {"0": ["py", "module", "Python module"], "1": ["py", "class", "Python class"], "2": ["py", "method", "Python method"], "3": ["py", "attribute", "Python attribute"], "4": ["py", "property", "Python property"], "5": ["py", "function", "Python function"]}, "objtypes": {"0": "py:module", "1": "py:class", "2": "py:method", "3": "py:attribute", "4": "py:property", "5": "py:function"}, "terms": {"": [2, 4, 5, 9, 10, 11, 12, 13, 14, 15, 17, 19, 20, 21, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 40, 43, 44, 45, 46, 47, 51, 52, 54, 60, 62, 63, 64, 67, 71, 72, 73, 74, 76, 81, 83, 86, 87, 93, 94, 96, 107, 108, 112, 114, 118, 119, 121, 127, 129, 130, 134, 135, 139, 140, 142, 143, 145, 146, 147, 148, 149, 152, 154, 155, 157, 158, 160, 161, 163, 164, 165, 166, 167, 170, 171, 172, 173, 175, 178, 179, 180, 181, 184, 185, 188, 189, 190, 193, 196, 198, 201, 204, 206, 207, 208, 211, 212, 213, 217, 219, 220, 222, 223, 224, 225, 226, 231, 233, 234, 242, 260, 263, 266, 267, 269, 271, 273, 275, 276, 277, 285, 286, 287, 288, 290, 291, 292, 293, 294, 295, 309, 310, 311, 312, 314], "0": [1, 3, 4, 5, 6, 8, 9, 10, 11, 12, 14, 15, 16, 17, 18, 20, 21, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, 40, 42, 43, 44, 45, 46, 47, 49, 50, 51, 52, 54, 55, 56, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 70, 71, 72, 73, 74, 75, 76, 78, 79, 80, 81, 82, 83, 85, 86, 87, 88, 90, 92, 93, 94, 96, 118, 125, 143, 158, 171, 178, 184, 193, 217, 225, 226, 227, 234, 237, 240, 243, 254, 255, 258, 262, 264, 267, 269, 270, 271, 273, 274, 275, 276, 278, 280, 281, 282, 283, 285, 286, 287, 289, 290, 291, 292, 293, 294, 295, 297, 306, 308, 310, 313, 314], "00": [1, 4, 23, 27, 42, 58, 70, 78, 79, 85, 90, 178, 179, 313], "000": [1, 23, 42, 58, 70, 78, 85, 90, 125, 276, 313], "0001": [71, 74], "0005": [36, 81, 83], "001": 269, "002": [4, 29, 33], "004": [4, 33], "005": [4, 5, 29, 33], "0060": 5, "01": [4, 5, 10, 17, 21, 32, 37, 81, 83, 226, 227, 267, 271, 273, 297, 312], "011": 5, "012": [29, 33], "015": 5, "01_introductori": [1, 313], "02": [40, 81, 83, 134, 135, 171, 172, 173, 269, 295, 297, 305, 306], "025": [4, 273], "02f": [37, 72], "03": [4, 225, 249, 269, 271, 273, 289, 297, 304, 311], "03448276": 276, "04": [5, 226, 227, 297, 302, 307], "04_demo": [23, 313], "05": [10, 17, 20, 21, 37, 134, 135, 171, 172, 173, 225, 226, 227, 269, 271, 273], "06": [5, 29, 33, 134, 135, 171, 172, 173, 225, 226, 227, 269, 271], "07": [4, 5, 134, 135, 171, 172, 173, 225, 226, 227, 249, 267, 269, 271, 276, 297, 308], "071dab85": 145, "07_ui": [42, 313], "08": [33, 134, 135, 171, 172, 173, 225, 226, 227, 269, 271, 297, 305, 309, 311], "09": [33, 135, 171, 172, 173, 225, 226, 227, 297, 307, 311], "0dev": 280, "0e": 276, "0f": [24, 30], "0lethetamathrm": 292, "1": [2, 3, 4, 5, 6, 8, 10, 11, 12, 14, 15, 16, 17, 18, 21, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 43, 44, 45, 46, 47, 48, 50, 51, 52, 54, 56, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 71, 72, 73, 74, 75, 76, 79, 80, 81, 82, 83, 86, 87, 88, 93, 94, 96, 118, 131, 134, 135, 142, 144, 145, 148, 154, 166, 171, 172, 173, 176, 180, 193, 210, 213, 225, 226, 227, 240, 243, 258, 264, 267, 269, 270, 271, 273, 274, 275, 276, 278, 280, 281, 282, 283, 285, 286, 289, 290, 291, 292, 293, 294, 295, 297, 302, 303, 307, 309, 311, 312, 314], "10": [7, 10, 11, 14, 15, 17, 18, 20, 21, 28, 29, 32, 33, 34, 36, 38, 40, 48, 52, 53, 54, 55, 56, 58, 59, 60, 63, 64, 66, 67, 71, 73, 74, 79, 80, 81, 82, 83, 93, 125, 134, 135, 138, 154, 171, 172, 173, 180, 225, 226, 227, 255, 267, 269, 271, 273, 276, 289, 291, 293, 294, 295, 297, 306, 309, 311, 312], "100": [10, 11, 12, 15, 20, 28, 33, 36, 43, 45, 46, 49, 51, 52, 54, 56, 62, 73, 82, 116, 125, 180, 246, 250, 254, 273, 275, 277, 278, 282, 291, 293, 294, 305], "1000": [5, 21, 31, 36, 38, 44, 45, 46, 65, 87, 88, 252, 258], "10000": [4, 12, 34, 80, 148, 273], "101": 305, "102": 305, "1024": [11, 12, 75, 76, 94], "103": 305, "1030": [24, 30], "104": [305, 306], "105": 305, "106": 305, "107": 305, "1073741824": 15, "108": 306, "1080": [37, 40], "109": 305, "10_anim": [58, 313], "10th": 127, "11": [15, 46, 50, 72, 73, 134, 135, 171, 172, 173, 179, 180, 225, 226, 227, 269, 271, 280, 294, 297, 302, 303, 311, 312], "110": 305, "1100": 4, "112": 305, "113": 27, "1141": 277, "1145": 173, "115": 306, "116": [5, 308], "117": 306, "1176": 269, "118": [27, 306], "1185": 269, "119": 306, "11th": 129, "12": [8, 12, 16, 25, 28, 33, 65, 71, 74, 134, 135, 154, 171, 172, 173, 193, 225, 226, 227, 258, 267, 269, 271, 273, 289, 294, 302, 311, 312], "120": [24, 30, 46, 193, 306], "1200": [14, 24, 30], "121": 306, "122": 306, "123": 306, "124": 306, "125": [14, 306], "126": 306, "127": 307, "128": [25, 27, 285, 306], "1280": [6, 8], "1281500": 173, "1281665": 173, "128mb": 178, "129": [302, 306], "12th": 130, "13": [15, 66, 71, 80, 82, 134, 135, 154, 157, 173, 225, 226, 227, 297, 304, 310, 312], "130": [80, 81, 83, 306], "131": 306, "132": 306, "133": 306, "134": 306, "135": 306, "136": 306, "137": 306, "138": 307, "139": 306, "13_shader": [70, 313], "13x13": 258, "14": [37, 42, 60, 66, 134, 135, 154, 171, 172, 173, 225, 227, 276, 294, 303, 309, 312], "140": [24, 30, 306], "141": [269, 274], "142": 306, "143": 306, "144": 306, "145": 306, "146": 306, "147": [269, 306], "148": 306, "149": [269, 274], "15": [14, 24, 33, 45, 46, 54, 56, 59, 60, 66, 68, 79, 83, 173, 225, 227, 271, 297, 302, 304, 305, 306, 308, 310], "150": [11, 12, 43, 46, 47, 49, 50, 53, 54, 56, 286, 291, 306], "1500": [4, 49], "151": 306, "152": 306, "153": 306, "154": [269, 306], "155": 306, "156": 306, "157": 306, "158": 306, "16": [15, 32, 36, 37, 40, 46, 50, 60, 71, 74, 96, 134, 135, 157, 171, 172, 173, 225, 226, 269, 271, 273, 283, 291, 293, 294, 312], "160": [29, 306], "160k": 205, "161": 306, "162": 306, "163": 306, "16384": 278, "164": [92, 304, 306, 308], "165": 306, "166": [306, 312], "167": [286, 306], "16777216": 267, "168": 306, "169": [305, 307], "16k": 5, "17": [25, 32, 66, 71, 86, 157, 160, 173, 225, 227, 267, 269, 271, 294, 303, 305], "170": 306, "171": 306, "172": 306, "17241379": 276, "173": 306, "174": 306, "1740": [269, 274], "175": 306, "176": [27, 306], "177": 306, "178": 306, "179": 306, "17_pybullet": [78, 313], "18": [23, 24, 25, 27, 30, 32, 46, 54, 59, 79, 80, 82, 160, 173, 179, 293, 304, 307], "180": [4, 5, 17, 28, 43, 44, 45, 52, 54, 63, 65, 293, 306], "181": 306, "182": 306, "183": 306, "1835": 312, "184": 306, "184512": 28, "185": 306, "186": [303, 306], "187": 306, "188": 306, "189": 306, "18th": 179, "19": [1, 15, 32, 33, 134, 135, 171, 172, 173, 226, 227, 269, 271], "190": 306, "191": 306, "192": 306, "1920": [37, 40], "1920x1080x24": 96, "193": 306, "194": 306, "195": [37, 306, 309], "1953": 286, "197": 307, "1971": 286, "198": [12, 306], "1981": 286, "1986": 276, "199": 306, "1996": [71, 74], "1997": [269, 274], "1999": 276, "19th": 308, "1_earth_16k": 5, "1_earth_8k": [4, 15, 19], "1d": 294, "1f": [37, 53, 54, 56, 293], "1mb0": 141, "1mm": [24, 273], "1st": [38, 271], "1x1": 275, "1x3": 275, "1xjcg1tl5zrjzdyi8v76leyzt_maxgp0kob7ozixksta": 135, "2": [2, 4, 5, 8, 11, 12, 14, 15, 17, 18, 21, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 35, 36, 37, 39, 40, 46, 54, 59, 60, 61, 62, 63, 65, 66, 67, 68, 71, 72, 73, 74, 76, 80, 81, 82, 83, 93, 94, 96, 106, 114, 118, 120, 131, 134, 135, 144, 145, 148, 154, 171, 172, 173, 179, 180, 225, 226, 227, 229, 258, 262, 267, 269, 271, 273, 274, 275, 276, 278, 280, 281, 283, 285, 289, 291, 292, 293, 294, 295, 297, 299, 302, 304, 306, 307, 309, 311, 312, 314], "20": [9, 10, 13, 14, 15, 17, 21, 26, 27, 28, 29, 32, 33, 40, 46, 54, 56, 60, 61, 63, 66, 74, 81, 108, 173, 179, 180, 225, 226, 227, 269, 273, 275, 289, 291, 293, 294, 295, 297, 303, 306, 309], "200": [5, 11, 12, 17, 20, 24, 25, 28, 30, 33, 36, 40, 47, 49, 50, 51, 52, 54, 55, 56, 68, 180, 250, 291, 293], "2000": [15, 80, 81, 93], "2004": 269, "2007": [173, 269, 274], "2008": [178, 276], "2009": 178, "200x200": 295, "201": 306, "2010": 276, "2011": 276, "2012": 73, "2013": 178, "2018": [173, 230, 297, 303], "2019": [96, 297, 306], "202": 306, "2020": [105, 130, 133, 135, 136, 171, 172, 173, 297, 309], "2021": [137, 148, 171, 172, 179, 297, 311, 312], "2022": [225, 226, 227, 269, 297, 312], "2023": [178, 230, 249, 271, 297, 302], "2024": [179, 297, 315], "203": 306, "204": 306, "205": 308, "206": 306, "207": 306, "208": 308, "209": 306, "20_stream": [85, 313], "20space": 193, "20with": 193, "21": [8, 25, 134, 135, 171, 172, 173, 178, 225, 297, 303, 308, 310], "210": 306, "211": [306, 310], "212": 306, "213": [306, 312], "214": 306, "215": 306, "21516": [145, 148], "216": 307, "217": 306, "218": 306, "219": [92, 306], "22": [15, 63, 163, 174, 225, 271, 303, 312], "220": 306, "222": 302, "223": 306, "225": 306, "226": 307, "227": 306, "23": [37, 60, 94, 134, 135, 174, 175, 226, 269, 294, 302, 303], "230": 56, "231": [135, 307], "233": 307, "235": [26, 307], "236": 308, "237": 307, "238": 307, "239": 309, "24": [4, 25, 173, 175, 225, 227, 243, 269, 271, 286, 289, 292, 294, 303, 304, 312], "240": [81, 135, 307], "241": 307, "242": 308, "243": [15, 308], "244": 307, "245": 307, "246": [135, 307], "247": 307, "248": [135, 307], "249": 307, "25": [4, 5, 14, 15, 29, 34, 37, 39, 43, 46, 54, 60, 72, 73, 79, 225, 226, 227, 269, 292, 307], "250": [5, 14, 47, 49, 53, 54, 63, 134, 307], "251": 307, "252": [135, 308], "253": 307, "254": 307, "255": [12, 14, 18, 28, 34, 46, 50, 75, 267, 273, 276, 294, 307], "256": [170, 258, 267, 306, 307], "258": 307, "259": [292, 307], "26": [72, 73, 80, 82, 83, 134, 135, 148, 171, 172, 173, 297, 303], "260": 308, "261": 307, "262": 307, "263": 307, "264": 307, "265": 307, "266": 307, "267": [134, 307], "268": [135, 307], "269": 308, "27": [15, 32, 59, 60, 80, 82, 225, 269, 271, 302, 308], "270": 308, "271": 308, "272": [135, 308], "273": 308, "274": 309, "275": [48, 135, 308], "276": 308, "277": 308, "278": 308, "279": 308, "28": [83, 134, 135, 148, 171, 172, 173, 226, 227, 294, 297, 303, 311], "280": 308, "281": [135, 308], "282": 308, "283": 308, "284": 308, "285": [135, 302], "286": [135, 309], "287": [135, 308], "288": 308, "289": 308, "29": [60, 225, 227, 267, 271, 294, 297, 303, 306], "292": 308, "294": [44, 45, 135, 266, 271, 302], "295": 309, "296": 134, "297": 309, "29702": 276, "298": 309, "2cylinderengin": 193, "2d": [12, 22, 23, 34, 71, 89, 97, 108, 140, 151, 172, 173, 179, 193, 198, 225, 237, 252, 255, 267, 270, 273, 274, 282, 283, 287, 293, 294, 295, 307, 310, 313], "2g": 180, "2k_neptun": 15, "2k_uranu": 15, "2nd": [108, 113], "3": [2, 3, 4, 5, 8, 10, 11, 12, 14, 15, 16, 18, 20, 21, 24, 26, 27, 28, 29, 32, 33, 34, 36, 37, 40, 47, 49, 52, 53, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 71, 72, 74, 75, 80, 81, 82, 83, 85, 86, 88, 93, 94, 96, 97, 118, 124, 127, 134, 135, 142, 143, 148, 154, 171, 172, 173, 178, 179, 184, 191, 225, 226, 227, 249, 265, 267, 269, 270, 271, 273, 274, 275, 276, 278, 280, 282, 283, 285, 286, 289, 290, 291, 292, 293, 294, 295, 297, 302, 303, 305, 307, 312, 314], "30": [11, 15, 21, 25, 26, 27, 46, 50, 54, 55, 56, 60, 63, 76, 79, 80, 81, 82, 83, 134, 135, 179, 226, 273, 275, 293, 303], "300": [4, 15, 20, 24, 26, 28, 29, 30, 36, 43, 44, 45, 47, 49, 52, 53, 54, 55, 82, 86, 293, 295, 309], "3000": 173, "302": 309, "303": 309, "304": 309, "3051798": 62, "306": 309, "307": 309, "308": 309, "309": 309, "31": [4, 27, 60, 225, 227, 269, 297, 304, 312], "310": 309, "311": 309, "312": 309, "313": 309, "314": 4, "315": 309, "316": 312, "317": 310, "3175": 4, "318": 309, "319": 309, "31st": 96, "32": [37, 72, 73, 74, 180, 258, 267, 303, 305], "323": 276, "324": 311, "328": 309, "329": 309, "32bit": 309, "33": [15, 43, 54, 148, 291, 295], "332": 309, "333": 309, "334": 309, "335": 309, "336": 309, "337": 309, "338": 309, "339": [286, 309], "3393612": 291, "34": [4, 286, 311], "340": 309, "341": 309, "342": 309, "343": 309, "345": 309, "346": 309, "34786452": 292, "348": 309, "349014": 5, "35": [4, 24, 28, 30, 60, 72, 83, 273, 289, 307, 310], "350": [5, 54, 293, 309], "351": 309, "352": 309, "3522": 5, "353": 309, "354": 312, "355": 310, "356": 310, "357": 309, "358": 310, "358402e": 148, "359": 309, "36": [289, 294, 304], "360": [46, 50, 52, 68, 293], "361": 309, "362": [156, 162, 168, 172, 289, 311], "363": 309, "364": 309, "366": 309, "368": 309, "369": 309, "37": [61, 303, 309], "370": 309, "371": 310, "372": 309, "373": 309, "374": 309, "375": 310, "376": 309, "379": [309, 312], "38": [24, 30], "38119": [145, 148], "382": [302, 309], "383": 309, "383331": 5, "383436184": 292, "385": 309, "386": 310, "387": 309, "388": 309, "388287": 148, "389": 309, "39": [4, 5, 83, 303, 304], "393": 310, "394": 310, "395": 310, "396": 310, "397": 302, "398": [171, 239, 242, 271, 302], "399": 310, "3a4fdea8d23207d67431973fe5df1811605c4132": 169, "3d": [11, 12, 14, 22, 23, 24, 26, 30, 32, 34, 37, 39, 40, 71, 74, 75, 89, 97, 98, 99, 100, 101, 103, 104, 105, 106, 108, 119, 122, 132, 137, 138, 140, 145, 151, 166, 167, 171, 172, 173, 176, 177, 180, 222, 225, 226, 227, 228, 229, 234, 252, 255, 267, 269, 273, 274, 276, 277, 282, 283, 287, 292, 294, 306, 307, 310, 313], "3pgk": 144, "3rd": 127, "3x1": 235, "3x3": [80, 82, 93, 235, 255, 256], "4": [4, 6, 8, 10, 12, 14, 15, 18, 20, 21, 24, 25, 26, 28, 29, 32, 40, 44, 45, 49, 54, 56, 59, 60, 61, 62, 63, 65, 66, 74, 75, 76, 80, 81, 82, 83, 86, 88, 93, 96, 115, 118, 132, 134, 135, 145, 146, 148, 154, 158, 171, 172, 173, 208, 225, 226, 227, 234, 237, 249, 258, 265, 267, 269, 270, 271, 273, 274, 275, 276, 280, 281, 282, 286, 289, 291, 292, 293, 294, 295, 297, 302, 303, 306, 308, 312], "40": [5, 26, 46, 47, 48, 53, 60, 65, 72, 73, 79, 293, 303], "400": [11, 15, 31, 37, 43, 46, 47, 49, 51, 54, 55, 56, 86, 87, 293, 311], "40000": 79, "400x400": 295, "402": 302, "403": 310, "404": 311, "405": 310, "406": 310, "407": [286, 306, 310], "4074": 5, "408": 310, "4086": 151, "409": 310, "41": [15, 37, 303], "410": 310, "411": 310, "412": 310, "413": 310, "414": 310, "415": 310, "416": 310, "417": 310, "418": 312, "419": 312, "42": [4, 27, 303, 308], "420": 310, "421": 310, "422": [139, 145, 146, 310], "424": [151, 181], "425": [5, 302], "426": 310, "429": 310, "43": 303, "430": 310, "431": 311, "432": [139, 145, 163, 173, 174, 311], "433": 311, "434": 310, "435": 312, "436": 310, "437": [142, 145, 148, 154, 163, 174, 175, 312], "438": 310, "439": 310, "44": [37, 289, 293, 294, 303], "440": [310, 314], "440a39d427822096679ba384c7d1d9a362dab061": 148, "441": [171, 310], "442": [158, 161, 310], "443": [158, 161, 171, 312], "444": 310, "445": 310, "446": [171, 242], "447": 310, "448": [171, 302], "449": 311, "45": [8, 14, 15, 25, 39, 51, 54, 303], "450": [4, 54, 94, 293, 310], "451": 310, "452": [156, 162, 165, 168, 170, 172, 311], "453": 310, "454": 310, "455": 310, "456": 310, "457": 311, "459": 310, "46": [80, 82, 303], "460": [171, 242, 302], "462": [159, 162, 168, 172], "463": 312, "464": 310, "466": 310, "467": 311, "468": 311, "469": 311, "47": [303, 311], "470": 311, "474": [163, 174, 311], "475": [165, 172, 310], "476": [173, 310], "477": [171, 310], "478": 312, "479": [171, 311], "48": [5, 25, 269, 286, 303], "480": [171, 173, 311], "484": 174, "486": [171, 312], "487": 171, "488": 311, "489": [173, 175], "49": [53, 60, 303, 306], "491": [171, 311], "492": [170, 172], "493": [172, 311], "494": 171, "496": 311, "498": 311, "499": [233, 263, 271, 302], "4d": [40, 273, 274, 294], "4th": [81, 83, 114], "4x15": 270, "4x4": [273, 274], "5": [2, 3, 4, 5, 10, 11, 12, 14, 15, 16, 18, 20, 21, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 44, 45, 46, 47, 49, 53, 54, 56, 59, 60, 61, 63, 65, 66, 68, 71, 72, 73, 74, 76, 78, 79, 80, 81, 82, 83, 86, 87, 88, 93, 94, 96, 122, 134, 135, 143, 145, 148, 154, 171, 172, 173, 180, 225, 226, 227, 249, 264, 269, 270, 271, 273, 275, 276, 281, 285, 286, 289, 291, 292, 293, 294, 297, 302, 303, 307, 312], "50": [11, 15, 21, 28, 39, 43, 46, 47, 48, 50, 51, 54, 79, 275, 286, 291, 293, 303], "500": [36, 37, 43, 51, 53, 54, 55, 81, 83, 88, 290, 311], "50000": 12, "501": 312, "502": 312, "503": 311, "504": 311, "505": 311, "506": 311, "507": 311, "509": 311, "51": 307, "511": 311, "512": 311, "513": 311, "514": 311, "515": 311, "516": 311, "518": 311, "519": 311, "52": [27, 303], "520": [179, 311], "521": 311, "523": 311, "524": 311, "525": [5, 179, 312], "526": 311, "527": [71, 74, 311], "528": 312, "529": 312, "53": 304, "530": 312, "532": 311, "533": [179, 227, 312], "534": 311, "535": 311, "536": 311, "537": 312, "54": [302, 306, 310], "540": [239, 242], "541": 312, "542": 312, "544": 312, "545": [71, 74, 312], "546": 312, "547": [179, 227, 312], "548": 312, "549": 312, "55": [14, 24, 30, 44, 45, 303], "550": [4, 94, 312], "551": 312, "552": [178, 312], "553": 312, "554": 312, "555": [178, 312], "556": [179, 227, 312], "557": 312, "559": [179, 227, 312], "56": [27, 303], "560": [28, 48, 312], "561": 312, "562": [236, 302], "563": 312, "564": 312, "565": 312, "566": 312, "567": 312, "569": 312, "57": [80, 82, 83, 269, 274, 303], "570": 312, "571": 312, "572": 312, "573": 312, "574": 312, "575": [4, 5, 312], "576": [233, 236, 239, 302], "577": 312, "58": [15, 303], "580": 312, "581": 312, "582": 312, "584": 312, "585": 312, "586": 312, "587": 312, "588": 312, "589": 312, "58ad5f7": 314, "59": [37, 303], "590": 312, "591": [226, 312], "592": 302, "593": 312, "594": [226, 312], "595": 312, "596": 312, "597": [226, 312], "598": [226, 312], "599": [182, 183, 225, 312], "5e": 276, "5th": [66, 81, 83, 116, 269, 274], "6": [2, 11, 12, 15, 18, 21, 24, 25, 26, 28, 29, 32, 37, 39, 47, 49, 53, 59, 60, 61, 62, 63, 64, 65, 66, 68, 70, 71, 74, 79, 80, 81, 82, 83, 93, 125, 134, 135, 154, 171, 172, 173, 225, 226, 227, 269, 270, 271, 273, 275, 282, 286, 291, 293, 294, 297, 302, 303, 309, 312, 314], "60": [15, 25, 125, 273, 295, 303, 307], "600": [2, 3, 14, 16, 18, 19, 25, 26, 27, 28, 29, 31, 33, 34, 35, 38, 39, 40, 46, 49, 51, 53, 71, 72, 73, 74, 79, 184, 188, 190, 227, 273, 312], "600x600": 249, "601": 312, "602": [184, 227, 312], "603": 312, "604": 181, "605": 312, "606": 312, "607": 312, "608": 312, "609": [225, 312], "61": [303, 309], "610": 312, "611": 312, "612": [186, 312], "613": [186, 312], "614": 312, "615": 312, "616": [190, 227, 312], "617": [189, 226, 312], "618": 312, "619": 312, "61966": 276, "62": 304, "620": 312, "621": [286, 312], "622": 312, "623": [197, 200, 203, 209, 211, 215, 225, 312], "624": 312, "625": 312, "626": [195, 196, 199, 312], "627": [286, 312], "629": 302, "63": 304, "630": [56, 196, 227, 312], "631": [195, 226], "632": 312, "633": 312, "634": [198, 226, 312], "637": 312, "638": 312, "639": 312, "64": [37, 61, 178], "640117": 62, "641": 312, "642": 312, "643": [198, 217, 219, 223, 227, 312], "644": 312, "645": [203, 206, 225, 312], "646": 312, "647": [201, 226, 312], "648": 312, "649": 312, "65": 304, "650": [48, 54, 312], "653": [203, 209, 211, 215, 225], "654": 312, "655": 312, "65536": 267, "656": 312, "657": 312, "659": 312, "66": [15, 43, 54, 305], "660": 226, "661": [226, 312], "662": 312, "663": 312, "664": 312, "665": [220, 226, 312], "666": 312, "667": 312, "669": 312, "67": 304, "670": 312, "671": 312, "672": 312, "673": [15, 215, 225, 312], "674": [215, 225, 312], "675": 312, "676": 312, "677": 312, "678": [216, 225, 312], "679": [4, 216, 225, 312], "68": [37, 61, 304], "680": [80, 81, 82, 83, 226, 312], "681": 312, "682": 312, "683": 312, "684": 312, "685": [223, 227, 312], "686": 312, "687": [226, 312], "688": [221, 225, 312], "689": [223, 227, 312], "69": 304, "690": [226, 312], "691": 312, "692": [226, 312], "693": 312, "694": [222, 226, 312], "695": 225, "696": 225, "697": 312, "698": 312, "699": 312, "6th": 118, "7": [5, 15, 18, 25, 26, 28, 37, 40, 60, 61, 63, 65, 71, 81, 82, 83, 96, 134, 135, 154, 171, 172, 173, 193, 225, 226, 227, 269, 271, 273, 274, 276, 291, 293, 294, 297, 299, 302, 304, 311, 312, 314], "70": [15, 65], "700": [5, 79, 227, 312], "701": [225, 312], "702": 226, "704": 312, "705": 312, "706": 312, "708": 312, "709": 312, "71": 306, "710": 312, "712": 312, "7128": 5, "713": 312, "714": 312, "716": 312, "717": 312, "718": 312, "719": 312, "72": [282, 295, 304], "720": [6, 8, 75, 76, 88, 94, 289, 312], "721": 312, "722": 312, "723": 312, "724": [28, 250, 312], "725": 312, "726": 312, "727": 312, "728": 312, "729": 312, "73": [5, 304], "730": 312, "730610": 5, "731": [236, 302], "732": 312, "734": 312, "735": 312, "736": 312, "737": 312, "738": 312, "739": 312, "74": 5, "740": [54, 312], "741": 312, "743": 312, "744": 312, "745": 312, "747": 312, "748": 312, "75": [4, 14, 24, 30, 37, 47, 282, 302, 306, 313], "750": [4, 54], "754": 312, "756": 312, "75862069": 276, "76": [27, 306], "760": 312, "761": 312, "762": 312, "764": 312, "765": 312, "766": 312, "767": 312, "768": [4, 5, 7, 9, 10, 11, 12, 13, 15, 17, 19, 20, 21, 31, 36, 38, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 80, 81, 82, 83, 93, 236, 239, 271, 275, 302], "769": [251, 271, 312], "77": [37, 306], "770": 312, "771": 312, "772": 312, "774": 302, "776": 312, "777": 312, "7777777777777777": [273, 283, 293, 294], "778": 312, "779": 312, "78": 79, "781": 312, "782": 312, "783": [240, 243], "787": 302, "788": 302, "789": 302, "79": [80, 82, 304], "790": [233, 236, 271, 302], "791": [235, 238, 245, 247, 249, 250, 256, 269, 302], "792": 302, "794": 302, "796": 302, "797": 302, "798": 302, "799": 302, "7th": [119, 180], "8": [4, 11, 15, 21, 25, 26, 30, 33, 35, 36, 39, 40, 44, 45, 47, 49, 53, 54, 62, 63, 65, 66, 71, 72, 73, 74, 75, 80, 82, 83, 86, 88, 96, 134, 135, 145, 171, 172, 173, 178, 179, 225, 226, 227, 258, 267, 269, 271, 273, 275, 276, 286, 289, 290, 291, 294, 295, 297, 302, 303, 304, 307, 308, 312, 314], "80": [180, 304], "800": [29, 32, 33, 43, 50, 51, 52, 53, 54, 55, 56, 86, 302], "8000": [86, 88, 142, 291], "801": 302, "802": 302, "803": [239, 248, 255, 266, 271, 302], "804": [249, 252, 267], "805": 302, "806": 302, "807": 302, "808": 302, "809": 302, "81": [306, 311], "810": [244, 247, 255, 269, 302], "811": 302, "812": [245, 302], "814": [251, 302], "815": 302, "816": 271, "817": 302, "818": [250, 259, 269, 302], "819": 302, "82": 312, "820": [5, 251, 271, 302], "821": 271, "822": 302, "823": 302, "824": 302, "825": 302, "826": [261, 267, 268], "827": 302, "828": 302, "829": 302, "83": 304, "830": [260, 263, 271, 302], "831": 302, "832": [260, 266, 271], "833": 302, "834": 302, "836": 302, "837": [271, 302], "838": 263, "839": 302, "84": 304, "840": 302, "841": 302, "842": 302, "843": 302, "844": 302, "845": 302, "846": 302, "847": 302, "848": 302, "849": 267, "85": [5, 15, 46, 304], "850": 267, "852": 302, "8566": 5, "86": [37, 304], "861": 302, "863": 302, "864": 302, "864716": 5, "865": 302, "866": [292, 302], "87": [28, 304], "88": 304, "89": [79, 304, 310], "89655172": 276, "8c670c2": 151, "8f": 14, "8k": 4, "8k_mar": 15, "8k_mercuri": 15, "8k_saturn": 15, "8k_saturn_ring_alpha": 15, "8k_sun": 15, "8k_venus_surfac": 15, "8th": 121, "9": [15, 26, 59, 60, 63, 66, 71, 72, 73, 74, 83, 93, 96, 134, 135, 138, 154, 171, 172, 173, 176, 181, 184, 193, 225, 226, 227, 256, 269, 271, 273, 276, 283, 290, 293, 294, 297, 302, 307, 308, 309, 311, 314], "90": [4, 5, 15, 28, 29, 33, 65, 68, 80, 82, 184, 294, 304], "900": [4, 5, 7, 9, 10, 13, 14, 15, 17, 19, 20, 21, 24, 30, 31, 36, 38, 40, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 79, 80, 81, 82, 83, 93, 275], "9042": 5, "9062272e6bdc": 148, "91": [278, 304], "916668": 5, "92": 305, "930": 5, "935242": 5, "94": [53, 305], "95": [37, 178], "950": 40, "96": 305, "966": 292, "97": 305, "98": [12, 27, 305, 309], "985": 5, "989": 15, "99": [82, 193, 306], "999": 290, "9d": 193, "9th": 124, "A": [10, 22, 27, 29, 32, 33, 36, 38, 40, 44, 45, 46, 50, 60, 62, 64, 71, 74, 80, 89, 90, 93, 105, 130, 135, 137, 139, 141, 143, 146, 148, 149, 161, 167, 171, 173, 174, 177, 180, 198, 205, 225, 227, 228, 230, 236, 267, 269, 273, 274, 275, 276, 277, 278, 281, 285, 286, 288, 289, 290, 291, 293, 294, 295, 315], "AND": 315, "AS": 315, "And": [37, 64, 73, 123, 142, 178, 186, 192, 201, 205, 226, 243, 255, 267, 269, 275], "As": [28, 71, 102, 110, 113, 119, 125, 135, 140, 141, 142, 148, 152, 154, 155, 161, 164, 169, 180, 181, 182, 184, 185, 187, 188, 189, 194, 199, 204, 205, 206, 209, 211, 212, 214, 215, 218, 221, 225, 226, 230, 234, 237, 238, 239, 240, 241, 248, 249, 251, 253, 255, 258, 261, 263, 264, 265, 267, 269, 270, 271, 275], "At": [32, 93, 178, 182, 226, 227, 234, 239, 252, 271, 280], "BE": 315, "BUT": 315, "BY": 315, "Be": [105, 137, 177, 228], "Being": [126, 257, 264], "But": [60, 114, 145, 148, 152, 154, 173, 175, 178, 180, 185, 188, 197, 205, 213, 214, 226, 237, 246, 267, 294], "By": [14, 26, 27, 37, 53, 56, 88, 93, 180, 233, 273, 276, 294], "FOR": 315, "For": [4, 6, 21, 25, 27, 28, 29, 32, 39, 64, 71, 72, 73, 74, 76, 86, 88, 93, 96, 98, 99, 100, 101, 103, 104, 106, 116, 122, 124, 132, 138, 142, 154, 159, 161, 164, 166, 173, 176, 183, 191, 194, 200, 218, 221, 222, 229, 230, 232, 234, 235, 236, 238, 243, 246, 249, 252, 265, 267, 269, 270, 271, 275, 276, 278, 279, 280, 290, 292, 294, 295, 297], "IF": 315, "IN": [4, 315], "If": [9, 13, 14, 24, 28, 32, 39, 48, 54, 59, 71, 86, 88, 94, 105, 114, 119, 133, 137, 142, 148, 149, 151, 155, 158, 171, 177, 180, 181, 197, 198, 205, 213, 228, 234, 237, 243, 258, 263, 267, 271, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 293, 294, 295, 314], "In": [4, 5, 6, 7, 8, 9, 10, 12, 13, 14, 15, 17, 19, 21, 24, 26, 27, 28, 32, 33, 34, 37, 43, 54, 59, 62, 63, 67, 71, 72, 73, 74, 75, 79, 80, 81, 82, 83, 86, 88, 93, 96, 111, 112, 116, 118, 127, 129, 130, 135, 136, 140, 141, 142, 144, 146, 147, 148, 149, 150, 152, 154, 155, 161, 169, 171, 172, 173, 175, 178, 179, 180, 183, 184, 197, 212, 232, 234, 237, 242, 246, 254, 255, 256, 266, 267, 269, 271, 273, 274, 288, 295, 311], "It": [9, 13, 14, 18, 25, 27, 31, 40, 62, 71, 98, 116, 121, 129, 133, 134, 142, 149, 152, 157, 165, 167, 169, 170, 172, 173, 175, 176, 178, 179, 180, 181, 193, 194, 197, 200, 206, 211, 212, 217, 222, 225, 226, 227, 230, 231, 236, 239, 244, 249, 250, 255, 264, 265, 267, 270, 271, 273, 275, 276, 280, 286, 289, 293, 298, 311, 314], "Its": [121, 271], "NO": 315, "NOT": [276, 315], "No": [7, 9, 13, 64, 120, 123, 126, 128, 156, 162, 165, 167, 168, 169, 170, 183, 187, 190, 193, 199, 203, 208, 209, 212, 214, 216, 218, 219, 223, 237, 242, 276, 312], "Not": [93, 180, 235, 238, 241, 253, 262, 264, 308], "OF": [35, 315], "ON": 315, "OR": 315, "On": [98, 99, 100, 101, 103, 104, 106, 122, 132, 136, 138, 166, 169, 176, 229, 247], "One": [28, 142, 145, 146, 148, 154, 170, 173, 175, 179, 227, 233, 243, 246, 258, 267, 269, 276, 281, 292], "SUCH": 315, "Such": 109, "THE": 315, "THe": 125, "TO": 315, "That": [67, 148, 178, 180, 220, 238, 243, 246, 249, 258, 262, 267, 270], "The": [2, 3, 4, 10, 12, 14, 15, 16, 17, 20, 24, 25, 26, 28, 29, 30, 31, 32, 33, 35, 36, 37, 38, 39, 49, 54, 59, 61, 62, 63, 64, 71, 72, 73, 74, 76, 83, 88, 93, 94, 96, 97, 98, 99, 100, 101, 103, 104, 106, 107, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 138, 139, 140, 142, 143, 144, 145, 146, 147, 148, 149, 151, 152, 155, 158, 161, 165, 166, 167, 168, 169, 171, 172, 173, 175, 176, 182, 184, 187, 188, 190, 191, 197, 198, 203, 205, 212, 218, 223, 225, 226, 227, 229, 235, 236, 239, 240, 242, 244, 246, 247, 249, 251, 252, 254, 256, 257, 258, 261, 263, 264, 265, 266, 267, 269, 270, 271, 273, 274, 275, 276, 277, 278, 279, 280, 281, 283, 286, 287, 289, 290, 291, 292, 293, 294, 295, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 314], "Then": [4, 15, 20, 24, 30, 35, 36, 37, 43, 51, 54, 61, 63, 64, 71, 74, 93, 178, 180, 181, 182, 183, 188, 191, 194, 200, 203, 205, 206, 211, 216, 225, 250, 269, 273, 274, 294, 314], "There": [34, 67, 96, 112, 124, 129, 130, 131, 135, 142, 172, 178, 180, 193, 196, 221, 227, 244, 259, 262, 270, 271, 273, 276, 277, 306], "These": [0, 28, 32, 41, 57, 64, 69, 72, 77, 84, 89, 140, 148, 158, 164, 167, 169, 171, 180, 225, 226, 227, 255, 260, 266, 271, 276, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312], "To": [15, 17, 19, 25, 27, 28, 32, 44, 45, 47, 49, 53, 54, 63, 67, 71, 76, 93, 94, 96, 97, 98, 99, 100, 101, 103, 104, 106, 109, 113, 120, 122, 132, 138, 142, 148, 154, 155, 158, 161, 166, 173, 176, 184, 193, 194, 197, 203, 205, 211, 216, 225, 229, 231, 233, 236, 237, 239, 246, 247, 248, 251, 254, 257, 260, 263, 264, 265, 266, 269, 270, 271, 276, 280, 281, 293, 314], "With": [21, 24, 28, 37, 71, 88, 97, 114, 124, 131, 135, 136, 148, 152, 161, 193, 245, 264, 267, 269, 314], "_": [26, 28, 32, 36, 38, 46, 63, 80, 82, 83, 169, 249, 269, 276, 292], "__init__": [28, 38, 148, 272, 273, 274, 275, 276, 280, 281, 283, 286, 287, 291, 293, 295, 296], "__main__": [86, 87], "__name__": [86, 87], "__new__": 276, "__str__": [278, 284, 290], "__version__": [280, 314], "_actor": 283, "_add_to_scen": 119, "_axes2tupl": 292, "_buffer": 86, "_button": [15, 43, 54, 293], "_caller": [76, 290], "_check_and_sync": 154, "_color_fa": 28, "_combobox": 293, "_cqueue": 296, "_cqueue_event_id": 296, "_cqueue_index_info": 296, "_element": 293, "_ev": 14, "_event": [4, 5, 7, 9, 12, 13, 15, 17, 20, 21, 24, 25, 26, 29, 30, 32, 33, 36, 38, 40, 76, 79, 80, 81, 82, 83, 93, 290], "_evt": 45, "_fa": 28, "_filemenu_item": 293, "_keyfram": 67, "_leading_whit": 296, "_list_box": 293, "_list_box_item": 293, "_obj": [4, 5, 7, 9, 12, 13, 15, 17, 20, 21, 25, 26, 29, 32, 33, 36, 38, 40, 43, 45, 54, 79, 80, 81, 82, 83, 93, 293], "_opac": 309, "_panel2d_object": 293, "_rect_obj": 293, "_slider": 293, "_sub_compon": 293, "_tab_comp": 293, "_textbox_object": 293, "_timer": 36, "_tuple2ax": 296, "_use_shared_mem": 148, "_vtkactor": 293, "_what": 293, "a4": 193, "a94e22dbc2854ec87b8c934f6cabdf48931dc279": 154, "aabb": 187, "ab": [25, 28, 71], "abbrevi": 267, "abc": [148, 291], "abil": [14, 153, 168, 170, 173, 184, 198, 220, 223, 226, 227, 276, 312], "abl": [12, 14, 17, 24, 32, 59, 63, 108, 110, 111, 112, 113, 115, 116, 117, 118, 119, 121, 124, 127, 129, 130, 131, 133, 134, 135, 147, 149, 156, 165, 172, 174, 180, 187, 189, 190, 191, 194, 199, 205, 208, 225, 226, 227, 234, 240, 243, 256, 270, 291], "abouagour": 226, "about": [31, 71, 81, 83, 93, 94, 96, 105, 108, 116, 119, 137, 141, 142, 148, 150, 154, 159, 165, 167, 169, 170, 173, 177, 180, 181, 184, 186, 194, 197, 199, 209, 221, 224, 225, 228, 230, 232, 235, 240, 242, 243, 244, 246, 248, 252, 255, 259, 261, 262, 265, 267, 268, 270, 271, 278, 280, 286, 291, 295, 306, 310, 312, 314], "abov": [14, 17, 27, 32, 60, 63, 82, 93, 96, 111, 113, 116, 117, 120, 123, 124, 136, 145, 147, 148, 192, 205, 210, 211, 221, 222, 225, 226, 246, 249, 265, 267, 269, 276, 315], "abs_dist": 71, "abscissa": 29, "absdist": 71, "absolut": [71, 152, 171, 293], "abstract": [114, 154, 291, 293], "abstractmethod": 148, "ac": 312, "academ": 180, "acc": 33, "acc_id": 281, "acceler": [33, 243, 310], "accent": 276, "accept": [135, 179, 180, 226, 275, 280], "access": [11, 12, 14, 19, 24, 93, 97, 120, 125, 134, 135, 139, 148, 170, 172, 173, 183, 286, 291, 294, 295, 306, 308], "accessor": 281, "accident": 184, "accomplish": [234, 242, 252], "accord": [32, 37, 80, 82, 148, 170, 181, 182, 183, 185, 211, 226, 239, 248, 254, 273, 276, 283, 293, 294, 295, 310, 314], "accordingli": [67, 93, 149, 171, 182, 233, 256, 293], "accordion": [149, 171], "accordion2d": [164, 167, 171], "accordionui": 271, "account": [227, 232, 236, 269, 294, 314], "accssor_typ": 281, "accur": [80, 82, 117, 226, 271, 302, 312], "accuraci": [246, 269], "achiev": [32, 59, 97, 115, 118, 120, 121, 127, 131, 134, 139, 142, 145, 148, 149, 173, 225, 266, 267], "acid": 286, "acm": 173, "acquaint": [141, 231], "acquir": 295, "across": [132, 139, 148, 173, 175, 178, 179, 277, 308], "acrro": 175, "act": [5, 26, 121, 207, 225, 273, 293, 294], "action": [15, 43, 54, 138, 142, 171, 173, 225, 229, 245, 248, 266, 302, 309, 312], "activ": [53, 93, 129, 133, 136, 183, 200, 225, 249, 252, 271, 275, 293, 304], "active_color": [293, 296], "active_scalar": 294, "active_tab_idx": 53, "actor": [0, 1, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 46, 50, 52, 53, 54, 56, 57, 59, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 79, 80, 81, 82, 83, 86, 87, 88, 89, 94, 96, 98, 103, 104, 106, 109, 111, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 134, 135, 138, 140, 141, 144, 145, 146, 159, 162, 164, 165, 166, 168, 171, 172, 173, 175, 176, 178, 181, 184, 186, 188, 189, 190, 191, 192, 195, 196, 198, 201, 202, 204, 205, 210, 213, 218, 219, 220, 222, 223, 224, 226, 229, 232, 239, 241, 244, 245, 246, 247, 249, 250, 251, 252, 253, 255, 256, 258, 259, 264, 265, 266, 267, 271, 275, 276, 281, 283, 285, 286, 287, 290, 293, 294, 295, 296, 298, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313], "actor2d": [182, 218, 296], "actor_add_blend": 31, "actor_index": 281, "actor_list": [81, 83, 93], "actor_mul_blend": 31, "actor_no_depth_test": 31, "actor_normal_blend": 31, "actor_pentagon": 273, "actor_sub_blend": 31, "actors_list": 192, "actual": [80, 82, 114, 140, 143, 146, 158, 180, 194, 200, 212, 215, 251, 267, 275, 276, 277], "ad": [2, 3, 8, 11, 12, 13, 14, 16, 25, 27, 31, 35, 36, 37, 45, 48, 54, 59, 61, 62, 63, 64, 65, 66, 67, 68, 80, 81, 82, 94, 98, 99, 100, 101, 103, 104, 106, 109, 111, 112, 113, 115, 117, 118, 120, 121, 122, 123, 125, 132, 134, 135, 138, 140, 141, 142, 143, 146, 152, 155, 158, 159, 161, 162, 163, 164, 165, 166, 167, 168, 169, 171, 172, 173, 176, 178, 180, 181, 183, 184, 186, 187, 188, 192, 193, 194, 196, 197, 198, 199, 200, 201, 202, 203, 209, 210, 211, 212, 213, 215, 220, 222, 223, 225, 226, 227, 229, 237, 239, 255, 256, 263, 267, 269, 271, 273, 275, 276, 286, 293, 295, 302, 303, 306, 307, 308, 309, 310, 311, 312], "adapt": [143, 155, 171, 222, 312], "add": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 24, 25, 26, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 59, 60, 61, 63, 64, 65, 66, 67, 71, 72, 73, 74, 75, 76, 79, 80, 81, 82, 83, 86, 87, 88, 93, 94, 100, 101, 103, 104, 111, 112, 113, 114, 115, 117, 118, 129, 130, 140, 143, 146, 149, 152, 155, 156, 164, 167, 169, 171, 173, 178, 182, 184, 187, 188, 189, 191, 192, 195, 197, 198, 201, 216, 218, 219, 220, 222, 226, 227, 247, 255, 258, 264, 267, 271, 273, 274, 275, 281, 286, 290, 293, 294, 295, 296, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 314], "add_actor": [59, 60, 61, 62, 64, 66, 67, 68, 275, 296], "add_anim": [59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 275, 295, 296], "add_atom": [159, 296], "add_bond": 296, "add_callback": [293, 296], "add_charact": [293, 296], "add_child_anim": [63, 65, 275, 296], "add_el": [11, 14, 15, 24, 30, 37, 43, 53, 54, 293, 296], "add_iren_callback": [12, 255, 267, 295, 296], "add_polydata_numeric_field": 296, "add_remove_ax": 10, "add_shader_callback": [76, 296], "add_static_actor": [275, 296], "add_timelin": 192, "add_timer_callback": [4, 5, 7, 9, 13, 15, 17, 20, 21, 25, 26, 29, 31, 32, 33, 36, 38, 40, 45, 76, 79, 80, 81, 82, 83, 93, 295, 296], "add_to_scen": [155, 273, 275, 293, 296], "add_to_scene_at": [275, 296], "add_update_callback": [275, 296], "add_window_callback": [24, 30, 37, 295, 296, 306], "addit": [12, 24, 28, 32, 34, 62, 88, 139, 140, 142, 147, 148, 149, 150, 171, 173, 175, 218, 226, 232, 241, 249, 252, 256, 265, 267, 269, 270, 275, 276, 293, 295, 303, 311, 312, 314], "addition": [9, 13, 71, 236, 239, 247, 248, 251, 257, 269, 270], "addobserv": [11, 14], "addon": 240, "addposit": [273, 296], "address": [97, 152, 158, 161, 162, 167, 236, 239, 242, 247, 248, 250, 251, 253, 254, 256, 257, 259, 262, 263, 266, 267, 268, 270, 271], "adjac": 293, "adjust": [14, 24, 152, 232, 233, 236, 239, 241, 244, 247, 254, 256, 257, 260, 262, 269, 270, 271, 294, 312], "admit": 237, "advanc": [22, 23, 89, 97, 149, 232, 286, 309, 313], "advantag": [15, 145, 148, 164, 227, 255], "advis": [93, 114, 178, 181, 315], "af": 24, "aff": 294, "affect": [72, 201, 215, 251, 257, 270, 271], "affili": 112, "affin": [14, 24, 27, 30, 39, 273, 274, 294, 303], "after": [13, 14, 15, 17, 19, 20, 24, 31, 38, 45, 53, 63, 64, 80, 81, 82, 86, 93, 96, 109, 111, 112, 113, 119, 121, 123, 124, 126, 127, 133, 134, 142, 143, 149, 152, 154, 155, 157, 158, 167, 168, 171, 172, 173, 178, 179, 180, 184, 187, 190, 191, 192, 200, 202, 203, 204, 206, 215, 217, 218, 221, 225, 233, 237, 240, 242, 243, 246, 248, 249, 251, 252, 254, 255, 257, 258, 260, 261, 263, 264, 267, 268, 269, 271, 276, 279, 291, 293, 308, 312, 314], "afterward": [6, 237], "again": [9, 64, 71, 171, 178, 179, 180, 185, 218, 225, 240, 243, 246, 268, 277, 314], "agli": [267, 302], "ago": [205, 240], "agour": [229, 312], "agre": 114, "ahead": [24, 180, 231, 233, 260, 263, 271], "ai": 292, "aid": [121, 271], "aim": [72, 97, 142, 143, 146, 155, 236, 240, 242], "aiohttp": [96, 184, 291], "aiortc": [86, 88, 163], "air": 231, "aj": 292, "aju100": [138, 309], "ak": 292, "aka": [141, 153], "alan": 269, "alarm": 180, "alexandr": [101, 106, 122, 176, 303, 306, 307, 311], "algorithm": [36, 74, 75, 109, 111, 113, 116, 118, 121, 126, 134, 147, 157, 165, 168, 170, 172, 173, 175, 178, 179, 235, 240, 269, 273, 276, 286, 306], "algorithmoutput": 296, "alia": [276, 312], "alias": [104, 169, 178, 275, 295, 305], "aliaz": 295, "alien": 170, "align": [4, 11, 14, 15, 24, 30, 37, 43, 54, 56, 71, 74, 93, 124, 193, 217, 233, 242, 248, 251, 260, 264, 270, 271, 283, 293, 296, 302, 312], "align_cent": 273, "all": [6, 8, 9, 11, 12, 14, 15, 17, 24, 28, 30, 31, 35, 36, 37, 43, 46, 50, 51, 52, 54, 55, 56, 61, 64, 66, 71, 74, 75, 76, 79, 80, 81, 82, 83, 89, 93, 96, 97, 101, 103, 104, 106, 108, 114, 116, 118, 122, 127, 132, 133, 135, 136, 138, 140, 141, 142, 148, 149, 151, 154, 158, 161, 162, 166, 167, 169, 170, 171, 172, 176, 178, 179, 180, 185, 187, 188, 189, 190, 192, 193, 194, 195, 196, 197, 199, 200, 205, 206, 207, 211, 214, 219, 221, 222, 223, 225, 226, 227, 229, 230, 231, 234, 239, 251, 252, 254, 255, 258, 261, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 278, 281, 286, 288, 289, 293, 294, 295, 309, 311, 312, 313, 314, 315], "all_arrai": 294, "all_file_nam": 293, "allclos": 292, "alloc": [32, 234, 237, 240, 276], "allocate2d": [234, 237], "allocate3d": [234, 237], "allow": [14, 24, 28, 32, 64, 71, 74, 86, 112, 114, 119, 135, 142, 145, 146, 148, 151, 152, 155, 164, 171, 173, 174, 186, 192, 207, 213, 222, 224, 226, 227, 235, 238, 241, 249, 258, 260, 263, 264, 267, 271, 276, 287, 291, 293, 295, 304, 306, 310, 311, 312, 314], "almost": [64, 123, 146, 149, 158, 161, 169, 178, 179, 184, 201, 207, 257, 259, 267, 269, 275], "alon": [142, 173, 258], "along": [33, 38, 74, 110, 114, 118, 146, 152, 161, 171, 178, 179, 182, 183, 184, 187, 191, 198, 209, 211, 215, 216, 218, 231, 235, 273, 274, 275, 280, 283, 292, 293, 311], "alongsid": [185, 293], "alpha": [36, 118, 141, 173, 269, 273, 280, 309], "alphabet": 271, "alphablendmodetest": 193, "alreadi": [4, 19, 31, 71, 129, 142, 146, 148, 154, 173, 178, 181, 182, 194, 198, 201, 212, 226, 227, 235, 238, 247, 249, 250, 255, 258, 267, 271, 278, 286, 291, 294, 314], "also": [4, 14, 15, 18, 24, 25, 27, 28, 30, 31, 32, 34, 36, 46, 53, 60, 61, 62, 64, 71, 74, 79, 93, 96, 98, 99, 100, 101, 103, 104, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 124, 125, 127, 129, 130, 131, 132, 133, 134, 135, 136, 138, 139, 140, 141, 142, 143, 144, 146, 148, 149, 152, 154, 155, 158, 164, 166, 167, 170, 171, 172, 175, 176, 178, 179, 180, 181, 183, 184, 186, 187, 189, 191, 193, 194, 197, 198, 201, 204, 205, 212, 214, 215, 217, 218, 225, 226, 227, 229, 232, 235, 237, 238, 240, 241, 242, 243, 244, 246, 247, 248, 249, 250, 252, 253, 255, 256, 258, 259, 261, 262, 264, 265, 267, 268, 269, 270, 271, 275, 276, 280, 286, 293, 295, 312, 314], "alter": [4, 207, 271], "altern": [40, 109, 111, 113, 117, 134, 180, 247, 273, 280, 307], "although": [28, 73, 142, 147, 148, 173, 232, 242, 247, 257, 263, 264, 266], "altogeth": 133, "alwai": [6, 60, 63, 71, 93, 114, 116, 118, 119, 121, 124, 127, 142, 146, 178, 179, 198, 273, 314], "am": [107, 108, 112, 114, 116, 118, 119, 121, 129, 130, 131, 133, 140, 152, 155, 164, 178, 179, 180, 184, 211, 225, 232, 234, 238, 240, 242, 249, 255, 258, 264, 267, 268, 314], "aman": [138, 309], "amaz": [178, 180], "ambient": 285, "ambient_color": 285, "ambient_level": 285, "ambientcolor": [71, 74], "ambigu": 149, "amidst": 242, "amino": 286, "amit": [166, 310], "among": [81, 118, 129, 176, 220, 266, 311], "amount": [25, 64, 71, 87, 142, 224, 226, 235, 244, 247, 256, 269, 273, 291], "amplif": 269, "amplitud": [273, 274], "amplitude_i": 81, "amplitude_x": 81, "an": [0, 4, 11, 12, 14, 15, 17, 18, 19, 24, 25, 26, 28, 32, 33, 34, 35, 36, 39, 40, 51, 54, 59, 60, 61, 62, 63, 64, 68, 71, 72, 74, 86, 89, 93, 96, 97, 98, 99, 100, 101, 103, 104, 106, 107, 108, 109, 111, 115, 117, 118, 121, 122, 124, 126, 129, 132, 134, 135, 138, 140, 141, 142, 144, 146, 147, 148, 149, 152, 154, 155, 156, 165, 166, 168, 170, 171, 173, 176, 178, 179, 180, 181, 182, 183, 184, 186, 187, 188, 190, 192, 194, 195, 198, 200, 201, 202, 205, 206, 210, 212, 217, 218, 221, 222, 224, 225, 226, 227, 229, 230, 231, 233, 234, 235, 237, 242, 244, 246, 247, 248, 249, 252, 254, 255, 258, 260, 261, 263, 264, 266, 267, 268, 269, 270, 271, 273, 274, 275, 276, 280, 281, 282, 286, 289, 290, 291, 292, 293, 294, 295, 306, 309, 310, 312, 314], "anaglyph": 295, "analyse_snapshot": 211, "analysi": [180, 236, 257, 269, 271, 274], "analyz": [211, 295], "analyze_scen": 296, "analyze_snapshot": 296, "anand": [176, 227, 229, 311, 312], "ananoda": 303, "anatomi": 286, "anchor": [154, 273, 293, 296], "android": 179, "ang_frq": 29, "angl": [5, 15, 29, 33, 40, 53, 54, 56, 118, 167, 225, 238, 269, 270, 273, 274, 276, 292, 293, 294, 295, 296], "angular": [29, 33, 269, 274], "angular_frq": [29, 33], "ani": [14, 18, 32, 62, 64, 93, 97, 98, 99, 100, 101, 103, 104, 106, 112, 113, 116, 118, 119, 121, 122, 124, 127, 129, 130, 132, 133, 135, 136, 138, 140, 142, 143, 146, 149, 152, 154, 155, 161, 166, 171, 173, 176, 178, 179, 180, 181, 182, 192, 196, 197, 200, 205, 211, 212, 218, 221, 225, 226, 227, 229, 233, 236, 240, 242, 243, 245, 247, 249, 256, 260, 261, 266, 267, 270, 273, 275, 276, 278, 294, 295, 314, 315], "anim": [0, 1, 5, 7, 17, 20, 22, 23, 26, 33, 40, 58, 59, 61, 62, 67, 97, 98, 99, 100, 101, 103, 104, 105, 106, 122, 132, 137, 138, 154, 156, 157, 159, 166, 169, 171, 172, 173, 176, 177, 178, 184, 186, 189, 193, 195, 196, 198, 201, 205, 212, 213, 214, 217, 223, 224, 225, 226, 228, 229, 281, 295, 296, 306, 307, 309, 311, 312, 313], "anim_0": [9, 13], "anim_1": [9, 13], "anim_channel": 281, "anim_hsv_color": 61, "anim_lab_color": 61, "anim_linear_color": 61, "anim_step_color": 61, "anim_xyz_color": 61, "animat": 60, "animatedcub": 193, "animatedmorphcub": [193, 223], "animatedmorphspher": [193, 223], "animatedtriangl": 193, "anisotrop": [73, 176, 285, 311], "anisotropi": [27, 28, 37, 72, 270, 285, 294, 311], "anisotropic_direct": 285, "anisotropy_rot": [37, 72, 285], "anki": 178, "annoi": 152, "announc": [98, 99, 100, 101, 103, 104, 106, 108, 122, 132, 138, 166, 176, 178, 179, 229, 231, 314], "anoth": [4, 20, 37, 64, 66, 114, 126, 148, 149, 180, 188, 192, 197, 202, 207, 226, 227, 231, 238, 240, 243, 246, 249, 252, 255, 258, 261, 262, 264, 266, 267, 268, 271, 276, 314], "anousheh": [132, 229, 308, 312], "answer": [178, 180, 212, 214, 246], "anterior": 292, "anti": [104, 169, 178, 275, 295, 305], "antialias": [71, 74, 296], "anticlockwise_rotation_i": [293, 296], "anticlockwise_rotation_x": [293, 296], "antiparallel": 33, "antiquecamera": 193, "antriksh": [140, 166, 171, 176, 229, 271, 302, 310, 311, 312], "anxieti": 180, "anxiou": 179, "anymor": [121, 255], "anyon": [234, 246], "anyth": [64, 94, 178, 225, 226, 235, 241, 246, 276, 286, 314], "anywher": 148, "apart": [110, 112, 116, 118, 119, 121, 124, 129, 130, 135, 136, 167, 267], "apertur": 276, "api": [43, 46, 50, 51, 52, 54, 55, 56, 93, 97, 114, 129, 132, 134, 135, 155, 158, 161, 173, 178, 179, 180, 184, 186, 188, 190, 207, 210, 226, 227, 230, 234, 249, 252, 258, 261, 264, 267, 268, 302, 303, 307, 308, 312], "app": [22, 35, 89], "app_async": 148, "appar": [240, 243, 246], "appeal": 233, "appear": [11, 12, 24, 60, 110, 148, 175, 180, 225, 226, 227, 239, 251, 263, 264, 265, 270, 276, 294, 295, 309, 311, 312], "append": [25, 35, 36, 40, 43, 45, 54, 80, 81, 82, 83, 87, 112, 188, 290, 293], "append_item": [293, 296], "appli": [6, 9, 13, 14, 15, 18, 21, 31, 49, 74, 79, 80, 81, 82, 83, 93, 127, 148, 178, 180, 181, 182, 184, 192, 197, 202, 204, 212, 214, 217, 219, 221, 227, 236, 239, 252, 255, 258, 267, 269, 273, 274, 281, 282, 283, 285, 289, 290, 291, 294, 295, 296], "applic": [17, 20, 71, 105, 137, 142, 154, 173, 177, 180, 183, 226, 228, 237, 240, 246, 249, 267, 269, 291, 294, 311], "apply_affin": 296, "apply_affine_to_actor": 296, "apply_forc": [79, 80, 82, 83, 93], "apply_morph_vertic": [281, 296], "apply_norm": [6, 9, 13, 281], "apply_skin_matrix": [281, 296], "apply_transform": 296, "applyexternalforc": [79, 80, 82, 83, 93], "applyexternaltorqu": 93, "appreci": 314, "approach": [80, 113, 120, 131, 134, 142, 149, 157, 173, 182, 185, 197, 203, 206, 207, 211, 220, 221, 226, 242, 249, 252, 258, 259, 266, 267, 269, 271, 291], "approcach": 175, "appropri": [14, 24, 74, 80, 93, 129, 172, 186, 253, 270, 293], "approv": 271, "approx": 269, "approx_polygon_track": 273, "approxim": [27, 269, 273, 274], "appveyor": [103, 104, 304, 305], "apr": 148, "april": 179, "apt": [86, 88], "ar": [11, 12, 14, 15, 17, 24, 25, 27, 28, 29, 30, 32, 33, 34, 36, 37, 43, 44, 45, 46, 47, 48, 50, 51, 52, 53, 54, 55, 56, 60, 62, 64, 66, 67, 71, 72, 74, 80, 82, 83, 86, 93, 94, 96, 97, 98, 99, 100, 101, 103, 104, 105, 106, 107, 109, 112, 116, 117, 122, 123, 126, 127, 128, 129, 130, 131, 132, 134, 135, 136, 137, 138, 140, 142, 143, 146, 148, 149, 151, 152, 154, 155, 157, 158, 161, 164, 166, 167, 169, 171, 172, 173, 176, 177, 178, 180, 181, 192, 193, 197, 199, 205, 207, 211, 215, 216, 217, 222, 225, 226, 227, 228, 229, 230, 232, 234, 236, 237, 241, 242, 244, 246, 251, 252, 255, 256, 259, 262, 265, 266, 267, 268, 269, 270, 271, 273, 274, 275, 276, 278, 280, 282, 283, 286, 287, 288, 290, 292, 293, 294, 295, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 314, 315], "ara": [258, 267], "arab": 178, "arang": [36, 81, 83], "archaic": 168, "architectur": [206, 225], "archiv": [148, 180, 288], "archive_subst_hash": 288, "arcuat": 24, "area": [14, 24, 112, 135, 206, 230, 246, 287], "aren": [135, 218, 302], "arg": [86, 87, 96, 280, 289, 291], "arg_in_kwarg": 280, "argsdeprecationwarn": 296, "argument": [62, 68, 88, 93, 114, 115, 135, 224, 275, 280, 289, 292, 293, 309, 312], "ari": 32, "arial": [24, 30, 46, 50, 273, 293], "ariel": [103, 304], "aris": [183, 185, 266, 269, 271, 315], "arm": [57, 58, 89, 210, 226, 313], "aromat": 286, "aros": [236, 239, 254], "around": [5, 12, 15, 26, 28, 32, 63, 81, 93, 146, 149, 168, 178, 179, 180, 185, 187, 191, 194, 201, 205, 215, 218, 220, 225, 230, 249, 252, 258, 263, 266, 267, 271, 273, 275, 285, 286, 287, 292, 294, 295], "arr": [273, 277, 282, 290, 291, 294, 295], "arr_buff": 142, "arr_buffer_uint8": 142, "arr_uint8_repr": 142, "arrai": [2, 3, 4, 5, 8, 11, 12, 16, 18, 21, 26, 28, 29, 31, 32, 33, 35, 36, 40, 45, 46, 50, 53, 54, 56, 59, 60, 61, 62, 63, 65, 66, 67, 68, 71, 73, 74, 75, 79, 80, 81, 82, 83, 86, 87, 93, 118, 142, 148, 159, 170, 193, 252, 265, 269, 273, 274, 275, 276, 277, 281, 282, 286, 290, 291, 292, 293, 294, 295, 306, 308, 311], "arrang": [49, 140, 225, 273], "array_from_actor": 296, "array_lik": [273, 276, 292], "array_nam": 294, "array_typ": 294, "arraycircularqueu": 296, "arraysequ": 312, "arriv": 180, "arrow": [0, 1, 17, 29, 33, 46, 60, 89, 104, 217, 281, 289, 296, 302, 304, 305, 306, 312, 313], "arrow_actor": [2, 17, 29, 33, 273], "arrow_actor2": 2, "arrowsourc": 296, "arthur": 165, "articl": [241, 314], "artist": 169, "as_arrai": 142, "as_quat": 275, "as_vtk": 294, "as_vtk_typ": 294, "as_vtktyp": [45, 282], "asarrai": [26, 28], "asbyt": 296, "ascertain": 266, "ask": [60, 148, 179, 180, 181, 182, 218, 253, 267], "aspect": [135, 152, 154, 155, 173, 211, 263, 271, 273, 283, 293, 294], "aspect_ratio": [25, 273, 283, 293, 294], "assembli": 296, "assert": [237, 305], "assess": 269, "asset": [44, 45], "assign": [15, 28, 59, 60, 107, 109, 113, 117, 125, 126, 128, 131, 182, 213, 273, 275, 276, 286, 294], "assist": 271, "associ": [14, 59, 74, 143, 148, 158, 181, 185, 225, 233, 244, 256, 267, 269, 270, 273, 274, 275, 276, 286, 294], "assum": [32, 142, 270, 273, 274, 280, 293], "astolfi": [138, 309], "astropi": 280, "astyp": [12, 81, 83], "asymmetr": 309, "async": [88, 145, 148, 291], "async_app": 296, "async_get_jpeg": [148, 291, 296], "asynchron": [184, 227], "asyncio": [88, 175, 184, 291], "atextur": 281, "atla": [154, 167, 169, 175], "atom": [144, 150, 159, 172, 286], "atom1_index": 286, "atom2_index": 286, "atom_color": [286, 296], "atom_coordin": 286, "atom_index": 286, "atom_nam": 286, "atom_num": 286, "atom_scale_factor": 286, "atomic_num": 286, "atomic_numb": [286, 296], "atomic_radiu": [286, 296], "atomic_symbol": [286, 296], "atomicnumb": 286, "attach": [63, 67, 93, 130, 192, 234, 237, 243, 246], "attempt": [180, 263, 266, 302], "attend": [181, 249], "attent": [152, 178, 180, 237, 252, 261, 263, 266], "attenu": 71, "attenuationtest": 193, "attr_nam": 290, "attract": 36, "attrib": 275, "attribut": [35, 36, 64, 74, 149, 155, 171, 192, 193, 226, 227, 235, 239, 275, 276, 287, 290, 295, 303, 306, 314], "attribute_to_actor": [74, 296], "au": [141, 144, 147, 150, 153, 156, 159, 162, 165, 168, 170], "authent": 309, "author": [236, 251, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 314], "auto": [9, 13, 155, 271, 276], "auto_exampl": [1, 23, 42, 58, 70, 78, 85, 90, 271], "auto_examples_jupyt": 89, "auto_examples_python": 89, "auto_font_sc": 293, "auto_font_scal": [248, 260, 293, 296], "autom": 314, "automat": [149, 161, 175, 178, 187, 192, 197, 225, 236, 248, 251, 257, 265, 269, 271, 273, 275, 293, 294, 295, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 314], "auxiliari": 15, "avail": [19, 24, 27, 35, 36, 84, 89, 93, 97, 98, 99, 100, 101, 103, 104, 106, 109, 111, 113, 114, 117, 120, 122, 123, 126, 128, 131, 132, 136, 138, 140, 142, 148, 154, 160, 166, 169, 171, 173, 176, 178, 229, 246, 252, 267, 271, 273, 286, 291, 295], "averag": [35, 36, 87, 281], "avg": [80, 81, 82, 83], "avocado": 193, "avoid": [4, 12, 15, 17, 20, 21, 32, 113, 142, 154, 161, 173, 175, 264, 269, 271, 276, 286, 306], "avoid_unlink_shared_mem": 291, "awai": [30, 178, 294, 295], "await": [88, 264], "awar": 129, "ax": [10, 11, 17, 25, 28, 79, 80, 81, 82, 83, 124, 171, 235, 274, 292, 295, 296, 302], "axi": [15, 21, 25, 26, 28, 29, 32, 33, 35, 36, 40, 63, 74, 81, 83, 87, 93, 118, 171, 184, 201, 270, 273, 274, 283, 292, 293, 294, 295, 311], "axial": [14, 15, 30], "ayappan": [166, 310], "az_ang": 295, "az_angl": 295, "azimuth": [4, 5, 10, 17, 20, 21, 26, 28, 31, 32, 38, 46, 50, 54, 56, 76, 159, 292, 295, 296], "azur": [104, 229, 305, 307, 310, 312], "b": [10, 29, 30, 36, 39, 108, 145, 148, 173, 240, 243, 244, 269, 273, 274, 276, 280, 285, 286, 289, 294, 314], "b1e985": 148, "b_high": 30, "b_low": 30, "b_matrix": [30, 269, 273, 274], "bachelor": [108, 178, 179, 180], "back": [24, 93, 118, 121, 178, 180, 190, 193, 226, 243, 249, 258, 295, 314], "backbon": [141, 172], "backend": 116, "backfac": 294, "backface_cul": [17, 294], "backfacecul": 159, "background": [14, 26, 28, 31, 72, 73, 75, 81, 114, 182, 216, 218, 225, 233, 248, 249, 251, 254, 257, 266, 271, 276, 277, 293, 295, 296, 302, 310], "background_color": [24, 30, 293, 296], "background_opac": 293, "backward": [24, 303, 306], "bad": [142, 264, 267], "badg": 303, "ball": [77, 78, 80, 89, 118, 129, 135, 141, 147, 153, 172, 286, 309, 313], "ball_actor": [80, 83, 93], "ball_col": [80, 93], "ball_color": [80, 83], "ball_mass": [80, 83], "ball_orient": 80, "ball_orn": [80, 93], "ball_po": [80, 93], "ball_posit": 80, "ball_radiu": [80, 83], "ball_shap": 83, "ball_stick": 296, "bandwidth": [142, 173, 261, 264, 267, 268], "bansal": [106, 122, 306, 307], "bar": [27, 53, 273, 293, 295, 312], "bar2": 27, "bar3": 27, "barramundifish": 193, "base": [4, 18, 28, 37, 59, 62, 64, 65, 66, 68, 69, 70, 73, 74, 75, 80, 81, 82, 83, 89, 93, 96, 97, 109, 110, 114, 115, 116, 117, 121, 123, 125, 126, 134, 135, 152, 156, 161, 165, 171, 172, 173, 176, 178, 179, 180, 181, 184, 191, 192, 201, 210, 222, 224, 225, 226, 227, 230, 233, 244, 246, 247, 248, 251, 254, 255, 256, 257, 258, 260, 262, 265, 266, 267, 269, 270, 271, 273, 274, 275, 276, 278, 280, 281, 283, 285, 286, 287, 291, 293, 294, 295, 296, 307, 309, 311, 313], "base64": 227, "base_actor": [80, 81, 82, 83], "base_col": [80, 82, 83], "base_color": [80, 82], "base_ior": [37, 72, 285], "base_mass": [81, 83, 93], "base_orient": [80, 82], "base_orn": 83, "base_po": [80, 82, 83], "base_posit": [80, 82], "base_s": [80, 82], "base_shap": [81, 83, 93], "basecollisionshapeindex": [79, 80, 82, 83, 93], "basecolortextur": [193, 281], "baselin": 271, "basemass": [79, 80, 82, 83, 93], "baseorient": [79, 80, 81, 82, 83, 93], "baseposit": [79, 80, 81, 82, 83, 93], "basetextur": 188, "basi": [265, 269], "basic": [32, 74, 109, 117, 124, 126, 130, 144, 146, 178, 179, 180, 182, 185, 226, 227, 232, 249, 250, 252, 264, 267, 289, 293, 306, 309], "basser": [269, 274], "bat": 96, "bay": 246, "bb_type": 273, "bbox_actor": 286, "bbtest": 193, "bdist_wheel": 314, "beauti": [102, 252, 258], "becam": [71, 185, 280], "becaus": [14, 24, 28, 37, 71, 74, 114, 116, 119, 121, 127, 130, 139, 142, 146, 148, 151, 154, 155, 158, 170, 171, 173, 175, 180, 185, 194, 197, 200, 202, 205, 206, 215, 220, 236, 240, 244, 253, 256, 258, 267, 269, 276, 292], "becom": [14, 158, 203, 215, 219], "been": [17, 20, 28, 43, 44, 45, 46, 50, 51, 52, 54, 55, 56, 68, 75, 76, 96, 97, 108, 110, 119, 123, 125, 139, 142, 143, 147, 149, 152, 153, 154, 155, 157, 160, 161, 171, 173, 178, 179, 180, 202, 212, 226, 230, 232, 237, 255, 263, 266, 269, 271, 273, 276, 288, 290, 293], "befor": [13, 15, 28, 32, 71, 86, 93, 108, 109, 114, 118, 121, 130, 140, 146, 148, 149, 151, 152, 155, 157, 158, 161, 173, 178, 179, 180, 199, 202, 205, 217, 233, 240, 253, 262, 264, 265, 267, 269, 271, 290, 293, 295, 312], "beforehand": 293, "beg": 178, "began": [254, 271], "begin": [25, 26, 29, 32, 33, 64, 65, 156, 173, 236, 271], "beginn": [180, 213], "behalf": [98, 99, 100, 101, 103, 104, 106, 122, 132, 138, 166, 176, 229], "behav": [142, 173, 175, 204, 275, 293], "behavior": [14, 31, 134, 140, 142, 145, 148, 151, 173, 175, 236, 249, 251, 257, 263, 286, 290, 291, 295, 307], "behaviour": [62, 277], "behind": [12, 115, 117, 118, 143, 159, 171, 173, 238, 239, 255, 261, 267], "beign": 80, "beij": 5, "beijing_actor": 5, "being": [25, 36, 74, 83, 96, 111, 113, 129, 136, 146, 147, 148, 155, 161, 178, 186, 203, 205, 207, 210, 213, 222, 224, 226, 237, 240, 243, 246, 255, 258, 264, 267, 270, 271, 275, 293, 294, 303, 306, 312], "believ": [142, 178], "belong": [286, 293], "below": [2, 3, 4, 14, 16, 22, 62, 63, 89, 102, 109, 111, 113, 115, 117, 120, 123, 126, 128, 131, 136, 140, 142, 143, 146, 148, 149, 151, 152, 154, 155, 157, 158, 161, 164, 167, 169, 171, 173, 185, 187, 189, 190, 192, 194, 197, 200, 203, 206, 209, 211, 216, 218, 225, 234, 237, 240, 244, 246, 249, 252, 255, 258, 259, 261, 264, 267, 268, 269, 270, 271, 276, 295], "benchmark": [134, 192, 201], "benefici": [113, 141, 144], "benefit": [230, 295], "besid": [161, 175, 206, 226, 256, 269], "best": [27, 62, 136, 149, 180, 185, 264, 273, 314], "beta": [118, 280], "better": [15, 27, 28, 46, 50, 56, 68, 74, 80, 82, 83, 97, 109, 133, 134, 136, 142, 148, 150, 154, 157, 173, 178, 180, 181, 220, 232, 248, 249, 250, 252, 256, 258, 262, 267, 269, 270], "between": [4, 5, 15, 17, 21, 32, 35, 36, 39, 46, 53, 59, 64, 72, 73, 74, 75, 79, 80, 82, 83, 86, 88, 93, 116, 118, 135, 145, 154, 171, 172, 173, 175, 178, 182, 187, 194, 197, 209, 225, 226, 241, 242, 247, 252, 254, 265, 267, 269, 273, 274, 275, 278, 282, 285, 286, 291, 292, 293, 295, 312], "beyond": [152, 183, 233, 255, 257, 271], "bezier": [57, 58, 89, 226, 275, 313], "bf": 309, "bg": 276, "bg_color": [44, 45, 293, 295, 296], "bg_opac": [44, 45, 293], "bhalodiya": [176, 311], "bhujbal": [106, 306], "bias": 134, "bib": 310, "bibtex": 310, "bidirect": [73, 176, 311], "bidirectional_reflectance_distribution_funct": 73, "big": [5, 180, 249, 258, 267], "big_cent": 289, "big_color": 289, "big_triangl": 289, "big_vertic": 289, "bigbuckbunni": 38, "bigger": [205, 215, 258], "bilinear": 178, "billboard": [69, 70, 89, 106, 174, 195, 205, 207, 220, 222, 224, 226, 237, 246, 249, 252, 264, 267, 269, 296, 306, 309, 312, 313], "billboard_actor": 273, "billboards_actor": 71, "bin": [227, 278, 281], "binar": 273, "binari": [32, 121, 184, 227, 273, 278, 282, 315], "bind": [11, 12, 167, 169, 171, 205, 212, 234, 237, 246, 281], "bioconda": 165, "biolog": 269, "biopython": 144, "biswa": [106, 108, 122, 132, 135, 138, 229, 306, 307, 308, 309, 312], "bit": [36, 116, 130, 133, 152, 167, 168, 170, 179, 180, 187, 221, 226, 258, 265, 266, 267, 269, 271, 314], "bitenc": 267, "bitmap": [161, 174], "black": [27, 180, 249, 302, 312], "blacklist": 310, "blank": 226, "blend": [73, 249, 252, 267, 295], "blender": [94, 178, 179, 180, 217, 222], "bless": 179, "blinn": [71, 74, 178, 269], "blinn_phong_model": [71, 74], "blinnphongillummodel": [71, 74], "blob": [148, 169, 184], "block": [10, 55, 74, 76, 94, 114, 142, 145, 148, 158, 173, 290, 293, 310, 311], "blog": [73, 113, 122, 129, 130, 134, 135, 146, 147, 149, 152, 163, 164, 165, 170, 171, 172, 173, 180, 212, 226, 307, 308, 309, 310, 311, 312, 314], "blogpost": [234, 237, 240, 243, 246, 249, 252, 255, 258, 261, 264, 267, 268, 269, 302, 312], "bloomington": 4, "blue": [27, 29, 33, 39, 46, 47, 50, 53, 79, 150, 218, 273, 276, 286, 293, 295], "blue_bal": 79, "blue_ball_actor": 79, "blue_ball_col": 79, "blue_medium": 4, "blue_orn": 79, "blue_po": 79, "blue_radiu": 79, "blur": [255, 258, 267], "bmp": [19, 282], "bmpreader": 296, "bmpwriter": 296, "bodi": [44, 45, 63, 80, 81, 116, 171, 269, 293, 296], "body_actor": 63, "body_box": [293, 296], "body_color": 293, "body_text": [44, 45, 293], "boi": 276, "boid": 311, "bold": [10, 20, 21, 24, 25, 26, 29, 30, 33, 273, 293, 296], "bond": [139, 140, 147, 150, 159, 172, 286, 310], "bond_index": 286, "bond_ord": 286, "bond_thick": 286, "bone": [13, 217, 227, 276, 281], "bone_id": 281, "bonedeform": 219, "book": [173, 179], "bool": [11, 273, 274, 275, 276, 277, 280, 281, 282, 286, 287, 289, 290, 291, 293, 294, 295], "boolean": [273, 293], "boombox": 193, "boomboxwithax": 193, "border": [14, 71, 143, 146, 158, 164, 171, 187, 191, 211, 215, 216, 218, 225, 255, 267, 271, 293, 310], "border_color": [44, 45, 293, 296], "border_width": [44, 45, 158, 293, 296], "bore": 154, "borrow": 273, "bot": [302, 304], "both": [4, 16, 24, 27, 28, 39, 65, 79, 93, 113, 115, 116, 124, 136, 152, 172, 173, 178, 181, 189, 192, 198, 201, 209, 218, 227, 236, 247, 250, 251, 255, 258, 273, 274, 280, 282, 283, 289, 293, 295], "bother": 178, "bottleneck": 226, "bottom": [53, 56, 143, 149, 152, 171, 184, 263, 271, 273, 293, 294], "bottom_disk_ratio": [293, 296], "bottom_disk_valu": [293, 296], "bottom_y_posit": [293, 296], "bounc": [17, 206], "bound": [25, 114, 135, 168, 172, 180, 185, 187, 191, 194, 215, 221, 225, 248, 251, 254, 257, 262, 269, 270, 271, 273, 283, 286, 293, 294, 302, 306, 307], "boundari": [71, 74, 183, 185, 225, 233, 236, 263, 271, 293], "bounding_box": 296, "boundingbox": [239, 271], "bounds_max": 32, "bounds_min": 32, "box": [12, 22, 23, 25, 26, 29, 30, 33, 40, 41, 42, 50, 53, 54, 60, 63, 65, 74, 80, 81, 82, 83, 89, 93, 104, 114, 121, 135, 159, 168, 169, 172, 180, 187, 191, 193, 194, 215, 221, 225, 248, 251, 254, 255, 257, 269, 271, 278, 283, 286, 289, 293, 294, 296, 302, 305, 306, 307, 308, 313], "box_actor": [8, 21, 74, 83, 273, 274], "box_cent": 21, "box_color": 21, "box_direct": 21, "box_edg": 21, "box_li": 21, "box_lx": 21, "box_lz": 21, "boxanim": 193, "boxinterleav": 193, "boxtextur": [8, 193, 278], "boxtexturednonpoweroftwo": 193, "boxvertexcolor": 193, "boys2rgb": 296, "boys_standard": 276, "bpo": 148, "brackei": 180, "brain": [22, 23, 28, 89, 250, 269, 313], "brainart": 102, "brainstem": [193, 223, 227], "brainstorm": 152, "branch": [111, 113, 117, 120, 123, 140, 188, 190, 227, 269, 270, 303, 314], "brazil": 139, "brazilian": 142, "brdf": [69, 70, 89, 97, 176, 311, 313], "break": [10, 14, 38, 133, 154, 173, 238, 267], "breakthrough": 231, "brent": 73, "brew": [86, 88], "brick": [77, 78, 83, 89, 118, 121, 124, 127, 130, 135, 313], "brick_actor": [80, 83], "brick_actor_singl": 93, "brick_cent": [80, 83, 93, 127], "brick_col": [80, 83, 93], "brick_color": [80, 83, 93], "brick_direct": [80, 83, 93], "brick_mass": 80, "brick_orn": [80, 83, 93, 127], "brick_sec": 83, "brick_siz": [80, 83, 93], "brick_vertic": 83, "brief": [129, 146, 242, 246, 314], "briefli": [146, 230], "brighter": [216, 218], "bring": [24, 71, 93, 118], "broadcast": 291, "broke": 121, "broken": [271, 302], "brother": 180, "brought": [169, 180], "brown": 276, "brownian": [22, 23, 89, 159, 172, 309, 312, 313], "brows": [129, 133], "browser": [86, 88, 96, 161, 173, 291], "bruno": [139, 166, 176, 181, 229, 243, 246, 255, 258, 310, 311, 312], "brush": 179, "bsd": 97, "btdf": 97, "bucket": 38, "budget": 142, "buff_id": 281, "buffer": [86, 142, 148, 167, 193, 199, 226, 227, 230, 234, 276, 278, 281, 284, 290, 291, 296], "buffer_arrai": 281, "buffer_index": [148, 291, 296], "buffer_nam": [86, 291], "buffer_s": 148, "bufferview": [193, 281], "bug": [109, 112, 113, 114, 120, 123, 125, 130, 131, 145, 146, 151, 161, 171, 173, 174, 175, 179, 183, 184, 193, 209, 225, 227, 255, 258, 264, 291, 302, 303, 305, 306, 308, 309, 310, 311, 312], "bugfix": [312, 314], "buggi": 193, "build": [11, 12, 31, 35, 36, 71, 74, 97, 108, 112, 154, 173, 180, 263, 269, 291, 293, 302, 306, 312, 314], "build_label": [24, 30], "built": [31, 93, 175, 179, 227], "bulki": 180, "bulletlist": 310, "bump": [32, 302, 306], "bumpi": 246, "bumpier": 243, "bunch": [22, 51, 54, 55, 76, 89], "bundl": [11, 12, 22, 23, 24, 89, 313], "bundle1": 27, "bundle10": 27, "bundle2": 27, "bundle3": 27, "bundle4": 27, "bundle5": 27, "bundle6": 27, "bundle7": 27, "bundle8": 27, "bundle9": 27, "bundle_n": 27, "bundles_2_subject": 14, "bundles_and_3_slic": 24, "burlei": 73, "busi": [148, 315], "butterfli": 273, "butterflysubdivisionfilt": 296, "button": [14, 15, 24, 41, 42, 89, 108, 135, 149, 183, 198, 225, 226, 293, 304, 311, 312, 313], "button2d": [15, 43, 54, 155, 225, 296, 310], "button_exampl": [43, 54], "bval": 244, "bvec": 244, "bye": [55, 271], "bye_text": 55, "byte": [151, 276, 281, 291], "byte_length": 281, "byte_offset": 281, "byte_strid": 281, "byteoffset": 281, "bytes_or_buff": [278, 284, 290], "b\u00e9zier": [186, 226, 275], "c": [10, 15, 29, 71, 74, 96, 98, 99, 100, 101, 103, 104, 106, 122, 132, 138, 148, 154, 166, 167, 173, 176, 178, 179, 193, 206, 229, 269, 273, 274, 276, 278, 295, 314, 315], "c_contigu": 276, "cad": 276, "cagatai": 276, "cairo": 178, "cal_bounding_box": [293, 296], "cal_bounding_box_2d": 296, "cal_min_boundary_dist": [293, 296], "cal_size_from_messag": [293, 296], "calamant": 269, "calcul": [11, 15, 17, 32, 71, 74, 80, 82, 83, 93, 116, 118, 150, 152, 161, 182, 185, 187, 194, 195, 197, 205, 206, 211, 214, 215, 217, 221, 225, 226, 233, 238, 241, 244, 246, 248, 249, 253, 255, 258, 262, 266, 267, 269, 273, 274, 275, 281, 283, 285, 293, 294, 295], "calculate_path": 15, "california": 173, "call": [9, 11, 12, 13, 15, 17, 20, 27, 29, 33, 38, 47, 54, 76, 80, 82, 93, 129, 144, 145, 146, 148, 161, 165, 173, 175, 179, 180, 189, 194, 197, 198, 200, 215, 225, 230, 239, 240, 241, 243, 255, 264, 267, 273, 274, 275, 280, 286, 288, 290, 291, 292, 295, 303, 310, 311, 312, 314], "callabl": [275, 276, 280, 289, 290, 293], "callback": [11, 12, 14, 15, 17, 20, 22, 23, 24, 30, 32, 36, 38, 40, 43, 45, 50, 54, 56, 76, 79, 80, 81, 82, 83, 89, 108, 110, 112, 116, 122, 129, 130, 135, 148, 149, 158, 161, 167, 171, 181, 182, 184, 191, 200, 212, 222, 224, 227, 252, 255, 264, 267, 275, 284, 290, 291, 293, 295, 304, 307, 312, 313], "callback_funct": 267, "callback_stream_cli": 296, "callbackhigh": 290, "callbacklow": 290, "callbackmean": 290, "calldata": [76, 290], "caller": 290, "callosum": 39, "calott": [153, 172], "cam_foc": 295, "cam_po": 295, "cam_view": 295, "came": [155, 178, 179, 182, 183, 246, 257], "camera": [4, 5, 6, 8, 9, 10, 15, 25, 26, 27, 29, 32, 33, 36, 38, 40, 46, 50, 56, 57, 58, 63, 64, 65, 68, 71, 74, 80, 82, 83, 89, 172, 178, 184, 186, 188, 193, 198, 224, 226, 227, 267, 273, 275, 281, 290, 294, 295, 296, 312, 313], "camera_anim": 60, "camera_direct": [295, 296], "camera_focal_posit": 60, "camera_id": 281, "camera_info": [27, 295, 296], "camera_posit": 60, "cameraanim": [60, 296], "can": [4, 6, 9, 10, 12, 13, 14, 15, 17, 21, 24, 25, 27, 28, 30, 31, 32, 33, 34, 35, 36, 37, 40, 43, 51, 53, 54, 56, 59, 60, 61, 64, 67, 71, 72, 73, 75, 86, 88, 93, 94, 96, 98, 99, 100, 101, 102, 103, 104, 106, 110, 112, 114, 116, 118, 119, 120, 121, 122, 124, 125, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 138, 140, 141, 142, 145, 146, 147, 148, 149, 150, 151, 152, 154, 158, 161, 166, 167, 169, 171, 172, 173, 175, 176, 178, 179, 180, 181, 182, 183, 186, 187, 188, 189, 190, 192, 193, 194, 196, 197, 199, 200, 201, 203, 206, 209, 211, 216, 218, 221, 225, 226, 227, 229, 230, 234, 235, 236, 237, 238, 239, 240, 241, 242, 244, 246, 247, 248, 249, 250, 253, 255, 256, 257, 258, 259, 260, 262, 265, 266, 267, 268, 269, 270, 271, 273, 274, 275, 276, 277, 278, 282, 283, 287, 290, 291, 292, 293, 294, 295, 309, 310, 314], "cannot": [114, 171, 193, 234, 237, 280, 287, 312], "canva": [48, 182, 183, 185, 187, 200, 226, 277, 293], "cap": [63, 74, 81, 83, 93, 267, 273, 275, 289], "cap_prop_fp": 38, "cap_prop_frame_count": 38, "capabl": [24, 30, 120, 126, 127, 128, 134, 136, 170, 226, 227, 261, 273], "capston": 249, "capsul": [75, 309], "caption": [25, 28, 273, 293, 304, 312], "caption_offset": [25, 28, 273, 293], "captur": [37, 200, 225, 249, 252, 267], "car": 63, "car_anim": 63, "carbon": 141, "card": [41, 42, 89, 167, 169, 171, 271, 293, 313], "card2d": [44, 45, 143, 164, 167, 169, 171, 296, 302], "card_ui": [44, 45], "cardui": [239, 242, 271], "care": [64, 142, 236, 271], "carefulli": [73, 248], "caret": 293, "caret_po": [293, 296], "cart2spher": 296, "cartesian": [5, 292], "case": [27, 32, 37, 43, 54, 62, 71, 74, 93, 109, 112, 118, 136, 152, 154, 161, 172, 173, 180, 185, 203, 206, 242, 248, 249, 255, 264, 265, 267, 269, 271, 275, 276, 286, 293, 294, 306], "cast": [142, 311], "cast_rai": 74, "castabl": 293, "castillo": [229, 232, 269, 302, 312], "castrai": 74, "catch": [231, 242, 280], "categor": 233, "categori": [35, 36, 72, 87, 102, 233], "categories_fil": [35, 36, 87], "category2index": [35, 36, 87], "category_color": 36, "categorycolor": [35, 87], "caught": 237, "caus": [113, 139, 142, 149, 151, 175, 184, 186, 202, 214, 217, 233, 236, 239, 251, 271, 312, 315], "cautiou": 271, "cc": 296, "cc_1": 24, "ccw": 294, "cd": 314, "celebr": 178, "cell": [49, 273, 283, 294, 305], "cell_height": 294, "cell_pad": [25, 28, 273, 283, 293], "cell_shap": [49, 273, 283, 293], "cell_width": 294, "cellarrai": 296, "cellpick": 296, "cellshap": 146, "cen2": [2, 3, 16], "center": [2, 3, 4, 5, 8, 10, 11, 12, 15, 16, 17, 20, 21, 24, 26, 28, 29, 30, 31, 32, 33, 34, 35, 36, 43, 46, 47, 50, 51, 52, 53, 54, 56, 60, 65, 71, 72, 73, 74, 75, 79, 80, 81, 82, 83, 86, 87, 88, 93, 94, 118, 201, 202, 211, 221, 225, 226, 251, 255, 263, 271, 273, 274, 289, 292, 293, 294, 295, 296, 309, 312], "center_po": [80, 82, 83, 93], "center_posit": 293, "centermcvsoutput": [74, 269], "centers_list": 82, "central": [15, 71, 74, 269], "central_diff": [71, 74], "central_diffs_norm": [71, 74], "centraldiffsnorm": [71, 74], "cerasoli": [229, 312], "certain": [4, 15, 53, 64, 143, 146, 149, 152, 167, 227, 245, 257, 275, 283, 291], "certif": 307, "cesiumman": [193, 219], "cesiummilktruck": 193, "cg": 27, "cgi": 97, "chain": [77, 78, 89, 130, 135, 225, 286, 313], "chain_sec": 83, "chain_vertic": 83, "challeng": [27, 109, 111, 116, 117, 154, 178, 231, 233, 236, 239, 242, 245, 254, 258, 263, 266, 271], "chang": [5, 11, 12, 14, 15, 20, 21, 24, 29, 30, 31, 33, 40, 46, 53, 59, 60, 61, 63, 66, 68, 71, 74, 76, 80, 116, 121, 127, 133, 136, 143, 148, 149, 153, 154, 158, 161, 167, 169, 171, 173, 175, 178, 180, 181, 182, 183, 184, 185, 186, 187, 191, 194, 198, 201, 205, 222, 225, 226, 232, 238, 239, 241, 245, 249, 254, 255, 257, 258, 260, 261, 263, 264, 267, 268, 269, 271, 273, 274, 276, 280, 290, 293, 294, 295, 302, 303, 305, 306, 308, 309, 310, 311, 312, 314], "change_color": [47, 53], "change_icon_callback": [43, 54], "change_in_valu": 52, "change_opac": 24, "change_slice_anisotropi": 37, "change_slice_anisotropy_direction_i": 37, "change_slice_anisotropy_direction_x": 37, "change_slice_anisotropy_direction_z": 37, "change_slice_anisotropy_rot": 37, "change_slice_base_ior": 37, "change_slice_coat_ior": 37, "change_slice_coat_rough": 37, "change_slice_coat_strength": 37, "change_slice_i": [24, 30], "change_slice_metal": 37, "change_slice_rough": 37, "change_slice_x": [24, 30], "change_slice_z": [24, 30], "change_spher": 30, "change_text_callback": [43, 54], "change_vertices_ord": 296, "changeconstraint": 81, "changedynam": [79, 80, 82, 83, 93], "changer": 226, "channel": [96, 223, 225, 273, 276, 277, 281, 295], "channel_nam": 281, "chapter": 258, "char": [234, 237, 258], "charact": [121, 135, 173, 175, 180, 263, 293, 309, 310, 314], "characterist": 151, "charg": [22, 23, 89, 267, 313], "charge_actor": 33, "charl": [138, 309], "chat": 97, "chaudhari": [166, 310], "cheap": [173, 269], "cheapest": 142, "check": [41, 42, 52, 53, 89, 96, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 123, 124, 125, 126, 127, 128, 129, 130, 131, 133, 134, 135, 136, 144, 147, 148, 150, 153, 154, 155, 156, 159, 162, 165, 168, 170, 171, 172, 173, 178, 179, 180, 206, 209, 215, 218, 231, 235, 237, 238, 240, 241, 242, 249, 255, 263, 266, 267, 270, 273, 275, 278, 286, 291, 293, 294, 295, 297, 309, 312, 313, 314], "check_box": 46, "check_overflow": 296, "check_port_is_avail": 296, "check_sha": 296, "checkbox": [46, 124, 129, 135, 296, 306, 308, 311], "checked_label": [32, 46, 50, 53, 293], "checkerboard": 295, "checkout": [260, 314], "checksum": 278, "cheer": [108, 136, 264], "chem": 286, "chemic": [150, 172], "chemistri": [172, 286], "chencheng0630": [106, 306], "chigurupati": [229, 312], "child": [32, 63, 93, 152, 161, 171, 227, 239, 275, 281], "child_anim": [275, 296], "child_arm_anim": 65, "children": [149, 155, 161, 171], "china": 5, "choic": [34, 62, 76, 220, 258, 264, 273, 286, 293], "choos": [9, 13, 17, 27, 30, 47, 53, 54, 86, 88, 131, 142, 173, 241, 247, 276, 278, 287, 293], "choose_shap": 32, "chop": 293, "chose": [148, 149, 180], "chosen": [47, 73, 173, 179, 225, 267, 276], "choudhari": [106, 132, 306, 308], "chow": 149, "christoph": 292, "chunk": [167, 171], "ci": [103, 158, 160, 161, 173, 176, 229, 302, 304, 307, 311, 312], "cie": 276, "cinemat": 97, "cingulum": 27, "circl": [4, 34, 43, 48, 51, 54, 182, 225, 293], "circular": [54, 56, 146, 148, 149, 152, 155, 161, 171, 291], "circular_queu": [86, 291], "circularli": 155, "circularqueu": [148, 291], "circumv": [142, 173], "citat": [35, 36, 302], "citi": 5, "clamp": [183, 185, 211, 225, 293], "clamp_mouse_posit": [293, 296], "clamp_posit": [293, 296], "clarifi": 247, "clariti": [97, 239, 245], "class": [4, 15, 17, 24, 28, 38, 110, 140, 143, 144, 146, 149, 150, 152, 155, 158, 169, 171, 172, 179, 181, 182, 190, 192, 194, 198, 199, 201, 225, 226, 227, 234, 236, 239, 246, 255, 258, 264, 267, 268, 273, 274, 275, 276, 280, 281, 283, 284, 286, 287, 290, 291, 293, 295, 302, 306, 310, 312], "classic": 32, "classifi": [39, 246], "classvtkobject": 290, "claud": 165, "clean": [71, 74, 96, 123, 161, 217, 223, 249, 255, 258, 261, 314], "cleaner": [183, 277], "cleanest": 226, "cleanpolydata": 296, "cleanup": [86, 87, 148, 171, 291, 296], "clear": [14, 27, 28, 71, 72, 74, 111, 180, 233, 241, 271, 273, 285, 295, 296, 311], "clear_select": [293, 296], "clearcoat": [73, 285], "clearcoat_gloss": [73, 285], "clearcoattest": 193, "clearer": [120, 260], "clearli": [97, 180, 243], "click": [11, 14, 43, 53, 54, 108, 122, 135, 148, 171, 180, 182, 185, 187, 194, 197, 200, 225, 255, 293, 302, 307], "click_posit": 293, "client": [79, 80, 82, 86, 87, 93, 142, 148, 173, 296], "cline_actor": 59, "clip": [135, 185, 186, 211, 290, 293, 295, 307, 309], "clip_overflow": 296, "clip_overflow_text": 309, "clippingoverflow": 135, "clockwis": [30, 274, 285, 292, 294], "clockwise_rotation_i": [293, 296], "clockwise_rotation_x": [293, 296], "clone": [96, 180, 314], "close": [27, 86, 107, 108, 145, 148, 210, 232, 248, 271, 276, 286, 295, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 314], "closur": [62, 198, 226], "cloud": [126, 230, 267, 273], "cluster": 302, "cmap": [35, 36, 87, 276, 304], "cmap_nam": 25, "cmp_pkg_version": 296, "cnt": [4, 5, 14, 15, 17, 20, 21, 25, 29, 31, 33, 40, 79, 80, 81, 82, 83, 93, 281], "co": [5, 15, 25, 32, 33, 40, 65, 68, 76, 81, 118, 258, 275, 292, 314], "coat": [37, 72, 285, 311], "coat_ior": [37, 72, 285], "coat_rough": [37, 72, 285], "coat_strength": [37, 72, 285], "codaci": 303, "code": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 71, 72, 73, 74, 75, 76, 79, 80, 81, 82, 83, 86, 87, 88, 89, 93, 101, 103, 104, 106, 111, 113, 114, 117, 118, 120, 121, 122, 123, 127, 132, 133, 136, 139, 140, 142, 151, 158, 160, 167, 169, 175, 179, 180, 181, 183, 184, 192, 193, 208, 211, 216, 218, 220, 221, 223, 224, 231, 232, 234, 237, 238, 242, 243, 249, 250, 253, 255, 258, 260, 273, 276, 290, 291, 292, 293, 295, 302, 303, 304, 305, 306, 307, 308, 309, 310, 312, 314, 315], "codebas": [123, 125, 147, 149, 215, 242], "codecov": [100, 301, 312], "codespel": 312, "coeff": 93, "coeffici": [30, 79, 134, 265, 269, 270, 273, 274, 285], "coher": 107, "coil": 172, "col": [14, 46, 61, 76], "collabor": [97, 139, 173, 236], "collaps": [53, 124, 149, 152, 293, 312], "collapse_tab_ui": [293, 296], "collect": [4, 168, 178, 225, 230, 291], "colleg": [141, 179, 180, 193, 200], "collid": [21, 180, 273, 283, 308], "collis": [22, 23, 77, 78, 80, 89, 97, 130, 135, 313], "collisionframeposit": [81, 83], "color": [2, 3, 4, 5, 8, 10, 11, 12, 14, 15, 16, 17, 18, 20, 21, 24, 25, 26, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43, 47, 49, 51, 52, 54, 56, 57, 58, 59, 60, 63, 65, 67, 69, 70, 71, 72, 73, 74, 75, 79, 80, 81, 82, 83, 86, 87, 88, 89, 93, 94, 100, 114, 121, 124, 129, 132, 172, 175, 181, 184, 188, 189, 191, 192, 198, 210, 216, 218, 223, 226, 227, 234, 235, 237, 240, 243, 246, 265, 269, 270, 273, 274, 275, 276, 281, 285, 286, 289, 290, 293, 294, 295, 296, 301, 303, 304, 305, 306, 307, 308, 312, 313], "color_1": 275, "color_2": 275, "color_add": 11, "color_arrai": [46, 294], "color_array_nam": 282, "color_arrow": 33, "color_bgr2rgb": 38, "color_chang": 12, "color_check": 296, "color_combobox": [47, 53], "color_ev": 68, "color_fa": 273, "color_interpol": 296, "color_is_scalar": 294, "color_keyfram": 275, "color_particl": 33, "color_textur": [234, 237], "color_toggl": [46, 50], "colorbar": 273, "colori": 273, "colormap": [25, 30, 35, 36, 39, 61, 87, 98, 172, 192, 198, 252, 255, 267, 269, 270, 273, 274, 294, 296, 298, 303, 307, 310], "colormap_lookup_t": [14, 27, 273, 274, 296], "colormap_nam": 25, "colormap_to_textur": [252, 267], "colormod": 286, "colorpickerui": 271, "colors2": 29, "colors_found": 295, "colors_from_actor": [11, 12, 21, 29, 33, 46, 50, 296], "colorspac": 276, "colorx": 273, "colorz": 273, "colour": [273, 294], "cols2": [2, 3, 16], "column": [14, 276, 282, 292], "com": [38, 44, 45, 73, 96, 135, 148, 169, 276, 291, 292, 314], "combin": [0, 22, 23, 30, 71, 89, 113, 121, 124, 130, 135, 209, 212, 227, 236, 281, 295, 313], "combo": [30, 121, 135, 293], "combobox": [30, 41, 42, 89, 110, 112, 114, 122, 124, 135, 233, 236, 271, 293, 307, 313], "combobox2d": [30, 47, 53, 108, 110, 114, 116, 119, 135, 239, 257, 271, 296, 302, 307, 312], "combobox_ui": 47, "come": [71, 142, 178, 234, 237, 243, 258, 293], "comeback": 242, "comfort": 180, "command": [14, 71, 93, 96, 98, 99, 100, 101, 103, 104, 106, 122, 132, 138, 166, 176, 180, 229, 290, 291, 296, 312, 314], "command_str": [148, 291, 296], "comment": [158, 161, 247, 256, 259, 279, 306, 309, 310, 312], "commit": [92, 135, 139, 142, 145, 148, 151, 154, 157, 255, 288, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 314], "commit_hash": 288, "common": [221, 235, 269, 281], "commondatastorag": 38, "commonli": 135, "commun": [44, 45, 97, 98, 99, 100, 101, 103, 104, 105, 106, 122, 132, 137, 138, 139, 140, 154, 166, 173, 174, 175, 176, 177, 178, 180, 228, 229, 249, 267, 269, 271, 312], "comp_typ": 281, "compact": 205, "compar": [75, 121, 148, 178, 180, 235, 247, 278, 280], "comparison": [4, 74, 233, 250, 259, 267, 269, 303], "compat": [24, 97, 106, 122, 138, 173, 174, 175, 206, 236, 245, 257, 266, 271, 302, 303, 306, 307, 309], "compens": [71, 269], "compet": 179, "competit": 178, "compil": [279, 280, 312], "complet": [39, 98, 99, 100, 101, 103, 104, 106, 108, 114, 117, 121, 122, 123, 125, 127, 129, 132, 138, 143, 149, 166, 176, 179, 183, 194, 203, 229, 233, 234, 236, 239, 242, 245, 248, 249, 251, 254, 256, 257, 258, 270, 273, 278, 314], "complex": [35, 36, 64, 116, 146, 180, 185, 198, 221, 230, 234, 263, 266, 269, 271], "compli": 140, "complic": [115, 117, 135, 158, 161, 171, 191, 243, 246, 255, 258, 261, 294], "compon": [47, 65, 71, 74, 108, 110, 112, 114, 119, 121, 127, 129, 130, 133, 135, 140, 189, 225, 226, 230, 233, 239, 248, 254, 260, 263, 266, 271, 281, 292, 293, 294, 302, 312], "compos": [37, 54, 189, 198, 226, 267, 269, 286, 289, 293], "compose_shad": [71, 74, 296], "composit": [31, 225, 255], "compositetimelin": [189, 192], "comprehens": [24, 267, 271], "compress": [28, 282], "compression_qu": [45, 282], "compression_typ": 282, "compris": 171, "compromis": [28, 71, 97, 171, 235, 269], "comput": [32, 37, 39, 71, 72, 74, 97, 108, 113, 134, 139, 142, 154, 173, 178, 179, 180, 185, 189, 226, 230, 232, 237, 269, 273, 283, 285, 294, 306], "computation": [27, 134, 269], "compute_bond": 296, "compute_bound": [36, 296], "compute_posit": [283, 296], "compute_s": [283, 296], "con": [141, 184], "concept": [107, 116, 135, 179, 180, 243, 267], "concern": [263, 271], "conclud": [240, 248], "conclus": 178, "concurr": [173, 175], "conda": [98, 99, 100, 101, 103, 104, 106, 122, 132, 138, 166, 176, 229], "condit": [227, 246, 266, 275, 291, 312, 315], "conduct": [72, 139, 140, 302], "cone": [0, 1, 17, 46, 52, 63, 65, 89, 103, 227, 238, 241, 244, 269, 274, 289, 296, 304, 307, 312, 313], "cone_actor": 273, "cone_actor1": 3, "cone_actor2": 3, "conesourc": 296, "confer": [107, 108, 269], "confid": [116, 271], "config": [86, 88], "configur": [25, 26, 29, 30, 33, 40, 71, 154, 312], "confirm": [79, 130], "conflict": [152, 169, 257, 271, 310, 314], "confound": 150, "confus": [111, 112, 115, 130, 215, 218, 239, 267], "congratul": [96, 102, 180], "connect": [17, 24, 35, 40, 59, 74, 77, 79, 80, 81, 82, 83, 86, 88, 89, 116, 172, 178, 252, 262, 267, 271, 294, 312], "connect_point": 40, "connelli": 269, "consecut": [275, 291], "consequ": [37, 154, 173, 257, 258, 266], "consequenti": 315, "consid": [32, 146, 180, 182, 198, 209, 248, 266, 269, 273, 274, 275, 276, 286, 292, 294], "consider": [180, 242, 263, 271], "consist": [59, 64, 83, 194, 200, 220, 225, 232, 250, 253, 270, 271, 276, 293], "consol": 10, "consolid": 271, "const": 71, "constant": [15, 71, 116, 148, 182, 296], "constrain": [72, 269, 271], "constraint": [81, 83, 116], "construct": [63, 142, 144, 173, 209, 226, 271, 274, 276, 291, 294], "constructor": [114, 146, 158, 171, 276], "consum": [154, 168, 171, 178, 197, 280, 291], "consumpt": 173, "contact": 79, "contain": [7, 12, 14, 15, 21, 24, 26, 28, 30, 32, 40, 54, 60, 62, 65, 66, 71, 93, 96, 97, 98, 105, 124, 135, 137, 140, 141, 149, 152, 177, 184, 190, 192, 193, 219, 225, 227, 228, 257, 271, 272, 275, 276, 280, 281, 282, 285, 286, 288, 290, 291, 292, 294, 295, 296, 298, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312], "container_actor": 26, "content": [53, 152, 171, 248, 251, 271, 273, 283, 293, 294, 295], "content_panel": [293, 296], "context": [31, 142, 148, 173, 175, 230, 237, 243, 272, 291, 295], "contigu": 276, "continu": [4, 21, 36, 62, 71, 116, 119, 121, 124, 129, 134, 146, 152, 155, 169, 171, 176, 179, 181, 197, 216, 218, 226, 229, 236, 238, 244, 251, 253, 256, 257, 260, 265, 270, 271, 311, 312], "contour": [146, 303], "contour_assembli": 273, "contour_from_label": [106, 296, 306], "contour_from_roi": [39, 296], "contour_from_roi_tutori": 39, "contourfilt": 296, "contract": 315, "contrari": 294, "contrast": [28, 234], "contribut": [133, 136, 139, 178, 179, 180, 181, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312], "contributor": [101, 103, 104, 106, 122, 129, 132, 135, 138, 166, 176, 179, 180, 181, 184, 229, 231, 232, 245, 249, 252, 255, 256, 264, 265, 268, 314, 315], "control": [15, 31, 34, 41, 42, 54, 59, 60, 61, 66, 67, 71, 74, 81, 83, 89, 124, 135, 151, 173, 178, 180, 181, 187, 189, 192, 195, 198, 210, 226, 234, 235, 258, 261, 267, 268, 273, 275, 289, 293, 312, 313], "control_mod": [81, 83], "control_panel": 37, "conveni": 127, "convent": [69, 89, 93, 134, 255, 286, 292], "converg": 269, "convers": [0, 1, 89, 93, 184, 197, 276, 313], "convert": [5, 45, 116, 142, 149, 152, 171, 184, 187, 193, 197, 198, 201, 225, 227, 263, 275, 276, 281, 293, 294, 296, 311], "convertcolor": 276, "convinc": [142, 151], "cool": [170, 276], "coor": 33, "coor_1": 33, "coor_2": 33, "coord": [286, 287, 289, 293], "coord_to_ratio": [293, 296], "coordin": [0, 1, 11, 24, 25, 26, 27, 29, 33, 40, 75, 89, 93, 112, 113, 116, 141, 147, 152, 171, 172, 178, 184, 249, 264, 269, 270, 273, 274, 276, 281, 283, 286, 287, 289, 292, 293, 294, 307, 312, 313], "copi": [14, 21, 24, 25, 26, 29, 33, 40, 139, 142, 180, 191, 216, 273, 280, 286, 290, 294], "copyfileobj_withprogress": 296, "copyright": [280, 307, 314, 315], "coral": 273, "core": [108, 141, 148, 152, 155, 162, 226, 257, 258, 271, 291, 296, 310], "corei": 286, "corner": [32, 143, 149, 152, 161, 171, 184, 206, 225, 239, 293, 294], "coron": 30, "corpu": 39, "correct": [28, 32, 54, 64, 152, 175, 188, 215, 217, 221, 235, 238, 241, 250, 251, 252, 259, 262, 265, 266, 267, 270, 271, 281, 294, 295, 304, 306, 312], "corrected_triangl": 294, "correctli": [4, 5, 83, 93, 121, 130, 152, 184, 217, 236, 239, 244, 270, 306, 314], "correspond": [11, 15, 27, 28, 35, 36, 37, 46, 54, 74, 80, 82, 93, 118, 124, 135, 172, 235, 246, 253, 262, 265, 269, 270, 274, 276, 286, 294], "corrupt": [148, 175], "corset": 193, "cosin": [258, 267], "cost": [71, 234, 258, 267, 273], "could": [32, 64, 68, 73, 112, 128, 131, 133, 145, 148, 151, 152, 159, 161, 163, 164, 173, 175, 178, 179, 180, 182, 183, 194, 200, 209, 217, 221, 225, 234, 237, 240, 243, 246, 252, 255, 256, 258, 261, 264, 267, 268, 270, 289, 294, 314], "couldn": [114, 140, 149, 152, 161, 178, 189, 214, 270], "count": [4, 5, 10, 15, 17, 20, 21, 25, 29, 31, 33, 40, 79, 80, 81, 82, 83, 93, 158, 189, 226, 281, 294, 312], "counter": [4, 5, 10, 15, 17, 20, 21, 25, 29, 31, 32, 33, 36, 40, 79, 80, 81, 82, 83, 93, 192, 263, 266, 285, 292, 294], "counter_step": 26, "countless": 112, "countri": [108, 142], "coupl": [81, 116, 121, 129, 140, 143, 244], "cours": [35, 73, 107, 173, 178, 179, 246], "courtesi": [141, 156], "cousin": 180, "coval": 286, "covari": [269, 274], "cover": [37, 163, 187, 198, 211, 267], "coverag": [101, 103, 104, 106, 122, 132, 160, 166, 303, 304, 305, 306, 307, 308, 310], "covid": 141, "cp": 59, "cpk": [153, 286], "cps_actor": 59, "cpu": [142, 226, 258], "cpython": [145, 148], "cqueue": 291, "cqueue_event_id": 291, "cqueue_index_info": 291, "crash": [261, 263, 267, 303], "creat": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 15, 17, 18, 19, 20, 21, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 35, 36, 37, 38, 39, 40, 41, 43, 44, 45, 46, 47, 48, 49, 50, 52, 53, 54, 55, 56, 59, 61, 62, 63, 64, 65, 66, 68, 69, 71, 74, 75, 76, 80, 81, 82, 83, 84, 88, 89, 94, 97, 102, 107, 108, 109, 110, 113, 114, 116, 118, 121, 124, 125, 126, 127, 130, 131, 134, 135, 136, 144, 145, 146, 147, 148, 149, 151, 152, 153, 154, 155, 158, 159, 161, 163, 165, 167, 168, 169, 170, 171, 172, 173, 175, 179, 180, 182, 183, 184, 185, 186, 188, 190, 191, 193, 194, 199, 200, 202, 203, 204, 206, 208, 211, 214, 215, 216, 217, 218, 221, 223, 225, 226, 227, 230, 235, 237, 238, 239, 245, 246, 247, 248, 250, 251, 256, 263, 264, 265, 267, 269, 270, 273, 276, 278, 281, 284, 286, 290, 291, 293, 294, 295, 302, 307, 308, 310, 312, 314], "create2d": 234, "create2dfromraw": 234, "create_colormap": [25, 296, 309], "create_mem_resourc": [148, 291, 296], "create_surfac": 25, "createcollisionshap": [79, 80, 81, 82, 83, 93], "createconstraint": [81, 83], "createfbo": 240, "createmultibodi": [79, 80, 81, 82, 83, 93], "creation": [35, 36, 74, 185, 191, 194, 225, 226, 232, 235, 261, 269, 271, 290, 312], "creativ": 180, "credit": [246, 314], "cresolut": 273, "criterion": 93, "critic": 263, "cross": [34, 116, 295], "cross_sect": [274, 296], "crosscap": 276, "crucial": 147, "cryengin": 178, "crystaley": 295, "cs50": 178, "csa": 39, "csa_model": 39, "csa_peak": 39, "csaodfmodel": 39, "css": [143, 146], "cst": [24, 27], "ctrl": [148, 194, 225, 291], "ctype": [276, 296], "ctypeslib": 142, "cube": [8, 11, 12, 17, 18, 26, 32, 37, 40, 41, 42, 46, 61, 65, 68, 89, 111, 113, 120, 124, 129, 134, 178, 193, 270, 278, 282, 296, 302, 307, 313], "cube_actor": [12, 18, 273], "cube_i": [53, 54], "cube_polydata": 18, "cube_vertic": 18, "cube_x": [53, 54], "cubemap": [37, 270], "cubes_po": 61, "cubic": [60, 83, 186, 208, 226, 273, 275], "cubic_bezier_interpol": [59, 296], "cubic_spline_interpol": [60, 296], "cubicsplin": [62, 202], "cuda": [154, 173], "cue": 273, "cugraph": [154, 157, 173], "cull": 294, "culmin": [267, 271], "curiou": 178, "current": [11, 12, 24, 37, 38, 62, 76, 93, 94, 96, 107, 108, 109, 112, 113, 114, 117, 118, 121, 125, 126, 127, 129, 130, 131, 134, 135, 139, 140, 142, 146, 149, 152, 155, 158, 168, 170, 171, 172, 179, 180, 182, 183, 189, 196, 197, 199, 200, 206, 215, 216, 225, 227, 235, 237, 240, 242, 245, 246, 249, 252, 254, 256, 258, 259, 262, 266, 267, 269, 270, 271, 275, 276, 278, 280, 281, 291, 293, 295, 314], "current_ax": 10, "current_directori": 293, "current_mod": [48, 293, 296], "current_posit": [48, 293], "current_s": [43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 54, 55, 56, 75, 76], "current_sprite_idx": 45, "current_tim": [275, 293, 296], "current_time_str": [293, 296], "current_timestamp": [275, 296], "current_video_fram": 38, "currentbonetransform": 219, "cursor": 293, "curv": [17, 33, 172, 186, 202, 273, 275, 294], "curvatur": [265, 269], "curvier": 273, "custom": [57, 58, 68, 76, 83, 89, 134, 149, 161, 167, 169, 178, 198, 199, 201, 208, 214, 226, 234, 249, 255, 257, 260, 273, 275, 279, 290, 293, 294, 295, 312, 313], "custom_field": 62, "custominteractorstyl": [293, 295], "custominterpol": 198, "customiz": [143, 146, 236], "cut": 273, "cv2": 38, "cvtcolor": 38, "cyan": 33, "cycl": [293, 297], "cylind": [63, 65, 69, 70, 81, 83, 89, 93, 94, 124, 130, 138, 289, 296, 309, 312, 313], "cylinder_actor": 273, "cylinders_16": 74, "cylinders_32": 74, "cylinders_8": 74, "cylindersourc": 296, "cylindr": [83, 312], "cylindrical_i": 273, "cylindrical_x": 273, "c\u00f4t\u00e9": [101, 106, 122, 176, 303, 306, 307, 311], "d": [10, 29, 34, 40, 135, 139, 168, 173, 269, 273, 274, 292, 293], "d50": 276, "d55": 276, "d65": 276, "d75": 276, "d_type": 281, "dad": 179, "dai": [15, 109, 115, 136, 143, 180, 239, 246, 249, 252], "damag": 315, "damagedhelmet": 193, "damp": 93, "dan": 310, "danger": 310, "daniel": [166, 310], "dara": [229, 312], "dark": 286, "darker": 184, "dashboard": 178, "data": [0, 4, 5, 6, 7, 8, 9, 13, 14, 15, 18, 19, 24, 27, 30, 35, 36, 37, 39, 43, 44, 45, 46, 47, 48, 50, 51, 52, 53, 54, 55, 56, 59, 64, 74, 76, 87, 88, 89, 94, 105, 134, 137, 141, 149, 150, 153, 154, 159, 171, 172, 173, 177, 178, 179, 180, 184, 185, 188, 192, 193, 196, 204, 205, 207, 219, 225, 226, 227, 228, 230, 235, 241, 243, 244, 246, 250, 253, 256, 259, 265, 269, 270, 271, 273, 275, 276, 281, 282, 284, 286, 290, 291, 294, 296, 306, 312, 315], "data_dir": 296, "data_s": 278, "data_shap": 28, "databas": 73, "dataclass": 184, "dataobject": 296, "dataset": [14, 24, 27, 30, 35, 36, 39, 151, 247, 267], "datasetattribut": 296, "datasetmapp": 296, "datatyp": [234, 237], "date": [108, 134, 135, 171, 172, 173, 225, 226, 227, 249, 269, 271], "david": [101, 102, 269, 303], "deadlin": 108, "deal": [62, 142, 148, 154, 225, 237, 249, 255, 258, 264, 265, 266, 267], "debat": 255, "debug": [112, 156, 197, 211, 215, 257, 290, 311], "dec": [273, 276], "decemb": [96, 179], "decid": [24, 25, 29, 33, 107, 108, 113, 116, 121, 124, 126, 127, 128, 129, 130, 134, 135, 140, 143, 146, 147, 149, 152, 153, 155, 161, 165, 171, 178, 182, 184, 187, 188, 190, 199, 214, 236, 243, 247, 254, 258, 261, 266, 267, 271, 294, 295], "decim": [39, 72, 73, 293], "decis": [242, 248], "decl_cod": [74, 76, 290], "declar": [71, 234, 237, 255, 267, 273, 290], "decod": [278, 284, 290], "decomposit": 28, "deconvolut": 269, "decor": [280, 296, 306], "decreas": [71, 184, 294, 295, 308], "decrement": [52, 293, 296], "decrement_callback": [293, 296], "dedic": [236, 245, 249, 254, 258, 289], "deep": [246, 286, 290, 294], "deep_copy_molecul": 296, "deeper": [253, 254, 262, 265, 270], "def": [4, 5, 7, 9, 10, 11, 12, 13, 14, 15, 17, 20, 21, 24, 25, 26, 28, 29, 30, 31, 32, 33, 36, 37, 38, 40, 43, 45, 46, 47, 50, 52, 53, 54, 55, 56, 62, 65, 68, 76, 79, 80, 81, 82, 83, 88, 93, 118, 127, 148, 267, 268, 275, 280, 290, 291], "default": [14, 24, 25, 26, 28, 29, 33, 40, 53, 56, 60, 61, 62, 66, 74, 76, 88, 93, 96, 108, 110, 129, 135, 158, 169, 227, 230, 257, 273, 274, 275, 276, 277, 278, 280, 281, 282, 283, 284, 285, 286, 287, 289, 290, 291, 293, 294, 295, 306, 312], "default_color": [293, 296], "default_spher": 39, "defer": 271, "defin": [5, 7, 9, 12, 13, 15, 17, 20, 21, 26, 28, 30, 32, 33, 35, 36, 37, 40, 45, 46, 53, 64, 71, 72, 73, 74, 75, 76, 80, 81, 82, 83, 87, 93, 118, 142, 148, 149, 171, 173, 176, 218, 225, 235, 245, 249, 252, 253, 255, 267, 269, 270, 273, 278, 281, 284, 290, 293, 294, 309, 310, 311], "definit": [71, 79, 81, 83, 93, 110, 235, 238, 241, 244, 253, 265, 267, 269, 270], "deflat": 282, "deform": [111, 113, 227, 269], "degre": [5, 66, 79, 80, 81, 93, 108, 115, 184, 186, 201, 232, 262, 275, 276, 293], "degrees_to_radian": 5, "del": [24, 30], "delai": [45, 167, 267, 314], "delet": [154, 173, 182, 183, 225, 253, 278, 307, 314], "deliber": 292, "delic": 249, "deliv": 71, "dell": [267, 302], "delta": [26, 269, 274], "deltat": 36, "delv": [254, 271], "demiralp": 276, "demo": [10, 21, 23, 32, 36, 38, 64, 73, 77, 126, 128, 131, 134, 136, 138, 166, 171, 172, 176, 209, 227, 251, 255, 269, 271, 306, 309, 310, 311, 312, 313], "demonstr": [21, 25, 27, 30, 37, 43, 46, 47, 48, 50, 51, 52, 53, 54, 56, 59, 76, 93, 124, 126, 128, 133, 135, 146, 147, 152, 167, 171, 172, 226], "demvessia": 173, "demvessiass": 173, "demystifi": 142, "denot": 276, "densiti": [39, 230, 246, 258, 267, 269], "dep": 302, "depart": 59, "departur": 59, "depend": [32, 33, 65, 68, 71, 72, 99, 104, 142, 148, 155, 161, 163, 167, 173, 180, 185, 194, 225, 226, 247, 251, 256, 266, 267, 269, 270, 273, 275, 286, 294, 300, 302, 303, 305], "dependabot": 302, "depict": 225, "deploi": 97, "deprec": [273, 276, 290, 296, 302, 303, 306, 307, 308, 309, 310, 311, 312], "deprecate_with_vers": 296, "deprecated_param": 296, "deprecationwarn": [280, 303], "depth": [32, 71, 171, 234, 273, 275, 295], "depth_cu": [27, 273, 303], "dequeu": [291, 296], "der": [170, 172, 286], "deriv": [71, 264, 269, 274, 292, 315], "descoteaux": 265, "descoteaux07": [265, 269], "describ": [27, 28, 37, 93, 96, 140, 146, 149, 154, 173, 225, 237, 240, 246, 249, 265, 267, 268, 269, 272, 274, 275, 276, 278, 293, 295, 307], "descript": [26, 29, 33, 39, 40, 93, 134, 135, 158, 161, 171, 172, 173, 225, 226, 227, 244, 249, 269, 271, 288, 290, 314], "deselect": [183, 194, 225, 293, 296], "design": [24, 71, 73, 93, 107, 119, 121, 133, 135, 149, 155, 169, 178, 186, 241, 243, 264, 271, 273, 274, 292], "design_matrix": [244, 269], "desir": [83, 93, 114, 173, 211, 236, 246, 266, 267, 273, 276, 282, 283, 295], "desired_fp": 295, "desktop": 161, "despit": [125, 131, 181, 266], "destin": [59, 230], "destroi": [20, 83], "destroy_tim": [15, 20, 295, 296], "detail": [5, 28, 71, 74, 89, 94, 108, 116, 119, 134, 135, 141, 146, 149, 152, 154, 155, 158, 161, 171, 172, 173, 210, 232, 238, 244, 252, 253, 255, 256, 258, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 273, 276, 291, 314], "detect": [60, 93, 116, 135, 147, 172, 255], "determin": [4, 15, 17, 26, 40, 46, 71, 93, 114, 119, 155, 239, 242, 266, 269, 281, 294, 295, 312], "dev": [86, 88, 96, 180, 314], "dev26": 280, "devanshu": [106, 306], "develop": [97, 98, 99, 100, 101, 103, 104, 106, 112, 122, 132, 133, 138, 139, 140, 142, 154, 166, 173, 174, 175, 176, 225, 226, 229, 232, 240, 242, 255, 260, 263, 267, 269, 271, 307, 314], "deviat": [273, 274], "devic": 230, "devis": [233, 271], "devmessia": [145, 148, 154, 311], "devot": 134, "dfx": 314, "di": [154, 173], "diagon": [49, 269, 273, 283, 292], "diagonal_grid": 49, "diagram": [141, 144, 172], "dialog": [24, 127, 135, 293, 302, 306], "diamond": 34, "dict": [15, 50, 62, 66, 272, 275, 276, 281, 282, 285, 292, 293, 295, 306], "dictionari": [15, 24, 46, 47, 60, 94, 148, 196, 223, 276, 278, 281, 285, 292, 293], "did": [2, 3, 178, 179, 292], "didn": [112, 140, 143, 152, 158, 159, 161, 170, 171, 178, 179, 180, 185, 195, 198, 199, 208, 209, 210, 211, 212, 213, 214, 215, 216, 218, 219, 220, 223, 224, 233, 237, 240, 242, 245, 246, 249, 257, 258, 261, 267, 270], "diego": 173, "dielectr": [72, 285], "differ": [10, 11, 12, 14, 20, 24, 28, 32, 37, 41, 42, 46, 47, 53, 57, 61, 64, 71, 72, 73, 74, 80, 82, 86, 89, 93, 112, 114, 115, 116, 118, 121, 124, 131, 133, 134, 140, 141, 146, 148, 150, 152, 154, 161, 171, 173, 175, 181, 182, 185, 187, 189, 192, 196, 200, 202, 203, 205, 216, 218, 220, 221, 225, 227, 237, 246, 247, 248, 249, 252, 255, 258, 262, 264, 265, 267, 269, 270, 273, 274, 277, 278, 292, 294, 295, 313], "difficult": [161, 194, 197, 218, 253, 268], "difficulti": [250, 251], "diffus": [24, 28, 244, 247, 250, 269, 273, 274, 285, 302], "diffuse_color": 285, "diffuse_level": 285, "diffusecolor": [71, 74], "dig": [186, 234], "dim": [25, 28, 193, 273, 283, 289, 293, 294], "dimens": [14, 170, 273, 276, 282, 283, 289, 291, 294, 295], "dimension": [32, 40, 172, 274, 312], "dipi": [14, 18, 24, 27, 28, 30, 39, 96, 98, 102, 244, 253, 265, 269, 273, 276, 278, 298, 303], "dir": [2, 3, 74, 75, 273], "dir2": [2, 3], "direct": [2, 3, 11, 12, 17, 29, 33, 36, 37, 39, 46, 52, 53, 54, 56, 63, 71, 74, 75, 79, 80, 81, 82, 83, 93, 94, 123, 145, 146, 154, 167, 171, 173, 210, 226, 235, 265, 269, 270, 271, 273, 274, 275, 276, 283, 285, 289, 292, 294, 295, 304, 305, 306, 312, 315], "directionvsoutput": 74, "directli": [71, 127, 169, 171, 178, 198, 205, 207, 218, 222, 226, 227, 230, 252, 255, 265, 269, 271, 274, 275, 277, 312], "directori": [94, 96, 165, 278, 288, 290, 293, 295, 314], "directory_click_callback": [293, 296], "directory_nam": 293, "directory_path": 293, "directx": 109, "disabl": [14, 28, 93, 204, 272, 295, 308], "disable_warn": 296, "disappear": [186, 258, 267], "disappoint": [178, 180], "discard": [71, 74, 215, 314], "disclaim": 315, "discontinu": 127, "discord": [97, 98, 99, 100, 101, 103, 104, 105, 106, 122, 132, 137, 138, 166, 176, 177, 179, 180, 228, 229, 309], "discours": [159, 218], "discov": [139, 142, 145, 163, 180, 184, 201, 210, 233, 236, 254], "discret": [26, 71, 255, 269, 286], "discuss": [108, 117, 126, 127, 129, 130, 139, 141, 142, 144, 145, 148, 152, 154, 155, 160, 163, 170, 172, 174, 181, 184, 185, 187, 198, 200, 201, 202, 204, 213, 218, 225, 226, 231, 236, 237, 239, 241, 242, 244, 245, 247, 248, 250, 256, 258, 267, 271, 292], "diseas": [154, 173], "disengag": 180, "disk": [24, 51, 54, 178, 276, 277, 293, 296, 311], "disk2d": [51, 54, 187, 197, 225, 296, 306], "disk_actor": 273, "disk_numb": 293, "disksourc": 296, "disp_xi": 287, "displac": [36, 118, 197, 227], "displai": [6, 7, 11, 14, 18, 22, 23, 24, 26, 27, 29, 30, 33, 39, 40, 54, 71, 74, 79, 80, 81, 82, 89, 96, 152, 159, 161, 167, 168, 172, 191, 192, 225, 227, 230, 235, 241, 247, 250, 256, 259, 269, 271, 273, 274, 287, 291, 293, 296, 311, 313], "display_cross_sect": [274, 296], "display_el": [54, 55], "display_ext": [24, 28, 30, 273, 274, 296], "dissipationless": 29, "dist": [32, 71, 314], "distanc": [21, 27, 32, 36, 40, 71, 74, 75, 97, 122, 147, 172, 173, 174, 178, 182, 197, 229, 269, 273, 275, 286, 293, 295, 307, 312], "distinct": [271, 276], "distinguish": [61, 189, 276, 292], "distinguishable_colormap": [35, 36, 61, 87, 296], "distort": [134, 151, 154, 173, 249, 267], "distribut": [17, 26, 30, 73, 97, 171, 176, 230, 234, 267, 268, 269, 273, 280, 283, 311, 315], "div": 291, "dive": [242, 243, 249], "divid": [12, 32, 71, 72, 171, 225, 267, 295], "divis": [32, 197, 264, 267], "dix": 27, "dmri": [269, 278], "do": [4, 21, 28, 32, 63, 74, 80, 93, 97, 142, 179, 180, 225, 226, 227, 234, 237, 246, 249, 252, 258, 264, 267, 268, 273, 276, 293, 311, 312], "doa": 37, "doc": [86, 93, 96, 114, 135, 142, 154, 172, 178, 179, 182, 196, 199, 227, 249, 273, 290, 292, 295, 303, 304, 305, 306, 309, 312, 314], "docstr": [141, 163, 188, 190, 279, 302, 306, 311, 312, 314], "doctest": [279, 280, 314], "doctest_skip_pars": 296, "document": [32, 37, 97, 103, 104, 106, 107, 111, 116, 122, 129, 130, 132, 133, 134, 135, 136, 138, 140, 141, 142, 143, 144, 145, 150, 154, 160, 163, 166, 170, 173, 174, 176, 179, 180, 181, 184, 201, 222, 226, 229, 234, 241, 246, 258, 263, 266, 267, 271, 299, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 315], "doe": [68, 135, 148, 149, 155, 181, 189, 193, 205, 212, 214, 220, 221, 234, 235, 267, 269, 270, 275, 276, 278, 286, 306, 308, 311], "doesn": [110, 140, 146, 148, 151, 178, 211, 212, 243, 246, 286, 294, 303, 309, 310, 314], "doi": [173, 310], "dolli": [295, 296], "domain": [168, 251, 302, 312], "domino": [77, 78, 89, 309, 313], "domino1_orn": 82, "domino1_po": 82, "domino_actor": 82, "domino_cent": 82, "domino_col": 82, "domino_color": 82, "domino_direct": 82, "domino_mass": 82, "domino_orn": 82, "domino_s": 82, "don": [14, 24, 71, 74, 86, 88, 139, 142, 171, 181, 192, 219, 225, 243, 265, 267, 314], "donald": 269, "done": [60, 63, 67, 68, 93, 108, 112, 114, 119, 120, 121, 123, 133, 134, 135, 146, 148, 149, 152, 158, 161, 168, 170, 171, 172, 173, 201, 202, 206, 215, 218, 220, 226, 234, 249, 255, 257, 258, 261, 264, 265, 267, 268, 269, 270, 295, 302, 312, 314], "dong": 172, "donohu": [106, 122, 306, 307], "doodl": 225, "door": 267, "dot": [40, 66, 74, 196, 214, 277, 282, 294, 295, 296, 312], "dot_actor": 273, "dot_siz": 273, "doubl": [108, 122, 135, 147, 234, 238, 269, 270, 274, 286, 293, 294, 302, 305, 307, 312], "double_con": [238, 273, 296], "doublearrai": 296, "doubt": [111, 180], "dove": 267, "down": [14, 25, 29, 32, 43, 54, 80, 81, 82, 83, 93, 135, 178, 238, 271, 273, 293], "down_button_callback": [293, 296], "download": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 71, 72, 73, 74, 75, 76, 79, 80, 81, 82, 83, 86, 87, 88, 89, 94, 180, 184, 188, 190, 193, 227, 276, 278, 312], "dpi": [277, 282, 295, 312], "draco": 278, "draft": [201, 226, 238, 249, 258, 264, 267, 269, 271], "drag": [14, 149, 164, 171, 185, 194, 200, 225, 293], "draggabl": [53, 293], "draggbl": 293, "dragonattenu": 193, "draw": [10, 32, 51, 54, 146, 150, 169, 171, 173, 174, 175, 179, 182, 185, 200, 203, 205, 206, 211, 225, 234, 237, 273, 293, 310, 312], "draw_shap": [48, 293, 296], "drawback": [209, 256, 270], "drawing_canva": 48, "drawn": [27, 71, 146, 169, 182, 237, 273, 274, 293, 294], "drawpanel": [41, 42, 89, 187, 215, 221, 225, 278, 296, 312, 313], "drawshap": [211, 216, 221, 225, 296, 312], "drill": 65, "drill_anim": 65, "driven": [93, 97, 314], "drop": [105, 135, 137, 177, 180, 228, 293], "drop_down_button": [293, 296, 312], "drop_down_menu": [293, 296, 302], "dropdown": 302, "drown": 180, "drupal": 277, "dry": 148, "dt": [21, 25, 62], "dtheta": 40, "dti": [22, 23, 89, 232, 250, 256, 273, 274, 302, 313], "dti_uncertainti": 238, "dtype": [11, 12, 18, 26, 35, 36, 80, 82, 83, 87, 273, 276, 296, 304, 312], "duck": [6, 193], "due": [33, 107, 108, 116, 129, 134, 149, 152, 154, 172, 173, 180, 187, 188, 197, 215, 216, 217, 245, 251, 258, 263, 271, 312], "dug": 246, "duplic": [142, 148, 289, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 314], "duplicaci": 216, "dur": 38, "durat": [4, 15, 17, 38, 79, 80, 81, 82, 83, 93, 226, 275, 295, 296], "dure": [30, 68, 93, 102, 112, 116, 133, 134, 136, 139, 140, 146, 155, 161, 171, 172, 178, 179, 193, 213, 230, 231, 232, 236, 242, 247, 251, 254, 256, 266, 271, 295, 306, 310], "dwi": [269, 274], "dwij": [229, 302, 312], "dx_link": [81, 83], "dynam": [30, 80, 109, 116, 134, 154, 171, 173, 226, 232, 254, 255, 257, 271, 274, 293, 306], "dynamic_bbox": [260, 293, 296], "e": [5, 24, 25, 29, 33, 49, 67, 71, 93, 94, 96, 98, 99, 100, 101, 103, 104, 106, 122, 132, 138, 152, 166, 167, 171, 172, 176, 218, 219, 225, 226, 227, 229, 246, 258, 267, 269, 270, 273, 274, 275, 276, 278, 283, 286, 293, 294, 295, 307, 314], "e2": 193, "e_color": 40, "each": [4, 5, 11, 12, 13, 15, 17, 21, 24, 26, 28, 29, 30, 31, 32, 33, 34, 35, 36, 38, 40, 43, 54, 60, 61, 62, 63, 64, 66, 72, 73, 74, 80, 82, 83, 93, 107, 108, 116, 118, 119, 121, 127, 141, 142, 146, 148, 149, 154, 161, 169, 171, 175, 178, 180, 183, 184, 185, 189, 192, 197, 205, 212, 217, 219, 221, 225, 227, 233, 234, 249, 252, 255, 265, 266, 267, 269, 270, 271, 273, 274, 275, 276, 278, 281, 283, 286, 290, 291, 293, 294, 303], "eager": 119, "eagerli": 242, "earli": [107, 108, 141, 179, 226, 244], "earlier": [67, 149, 152, 159, 218, 221, 237, 280], "earliest": 170, "earth": [0, 1, 4, 19, 89, 180, 307, 312, 313], "earth_actor": [4, 5, 15], "earth_dai": 15, "earth_fil": 5, "earth_filenam": 4, "earth_imag": [4, 5], "earthactor": 273, "easi": [14, 24, 27, 32, 64, 71, 73, 97, 139, 142, 152, 173, 175, 181, 183, 185, 194, 221, 238, 258, 267, 275], "easier": [80, 82, 97, 118, 133, 148, 152, 171, 175, 201, 226, 234, 237, 260, 263, 276, 314], "easili": [37, 114, 134, 135, 142, 149, 152, 171, 173, 225, 226, 269], "east": 292, "econom": 142, "econometr": 246, "economi": 142, "ecosystem": 97, "edg": [21, 34, 35, 36, 40, 74, 87, 154, 173, 216, 276], "edge1": 21, "edge2": 21, "edge3": 21, "edge4": 21, "edge5": 21, "edge_color": [34, 273], "edge_opac": 273, "edge_width": [34, 273], "edges_color": 36, "edges_fil": [35, 36, 87], "edges_list": 36, "edges_posit": 36, "edgescolor": [35, 87], "edgesposit": [35, 87], "edit": [135, 178, 222, 263, 293, 314], "edit_mod": [293, 296], "editor": 314, "edu": [276, 292], "educ": 286, "effect": [31, 72, 73, 82, 102, 121, 131, 134, 151, 154, 169, 171, 173, 178, 252, 255, 258, 264, 267, 273, 290], "effectmanag": [255, 264, 267], "effici": [14, 71, 118, 134, 139, 152, 173, 181, 185, 209, 225, 265, 269, 271, 273, 276], "effort": [173, 271], "eg": 286, "egypt": 178, "eigenvalu": [28, 269, 273, 274], "eigenvector": [28, 269, 273, 274, 276], "eight": 40, "eighth": 162, "either": [71, 93, 97, 110, 149, 155, 169, 220, 225, 227, 230, 258, 266, 269, 278, 286], "electr": [22, 23, 29, 89, 313], "electromagnet": [22, 23, 89, 309, 313], "eleftherio": [101, 103, 104, 106, 122, 132, 138, 166, 176, 229, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312], "elem": 28, "element": [10, 14, 37, 42, 43, 44, 45, 46, 50, 51, 52, 54, 55, 56, 71, 75, 76, 93, 108, 110, 112, 114, 116, 124, 135, 140, 143, 146, 149, 152, 154, 155, 161, 164, 171, 182, 183, 197, 200, 206, 218, 225, 226, 236, 239, 242, 248, 257, 267, 269, 271, 273, 276, 281, 283, 286, 291, 292, 295, 296, 302, 307, 310, 313], "element_nam": [286, 296], "elementwis": 303, "elev": [25, 32, 295, 296], "eleventh": 170, "elif": [46, 53], "elimin": 217, "ellipsoid": [22, 23, 75, 89, 125, 134, 232, 241, 244, 245, 249, 253, 274, 296, 302, 309, 313], "els": [10, 11, 13, 15, 24, 25, 30, 32, 36, 38, 40, 46, 48, 53, 71, 74, 86, 88, 93, 114, 226, 273, 274, 276, 279, 293], "elsewher": 273, "em": [264, 267], "email": [169, 178, 179], "emanuel": 246, "embed": [151, 154, 173, 278], "emerg": [263, 266, 271], "emissivestrengthtest": 193, "emploi": [173, 242, 271], "empti": [18, 276, 281, 291, 292, 312, 314], "emwav": 172, "en": [73, 173, 292], "enabl": [27, 28, 64, 83, 97, 104, 134, 141, 153, 248, 260, 267, 271, 272, 275, 295, 303, 305, 312], "enable_stereo": 296, "enable_warn": 296, "enablecol": 93, "enc": 267, "encapsul": [234, 267, 271], "enclos": 267, "encod": [64, 86, 88, 227, 268, 269, 270, 278, 280, 284, 290, 291, 292], "encompass": 271, "encount": [205, 233, 236, 239, 242, 245, 247, 251, 256, 257, 266], "end": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 71, 72, 73, 74, 75, 76, 79, 80, 81, 82, 83, 86, 87, 88, 96, 118, 127, 131, 135, 136, 141, 161, 169, 170, 178, 179, 180, 184, 187, 193, 225, 242, 243, 245, 247, 252, 258, 267, 275, 289, 290], "endeavor": [150, 271], "endeavour": 144, "endors": 315, "endpoint": 36, "energi": 180, "enforc": 303, "engag": 180, "engin": [71, 72, 77, 89, 97, 108, 114, 116, 124, 132, 135, 143, 178, 179, 180, 181, 269, 295, 308, 309], "english": 178, "enh": [303, 309, 311], "enhanc": [187, 191, 209, 226, 236, 254, 271, 312], "enjoi": [96, 105, 133, 137, 143, 177, 228], "enjoy": 179, "enough": [142, 148, 173, 178, 179, 246, 258, 267], "enqueu": [291, 296], "enquir": 180, "ensur": [4, 9, 30, 32, 233, 236, 239, 242, 251, 254, 257, 260, 263, 271, 273, 283, 286, 295], "entail": 260, "enter": [31, 180, 293, 314], "enthusiasm": 180, "enthusiast": 179, "entir": [107, 108, 116, 142, 238, 271], "entiti": [171, 178], "entri": [32, 276, 280], "enumer": [35, 36, 40, 45, 72, 80, 82, 83, 87], "environ": [88, 119, 142, 161, 173, 267], "environmenttest": 193, "epanechnikov": [258, 267], "epidem": [154, 173], "epsilon_1": 274, "eq1": 25, "eq2": 25, "eq3": 25, "eq4": 25, "equal": [21, 26, 64, 93, 121, 172, 270, 273, 274, 280, 294], "equat": [25, 62, 269, 274], "equip": 226, "equit": 270, "equival": [292, 294], "eras": 225, "errat": 286, "error": [143, 180, 184, 185, 188, 193, 211, 215, 218, 234, 237, 251, 258, 266, 269, 274, 278, 280, 284, 290, 299, 306, 309, 312], "error_class": 280, "escal": 267, "especi": [133, 271], "essenti": [71, 144, 173, 227, 237, 243, 263, 271, 278, 286, 293], "establish": [269, 286], "estim": [227, 230, 244, 246, 267, 269, 274], "estimate_sigma": [244, 269], "eta": 269, "etc": [9, 13, 24, 35, 93, 114, 135, 169, 178, 180, 185, 227, 252, 276, 278, 286, 293, 307], "ethan": 147, "ethen": 147, "ethyn": 147, "etienn": [104, 106, 305, 306], "euclidean": [172, 275], "euclidean_dist": 296, "euler": [201, 275, 292], "euler_matrix": 296, "eurograph": 269, "eval": [25, 28, 269, 273, 274], "evalu": [65, 68, 71, 118, 127, 130, 134, 135, 171, 172, 173, 198, 242, 275, 279, 291, 294, 309], "evec": [28, 269, 273, 274], "even": [71, 133, 134, 148, 154, 155, 158, 178, 204, 226, 238, 255, 256, 258, 260, 264, 267, 269, 270, 275, 314, 315], "evenli": [17, 273, 283], "event": [4, 11, 15, 24, 31, 37, 76, 87, 108, 140, 148, 149, 152, 155, 158, 180, 182, 183, 185, 191, 194, 197, 200, 225, 226, 255, 275, 287, 290, 291, 293, 295, 306, 307, 315], "event_id": [148, 291], "event_po": [11, 12, 14], "event_posit": [11, 12, 287, 296], "event_typ": 293, "events_count": 306, "eventu": [113, 115, 123, 178, 249], "ever": 178, "everi": [12, 15, 17, 20, 24, 25, 26, 29, 30, 32, 33, 36, 37, 38, 40, 59, 76, 79, 107, 108, 131, 133, 158, 194, 224, 225, 227, 234, 249, 267, 273, 274, 276, 283, 291, 294, 295, 314], "everybodi": 237, "everydai": 97, "everyon": [107, 108, 109, 120, 123, 125, 136, 139, 140, 183, 230, 232, 240, 246, 249, 252, 255, 258, 261, 264, 267, 268], "everyth": [12, 24, 30, 63, 64, 66, 93, 108, 114, 120, 125, 133, 154, 161, 169, 175, 178, 183, 184, 187, 203, 217, 221, 222, 225, 232, 243, 244, 247, 260, 293, 314], "evid": 71, "evolut": 157, "ex": 312, "exact": [28, 180, 295], "exactli": [32, 71, 146, 178, 180, 234, 238, 246, 249, 258, 261, 269, 270], "exam": [187, 245, 271], "examin": [179, 271, 276], "exampl": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 70, 71, 72, 73, 74, 75, 76, 78, 79, 80, 81, 82, 83, 85, 86, 87, 88, 89, 90, 96, 103, 104, 106, 107, 109, 116, 121, 122, 128, 129, 132, 134, 135, 136, 139, 142, 144, 146, 147, 148, 149, 151, 152, 154, 161, 167, 170, 172, 173, 175, 184, 190, 196, 201, 202, 208, 210, 218, 249, 251, 255, 261, 264, 267, 269, 271, 273, 275, 276, 278, 279, 280, 287, 289, 290, 291, 292, 294, 295, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314], "examples_revamp": 313, "exce": [225, 275, 286], "exceed": [155, 188, 206], "excel": [231, 292], "except": [39, 76, 118, 142, 212, 265, 280], "exchang": [73, 231], "excit": [111, 118, 180, 231, 255], "exclud": [165, 172, 276], "execut": [1, 23, 30, 42, 58, 70, 78, 80, 82, 83, 85, 90, 93, 142, 148, 154, 173, 180, 211, 218, 224, 243, 266, 267, 275, 288, 290, 291, 312, 313], "exemplari": 315, "exemplifi": 71, "exercis": 303, "exhaust": 135, "exhibit": [26, 266], "exist": [4, 19, 32, 59, 109, 111, 117, 124, 127, 140, 155, 158, 180, 182, 191, 198, 201, 225, 249, 255, 256, 259, 267, 271, 275, 278, 293, 312], "exit": [4, 5, 10, 15, 17, 20, 21, 25, 26, 29, 31, 33, 36, 38, 40, 79, 80, 81, 82, 83, 93, 295, 296, 307], "exp_bundles_and_map": 14, "expand": [141, 149, 152, 289, 312], "expandus": 14, "expans": 306, "expect": [117, 119, 121, 125, 134, 161, 178, 179, 181, 202, 205, 241, 252, 259, 265, 269, 270, 273, 275, 278, 282, 295], "expend": 234, "expens": [27, 134, 142, 173], "experi": [102, 109, 111, 118, 133, 141, 168, 170, 180, 181, 184, 185, 206, 231, 243, 249, 255, 256, 258, 265, 269, 273], "experienc": [93, 178, 230, 243], "experiment": [6, 96, 262, 267, 305], "expir": 280, "expireddeprecationerror": [273, 290, 296], "explain": [60, 61, 64, 97, 135, 136, 139, 140, 165, 180, 195, 201, 210, 213, 224, 226, 230, 234, 247, 253, 264, 267, 269, 280, 314], "explan": [142, 243, 250], "explicit": 267, "explicitli": [93, 129, 197, 294, 303], "explor": [71, 128, 134, 151, 242, 245, 248, 253, 265, 269, 270, 271], "exponenti": [258, 267], "export": [0, 1, 89, 96, 184, 190, 193, 312, 313], "export_scen": [8, 296], "expos": [114, 243, 276, 278, 284, 290], "express": [28, 30, 93, 179, 269, 273, 274, 279, 280, 315], "ext": [278, 303, 314], "extend": [24, 32, 180, 233, 257, 271], "extens": [32, 104, 278, 282, 290, 293, 296, 305, 306], "extension1": 293, "extension2": 293, "extent": 147, "extern": [93, 135, 139, 267, 281, 311], "extra": [68, 93, 141, 165, 180, 203, 248, 295], "extract": [37, 141, 144, 155, 158, 184, 204, 227, 270, 275, 281, 291, 308, 310], "extran": 314, "extrem": 121, "extrud": 226, "extrus": [213, 273], "ey": [24, 295], "f": [25, 45, 148, 165, 265, 276, 290], "fa": [24, 27, 28], "fa_1x1x1": 14, "fa_actor": 14, "face": [11, 12, 17, 28, 30, 32, 71, 108, 110, 112, 114, 116, 118, 119, 121, 124, 126, 127, 128, 129, 130, 133, 146, 154, 178, 180, 182, 193, 194, 202, 207, 237, 239, 245, 249, 251, 266, 270, 273, 274, 287, 289, 294, 311], "face_index": [11, 12], "faces_from_sphere_vertic": 296, "facet": 273, "facilit": [28, 263, 271, 276], "fact": [28, 179, 237], "factor": [71, 226, 249, 269, 273, 274, 283, 286, 293, 295, 312], "fail": [97, 102, 158, 161, 197, 227, 237, 251, 257, 270, 288, 303, 304, 312, 314], "failur": [249, 251, 257], "fairli": [266, 269], "fake": 173, "fake_tub": [27, 36, 40, 273, 303], "fall": 151, "fals": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 24, 25, 27, 28, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 71, 72, 73, 74, 75, 76, 79, 80, 81, 82, 83, 86, 87, 88, 93, 94, 145, 148, 158, 237, 243, 272, 273, 274, 275, 277, 279, 280, 281, 282, 286, 289, 290, 291, 293, 294, 295, 312], "famili": 293, "familiar": [134, 136, 178], "famou": 246, "far": [110, 112, 114, 149, 153, 168, 249, 258], "farther": [36, 267], "farthest": 276, "fasciculu": 24, "fascin": 180, "fashion": [49, 155, 171, 283, 285], "fast": [165, 166, 197, 267, 269, 310], "faster": [20, 74, 75, 109, 121, 134, 168, 178, 205, 226], "fatal": 143, "fault": [217, 302, 310, 312], "faulthandl": 143, "faveli": [103, 304], "fbo": [230, 237, 240, 243, 246, 267], "fdata": 312, "fdst": 278, "fear": 314, "feat": 302, "featur": [86, 104, 112, 114, 120, 122, 123, 124, 125, 131, 135, 139, 140, 152, 162, 164, 167, 169, 171, 172, 173, 174, 175, 178, 180, 194, 197, 201, 203, 209, 210, 215, 216, 221, 225, 226, 236, 237, 248, 251, 253, 254, 260, 261, 263, 267, 269, 271, 273, 274, 297, 302, 305, 307, 311, 312], "feb": 276, "feed": 180, "feedback": [158, 162, 170, 232, 235, 238, 241, 244, 247, 253, 266], "feel": [93, 178, 180], "fellow": [129, 135, 181, 231, 247, 249, 252, 255, 265], "felt": [178, 179, 180], "fernando": 269, "fetch": [24, 28, 30, 37, 43, 44, 45, 46, 47, 48, 50, 51, 52, 53, 54, 55, 56, 161, 171, 225, 227, 247, 278, 303, 312, 314], "fetch_bundles_2_subject": [14, 24, 27], "fetch_data": 296, "fetch_gltf": [6, 7, 8, 9, 13, 188, 296], "fetch_viz_cubemap": [37, 296], "fetch_viz_dmri": [28, 30, 296], "fetch_viz_icon": [30, 43, 44, 45, 46, 47, 50, 51, 52, 53, 54, 55, 56, 296], "fetch_viz_model": [4, 76, 94, 296], "fetch_viz_new_icon": [48, 225, 296, 312], "fetch_viz_textur": [4, 5, 15, 19, 296], "fetch_viz_wiki_nw": [35, 36, 87, 296], "fetcher": [24, 36, 76, 87, 184, 225, 296, 306, 309, 312], "fetchererror": 278, "fetech": 278, "feval": 28, "fevec": 28, "few": [11, 12, 93, 111, 121, 123, 135, 147, 149, 155, 169, 179, 180, 184, 205, 206, 209, 214, 242, 245, 257, 271, 276, 302], "ffffff": 276, "ffmpeg": [86, 88], "fi": [108, 140], "fib": [76, 94, 282], "fiber": [22, 23, 89, 269, 274, 303, 313], "fidel": 258, "field": [22, 23, 29, 89, 122, 173, 246, 269, 273, 274, 276, 293, 294, 307, 313], "field_data": 294, "field_nam": 294, "fifth": 153, "fig": 277, "figur": [41, 42, 53, 89, 114, 118, 119, 121, 127, 129, 131, 140, 152, 156, 161, 178, 181, 190, 202, 204, 205, 212, 214, 217, 219, 234, 246, 249, 252, 258, 264, 265, 267, 270, 271, 277, 296, 313], "figure_dict": [46, 53], "fil": 28, "file": [0, 1, 11, 12, 15, 23, 35, 36, 42, 58, 70, 78, 85, 87, 89, 90, 93, 96, 97, 127, 133, 135, 141, 144, 148, 179, 180, 184, 188, 190, 193, 199, 200, 216, 257, 271, 272, 273, 275, 278, 280, 281, 282, 288, 289, 290, 293, 295, 302, 306, 309, 310, 312, 313, 314], "file_nam": [18, 282, 293], "filedialog": [260, 263, 271], "filedialog2d": 146, "filedialogui": 271, "fileexchang": 276, "filemenu": [133, 266], "filemenu2d": [135, 271, 296, 302], "filenam": [6, 7, 8, 9, 13, 15, 19, 273, 278, 281, 282, 290, 293, 295], "filesystem": 135, "filip": 181, "filipi": [106, 142, 173, 181, 186, 189, 201, 205, 229, 230, 246, 249, 267, 268, 306, 312], "fill": [54, 141, 144, 153, 170, 172, 226, 231, 271, 276, 286, 288, 310], "filter": [172, 255, 267, 273], "filterwarn": 303, "final": [24, 30, 31, 32, 35, 36, 37, 54, 60, 64, 71, 72, 73, 74, 93, 109, 121, 127, 130, 133, 136, 140, 148, 149, 152, 156, 164, 175, 178, 195, 201, 210, 234, 241, 243, 246, 248, 249, 252, 256, 258, 260, 261, 262, 264, 265, 266, 268, 270, 273, 275, 276, 293, 294, 302, 309, 312], "final_tim": [293, 296], "finalis": 196, "find": [11, 24, 74, 94, 109, 131, 144, 148, 155, 168, 175, 178, 180, 182, 194, 210, 213, 215, 217, 224, 226, 239, 240, 243, 245, 246, 248, 249, 258, 261, 264, 265, 266, 267, 269, 271, 293, 295, 314], "find_object": 295, "fine": [22, 23, 89, 139, 142, 145, 165, 173, 182, 184, 187, 212, 221, 234, 237, 258, 268, 311, 313], "finer": 173, "finish": [10, 119, 121, 124, 133, 139, 152, 164, 167, 171, 173, 181, 189, 190, 210, 232, 244, 249, 252, 253, 258, 264, 295], "finit": 246, "fire": 178, "first": [2, 3, 10, 14, 15, 16, 20, 24, 25, 27, 28, 30, 31, 32, 35, 36, 39, 40, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 61, 62, 63, 64, 65, 66, 71, 74, 76, 79, 80, 81, 82, 83, 87, 93, 96, 114, 116, 118, 119, 129, 134, 135, 139, 141, 142, 145, 148, 152, 155, 169, 170, 171, 172, 173, 175, 179, 180, 181, 182, 190, 191, 197, 201, 205, 206, 218, 219, 226, 227, 231, 232, 234, 235, 237, 238, 243, 246, 247, 249, 252, 253, 255, 257, 258, 262, 264, 265, 267, 268, 269, 270, 273, 274, 275, 276, 280, 286, 290, 293, 294, 312, 314], "firstli": [93, 121, 169, 180, 221, 239], "fit": [9, 25, 97, 142, 161, 238, 249, 252, 269, 270, 293, 295, 315], "five": [56, 138, 180, 309], "fix": [30, 83, 93, 109, 110, 112, 114, 116, 119, 120, 122, 127, 129, 130, 141, 145, 146, 148, 149, 158, 161, 163, 168, 171, 173, 174, 175, 178, 179, 180, 183, 184, 185, 186, 188, 192, 193, 197, 201, 205, 210, 213, 214, 219, 220, 221, 224, 225, 226, 227, 233, 239, 249, 251, 257, 258, 264, 265, 266, 269, 271, 275, 276, 299, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312], "fix_winding_ord": [30, 274, 296], "flag": [79, 80, 82, 83, 86, 93, 143, 158, 161, 171, 211, 257, 276, 293, 296, 311, 312, 314], "flake8": 314, "flash": 271, "flat": [276, 285, 296], "flatit": 276, "flatten": [252, 276], "flaw": [155, 197, 233, 249, 271, 302], "flawless": 145, "flexibl": [134, 290], "flicker": [154, 173], "flighthelmet": [193, 278], "flip": [5, 110, 184, 281, 306, 311, 312], "flip_up_down": 277, "float": [25, 26, 43, 54, 71, 74, 76, 171, 197, 258, 264, 267, 268, 273, 274, 275, 276, 281, 282, 283, 285, 286, 289, 290, 291, 293, 294, 295], "float_pow": 15, "float_to_rgba": 267, "floatarrai": 296, "flock": 311, "flood": 180, "floor": [11, 197], "floriano": 267, "flow": 180, "fluid": 152, "fly": [5, 161], "fname": [15, 43, 54, 275, 277, 278, 282, 295], "fname_fa": 14, "fname_t1": 14, "focal": [27, 60, 192, 275, 295], "focal_1": 275, "focal_po": 275, "focal_point": [4, 8, 18, 25, 26, 27, 28, 29, 33, 40, 79, 80, 82, 87, 295], "focu": [4, 15, 110, 113, 114, 125, 126, 139, 148, 151, 154, 195, 233, 236, 245, 248, 254, 260, 261, 263, 265, 269, 271, 293], "focus": [108, 118, 130, 154, 173, 224, 235, 236, 239, 245, 251, 258, 264, 266, 267, 268], "fodf": 30, "fodf_img": 30, "fog": 178, "folder": [35, 36, 87, 251, 271, 278, 291, 293, 306, 314], "follow": [14, 24, 25, 26, 28, 30, 32, 33, 37, 39, 60, 61, 62, 64, 67, 71, 81, 83, 86, 87, 93, 96, 98, 99, 100, 101, 103, 104, 106, 118, 119, 122, 124, 127, 129, 130, 132, 133, 135, 138, 142, 145, 148, 166, 173, 175, 176, 186, 189, 190, 192, 195, 196, 199, 225, 226, 227, 229, 232, 236, 246, 252, 258, 266, 267, 270, 273, 275, 278, 280, 282, 294, 296, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 314, 315], "font": [97, 114, 161, 167, 169, 173, 175, 239, 248, 254, 271, 293], "font_famili": [24, 30, 46, 50, 273, 293, 296], "font_siz": [24, 30, 32, 37, 40, 46, 47, 50, 53, 54, 55, 79, 80, 81, 82, 83, 94, 273, 293, 296], "footer": 312, "forc": [21, 36, 79, 80, 81, 82, 83, 129, 135, 145, 149, 154, 171, 173, 222, 275, 309, 312], "force_rend": [43, 45, 54], "forceatla": [154, 173], "forceatlas2": [154, 157, 173], "forceobj": [79, 80, 82, 83, 93], "forese": 253, "forg": [96, 98, 99, 100, 101, 103, 104, 106, 122, 132, 138, 166, 176, 229], "forget": 314, "forgot": [179, 237], "fork": [92, 142, 145, 180, 314], "form": [25, 62, 71, 80, 161, 178, 204, 219, 234, 246, 273, 274, 275, 283, 288, 289, 293, 294, 315], "formal": [130, 262], "format": [14, 72, 76, 94, 97, 164, 169, 172, 179, 180, 184, 185, 193, 227, 234, 237, 274, 275, 276, 278, 282, 293, 312], "format_text": [293, 296], "former": [232, 264], "formula": [32, 117, 253, 269, 292], "fortran": 276, "fortun": [119, 139, 140, 145, 146, 148, 149, 151, 158, 175, 233, 242, 245, 252, 256, 261], "fortunalt": 161, "fortunelli": 175, "forum": [129, 159, 178, 218], "forward": [234, 237, 242, 309], "found": [32, 93, 114, 116, 118, 119, 121, 124, 127, 129, 130, 133, 134, 135, 151, 167, 171, 172, 173, 174, 175, 180, 181, 187, 189, 190, 200, 202, 206, 218, 222, 225, 226, 227, 239, 244, 246, 250, 253, 255, 258, 259, 266, 267, 269, 271, 276, 277, 278, 280, 288, 292, 294, 295], "foundat": [105, 107, 108, 134, 135, 137, 171, 172, 177, 178, 180, 225, 226, 227, 228, 267, 269, 271], "four": [40, 59], "fourth": [150, 294], "fox": [193, 223, 227], "fp": [38, 71, 80, 81, 82, 83, 125, 178, 201, 226, 275, 312], "fpss": [80, 81, 82, 83], "fr": 277, "frac": [32, 258, 267], "fract": 267, "fractal": [22, 23, 89, 312, 313], "fraction": [27, 28, 270, 273, 293], "frag": [71, 74], "frag_output": 71, "fragment": [71, 74, 76, 134, 226, 249, 252, 258, 264, 265, 267, 269, 273, 285, 290], "fragment_shader_code_decl": 76, "fragment_shader_code_impl": 76, "fragoutput0": [71, 74, 76, 270], "frame": [38, 64, 71, 86, 93, 104, 117, 167, 230, 269, 273, 275, 291, 295, 305], "frame_dur": 38, "frame_r": [80, 81, 82, 83, 295, 296], "frame_tim": 45, "framebuff": [11, 12, 139, 230, 234, 237, 243, 246, 249, 258, 267, 291], "framebufferobject": 237, "framework": [24, 107, 126, 134, 234, 271], "franc": 5, "francoi": [229, 312], "frank": [229, 312], "free": [44, 45, 93, 97, 98, 99, 100, 101, 103, 104, 105, 106, 122, 132, 137, 138, 140, 142, 166, 173, 176, 177, 179, 180, 227, 228, 229, 315], "freedom": 93, "freehand": [200, 203, 206, 211, 225], "freetyp": [161, 164, 167, 169, 175], "freq": 81, "freq_sim": 81, "frequenc": [29, 33], "frequent": 227, "friction": [80, 81, 83, 93, 129], "friction_vec": [81, 83], "friend": [142, 178, 179], "friendli": [112, 135, 260, 312], "from": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 15, 16, 17, 18, 19, 20, 21, 23, 24, 25, 26, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 58, 59, 60, 61, 63, 64, 65, 66, 67, 68, 70, 71, 72, 73, 74, 75, 76, 78, 79, 80, 81, 82, 83, 85, 86, 87, 88, 90, 93, 94, 96, 97, 98, 106, 107, 108, 110, 112, 116, 118, 119, 121, 124, 127, 129, 130, 133, 135, 136, 138, 140, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 154, 155, 158, 161, 167, 169, 171, 173, 175, 178, 179, 180, 181, 183, 184, 185, 187, 188, 190, 196, 197, 199, 201, 202, 204, 206, 213, 214, 217, 221, 223, 224, 225, 226, 229, 230, 236, 239, 243, 244, 246, 248, 249, 251, 252, 254, 255, 256, 257, 258, 259, 262, 264, 265, 266, 267, 268, 269, 270, 271, 273, 274, 275, 276, 277, 278, 280, 281, 282, 283, 284, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 298, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315], "front": 258, "frontend": 116, "frontfacecul": 159, "fruit": 170, "frustum": [224, 289, 296, 307], "frustum_actor": 273, "fs_dec": [71, 74, 273], "fs_impl": [71, 273], "fs_vars_dec": 74, "fsrc": 278, "fulfil": 93, "full": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 71, 72, 73, 74, 75, 76, 79, 80, 81, 82, 83, 86, 87, 88, 152, 185, 227, 242, 266, 273, 290, 297, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 314], "fulli": [27, 93, 97, 249, 271, 273, 274, 276], "fun": [17, 178, 179], "func": [279, 280, 289], "func_arg": 289, "func_call1": 290, "func_call2": 290, "function": [4, 5, 10, 14, 15, 18, 22, 23, 24, 26, 28, 29, 30, 31, 32, 33, 35, 36, 37, 38, 40, 45, 54, 55, 62, 65, 68, 71, 73, 74, 75, 81, 83, 89, 93, 94, 96, 97, 110, 117, 124, 129, 131, 140, 141, 146, 150, 156, 158, 162, 167, 169, 171, 172, 174, 176, 181, 182, 184, 188, 189, 190, 191, 193, 194, 195, 196, 197, 198, 201, 202, 204, 211, 213, 215, 216, 217, 220, 225, 226, 229, 234, 236, 237, 238, 239, 240, 241, 242, 244, 246, 249, 252, 253, 255, 256, 257, 258, 259, 262, 264, 265, 267, 268, 269, 270, 271, 273, 275, 276, 279, 280, 283, 286, 289, 290, 291, 292, 293, 294, 295, 302, 303, 304, 306, 307, 309, 310, 311, 312, 313, 314], "functool": [140, 264], "fundament": 246, "funtction": 15, "fur": [109, 134], "furi": [0, 1, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 35, 36, 37, 38, 39, 40, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 54, 55, 56, 57, 59, 61, 62, 63, 65, 66, 67, 68, 69, 71, 72, 73, 74, 75, 76, 77, 79, 80, 81, 82, 83, 84, 85, 89, 94, 96, 97, 105, 107, 108, 109, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 123, 124, 125, 126, 127, 128, 129, 131, 133, 134, 135, 136, 137, 139, 140, 141, 142, 145, 146, 154, 157, 160, 161, 164, 165, 168, 170, 171, 172, 173, 178, 179, 180, 181, 182, 183, 184, 186, 190, 200, 201, 206, 207, 217, 224, 225, 226, 227, 230, 232, 234, 240, 242, 245, 247, 249, 252, 253, 255, 256, 258, 265, 267, 269, 271, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 298, 302, 303, 304, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315], "further": [93, 118, 129, 133, 149, 234, 250, 254, 256, 263, 264, 269, 271, 276, 314], "furthermor": 236, "fury_actor": 11, "fury_sprit": 45, "fury_text": [55, 60], "furystreamcli": [86, 87, 148, 296], "furystreaminteract": [86, 148, 296], "futur": [127, 146, 148, 149, 152, 155, 158, 171, 183, 242, 255, 267, 269, 271, 276, 314], "fvtk": [24, 303], "fx": 36, "fxaa": 178, "fxaa_off": [295, 296], "fxaa_on": [295, 296], "fy": 36, "fz": 36, "g": [15, 24, 39, 93, 94, 227, 269, 271, 273, 274, 276, 278, 285, 286, 289, 294, 295, 314], "g58ad5f7": 314, "g789a448f": 280, "g_constant": 15, "g_expon": 15, "gadian": 269, "gain": 264, "galaxi": 140, "galleri": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 71, 72, 73, 74, 75, 76, 79, 80, 81, 82, 83, 86, 87, 88, 89, 152, 173, 304, 313], "game": [71, 97, 179, 181], "gameplai": 180, "gamma": [118, 295], "gamma_correct": 295, "ganimtron": [138, 225, 309], "gap": [159, 197], "garbag": 276, "garyfallidi": [101, 103, 104, 106, 122, 132, 138, 166, 176, 229, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312], "gaussian": [178, 255, 258, 267], "gautam": [106, 229, 306, 312], "gave": [173, 178, 179, 180, 269], "gdscript": 180, "gearboxassi": 193, "gem": [258, 267], "gen_cent": 32, "gen_fac": [17, 289], "gener": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 71, 72, 73, 74, 75, 76, 79, 80, 81, 82, 83, 86, 87, 88, 89, 93, 96, 97, 117, 134, 141, 142, 144, 147, 148, 161, 165, 168, 170, 171, 172, 173, 175, 180, 182, 186, 190, 192, 195, 221, 226, 240, 243, 244, 247, 249, 253, 258, 259, 267, 269, 270, 271, 273, 275, 276, 278, 280, 281, 286, 289, 291, 294, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 314], "generalis": [156, 208], "generate_tmatrix": [281, 296], "genericcircularqueu": 296, "genericimagebuffermanag": [148, 296], "genericmultidimensionalbuff": 296, "genesi": 172, "geograph": [5, 36, 292], "geom_box": [80, 81, 82, 83], "geom_cylind": [81, 83], "geom_spher": [79, 80, 83, 93], "geometr": [17, 32, 51, 55, 71, 74, 225], "geometri": [27, 32, 63, 74, 75, 107, 109, 134, 195, 201, 222, 224, 226, 227, 269, 273, 289, 290, 312], "geometry_length": 36, "get": [6, 7, 8, 9, 11, 13, 14, 18, 21, 24, 25, 28, 31, 32, 37, 38, 40, 46, 53, 59, 71, 74, 79, 80, 82, 93, 96, 107, 108, 134, 142, 154, 173, 179, 180, 225, 226, 227, 230, 240, 246, 249, 252, 255, 258, 261, 264, 267, 268, 269, 273, 275, 276, 277, 280, 281, 283, 286, 288, 289, 291, 293, 294, 295, 306, 312], "get_acc_data": [281, 296], "get_accessor_data": 184, "get_actor_from_polydata": [4, 18, 296], "get_actor_from_polymapp": [76, 94, 296], "get_actor_from_primit": [17, 32, 296], "get_all_atomic_numb": 296, "get_all_atomic_posit": 296, "get_all_bond_ord": 296, "get_all_file_nam": [293, 296], "get_anim": [281, 296], "get_app": 296, "get_atomic_numb": 296, "get_atomic_posit": 296, "get_bond_ord": 296, "get_bound": 296, "get_bounding_box_s": 296, "get_buff_arrai": [281, 296], "get_camera": [295, 296], "get_cells_shap": [283, 296], "get_cmap": 296, "get_color": [275, 296], "get_current_fram": [148, 291, 296], "get_current_valu": [275, 296], "get_data": 312, "get_directory_nam": [293, 296], "get_event_loop": 88, "get_fdata": [14, 30, 39, 312], "get_file_nam": [293, 296], "get_foc": [275, 296], "get_fram": 38, "get_grid_cells_posit": 296, "get_info": [96, 296, 303], "get_joint_actor": [281, 296], "get_jpeg": [148, 291, 296], "get_keyfram": [275, 296], "get_lock": 148, "get_materi": [281, 296], "get_matrix_from_sampl": [281, 296], "get_morph_data": [281, 296], "get_next_timestamp": [62, 296], "get_opac": [275, 296], "get_orbit_period": 15, "get_orbital_posit": 15, "get_param": 28, "get_polydata_color": [18, 296], "get_polydata_field": 296, "get_polydata_lin": 296, "get_polydata_norm": 296, "get_polydata_primitives_count": 296, "get_polydata_tang": 296, "get_polydata_tcoord": 296, "get_polydata_triangl": [188, 296], "get_polydata_vertic": [18, 296], "get_polymapper_from_polydata": [76, 94, 296], "get_posit": [275, 296], "get_previous_timestamp": [62, 296], "get_prim": 296, "get_r": 118, "get_rot": [275, 296], "get_sampler_data": [281, 296], "get_scal": [275, 296], "get_skin_data": [281, 296], "get_skin_timelin": [217, 223], "get_spher": 30, "get_start_end": [291, 296], "get_textur": [281, 296], "get_time_tau": [62, 296], "get_timestamps_from_keyfram": [62, 296], "get_valu": [217, 275, 296], "get_values_from_keyfram": 296, "get_view_up": [275, 296], "get_xyz_coord": 296, "getbasepositionandorient": [79, 80, 81, 82, 83, 93, 127], "getbound": [273, 296], "getcent": [273, 296], "getconsum": 224, "getcontactpoint": 79, "getcontext": 240, "getdefaultencod": [278, 284, 290], "getdifferencefromquarternion": 93, "getdifferencequaternion": [80, 81, 82, 83, 93, 127], "geteulerfromquaternion": [79, 80, 81, 93], "geteventposit": 14, "getfboindex": [240, 243], "getinteractor": 45, "getinteractorstyl": 45, "getlength": [273, 296], "getlinkst": [81, 83, 93], "getmapp": [76, 290], "getmatrixfromquaternion": [80, 81, 82, 83, 93, 127], "getnumberofcolorattach": 243, "getnumjoint": [81, 83, 93], "getoutputport": 246, "getpointijk": 14, "getposit": [273, 296], "getposition2": 114, "getproperti": [17, 20, 74, 94], "getquaternionfromeul": 81, "getrenderwindow": [45, 246], "getsiz": [24, 30, 37], "getter": [143, 260, 263, 271, 302], "getvis": [273, 296], "gfa": [39, 270], "gha": 312, "gif": [112, 113, 115, 173, 213, 220, 226, 275, 312], "gigabyt": 180, "gil": [142, 154, 173], "gimbal": 93, "gimp": 184, "girlscript": 180, "gist": 169, "git": [96, 179, 288, 314], "github": [4, 19, 62, 96, 97, 98, 99, 100, 101, 103, 104, 105, 106, 122, 132, 137, 138, 148, 160, 166, 169, 176, 177, 178, 179, 184, 188, 227, 228, 229, 278, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 314], "github_stat": [302, 304, 305, 306, 307, 308, 309, 310, 311, 312], "github_tool": [303, 314], "githubusercont": [44, 45], "give": [73, 96, 142, 154, 157, 173, 175, 180, 206, 211, 218, 226, 227, 246, 250, 255, 268, 269, 270, 274, 276, 280, 292, 295, 306], "given": [14, 31, 38, 109, 126, 127, 136, 171, 178, 227, 238, 258, 267, 269, 273, 274, 275, 276, 277, 278, 280, 281, 284, 286, 290, 291, 292, 293, 294, 295, 312, 314], "gk": 267, "gk_": 267, "gl": [44, 45, 96, 97, 98, 99, 100, 101, 103, 104, 106, 122, 132, 134, 135, 138, 139, 145, 148, 154, 157, 160, 163, 166, 167, 169, 171, 172, 173, 174, 175, 176, 178, 179, 182, 183, 225, 226, 227, 229, 267, 269, 271, 295, 306, 309, 314], "gl_disable_blend": [31, 296], "gl_disable_depth": [31, 296], "gl_enable_blend": 296, "gl_enable_depth": [31, 296], "gl_fragcoord": 264, "gl_function": 31, "gl_get_current_st": 296, "gl_reset_blend": [31, 296], "gl_set_additive_blend": [31, 296], "gl_set_additive_blending_white_background": 296, "gl_set_multiplicative_blend": [31, 296], "gl_set_normal_blend": [31, 296], "gl_set_subtractive_blend": [31, 296], "gl_state": 295, "glamvelvetsofa": 193, "glanc": [178, 235, 257], "glass": 295, "glb": [193, 227], "glb2gltf": 193, "glgenframebuff": 240, "glimps": [129, 231], "glitch": 175, "global": [4, 15, 17, 20, 21, 24, 25, 26, 29, 30, 32, 33, 37, 40, 45, 52, 53, 54, 76, 79, 80, 81, 82, 83, 93, 146, 155, 187, 214, 227, 272, 276, 279], "global_cm": [30, 273, 274], "global_opac": [274, 294, 296], "globaltransformmatric": 204, "gloss": [73, 285], "glossi": 285, "glsl": [74, 111, 117, 178, 186, 189, 205, 226, 290], "glsl_code": 290, "glslang": 290, "gltf": [0, 1, 89, 97, 179, 181, 190, 198, 199, 201, 202, 204, 229, 275, 278, 296, 312, 313], "gltf2": 281, "gltf_obj": [6, 7, 8, 9, 13], "gltflib": 281, "gltfreader": 179, "gltftutori": 62, "gltftutorial_007_anim": 62, "glu": 276, "glyp": [175, 270], "glyph": [71, 104, 169, 232, 253, 256, 259, 265, 269, 270, 273, 289, 294, 304, 305, 312], "glyph3d": 296, "go": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 71, 72, 73, 74, 75, 76, 79, 80, 81, 82, 83, 86, 87, 88, 89, 94, 96, 97, 98, 99, 100, 101, 103, 104, 106, 107, 109, 111, 114, 121, 122, 132, 138, 141, 152, 161, 166, 169, 170, 176, 178, 180, 181, 185, 211, 229, 232, 238, 243, 244, 246, 250, 265, 267, 293, 295, 314], "goal": [10, 35, 36, 38, 64, 96, 140, 141, 144, 146, 150, 153, 165, 171, 172, 173, 225, 226, 227, 231, 234, 235, 242, 267, 271], "godot": [178, 180], "goe": [253, 293], "gohlk": 292, "gone": 152, "gonna": 240, "gooch": [128, 134], "good": [97, 119, 139, 142, 148, 149, 165, 168, 170, 173, 178, 180, 181, 211, 212, 218, 230, 235, 249, 252, 253, 255, 256, 258, 261, 264, 267, 315], "googl": [136, 142, 161, 180, 231, 310], "googleapi": 38, "gor": 302, "gordon": [179, 269], "gorro\u00f1o": [101, 106, 303, 306], "got": [111, 115, 140, 141, 152, 169, 179, 181, 186, 197, 201, 212, 214, 215, 219, 222, 231, 232, 240, 255, 256, 258, 267, 270, 288], "gottipati": [106, 306], "gouraud": 285, "gpu": [97, 134, 142, 146, 173, 178, 186, 205, 226, 258, 267, 273, 310], "grab": [180, 206, 293], "gradient": 71, "graduat": 249, "grai": 270, "grammat": 312, "grant": 175, "graph": [105, 137, 139, 151, 154, 173, 177, 228, 267, 310], "graphic": [72, 97, 135, 173, 178, 179, 230, 232, 237, 240, 267, 269, 274], "grate": [156, 231], "gravit": 15, "graviti": [15, 80, 81, 82, 83, 135, 178], "gravity_i": 93, "gravity_x": 93, "gravity_z": 93, "grayscal": [255, 267, 273], "grdevic": 276, "great": [147, 180, 182, 185, 218, 230, 232], "greater": [88, 246, 251, 270, 280, 291, 295], "greatli": 314, "greedi": 276, "green": [17, 39, 46, 47, 50, 53, 173, 273, 293], "greener": 246, "greet": 180, "grei": [218, 286], "grid": [14, 25, 27, 28, 30, 38, 49, 146, 155, 161, 170, 172, 269, 270, 274, 283, 293, 294, 296, 303, 304], "grid_shap": 30, "grid_ui": [25, 28], "gridlayout": [49, 140, 143, 149, 152, 155, 169, 171, 296, 312], "gridui": [25, 28, 101, 159, 259, 296, 303, 312], "ground": 32, "group": [151, 179, 184, 194, 211, 216, 218, 225, 226, 273, 275, 278, 290, 302], "grow": [97, 136, 226], "grown": 133, "gs_prog": 273, "gsoc": [125, 126, 130, 131, 133, 134, 135, 136, 139, 163, 164, 165, 170, 171, 172, 173, 178, 184, 226, 230, 240, 247, 249, 252, 253, 255, 262, 264, 265, 268, 302, 308, 309, 310, 311, 312], "gsoc22": [180, 226], "gssoc": 180, "gtab": 39, "gtv": 38, "guaj": [104, 106, 132, 138, 166, 176, 229, 305, 306, 308, 309, 310, 311, 312], "guarante": [258, 267], "guardian": 140, "guess": [152, 178, 249], "gui": [80, 82, 93, 140, 143, 146, 149, 152, 155, 158, 161, 164, 167, 169, 180, 275], "guid": [72, 73, 254], "guidanc": [180, 243, 266], "guidelin": [230, 232], "guillaum": [103, 304], "gupta": [166, 310], "gurdit": [166, 310], "gz": [14, 28, 30, 295], "h": [34, 148, 269, 273, 282, 286, 291], "ha": [12, 14, 17, 20, 26, 31, 36, 44, 45, 54, 60, 62, 67, 74, 93, 94, 96, 109, 117, 119, 133, 140, 142, 144, 148, 149, 150, 151, 152, 153, 154, 155, 161, 170, 171, 175, 178, 180, 184, 193, 202, 212, 220, 221, 224, 225, 226, 227, 230, 234, 246, 255, 258, 259, 263, 264, 269, 271, 273, 275, 276, 279, 280, 289, 290, 293, 294, 295, 303, 312], "hackathon": 179, "hacktoberfest": 180, "hactoberfest": 179, "had": [107, 108, 109, 110, 114, 116, 118, 121, 127, 129, 130, 133, 135, 140, 141, 142, 143, 146, 147, 148, 149, 152, 155, 158, 161, 165, 169, 170, 178, 179, 180, 181, 182, 183, 184, 187, 193, 194, 196, 197, 200, 202, 204, 205, 207, 208, 209, 211, 212, 214, 215, 218, 221, 230, 231, 232, 243, 244, 245, 249, 252, 253, 255, 257, 258, 261, 265, 266, 267, 270, 271], "hadn": 179, "hair": 134, "haitz": [101, 106, 303, 306], "half": [80, 82, 178, 180], "halfext": [80, 81, 82, 83], "halv": 32, "hamza": [229, 312], "hand": [134, 140, 169, 171, 179, 247, 255], "handi": 83, "handl": [37, 54, 60, 61, 67, 74, 93, 114, 116, 118, 169, 180, 181, 184, 191, 193, 194, 203, 206, 222, 225, 226, 259, 263, 264, 266, 267, 269, 270, 271, 275, 293, 296, 305, 312], "handle_charact": [293, 296], "handle_ev": [293, 296], "handle_inner_radiu": 293, "handle_mouse_click": [293, 296], "handle_mouse_drag": [293, 296], "handle_move_callback": [293, 296], "handle_outer_radiu": 293, "handle_release_callback": [293, 296], "handle_sid": [54, 293], "handler": [37, 278, 284, 290], "hang": 307, "hangout": 142, "happen": [4, 15, 21, 27, 39, 148, 154, 173, 197, 200, 206, 215, 217, 225, 234, 237, 243, 246, 252, 270, 295, 314], "happi": [98, 99, 100, 101, 103, 104, 106, 122, 132, 138, 166, 176, 178, 179, 180, 229, 255], "har": 97, "haran2001": [138, 309], "hard": [135, 149, 151, 175, 178, 197, 210, 212, 213], "hardcod": 32, "harder": [215, 237], "hardest": 142, "hardi": [232, 269], "hardi_img": 39, "hardwar": 134, "hardwareselector": 296, "hari": [229, 302, 312], "hariharan": [166, 310], "harmon": [30, 113, 125, 134, 253, 256, 259, 262, 269, 273], "hart": [71, 74], "hart1996": [71, 74], "harvard": 178, "has_bord": [158, 293], "has_playback_panel": [275, 296], "hash": [276, 288, 314], "hash_from": 288, "hash_str": 288, "hashtag": [154, 173], "hasn": 180, "hatch": [229, 312], "have": [2, 3, 14, 16, 24, 27, 28, 30, 32, 37, 40, 43, 46, 50, 51, 52, 54, 55, 56, 62, 63, 71, 72, 74, 75, 76, 86, 88, 93, 96, 97, 107, 108, 110, 112, 113, 114, 115, 116, 119, 121, 123, 124, 125, 129, 130, 133, 135, 136, 139, 140, 141, 142, 143, 144, 148, 149, 152, 157, 161, 164, 165, 167, 169, 171, 173, 175, 178, 180, 181, 183, 189, 192, 193, 205, 213, 215, 217, 218, 220, 221, 222, 225, 226, 227, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 246, 249, 250, 252, 253, 255, 256, 258, 259, 261, 262, 264, 265, 267, 268, 269, 270, 271, 273, 274, 275, 276, 279, 280, 283, 286, 288, 290, 292, 293, 294, 304, 306, 314], "have_amodul": 279, "have_bmodul": 279, "have_tiled_vert": 289, "haven": [118, 152, 258, 261, 267], "hd": 173, "he": [130, 179, 180, 181, 225, 246], "head": [107, 108, 148, 291, 296, 309], "head_tail_buff": [86, 291], "head_tail_buffer_nam": [86, 291], "header": 309, "headless": 96, "headquart": 4, "heard": [178, 179, 180], "heavi": [171, 205, 258, 273, 290], "hei": [107, 109, 111, 113, 115, 117, 120, 123, 125, 126, 128, 131, 136], "height": [3, 17, 29, 33, 46, 52, 63, 65, 74, 81, 83, 93, 94, 110, 114, 121, 135, 148, 155, 172, 178, 234, 237, 243, 255, 266, 273, 275, 283, 289, 291, 293, 294, 295, 296], "heightvsoutput": 74, "helic": [33, 159, 172, 286], "helica": 312, "helio": [145, 154, 157, 160, 173], "heliosnetwork": 173, "heliospr": 151, "helix": 286, "hello": [76, 94, 108, 110, 112, 114, 116, 118, 119, 121, 124, 127, 129, 130, 133, 179, 180, 230, 231, 232, 237, 240, 246, 249, 252, 255, 258, 261, 264, 268, 273, 295], "help": [12, 15, 31, 37, 53, 62, 74, 81, 93, 108, 112, 118, 119, 124, 130, 131, 134, 135, 136, 139, 140, 147, 156, 163, 164, 167, 170, 174, 180, 181, 197, 201, 206, 225, 226, 240, 242, 254, 267, 269, 271, 287, 292, 293, 314], "helper": [28, 37, 62, 83, 152, 201, 216, 225, 252, 257, 296, 312], "henc": [74, 93, 116, 119, 129, 135, 198, 275], "heptagon": 34, "here": [3, 9, 10, 11, 12, 13, 14, 15, 17, 18, 21, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 39, 43, 49, 54, 60, 62, 64, 74, 75, 80, 82, 93, 94, 98, 99, 100, 101, 103, 104, 106, 109, 112, 114, 116, 118, 119, 121, 122, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 138, 142, 146, 148, 154, 166, 167, 171, 172, 173, 176, 180, 184, 185, 190, 193, 206, 208, 209, 212, 217, 218, 219, 225, 227, 229, 231, 233, 234, 235, 237, 243, 244, 246, 248, 253, 255, 256, 258, 260, 262, 264, 265, 269, 271, 276, 277, 292, 314], "heteroatom": 286, "heurist": 36, "hex_to_rgb": 296, "hexadecim": [276, 306, 307], "hexagon": [34, 129], "hexcod": 276, "hh": 293, "hi": [67, 133, 139, 140, 141, 142, 154, 179], "hid": 267, "hidden": 255, "hide": [54, 55, 149, 220, 227, 275, 293, 295, 296, 303], "hide_actor": 53, "hide_all_exampl": [54, 55], "hierarch": [57, 58, 65, 89, 171, 207, 213, 219, 226, 227, 275, 312, 313], "hierarchi": [93, 219, 227], "high": [25, 29, 30, 71, 97, 142, 201, 269, 273, 280, 282, 283, 295], "high_rang": [274, 296], "higher": [14, 21, 25, 29, 125, 258, 269, 273, 275, 280, 290, 293], "highli": [113, 116, 118, 149], "highlight": [98, 99, 100, 101, 103, 104, 106, 122, 132, 138, 166, 176, 215, 216, 225, 229, 242, 311, 314], "hihgli": 161, "him": [179, 181], "hinder": [140, 245], "hing": 83, "hint": [255, 261, 264, 268], "histori": 314, "hit": 178, "hold": [14, 24, 63, 71, 148, 149, 192, 194, 205, 207, 225, 255, 293, 295], "holder": 315, "holi": 276, "home": [4, 97, 245, 278, 312], "home3": 54, "homeomorph": 276, "homogen": [29, 276, 292, 294], "honor": 303, "honour": 230, "hood": [115, 117], "hook": [52, 149, 198, 226, 312], "hope": [97, 243, 244, 249, 253, 258, 265], "hopefulli": [110, 112, 149, 152, 155, 158, 161, 167, 169, 171, 253, 262], "hor_line_slider_text_bottom": 56, "hor_line_slider_text_top": 56, "horizon": 302, "horizont": [53, 54, 56, 135, 164, 167, 169, 171, 176, 273, 283, 293, 295, 311], "horizontallayout": 296, "hors": 178, "host": [173, 291], "hot": 25, "hour": [145, 180, 246], "hous": [139, 178], "hover": 12, "hover_callback": 12, "how": [0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 24, 25, 27, 30, 31, 32, 34, 36, 37, 38, 41, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 61, 64, 67, 69, 71, 72, 73, 74, 75, 76, 77, 79, 80, 81, 82, 83, 84, 86, 89, 93, 96, 107, 118, 127, 131, 135, 140, 141, 144, 146, 147, 148, 150, 151, 152, 157, 163, 165, 169, 170, 173, 175, 178, 179, 180, 181, 183, 184, 185, 186, 190, 192, 194, 195, 198, 201, 202, 205, 206, 207, 209, 213, 217, 218, 221, 225, 226, 227, 230, 232, 234, 235, 238, 239, 240, 243, 247, 249, 250, 252, 253, 259, 262, 265, 267, 269, 270, 271, 276, 285, 295, 303, 310, 311, 312, 314], "howev": [14, 17, 24, 27, 28, 30, 71, 86, 88, 111, 113, 117, 134, 142, 145, 154, 175, 184, 188, 193, 212, 214, 227, 234, 239, 245, 251, 257, 258, 261, 263, 264, 265, 266, 267, 269, 270, 271, 277, 295, 312, 315], "hsv": [14, 61, 186, 192, 226, 275, 276], "hsv2rgb": 296, "hsv_color_interpol": [61, 296], "hsv_text": 61, "htc": 312, "html": [62, 86, 96, 142, 148, 180, 290, 292, 314], "http": [38, 44, 45, 62, 73, 86, 96, 98, 99, 100, 101, 103, 104, 106, 122, 132, 135, 138, 142, 145, 148, 160, 166, 169, 173, 176, 229, 276, 277, 290, 291, 292, 295, 305, 314], "htttp": 86, "hue": 27, "hue_rang": [14, 27, 276], "huge": [106, 122, 142, 180, 306, 307], "human": [178, 276], "hundr": [154, 173, 174, 175, 226], "hybrid": 286, "hypercub": [22, 23, 89, 313], "hypotenus": 292, "i": [2, 3, 4, 5, 10, 11, 12, 14, 15, 16, 17, 18, 21, 22, 24, 25, 26, 27, 28, 29, 30, 32, 33, 34, 35, 36, 37, 38, 39, 40, 46, 47, 49, 53, 54, 56, 59, 60, 61, 62, 66, 68, 71, 72, 73, 74, 75, 76, 80, 82, 83, 86, 87, 88, 89, 93, 94, 96, 97, 98, 99, 100, 101, 103, 104, 105, 106, 122, 132, 134, 135, 137, 138, 142, 148, 166, 171, 172, 173, 176, 177, 179, 180, 225, 226, 227, 228, 229, 230, 231, 234, 237, 240, 246, 252, 255, 261, 267, 269, 271, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 288, 289, 290, 291, 292, 293, 294, 295, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 314, 315], "i8": 18, "i_ren": [15, 43, 45, 54, 293], "ibrahimani": [106, 306], "icar": 277, "icomoon": 278, "icon": [43, 44, 45, 46, 47, 48, 50, 51, 52, 53, 54, 55, 56, 164, 171, 183, 200, 225, 233, 271, 278, 293, 302, 306, 309, 312], "icon_fil": [43, 54], "icon_fnam": [15, 43, 54, 293], "icon_nam": 293, "iconnam": 293, "icosahedron": [289, 306], "icosahedron_mesh": 289, "icosahedron_vertic": 289, "id": [11, 93, 226, 273, 293, 294, 312], "id_mean": 290, "id_observ": [31, 290], "idea": [18, 97, 105, 109, 113, 117, 126, 129, 130, 134, 135, 137, 148, 154, 170, 177, 178, 179, 180, 181, 183, 185, 221, 228, 231, 235, 241, 246, 247, 250, 252, 256, 261, 264, 265, 268, 269, 274, 307], "ideal": [32, 109, 146, 249, 252, 255, 258, 267], "ident": [2, 3, 217, 273, 281], "identifi": [24, 118, 148, 218, 225, 233, 239, 241, 245, 257, 263, 266, 271], "idtypearrai": 296, "idx": [32, 45, 80, 82, 83, 291], "ie": [180, 182, 214, 281, 294], "iec": 276, "ieee": 269, "ifram": 291, "ignor": [161, 273, 283, 303], "iit": 179, "illumin": [71, 74, 269, 276], "illustr": [72, 250, 276], "im": 295, "imag": [4, 5, 14, 19, 24, 27, 28, 32, 37, 38, 45, 105, 109, 137, 142, 143, 148, 151, 152, 157, 167, 169, 171, 173, 177, 184, 193, 227, 228, 230, 244, 246, 255, 259, 267, 269, 270, 271, 273, 276, 278, 281, 282, 291, 293, 294, 295, 296, 302, 303, 306, 310, 312], "image_actor": [24, 273], "image_actor_i": 24, "image_actor_x": 24, "image_actor_z": 24, "image_buff": [86, 87, 291], "image_buffer_manag": 291, "image_buffer_nam": [86, 291], "image_buffer_repr": 148, "image_buffers_nam": 291, "image_encod": 148, "image_path": [44, 45, 293], "image_scal": [44, 45, 293], "imageactor": [273, 296], "imagebuffermanag": [148, 291], "imagebuffermang": 148, "imagecontainer2d": [54, 296, 302, 310], "imagedata": [293, 296], "imageflip": 296, "imageio": 282, "imagemanag": 291, "imagemaptocolor": 296, "imagereader2factori": 296, "imagereslic": 296, "imageri": 97, "imagesourc": 206, "imagin": 292, "imaginari": [40, 276], "img": [14, 54, 293, 296], "img_manag": [86, 87], "img_path": [54, 293], "img_url": [44, 45], "imit": 209, "immedi": [111, 237, 242], "immens": [133, 136, 254], "immers": [126, 134, 180, 276], "impact": [71, 248], "impl": 270, "impl_cod": [74, 76, 290], "implement": [28, 32, 71, 73, 74, 93, 107, 108, 109, 110, 111, 113, 114, 115, 116, 117, 118, 119, 120, 121, 124, 128, 130, 131, 133, 134, 135, 136, 140, 141, 142, 144, 145, 146, 147, 148, 149, 150, 155, 156, 158, 159, 161, 168, 170, 172, 173, 175, 178, 179, 180, 182, 192, 194, 197, 198, 200, 202, 203, 205, 206, 210, 213, 214, 216, 218, 219, 221, 222, 223, 226, 227, 230, 232, 233, 234, 236, 237, 238, 242, 243, 244, 246, 248, 249, 252, 253, 255, 256, 258, 259, 261, 266, 267, 271, 273, 276, 290, 291, 292, 297, 302, 307, 310, 312], "impli": [276, 315], "implicit": [71, 74, 234], "import": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 71, 72, 73, 74, 75, 76, 79, 80, 81, 82, 83, 86, 87, 88, 94, 96, 142, 146, 148, 149, 152, 155, 171, 181, 193, 196, 217, 232, 243, 249, 252, 255, 258, 261, 267, 268, 273, 276, 280, 289, 290, 292, 294, 295, 311, 312, 314], "import_fury_shad": [71, 74, 296], "importerror": 39, "imposs": [175, 226], "impostor": [69, 70, 89, 145, 173, 201, 313], "impress": 217, "improp": [251, 266], "improv": [35, 71, 97, 106, 107, 117, 122, 125, 127, 134, 135, 138, 139, 142, 144, 145, 147, 148, 151, 154, 157, 158, 163, 173, 174, 176, 179, 180, 194, 198, 205, 207, 210, 225, 226, 227, 229, 230, 232, 233, 235, 242, 245, 246, 248, 256, 260, 267, 269, 295, 304, 306, 307, 309, 311, 312, 314], "in_control_point": 59, "in_cp": [59, 275], "in_progress": [215, 225, 312], "in_tan": 62, "in_tang": [62, 275], "inabl": 147, "inaccur": 80, "inact": 293, "inactive_color": 293, "inbuilt": 131, "inch": [277, 282, 295], "incident": [314, 315], "inclin": 292, "includ": [15, 43, 44, 45, 46, 47, 50, 51, 52, 53, 54, 55, 56, 71, 73, 76, 94, 97, 105, 107, 108, 115, 125, 134, 137, 140, 141, 143, 144, 158, 164, 167, 176, 177, 189, 226, 228, 236, 239, 242, 245, 249, 257, 267, 269, 271, 280, 295, 309, 311, 314, 315], "include_first": 275, "include_last": 275, "inclus": 274, "incomplet": [62, 119, 129, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312], "inconsist": [114, 239, 248], "incorpor": [262, 269], "incorrect": 269, "incre_tim": [29, 33], "increas": [10, 11, 12, 26, 27, 36, 40, 71, 74, 80, 81, 82, 83, 93, 101, 103, 104, 106, 116, 122, 132, 142, 166, 221, 294, 295, 303, 304, 305, 306, 307, 308, 309, 310], "increment": [25, 29, 33, 266, 293, 296], "increment_callback": [293, 296], "inde": 234, "indent": 158, "independ": [151, 225, 226, 239, 242, 246, 248, 271, 303], "index": [11, 37, 54, 55, 72, 81, 83, 93, 96, 148, 176, 193, 227, 243, 281, 285, 286, 293, 311], "index2categori": [35, 36, 87], "index_info": 291, "india": [107, 108], "indian": [141, 179, 180], "indiana": 4, "indic": [5, 28, 35, 36, 81, 83, 93, 131, 188, 190, 274, 275, 278, 281, 286, 287, 289, 293, 294], "indigo": [47, 53], "indirect": 315, "indirectli": [155, 248, 257], "individu": [25, 28, 74, 80, 82, 83, 93, 118, 124, 127, 143, 146, 152, 171, 178, 181, 183, 189, 215, 221, 225, 267, 269, 270, 271, 273, 274, 293, 312], "industri": 179, "inerti": 93, "inertia": 93, "inertial_orn": 93, "inertial_po": 93, "inevit": 226, "infer": 246, "inferno": [255, 267, 273, 274, 276], "infin": 278, "infinit": [32, 171], "influenc": 33, "info": [11, 12, 105, 137, 144, 150, 154, 177, 224, 228, 314], "info_buff": [86, 87, 154, 291], "info_buffer_nam": [86, 291], "info_buffer_repr": 148, "info_buffer_s": 148, "inform": [12, 15, 37, 79, 81, 83, 93, 94, 96, 127, 148, 150, 154, 173, 180, 223, 225, 227, 235, 242, 253, 256, 258, 265, 269, 270, 271, 275, 276, 278, 286, 290, 291, 294, 295, 309], "informationinterdisciplinari": 278, "inher": [269, 271], "inherit": [119, 144, 167, 169, 239], "init": [272, 293, 296], "init_planet": 15, "initi": [5, 6, 7, 9, 10, 13, 15, 24, 25, 26, 29, 31, 33, 38, 39, 40, 45, 54, 59, 61, 62, 63, 64, 65, 67, 68, 80, 82, 83, 94, 98, 109, 113, 114, 115, 140, 152, 158, 171, 172, 178, 194, 205, 226, 233, 243, 254, 255, 257, 258, 260, 263, 264, 266, 267, 269, 271, 276, 283, 287, 291, 292, 293, 295, 296, 298, 306, 312], "initial_lin": 40, "initial_v": [52, 293], "initial_valu": [24, 30, 37, 53, 54, 56, 293], "initial_veloc": 33, "initial_vert": 40, "initial_vertic": [21, 25, 26, 29, 33], "initial_vertices2": 29, "initialis": [9, 13, 26, 43, 44, 45, 46, 50, 51, 52, 54, 55, 56, 75, 76, 281, 306], "initialise_skin": 13, "initialize_scen": 38, "initialize_skin": [13, 281, 296], "inject": 81, "inner": [51, 54, 273, 293], "inner_radiu": [51, 54, 293, 296], "inp": 294, "input": [24, 27, 37, 62, 68, 71, 74, 198, 202, 263, 273, 274, 276, 280, 293, 294, 295], "input_arrai": 294, "inr": 180, "insensit": 286, "insert": [27, 40, 290, 293], "insid": [20, 21, 26, 30, 74, 86, 139, 146, 148, 149, 152, 154, 163, 169, 171, 173, 175, 189, 192, 199, 201, 206, 220, 227, 230, 234, 240, 243, 249, 252, 253, 255, 264, 267, 269, 270, 275, 291, 295, 312], "insight": [154, 173, 271], "inspect_scen": [281, 296], "inspir": [161, 178, 179, 180], "instal": [86, 88, 97, 98, 99, 100, 101, 103, 104, 106, 122, 132, 138, 154, 166, 176, 197, 229, 276, 303, 304, 306, 307, 310, 311, 312, 314], "instanc": [31, 64, 93, 134, 142, 149, 154, 155, 173, 175, 203, 266, 271, 291, 293, 295], "instanti": 276, "instead": [17, 19, 32, 60, 64, 86, 114, 127, 145, 149, 152, 167, 178, 184, 185, 192, 197, 198, 201, 202, 205, 207, 209, 210, 213, 214, 218, 220, 221, 222, 226, 256, 270, 271, 275, 280, 291, 295], "institut": [108, 141, 179], "instruct": [71, 181, 234, 255, 267, 304, 307, 312], "instrument": 286, "int": [11, 12, 21, 24, 25, 30, 35, 36, 38, 45, 80, 81, 82, 83, 87, 93, 148, 184, 193, 197, 267, 273, 275, 276, 277, 278, 280, 281, 282, 283, 286, 287, 289, 290, 291, 293, 294, 295], "int16": [83, 276], "int64": 18, "int8": [80, 82], "int_": 276, "intact": 135, "integ": [43, 54, 197, 267, 273, 276, 286, 293], "integr": [97, 108, 114, 116, 124, 134, 135, 136, 145, 151, 173, 176, 179, 184, 201, 205, 206, 211, 218, 227, 229, 240, 257, 260, 263, 267, 271, 299, 309, 311, 312], "intel": 173, "intemporarydirectori": 45, "intend": [9, 13, 28, 74, 169, 191, 202, 204, 206, 212, 215, 235, 269, 271, 273, 310], "intens": [178, 258, 261, 264, 267, 268, 285], "inter": [154, 175], "interact": [2, 3, 6, 7, 8, 9, 10, 11, 12, 13, 14, 16, 19, 21, 22, 23, 25, 27, 28, 29, 30, 31, 32, 34, 35, 39, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 71, 72, 73, 74, 75, 76, 79, 80, 81, 82, 83, 84, 85, 87, 88, 89, 97, 107, 108, 112, 142, 148, 154, 159, 173, 182, 191, 198, 225, 255, 276, 291, 293, 295, 302, 303, 313], "interaction_callback": 296, "interactivi": 35, "interactor": [4, 5, 15, 17, 98, 152, 155, 243, 252, 255, 287, 295, 298], "interactor_styl": 295, "interactoreventrecord": 296, "interactorstyl": 296, "interactorstyleimag": 296, "interactorstyletrackballactor": 296, "interactorstyletrackballcamera": 296, "interactorstyleus": 296, "interatom": [147, 286], "interconnect": 71, "interdisciplinari": [22, 23, 89, 313], "interest": [28, 32, 72, 73, 105, 126, 137, 143, 149, 150, 167, 177, 179, 226, 228, 234, 246, 249, 258, 272], "interestingli": 146, "interfac": [4, 5, 15, 17, 24, 42, 97, 108, 135, 171, 194, 225, 230, 233, 237, 271, 276, 295, 313], "interior": 178, "interlac": 295, "intern": [69, 89, 129, 169, 180, 191, 212, 220, 225, 269, 274], "internet": [139, 148, 154, 173, 178], "interp": 273, "interpol": [14, 35, 36, 57, 58, 60, 64, 68, 72, 89, 172, 178, 181, 195, 198, 199, 202, 205, 208, 212, 214, 224, 226, 273, 276, 281, 285, 294, 296, 312, 313], "interpolat": 275, "interpolate_on": 282, "interpolated_valu": 62, "interpolateon": 200, "interpolationtest": [7, 193], "interpolationvalu": 62, "interpret": [72, 73, 133, 154, 173, 276], "interrupt": 315, "intersect": 74, "interv": [38, 93, 148, 242, 255, 291], "interval_tim": 291, "intervaltim": 296, "intervaltimerthread": 296, "intervent": 312, "interview": 180, "intimid": 168, "intric": [243, 266], "intrigu": 147, "introduc": [73, 179, 236, 242, 248, 260, 263, 271, 290], "introduct": [57, 58, 89, 179, 226, 313], "introductori": [140, 213, 224], "intuit": 73, "inv": [24, 27], "inv_bind_matrix": 281, "invalid": 263, "invas": 269, "invers": [24, 178, 212, 281], "inversebindmatrix": 212, "inversebindpos": 219, "invert": [214, 306, 311, 312], "invertbindmatric": 204, "invest": [258, 261], "investig": [194, 197, 200, 204, 222, 230, 233, 234, 236, 239, 251, 267, 271, 277, 312], "invis": [46, 53], "invok": [140, 149, 152, 175, 191, 222, 273, 291], "involv": [97, 107, 115, 117, 125, 128, 134, 147, 171, 178, 230, 233, 239, 240, 243, 246, 260, 266, 267, 271], "io": [4, 5, 15, 18, 19, 28, 37, 45, 76, 94, 160, 171, 173, 193, 296, 306, 310], "ior": [37, 72], "ior_param": 72, "iorp": 72, "ipc": [157, 173, 174, 175], "ipclayout": [157, 174], "ipynb": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 71, 72, 73, 74, 75, 76, 79, 80, 81, 82, 83, 86, 87, 88, 154], "iren": [11, 12, 14, 175, 287, 291, 293, 295, 296], "iren_callback": 295, "iresolut": 76, "iridescencedielectricspher": 193, "iridescencelamp": 193, "iridescencemetallicspher": 193, "iridescencesuzann": 193, "iridescentdishwithol": 193, "irrad": 214, "irrespect": 114, "is_bad_vers": 296, "is_coord": 294, "is_don": [10, 295, 296], "is_dragg": 293, "is_evalu": [65, 68, 275], "is_hetatm": 286, "is_inside_scene_at": [275, 296], "is_interpolat": [275, 296], "is_joint": 281, "is_rang": [274, 296], "is_select": [293, 296], "is_ui": [161, 296], "is_unlock": [291, 296], "isfram": 38, "isinst": 38, "ismrm": [269, 274], "isn": [48, 116, 179, 191, 221, 249, 267], "isotrop": [29, 285], "issu": [24, 30, 96, 97, 108, 110, 112, 113, 114, 116, 118, 119, 120, 121, 123, 124, 126, 127, 128, 129, 130, 133, 134, 135, 139, 142, 143, 149, 152, 154, 161, 173, 175, 179, 180, 181, 182, 184, 185, 186, 188, 193, 194, 197, 201, 202, 204, 205, 207, 209, 210, 213, 215, 218, 219, 220, 222, 225, 226, 233, 234, 237, 239, 242, 243, 245, 248, 249, 251, 252, 254, 256, 257, 258, 259, 262, 263, 264, 266, 267, 268, 269, 270, 271, 280, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 314], "issue38119": [145, 291], "istyl": 293, "ital": [24, 30, 273, 293, 296], "italicis": 293, "item": [30, 46, 47, 53, 59, 112, 263, 266, 271, 273, 275, 276, 293, 296], "items": [276, 296], "iter": [25, 36, 38, 40, 80, 81, 82, 93, 171, 252, 276, 291, 292], "iterationcount": 36, "itertool": [4, 5, 15, 17, 20, 21, 25, 28, 29, 31, 33, 40, 79, 80, 81, 82, 83, 93], "its": [5, 10, 14, 15, 21, 24, 27, 30, 46, 47, 50, 60, 63, 68, 74, 80, 82, 93, 96, 110, 114, 118, 121, 124, 129, 130, 140, 141, 147, 149, 152, 155, 161, 179, 180, 182, 194, 197, 210, 212, 219, 221, 226, 234, 235, 236, 237, 239, 241, 242, 243, 244, 246, 247, 248, 249, 250, 252, 255, 258, 261, 266, 267, 269, 270, 271, 273, 274, 275, 276, 280, 290, 293, 295, 315], "itself": [15, 59, 63, 71, 146, 149, 152, 171, 222, 225, 234, 237, 239, 264], "itsopen": 135, "j": [14, 21, 72, 73, 80, 81, 83, 165, 166, 180, 269, 271, 274, 286, 291, 310], "jain": [106, 306], "javascript": 180, "javier": [104, 106, 132, 138, 166, 176, 189, 201, 229, 305, 306, 308, 309, 310, 311, 312], "jean": 165, "jet": 276, "jhalak": [166, 310], "joao": 302, "joaodellagli": 249, "job": [146, 246, 267], "john": [71, 74], "johni": [229, 312], "join": [10, 14, 35, 36, 45, 71, 74, 87, 94, 98, 99, 100, 101, 103, 104, 105, 106, 122, 132, 137, 138, 166, 176, 177, 179, 225, 228, 229], "join_matric": 281, "joint": [65, 81, 83, 129, 135, 214, 269, 281], "joint_1": 65, "joint_2": 65, "joint_fix": [81, 83], "joint_frict": [81, 83], "joint_matric": 281, "joint_nod": 281, "joint_spher": [81, 83], "jointchildframeorient": 81, "jointtyp": [81, 83, 93], "jon": [101, 106, 303, 306], "joss": 310, "journal": [22, 23, 89, 269, 274, 278, 310, 313], "journal_network": 35, "journei": [135, 225, 226, 227, 230, 231, 255, 271, 312], "jo\u00e3o": 267, "jpeg": [19, 278, 282, 291, 293], "jpegread": 296, "jpegwrit": 296, "jpg": [4, 5, 15, 19, 278, 282, 293], "json": [184, 188, 190, 227, 306], "juli": [267, 308], "jump": [118, 178, 276], "jun": 148, "jupit": 15, "jupiter_actor": 15, "jupyt": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 71, 72, 73, 74, 75, 76, 79, 80, 81, 82, 83, 86, 87, 88, 89, 97, 145, 154, 173, 291], "just": [27, 31, 32, 40, 54, 74, 97, 142, 143, 146, 148, 155, 158, 173, 178, 180, 184, 187, 191, 208, 211, 218, 221, 222, 225, 234, 235, 237, 243, 258, 262, 265, 267, 275, 279, 290, 291, 293, 294, 314], "justif": [24, 30, 47, 53, 248, 271, 273, 293, 296, 302, 311], "justifi": [248, 269], "justificaiton": 271, "k": [14, 29, 32, 67, 80, 83, 96, 98, 99, 100, 101, 103, 104, 105, 106, 122, 132, 137, 138, 166, 176, 177, 228, 229, 258, 273, 274, 292, 294], "katz": [166, 310], "kde": [230, 246, 249, 252, 255, 258, 261, 264, 267, 302], "kde_actor": [255, 264], "kde_effect": [264, 267], "keep": [12, 25, 26, 29, 54, 82, 83, 93, 96, 119, 127, 129, 135, 156, 178, 180, 182, 200, 202, 205, 215, 221, 227, 232, 235, 238, 240, 244, 247, 255, 262, 273, 290, 295, 312, 314], "keep_default": 290, "kei": [12, 15, 24, 32, 35, 36, 46, 47, 53, 64, 66, 72, 73, 87, 148, 183, 194, 225, 233, 267, 273, 275, 281, 292, 293], "kept": [129, 179, 221, 226], "kernel": [230, 234, 246, 255, 258, 267], "kevin": [103, 304], "key_char": 293, "key_frames_bezi": 275, "key_frames_simpl": 275, "key_press": [293, 296], "key_press_callback": [293, 296], "keyboard": [183, 293], "keyfram": [57, 58, 89, 178, 184, 189, 192, 195, 199, 201, 202, 205, 207, 224, 226, 275, 312, 313], "keyframe_1": 59, "keyframe_2": 59, "keyframe_data": 62, "keyword": [276, 280, 292, 306, 312], "kharsan": [229, 312], "khrono": [62, 179, 184, 188, 196, 230, 278, 290], "khronoo": 9, "khronoosgroup": 193, "khronosgroup": [227, 278, 290], "kill": [86, 145, 148], "kind": [142, 154, 172, 173, 180, 206, 211, 230, 249, 267, 269, 293], "kindli": [25, 29], "kindlmann": 269, "knew": [27, 178, 179], "know": [71, 93, 97, 140, 142, 179, 180, 181, 183, 227, 230, 232, 238, 255, 265, 267], "known": [71, 172, 180, 225, 232, 267], "koai": [269, 274], "koch": 32, "kolkata": 108, "kotlin": 179, "koudoro": [101, 103, 104, 106, 122, 132, 138, 142, 166, 176, 184, 229, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312], "kuramoto": [154, 173], "kwarg": [273, 275, 280, 291, 292], "l": [72, 262, 269, 273, 274, 286, 294, 295], "l1": [46, 53], "l101": 142, "l112": 148, "l180": 154, "l2": [46, 53], "l20": 148, "l296": 148, "l43": 154, "l491": 148, "l776": 148, "l94": 169, "l_m": 265, "l_particl": 26, "lab": [61, 180, 186, 192, 226, 275, 276], "lab2rgb": 296, "lab2xyz": 296, "lab_color_interpol": [61, 296], "lab_text": 61, "label": [24, 28, 30, 37, 39, 43, 47, 53, 54, 61, 72, 73, 121, 124, 164, 173, 174, 175, 265, 269, 293, 295, 296, 303, 311, 314], "label_actor": 11, "label_posit": 14, "label_valu": 14, "labels_img": 39, "lack": [129, 134, 135, 152, 155, 158, 172, 180, 227, 235, 237, 267, 271], "lag": [32, 139, 198, 226], "lai": [171, 225, 266, 273, 283], "lambda": [269, 275], "lambertian": 113, "languag": [178, 179, 180], "lantern": 193, "laplac": 255, "laplacian": [255, 267], "laptop": 180, "larg": [27, 28, 36, 106, 122, 132, 138, 139, 142, 147, 152, 166, 186, 193, 229, 230, 235, 269, 276, 306, 307, 308, 309, 310, 312], "larger": [66, 254, 263, 271, 295], "largest": 294, "last": [14, 37, 113, 116, 117, 118, 126, 155, 161, 167, 169, 178, 180, 181, 182, 185, 187, 204, 206, 213, 214, 221, 225, 234, 238, 239, 248, 262, 267, 270, 275, 280, 292, 293, 294, 295, 312, 314], "last_render_tim": [295, 296], "lastli": [5, 19, 93, 180, 239, 270], "lat": 5, "latenc": [86, 88, 142], "later": [8, 40, 60, 61, 63, 121, 127, 141, 148, 179, 187, 188, 232, 235, 238, 240, 241, 243, 252, 264, 266, 267, 269, 270, 280, 290], "lateral_frict": 93, "lateralfrict": [80, 82, 83, 93], "latest": [96, 249, 258, 308, 312], "latex": [97, 169, 312], "latitud": [5, 273, 289, 292], "latlong_coordin": 5, "latter": [173, 201], "layer": [73, 109, 285], "layout": [36, 41, 42, 89, 139, 140, 143, 145, 146, 155, 157, 161, 167, 169, 171, 173, 175, 176, 273, 296, 305, 306, 310, 311, 312, 313], "ld": 74, "lead": [93, 155, 249, 258, 266, 267, 271, 286, 309, 310, 314], "leaf": 32, "learn": [67, 111, 142, 168, 170, 178, 179, 180, 183, 209, 230, 232, 249, 255, 258, 264, 267, 276], "learnt": 141, "least": [37, 62, 151, 174, 178, 179, 234, 244], "leav": [161, 255, 258, 261, 267, 276, 312, 314], "lectur": 179, "led": [149, 178, 180, 207, 244, 251, 257, 266, 271], "left": [11, 14, 24, 27, 30, 43, 54, 56, 119, 147, 152, 184, 185, 187, 225, 239, 255, 273, 293, 294, 295, 309], "left_btn_press": 291, "left_btn_releas": 291, "left_button_click": [293, 296], "left_button_click_callback": [293, 296], "left_button_drag": [293, 296], "left_button_press": [293, 296], "left_button_releas": [293, 296], "left_button_release_callback": [293, 296], "left_click_callback": [11, 14, 293, 296], "left_click_callback2": [293, 296], "left_click_callback_mosa": 14, "left_disk_ratio": [293, 296], "left_disk_valu": [293, 296], "left_mouse_click": [191, 225], "left_move_left": [293, 296], "left_move_right": [293, 296], "left_release_callback": [293, 296], "left_release_callback2": [293, 296], "left_x_posit": [293, 296], "leftbuttonpressev": [11, 14, 291], "leftbuttonreleaseev": 291, "legarreta": [101, 106, 303, 306], "len": [21, 25, 26, 28, 29, 33, 35, 36, 40, 45, 79, 87, 273, 291], "len_vert": 40, "length": [13, 24, 27, 28, 30, 37, 49, 54, 59, 65, 68, 114, 226, 235, 273, 274, 275, 278, 281, 289, 292, 293, 294, 296], "lenix": [107, 122, 132, 134, 138, 307, 308, 309], "lenixlobo": [106, 134, 306], "lepi": 292, "lerp": 296, "less": [4, 21, 40, 148, 149, 151, 154, 178, 197, 206, 243, 246, 269, 270, 286, 295], "lesson": 180, "let": [4, 5, 10, 11, 12, 14, 15, 17, 20, 21, 24, 26, 27, 28, 31, 32, 33, 35, 36, 37, 40, 43, 44, 45, 51, 52, 54, 64, 71, 72, 73, 75, 76, 94, 96, 97, 145, 148, 154, 230, 240, 242, 243, 246, 252, 258, 264, 290, 307], "letter": [271, 314], "level": [20, 32, 178, 180, 234, 238, 269, 270, 273, 276, 285], "leverag": 134, "lfd": 292, "li": [185, 273], "liabil": 315, "liabl": 315, "liam": [106, 122, 306, 307], "lib": [18, 142, 154, 169, 173, 175, 176, 296, 311], "libavdevic": [86, 88], "libavfilt": [86, 88], "libopu": [86, 88], "librari": [44, 45, 73, 77, 86, 88, 89, 96, 97, 98, 99, 100, 101, 103, 104, 105, 106, 122, 132, 137, 138, 140, 141, 142, 154, 166, 167, 176, 177, 179, 180, 184, 228, 229, 230, 234, 271, 282, 306, 310, 311], "libvpx": [86, 88], "licens": [280, 314], "lie": 283, "life": [96, 133, 142, 178, 179, 237], "light": [17, 37, 71, 72, 74, 76, 111, 113, 115, 178, 184, 205, 213, 224, 227, 265, 269, 285, 290], "light_attenu": 71, "lightattenu": [71, 74], "lightcolor0": [71, 74, 205, 210, 213], "lightspunctuallamp": 193, "lightweight": 180, "like": [11, 12, 14, 19, 24, 40, 71, 93, 101, 103, 104, 106, 108, 121, 122, 127, 132, 133, 135, 136, 138, 140, 141, 143, 146, 152, 154, 158, 166, 169, 170, 173, 176, 179, 184, 201, 207, 208, 216, 217, 218, 222, 226, 227, 229, 230, 235, 237, 243, 246, 249, 257, 262, 264, 267, 269, 270, 271, 280, 293, 294, 295, 314], "lille1": 277, "limit": [73, 86, 134, 135, 147, 158, 188, 190, 197, 198, 227, 245, 249, 252, 293, 304, 312, 315], "linalg": [21, 24, 27], "line": [14, 15, 21, 24, 26, 27, 29, 33, 35, 36, 39, 40, 54, 56, 59, 86, 87, 96, 105, 135, 137, 142, 154, 159, 172, 177, 179, 180, 182, 185, 191, 194, 196, 197, 206, 209, 216, 225, 228, 234, 237, 238, 239, 243, 253, 255, 257, 264, 267, 269, 274, 275, 276, 293, 294, 295, 296, 303, 306, 311], "line_actor": [21, 33], "line_color": [39, 296], "line_polydata": 294, "line_slider_i": [24, 30, 53, 54], "line_slider_label_i": [24, 30], "line_slider_label_x": [24, 30], "line_slider_label_z": [24, 30], "line_slider_x": [24, 30, 53, 54], "line_slider_z": [24, 30], "line_spac": 293, "line_width": [54, 293, 296], "linear": [54, 56, 60, 61, 66, 121, 189, 195, 205, 226, 234, 237, 258, 267, 269, 273, 275], "linear_anim": 66, "linear_interpol": [66, 296], "linear_text": 61, "linearextrusionfilt": 296, "linearinterpol": 202, "linearli": [29, 66, 275], "linedoubleslider2d": [296, 306], "lines_actor": [35, 36, 87], "lines_to_vtk_polydata": 296, "lines_vert": 40, "lineslider2d": [24, 30, 37, 49, 53, 54, 56, 124, 189, 239, 296, 306], "linewidth": [15, 21, 26, 27, 29, 33, 36, 40, 273, 274, 286, 296, 303], "link": [74, 83, 93, 134, 135, 146, 150, 154, 171, 172, 173, 188, 225, 226, 227, 251, 269, 271, 290, 292, 302, 303, 304, 312], "link_height": [81, 83, 93], "link_mass": [81, 83, 93], "link_radii": [81, 83], "link_shap": [81, 83], "linkcollisionshapeindic": [81, 83, 93], "linkdirect": [81, 83, 93], "linkheight": 93, "linkindex": 93, "linkinertialframeorient": [81, 83, 93], "linkinertialframeorn": [81, 83, 93], "linkinertialframeposit": [81, 83, 93], "linkjointaxi": [81, 83, 93], "linkjointtyp": [81, 83, 93], "linkmass": [81, 83, 93], "linkorient": [81, 83, 93], "linkparentindic": [81, 83, 93], "linkposit": [81, 83, 93], "linkradii": 93, "linkvisualshapeindic": [81, 83, 93], "linspac": [25, 29, 72], "linux": [86, 88, 96, 97, 142, 307], "list": [6, 8, 15, 25, 26, 27, 28, 30, 31, 39, 45, 46, 47, 50, 53, 54, 55, 59, 60, 66, 72, 73, 81, 83, 93, 105, 112, 135, 137, 141, 148, 151, 154, 155, 177, 178, 179, 180, 184, 202, 228, 265, 269, 272, 273, 275, 276, 278, 280, 281, 282, 283, 285, 290, 291, 292, 293, 294, 295, 297, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 314, 315], "list_box": 293, "list_gltf_sample_model": 296, "list_of_actor": 61, "list_particl": 26, "listbox": [41, 42, 49, 54, 89, 293, 296, 305, 310, 313], "listbox2d": [49, 54, 55, 121, 127, 135, 242, 266, 271, 296, 306, 307, 312], "listbox_1": 49, "listbox_2": 49, "listbox_exampl": 55, "listboxitem": 293, "listboxitem2d": [135, 296, 306], "literatur": 265, "littl": [32, 36, 142, 143, 210, 226, 258, 261, 314], "live": [86, 88, 97, 273], "ll": [14, 15, 24, 31, 32, 40, 43, 54, 56, 87, 139, 141, 142, 144, 147, 148, 150, 151, 153, 154, 155, 156, 157, 159, 160, 162, 163, 165, 168, 170, 174, 179, 188, 190, 196, 202, 214, 231], "load": [4, 5, 14, 15, 18, 19, 24, 28, 30, 37, 71, 76, 148, 171, 176, 178, 180, 184, 193, 196, 199, 223, 247, 273, 281, 282, 289, 293, 296, 306, 311, 312], "load_camera": [281, 296], "load_cubemap_textur": [37, 296], "load_imag": [4, 5, 15, 19, 45, 143, 296, 306], "load_io": 193, "load_mem_resourc": [148, 291, 296], "load_mesh": [281, 296], "load_nifti": 28, "load_polydata": [4, 18, 76, 94, 296], "load_shad": 296, "load_sprite_sheet": [45, 296], "load_text": 296, "loader": [179, 184, 227], "loadtxt": [35, 36, 87], "lobo": [107, 122, 132, 134, 138, 307, 308, 309], "local": [39, 88, 180, 206, 273, 288, 293, 309, 314], "local_track": 39, "localhost": [86, 291], "localtrack": 39, "locat": [5, 37, 83, 142, 148, 169], "locationon": 5, "locationthre": 5, "locationtwo": 5, "lock": [93, 148, 291, 295, 296], "lock_curr": [10, 295, 296], "lockdown": 108, "lod": [36, 40, 273], "lod_point": 273, "lod_points_s": 273, "lodactor": [273, 296], "log": [278, 295], "logic": [80, 83, 111, 149], "logo": [44, 45, 173, 312], "lon": 5, "long": [113, 121, 149, 152, 193, 294], "longer": 28, "longitud": [5, 273, 289, 292], "look": [9, 27, 32, 71, 109, 110, 114, 117, 121, 125, 126, 127, 129, 130, 131, 142, 146, 148, 151, 152, 154, 169, 170, 179, 180, 184, 188, 193, 200, 201, 206, 209, 216, 218, 219, 233, 235, 242, 246, 252, 253, 255, 258, 260, 262, 263, 264, 267, 269, 270, 273, 314], "lookup": [14, 273, 274, 276], "lookup_colormap": [14, 27, 273, 274], "lookup_t": [273, 276], "lookupt": [276, 296], "loop": [10, 14, 32, 60, 68, 88, 93, 172, 198, 225, 226, 255, 267, 273, 275, 281, 293, 296, 312], "loopsubdivisionfilt": 296, "loopthrough": [166, 310], "loss": 315, "lost": 179, "lot": [107, 115, 117, 125, 134, 139, 142, 146, 148, 151, 154, 158, 161, 178, 179, 180, 181, 189, 200, 205, 206, 224, 234], "love": [133, 178, 180], "low": [28, 30, 86, 88, 142, 173, 178, 234, 258, 263, 267, 273, 276, 282, 309], "low_rang": [274, 296], "lower": [21, 25, 71, 117, 225, 239, 275, 280, 293], "lower_xbound": 25, "lower_ybound": 25, "luck": [234, 243, 249, 255, 261, 268], "lucki": 178, "luckili": 71, "lumin": 178, "lut": [14, 294, 309], "lut_cmap": 27, "lzw": 282, "m": [86, 87, 139, 141, 142, 145, 148, 154, 156, 168, 171, 178, 179, 231, 232, 235, 238, 244, 250, 259, 262, 265, 269, 271, 273, 275, 286, 289, 291, 314], "m1": 33, "m2": 33, "m_constant": 15, "m_expon": 15, "m_l": 262, "m_v": 25, "mac": [97, 303], "machin": [32, 142, 180, 277, 304, 314], "maco": [86, 87, 88, 96, 103, 142, 151, 157, 173, 197, 304], "macro": 230, "macromolecular": 172, "made": [11, 17, 28, 36, 72, 74, 83, 125, 129, 139, 140, 141, 142, 143, 145, 147, 148, 150, 151, 153, 159, 163, 168, 173, 178, 179, 180, 181, 184, 189, 194, 201, 205, 207, 225, 235, 236, 237, 238, 239, 241, 243, 244, 246, 247, 248, 249, 250, 257, 260, 262, 264, 267, 269, 270, 271, 273, 305], "magfilt": [234, 237], "magnet": [22, 23, 29, 89, 269, 274, 313], "magnif": [28, 173, 295, 312], "magnifi": 295, "magnitud": 273, "maharshi": 302, "maharshigor": [229, 302, 312], "mai": [27, 40, 60, 64, 67, 74, 93, 135, 158, 173, 179, 211, 225, 227, 237, 249, 255, 256, 267, 273, 280, 288, 294, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 314, 315], "mail": [98, 99, 100, 101, 103, 104, 105, 106, 122, 132, 137, 138, 148, 166, 176, 177, 178, 180, 228, 229, 314], "mailmap": 314, "main": [10, 24, 44, 45, 61, 65, 72, 86, 87, 88, 110, 112, 113, 114, 115, 119, 123, 126, 130, 142, 146, 148, 149, 152, 154, 171, 173, 192, 199, 202, 205, 225, 226, 234, 236, 237, 247, 254, 256, 258, 269, 270, 271, 273, 274, 275, 281, 293, 296, 314], "main_anim": [7, 281, 296], "main_arm": 65, "main_arm_anim": 65, "main_dir_uncertainti": [269, 296], "main_timelin": [7, 192], "mainli": [114, 118, 121, 129, 130, 132, 138, 166, 176, 225, 229, 255, 256, 264, 266], "maint": 314, "maintain": [114, 167, 186, 189, 192, 201, 205, 293], "maintain_aspect": 293, "mainten": [99, 100, 132, 138, 166, 176, 229, 253, 299, 300, 301, 314], "major": [80, 82, 98, 99, 100, 101, 103, 104, 106, 109, 112, 116, 118, 119, 121, 122, 123, 124, 127, 129, 130, 132, 133, 138, 141, 144, 161, 166, 176, 229, 242, 245, 250, 260, 263, 267, 276, 280, 294], "make": [5, 11, 12, 13, 15, 17, 24, 27, 32, 43, 51, 54, 57, 58, 59, 63, 65, 66, 68, 69, 70, 89, 96, 97, 108, 111, 112, 113, 114, 115, 117, 118, 120, 123, 125, 126, 128, 131, 135, 136, 140, 141, 144, 148, 150, 152, 153, 154, 155, 164, 165, 167, 170, 171, 172, 173, 174, 178, 179, 180, 183, 184, 191, 192, 195, 197, 198, 200, 201, 205, 206, 218, 220, 221, 226, 232, 234, 235, 237, 239, 240, 241, 242, 243, 244, 247, 249, 250, 252, 253, 254, 255, 256, 257, 259, 260, 262, 263, 264, 265, 266, 267, 269, 270, 271, 275, 276, 277, 290, 293, 294, 306, 312, 313, 314], "makefil": 96, "maker": 145, "malfunct": [239, 271], "manag": [9, 10, 11, 12, 13, 14, 28, 37, 38, 43, 44, 45, 51, 52, 53, 55, 61, 62, 63, 66, 68, 75, 76, 80, 81, 82, 106, 107, 108, 132, 140, 145, 148, 149, 154, 155, 157, 163, 173, 174, 179, 182, 185, 186, 188, 191, 192, 193, 194, 197, 206, 215, 221, 223, 225, 232, 237, 240, 242, 243, 245, 249, 252, 253, 255, 257, 261, 266, 267, 270, 287, 291, 293, 295, 304, 305, 306, 308, 312, 314], "mandatori": [96, 148, 163, 178, 291], "mani": [11, 12, 20, 24, 27, 28, 32, 54, 105, 108, 137, 142, 149, 152, 170, 177, 179, 180, 197, 225, 228, 230, 255, 273, 274, 276, 287, 292, 302, 314], "manifest_pbr": [37, 72, 296], "manifest_principl": [73, 296], "manifest_standard": [296, 311], "manipul": [15, 19, 33, 74, 114, 152, 159, 185, 186, 194, 205, 286], "manner": [112, 273, 283], "manual": [6, 64, 93, 135, 155, 185, 188, 194, 200, 203, 213, 215, 265, 269, 270, 314], "map": [15, 22, 23, 24, 27, 28, 37, 50, 71, 74, 89, 172, 174, 175, 178, 227, 265, 269, 270, 273, 274, 276, 278, 282, 292, 313], "map_coordinates_3d_4d": 296, "mapper": [76, 150], "maptlotlib": 276, "marc": [101, 106, 122, 176, 303, 306, 307, 311], "march": [74, 107, 109, 111, 113, 134, 269], "margin": [246, 295], "margin_factor": 295, "mark": [133, 136, 263, 314], "markdown": 306, "marker": [22, 23, 31, 64, 89, 139, 145, 146, 166, 173, 174, 296, 310, 313, 314], "marker_opac": [31, 273], "marker_symbol": 34, "markup": 279, "marreddi": [138, 309], "mars_actor": 15, "marssi": [106, 306], "mask": [39, 273], "mass": [15, 82, 93], "massiv": 226, "master": [45, 270, 303, 306, 309, 314], "mat4": 74, "mat_id": 281, "match": [178, 198, 235, 260, 264, 269, 270, 271, 276, 278], "materi": [6, 37, 72, 73, 138, 176, 179, 188, 223, 281, 296, 309, 311, 312, 315], "material_param": [72, 73], "materialsvariantssho": 193, "math": [5, 32, 36, 115, 117, 147, 168, 170, 178, 238, 269, 292], "mathemat": [71, 74, 117, 269], "mathwork": 276, "mathworld": 292, "matlab": [276, 292], "matlabcentr": 276, "matlplotlib": 277, "matplotlib": [96, 169, 252, 267, 270, 272, 273, 274, 276, 277, 304], "matplotlib_figure_to_numpi": 296, "matric": [186, 204, 207, 208, 210, 212, 281], "matrix": [14, 27, 30, 40, 74, 80, 82, 93, 118, 119, 182, 202, 204, 212, 214, 217, 219, 235, 241, 244, 252, 256, 269, 273, 274, 276, 281, 292, 294, 312], "matrix3x3": 296, "matrix4x4": 296, "matter": [63, 269, 271, 276], "max": [14, 25, 27, 28, 32, 86, 178, 180, 203, 269, 273, 276, 281, 293], "max_cent": [274, 296], "max_column": 293, "max_iter": 36, "max_iteract": 36, "max_lin": 293, "max_peel": [275, 295], "max_queue_s": [86, 291], "max_siz": [151, 291], "max_val": [52, 293], "max_valu": [24, 30, 37, 53, 54, 56, 293], "max_window_s": [86, 148, 291], "maxforc": 81, "maxim": 276, "maximum": [5, 71, 86, 149, 206, 251, 258, 269, 273, 274, 275, 276, 281, 291, 293, 295], "mayb": [148, 179, 255, 258, 265, 270, 294], "mb": [1, 23, 42, 58, 70, 78, 85, 90, 278, 313], "mcvcmatrix": 74, "md": [96, 314], "md5": [106, 306], "mde": [154, 173], "me": [43, 54, 107, 108, 109, 114, 116, 118, 125, 126, 127, 130, 133, 136, 139, 140, 147, 148, 150, 156, 161, 170, 178, 179, 180, 181, 184, 187, 197, 206, 209, 234, 237, 239, 243, 244, 249, 252, 254, 255, 258, 261, 264, 265, 267, 268], "mean": [14, 24, 26, 32, 36, 64, 80, 81, 82, 83, 86, 93, 135, 140, 146, 149, 152, 167, 169, 171, 178, 230, 240, 243, 269, 273, 275, 283, 285, 294, 314], "meant": [146, 152, 280], "meantim": 149, "meanwhil": [145, 148, 151, 250, 263], "measur": [269, 274], "medicin": [269, 274], "medium": [26, 29, 142, 148], "meet": [107, 108, 111, 130, 139, 140, 141, 143, 146, 147, 149, 152, 153, 155, 156, 158, 161, 162, 165, 167, 169, 170, 172, 173, 181, 182, 190, 198, 199, 200, 201, 202, 204, 213, 214, 217, 230, 231, 232, 236, 237, 238, 239, 241, 245, 247, 250, 252, 255, 256, 261, 269, 274, 314], "megabyt": 180, "meha": [176, 311], "mehabhalodiya": 163, "melina": [122, 132, 307, 308], "melpomen": 102, "mem": [1, 23, 42, 58, 70, 78, 85, 90, 313], "member": [136, 141, 156, 162, 164, 293], "memori": [11, 12, 86, 142, 145, 148, 151, 154, 157, 163, 173, 174, 175, 197, 205, 234, 269, 276, 291, 295], "memoryview": 142, "memview": 142, "menger": 32, "mention": [18, 60, 119, 146, 178, 180, 185, 205, 209, 210, 220, 221, 222, 225, 226, 234, 238, 255, 265, 270, 306], "mentor": [107, 108, 109, 111, 112, 114, 116, 117, 118, 119, 126, 129, 130, 133, 135, 136, 139, 140, 141, 142, 144, 146, 147, 148, 150, 153, 156, 160, 161, 162, 163, 165, 170, 172, 174, 179, 181, 184, 185, 187, 200, 206, 209, 218, 221, 230, 232, 235, 237, 240, 243, 244, 245, 246, 247, 249, 250, 252, 254, 255, 258, 261, 264, 265, 266, 267, 268, 270, 271], "mentorship": 133, "menu": 293, "menu_opac": 293, "menu_text_color": 293, "menu_toggle_callback": [293, 296], "merchant": 315, "mercury_actor": 15, "merg": [120, 123, 126, 130, 134, 145, 146, 149, 152, 155, 157, 160, 161, 162, 164, 167, 168, 169, 170, 171, 175, 179, 184, 188, 190, 192, 193, 195, 196, 197, 210, 211, 215, 216, 217, 223, 225, 226, 227, 238, 241, 242, 250, 251, 256, 262, 263, 264, 267, 268, 269, 271, 290, 306, 309, 312, 314], "mergeabl": [189, 190], "merl": 73, "mesa": [311, 312], "mesh": [6, 71, 74, 180, 184, 204, 212, 227, 269, 281, 292], "mesh_id": 281, "meshgrid": 25, "mess": [148, 180], "messag": [10, 11, 14, 20, 21, 24, 25, 26, 29, 30, 33, 43, 54, 76, 79, 80, 81, 82, 83, 94, 148, 234, 280, 293, 296, 312], "messia": [139, 166, 176, 229, 310, 311, 312], "met": [184, 315], "metal": [37, 72, 73, 227, 285], "metalroughspher": 193, "metalroughspheresnotextur": 193, "method": [6, 7, 9, 12, 13, 14, 24, 27, 30, 32, 40, 46, 47, 53, 57, 59, 61, 67, 71, 74, 79, 80, 81, 82, 83, 89, 93, 110, 112, 114, 116, 119, 121, 130, 131, 134, 135, 142, 143, 145, 146, 148, 149, 150, 152, 154, 155, 157, 158, 161, 171, 173, 175, 178, 181, 182, 184, 187, 188, 193, 200, 205, 209, 210, 211, 220, 223, 226, 227, 234, 237, 239, 240, 243, 246, 264, 267, 269, 271, 273, 274, 275, 276, 280, 284, 286, 291, 294, 295, 306, 310, 311, 312], "methodolog": 269, "methodologi": 266, "meticul": 233, "metric": [22, 23, 71, 74, 89, 270, 313], "meval": 28, "mevec": 28, "michel": 165, "mid": 153, "mid_ptr": 293, "mid_track_radiu": [293, 296], "middl": [14, 30, 273, 293, 304], "middle_btn_press": 291, "middle_btn_releas": 291, "middle_button_click_callback": [293, 296], "middle_button_release_callback": [293, 296], "middlebuttonpressev": 291, "middlebuttonreleaseev": 291, "might": [9, 13, 59, 62, 64, 71, 198, 225, 247, 262, 266, 269, 270, 271, 276, 314], "migrat": [138, 229, 309, 312], "mihir": [166, 310], "milesecond": [87, 291], "mileston": [115, 263], "million": [146, 173], "millisecond": [17, 20, 25, 26, 29, 33, 36, 40, 76, 86, 291], "min": [14, 27, 32, 203, 269, 273, 276, 281, 293], "min_cent": [274, 296], "min_separation_angl": 39, "min_val": [52, 293], "min_valu": [24, 30, 37, 53, 54, 56, 293], "mind": [129, 180, 182, 232, 258, 261, 264], "minfilt": [234, 237], "mini": 180, "miniconda": [303, 305], "minim": 195, "minimalist": [97, 180, 218], "minimum": [151, 154, 173, 176, 206, 226, 258, 275, 276, 281, 293, 311], "minor": [109, 120, 139, 143, 152, 158, 161, 174, 238, 244, 267, 268, 269, 280, 309, 312], "minut": 180, "mipmap": 270, "mipmap_on": 282, "mipmapon": 200, "misalign": [239, 264, 271], "misc": 172, "miscellan": 172, "mislead": 276, "mismatch": [124, 311], "misplac": 112, "misposit": [266, 271], "misri": [140, 166, 171, 176, 229, 302, 310, 311, 312], "miss": [62, 134, 181, 211, 212, 242, 243, 264, 265, 267, 302, 303, 306, 310, 311, 312], "mission": 178, "mistak": 161, "misus": 264, "mit": 140, "mitig": [148, 258, 267], "miu": 15, "mjpeg": [84, 85, 86, 89, 173, 291, 313], "mm": 293, "mniobjectread": 296, "mniobjectwrit": 296, "mobil": [164, 312], "mobiu": 276, "mode": [32, 36, 80, 81, 82, 83, 86, 114, 133, 182, 183, 193, 196, 197, 216, 225, 227, 248, 271, 275, 276, 278, 281, 286, 293, 295], "mode_panel": [216, 225, 312], "mode_text": [216, 225, 312], "model": [4, 6, 7, 9, 13, 71, 72, 73, 74, 75, 76, 94, 108, 110, 111, 113, 115, 131, 134, 141, 144, 147, 150, 153, 154, 156, 162, 170, 172, 173, 178, 181, 184, 188, 190, 193, 196, 201, 204, 208, 212, 214, 217, 219, 223, 267, 269, 278, 281, 285, 286, 309, 310, 312], "model_nam": 278, "modelsuzann": 309, "modi": [106, 306], "modif": [135, 139, 142, 173, 205, 233, 236, 280, 315], "modifi": [11, 25, 118, 140, 146, 148, 182, 184, 188, 190, 191, 193, 194, 200, 201, 221, 222, 225, 236, 262, 276, 281, 292, 293, 302, 312], "modul": [24, 25, 26, 28, 29, 30, 32, 33, 37, 64, 71, 72, 73, 74, 89, 93, 138, 140, 142, 144, 146, 148, 152, 153, 154, 155, 156, 159, 162, 163, 164, 165, 167, 168, 169, 171, 172, 173, 175, 176, 222, 226, 227, 229, 264, 268, 273, 276, 279, 286, 289, 296, 302, 303, 309, 310, 311, 312, 314], "modular": [249, 267], "moham": [178, 196, 197, 199, 202, 206, 214, 226, 229, 312], "molecul": [147, 150, 159, 168, 172, 269, 296], "molecular": [141, 150, 153, 156, 159, 162, 165, 168, 172, 176, 296, 311], "molecular_viz_vtk": 150, "molecule1": 286, "molecule2": 286, "molecule_actor": 286, "moment": [179, 248, 269], "mondai": 258, "monitor": [143, 149, 154, 171, 173], "monkei": [145, 173, 291], "month": [121, 134, 180, 240, 258, 267], "moon": [4, 180], "moon_actor": 4, "moon_filenam": 4, "moon_imag": 4, "more": [12, 14, 24, 27, 28, 31, 36, 37, 39, 71, 74, 86, 88, 93, 94, 111, 113, 116, 117, 118, 121, 134, 135, 141, 142, 148, 152, 154, 157, 158, 159, 161, 162, 163, 165, 167, 171, 172, 173, 180, 181, 185, 194, 195, 197, 201, 204, 205, 206, 208, 209, 210, 214, 220, 222, 224, 226, 232, 234, 238, 241, 243, 247, 248, 249, 250, 252, 253, 255, 256, 258, 260, 263, 265, 267, 268, 269, 270, 271, 273, 275, 276, 277, 286, 290, 291, 293, 294, 295, 306, 310, 314], "moreov": [73, 134, 276], "morn": 179, "morph": [0, 1, 89, 196, 199, 219, 226, 281, 312, 313], "morph_anim": [9, 281, 296], "morph_timelin": 9, "morphprimitivestest": 193, "morphstresstest": [9, 193], "moselei": 32, "mosquitoinamb": 193, "most": [71, 107, 113, 121, 130, 155, 156, 173, 180, 182, 197, 206, 215, 225, 227, 232, 235, 250, 253, 259, 261, 265, 297], "mostli": [158, 213], "motion": [15, 22, 23, 59, 68, 81, 89, 159, 172, 198, 206, 226, 275, 309, 313], "motion_path_r": [62, 68, 275, 296], "motiv": [179, 180, 249], "mous": [12, 14, 108, 130, 135, 148, 182, 185, 187, 197, 200, 209, 225, 255, 293, 312], "mouse_id": 291, "mouse_mov": [148, 291], "mouse_move_callback": [293, 296], "mouse_move_callback2": [293, 296], "mouse_posit": 293, "mouse_weel": [148, 291], "mousemoveev": [200, 295], "mousewheelbackwardev": 175, "mousewheelforwardev": 175, "movabl": 182, "move": [9, 12, 14, 21, 24, 26, 32, 33, 36, 63, 64, 81, 93, 114, 118, 119, 124, 127, 175, 178, 180, 197, 206, 211, 214, 216, 221, 225, 234, 237, 242, 252, 276, 293, 305, 309, 312, 314], "move_caret_left": [293, 296], "move_caret_right": [293, 296], "move_handl": [293, 296], "move_left": [293, 296], "move_right": [293, 296], "movement": [32, 74, 200, 254, 267, 293], "movi": 140, "mp": 72, "mp4": [38, 220, 226, 275, 312], "mpa": 269, "mr": [269, 274], "mri": 269, "ms_interact": [86, 291], "ms_jpeg": 291, "ms_stream": [86, 291], "msg22935": 148, "msg388287": 148, "msm": 165, "much": [27, 28, 71, 109, 119, 134, 180, 184, 185, 226, 238, 240, 253, 265, 273, 295], "multi": [80, 81, 93, 202, 223, 227, 269, 293], "multi_sampl": [36, 226, 275, 295, 312], "multi_select": 293, "multibodi": [79, 80, 81, 82, 83, 93, 127], "multidimension": [276, 291], "multidimensionalbuff": [151, 291], "multipl": [0, 1, 7, 10, 14, 60, 67, 73, 89, 97, 104, 106, 111, 113, 118, 121, 122, 124, 129, 131, 134, 135, 147, 152, 155, 159, 161, 166, 172, 175, 184, 190, 191, 192, 199, 212, 217, 219, 223, 226, 227, 229, 267, 273, 274, 275, 280, 286, 287, 293, 295, 302, 305, 306, 307, 310, 312, 313], "multiplatform": 97, "multiple_bond": 286, "multipli": [15, 118, 182, 269, 292, 294], "multiprocess": [86, 87, 145, 148, 154, 173, 291], "multisdf": 134, "multiselect": [54, 55, 161, 293], "multithread": [0, 1, 89, 97, 175, 295, 312, 313], "multiuvtest": 193, "mummyisland": 178, "murrai": 246, "must": [28, 31, 60, 62, 63, 64, 67, 93, 124, 142, 148, 154, 171, 173, 175, 226, 237, 270, 273, 275, 278, 284, 285, 286, 290, 293, 315], "mx3": 294, "my": [32, 110, 112, 113, 114, 116, 118, 119, 121, 124, 127, 129, 130, 133, 134, 135, 136, 139, 142, 144, 145, 146, 147, 148, 150, 151, 152, 153, 154, 155, 156, 159, 160, 161, 162, 163, 164, 165, 167, 168, 169, 170, 171, 172, 173, 174, 175, 180, 181, 182, 183, 184, 187, 189, 193, 200, 206, 209, 218, 221, 225, 226, 227, 230, 231, 232, 233, 235, 236, 237, 238, 239, 240, 242, 243, 244, 245, 246, 247, 249, 250, 252, 254, 255, 256, 257, 258, 259, 260, 261, 262, 264, 265, 266, 267, 268, 269, 270, 271, 312], "my_cub": 18, "my_polydata": 18, "my_triangl": 18, "my_vertic": 18, "myriad": 142, "myself": [144, 249, 250, 258, 267], "myvertexvc": 76, "n": [5, 11, 28, 32, 34, 81, 88, 90, 148, 171, 173, 186, 258, 267, 273, 274, 275, 276, 286, 289, 291, 292, 293, 294, 314], "n39": 5, "n40": 5, "n48": 5, "n_coeff": [273, 274], "n_frame": 295, "n_link": [81, 83, 93], "n_vertic": [273, 274], "na": 276, "naiv": [246, 269], "naman": [106, 122, 306, 307], "namanb009": 306, "name": [9, 13, 15, 17, 24, 25, 26, 33, 40, 46, 62, 67, 74, 134, 135, 139, 148, 171, 172, 173, 178, 180, 188, 192, 193, 205, 213, 225, 226, 227, 232, 247, 255, 267, 269, 271, 272, 273, 274, 275, 276, 278, 280, 281, 286, 289, 290, 291, 292, 293, 294, 295, 306, 308, 312, 314, 315], "nan": 276, "nanohub": 310, "narrow": [271, 314], "nascimento": [106, 142, 173, 229, 230, 306, 312], "nasim": [106, 132, 229, 306, 308, 312], "nativ": [24, 27, 127, 135, 168, 273, 274, 306], "natur": [32, 33, 97, 152, 167, 254], "navig": [135, 142], "nb_brick": [80, 83, 93], "nb_col": [273, 282, 283, 294], "nb_color": [35, 36, 61, 87, 276], "nb_link": 93, "nb_object": 93, "nb_row": [273, 282, 283, 294], "nb_tab": [53, 293], "nbyte": [276, 296], "nc": 278, "nd": 276, "ndarrai": [28, 38, 62, 227, 268, 273, 274, 275, 276, 277, 281, 282, 286, 289, 290, 292, 293, 294, 295], "ndim": [276, 296], "ndindex": 21, "nearer": 211, "nearest": 273, "nearli": [266, 312], "necess": [97, 242], "necessari": [25, 26, 28, 29, 32, 33, 37, 71, 72, 73, 74, 81, 83, 119, 121, 127, 142, 148, 173, 236, 238, 248, 250, 253, 267, 269, 291, 293, 295, 311, 312, 314], "necessarili": [273, 275, 276, 295], "need": [7, 9, 13, 14, 15, 18, 24, 27, 28, 31, 32, 35, 36, 37, 39, 43, 44, 45, 46, 47, 48, 50, 51, 52, 53, 54, 55, 56, 59, 60, 62, 64, 66, 68, 71, 73, 74, 86, 88, 93, 94, 96, 109, 112, 117, 121, 129, 131, 133, 135, 139, 142, 143, 144, 146, 148, 149, 151, 152, 154, 155, 158, 161, 169, 171, 173, 190, 193, 198, 202, 204, 205, 212, 214, 217, 219, 222, 225, 226, 227, 230, 234, 235, 237, 238, 240, 241, 243, 244, 246, 247, 248, 249, 250, 252, 253, 255, 256, 258, 261, 262, 265, 266, 267, 268, 269, 270, 271, 275, 276, 277, 289, 293, 294, 295, 306, 309, 312], "neg": [71, 283, 295], "negc": 278, "neglig": 315, "neighbor": [273, 283], "neither": 315, "neptune_actor": 15, "nest": [14, 310], "network": [22, 23, 89, 139, 143, 145, 157, 173, 175, 267, 306, 309, 313], "networkdraw": 154, "networklayoutipcrend": 154, "networklayoutipcservercalc": 154, "networkx": 36, "neuroimag": 269, "neuroscientist": 269, "never": [168, 178, 225, 230, 237], "nevertheless": 116, "new": [4, 5, 14, 15, 18, 19, 28, 32, 62, 69, 71, 72, 73, 74, 86, 89, 93, 108, 112, 118, 119, 122, 125, 131, 132, 134, 135, 136, 138, 139, 141, 145, 148, 154, 161, 162, 166, 171, 173, 175, 176, 178, 179, 180, 182, 185, 189, 190, 194, 197, 198, 200, 201, 203, 205, 210, 214, 215, 216, 217, 218, 222, 225, 226, 227, 229, 235, 236, 238, 239, 241, 245, 247, 248, 250, 253, 255, 258, 260, 263, 264, 266, 267, 269, 271, 273, 278, 280, 281, 284, 290, 291, 292, 293, 294, 295, 302, 304, 306, 307, 308, 309, 310, 311, 312, 314], "new_cent": 293, "new_data": 142, "new_data_uint8": 142, "new_layout_tim": 36, "new_nam": 280, "new_po": 118, "new_triangl": 294, "newbi": 180, "newer": 186, "newinst": [273, 296], "newli": [4, 8, 15, 152, 181, 198, 227], "newlin": 293, "next": [4, 5, 15, 17, 19, 20, 21, 25, 28, 29, 31, 32, 33, 38, 39, 40, 53, 74, 79, 80, 81, 82, 83, 93, 96, 142, 158, 178, 179, 180, 237, 249, 252, 275, 276, 293, 312, 314], "next_buffer_index": [148, 291, 296], "next_icon": [43, 54, 293, 296], "next_icon_id": [293, 296], "nextnode_id": 281, "nextpoint": 62, "nexttang": 62, "nf": [303, 306, 307], "ngrok": [86, 142, 173], "nib": [14, 30], "nibabel": [14, 30, 280, 294], "nice": [32, 184], "night": 179, "nightli": 290, "nii": [14, 28, 30], "nine": 34, "ninth": 165, "nipi": 280, "no_depth_test": 31, "no_vertic": 40, "no_vertices_per_point": [25, 26, 29, 33], "no_vertices_per_point2": 29, "no_vertices_per_spher": 21, "node": [12, 32, 35, 36, 149, 152, 154, 155, 161, 171, 173, 175, 184, 199, 204, 217, 227, 254, 277, 281], "node_id": 281, "nodes_3d_actor": [34, 273], "nodes_actor": [34, 273], "nois": [28, 134, 178, 241, 244, 267, 269, 273, 274], "noisi": [258, 267], "nomenclatur": 292, "non": [14, 32, 60, 172, 173, 178, 192, 226, 227, 246, 269, 285, 302], "none": [10, 12, 14, 17, 30, 36, 38, 54, 59, 62, 76, 148, 193, 266, 272, 273, 274, 275, 276, 277, 278, 280, 281, 282, 283, 286, 288, 289, 290, 291, 293, 294, 295, 312], "nonetheless": 12, "nonetyp": 193, "nonloc": 36, "nonzero": 28, "nor": [234, 275, 315], "norm": [21, 26, 30, 273, 274, 292], "norm_arrai": 294, "normal": [0, 9, 13, 17, 26, 30, 34, 37, 71, 72, 74, 88, 89, 152, 171, 181, 184, 197, 207, 225, 227, 255, 264, 267, 269, 270, 273, 274, 276, 281, 285, 290, 293, 294, 295, 306], "normalize_v3": 296, "normalizedvertexmcvsoutput": 264, "normals_from_actor": [37, 72, 296], "normals_from_v_f": [17, 296], "normals_to_actor": 296, "normaltangentmirrortest": 193, "normaltangenttest": 193, "north": 292, "nose": [104, 305, 306], "notabl": [242, 266], "note": [6, 9, 12, 13, 25, 27, 29, 43, 53, 54, 59, 62, 66, 98, 99, 100, 101, 103, 104, 106, 122, 132, 138, 166, 176, 178, 212, 229, 252, 264, 273, 274, 275, 276, 277, 280, 286, 291, 292, 294, 295, 297, 314], "notebook": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 71, 72, 73, 74, 75, 76, 79, 80, 81, 82, 83, 86, 87, 88, 89, 154, 173], "noth": [109, 167, 180, 197, 225, 234], "notic": [14, 37, 71, 121, 154, 157, 170, 178, 190, 193, 217, 221, 251, 271, 291, 309, 315], "now": [5, 10, 14, 24, 28, 30, 31, 32, 35, 36, 37, 40, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 62, 63, 64, 65, 66, 67, 71, 72, 73, 74, 76, 80, 81, 82, 83, 93, 94, 114, 118, 119, 121, 125, 126, 127, 129, 130, 133, 135, 140, 145, 148, 150, 151, 152, 154, 157, 158, 160, 161, 163, 164, 169, 173, 174, 175, 180, 182, 183, 184, 187, 188, 189, 191, 192, 193, 195, 196, 199, 201, 205, 208, 211, 213, 215, 217, 223, 226, 232, 235, 237, 238, 241, 243, 246, 250, 252, 253, 254, 257, 258, 261, 264, 265, 267, 269, 270, 271, 292, 314], "np": [2, 3, 4, 5, 8, 10, 11, 12, 15, 16, 17, 18, 20, 21, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 38, 40, 46, 50, 52, 53, 54, 56, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 71, 72, 73, 74, 75, 79, 80, 81, 82, 83, 86, 87, 88, 93, 94, 118, 127, 142, 214, 268, 273, 275, 276, 281, 289, 292, 294, 295], "np_arr": [148, 291], "npoint": [25, 29], "npt_assert_equ": 305, "nse": 314, "nsim": [80, 81, 82, 83], "nstderr": 148, "nstdout": 148, "nuanc": 271, "null": [96, 243], "nullptr": 237, "num": 72, "num_buff": [148, 291], "num_cub": 12, "num_fac": 12, "num_object": [11, 12, 80, 81, 82, 83, 93], "num_particl": [21, 26], "num_total_step": 26, "num_valu": 72, "num_vertic": [11, 12, 21, 80, 81, 82, 83, 93], "numba": 243, "number": [12, 25, 26, 28, 29, 43, 54, 71, 74, 82, 86, 93, 116, 148, 159, 172, 178, 186, 234, 235, 243, 256, 258, 263, 266, 267, 269, 273, 274, 275, 276, 278, 280, 282, 286, 289, 291, 293, 294, 295, 314], "number_of_domino": 82, "numer": [271, 278, 294], "numfocu": 179, "numpi": [2, 3, 4, 5, 8, 10, 11, 12, 15, 16, 17, 18, 20, 21, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 38, 40, 45, 46, 50, 52, 53, 54, 56, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 71, 72, 73, 74, 75, 79, 80, 81, 82, 83, 86, 87, 88, 93, 94, 96, 97, 142, 159, 170, 178, 268, 273, 276, 277, 281, 289, 290, 292, 294, 295, 306, 311, 312, 314], "numpy_to_vtk_cel": [296, 311], "numpy_to_vtk_color": 296, "numpy_to_vtk_image_data": [239, 242, 296, 311], "numpy_to_vtk_matrix": 296, "numpy_to_vtk_point": 296, "numpy_vtk": 303, "nx": 36, "nx2": 294, "nx3": 294, "nx4": 294, "nxnxn": [83, 130], "ny": 278, "nyc_actor": 5, "o": [14, 34, 35, 36, 45, 71, 74, 86, 87, 88, 94, 158, 175, 267, 273, 312], "oauth": 309, "obelisk": [150, 286], "obj": [4, 11, 14, 24, 30, 31, 37, 76, 94, 97, 178, 277, 282, 291, 293, 312], "objecomp_typ": 281, "object": [0, 1, 5, 6, 7, 9, 11, 13, 14, 15, 17, 24, 25, 26, 27, 28, 29, 33, 37, 38, 39, 40, 46, 48, 62, 66, 71, 72, 74, 79, 80, 81, 82, 83, 84, 85, 86, 89, 94, 101, 110, 112, 114, 116, 118, 119, 120, 123, 124, 127, 129, 140, 142, 146, 148, 150, 151, 154, 161, 166, 175, 184, 186, 192, 193, 194, 197, 230, 234, 235, 237, 243, 246, 252, 256, 258, 262, 265, 273, 275, 276, 277, 278, 279, 280, 281, 283, 284, 286, 287, 290, 291, 292, 293, 294, 295, 303, 309, 310, 312, 313], "object_cent": 93, "object_collis": 93, "object_color": 93, "object_direct": 93, "object_index": [11, 12, 80, 82, 83, 93, 118, 127], "object_orient": 93, "objread": 296, "obliqu": 295, "observ": [65, 68, 93, 133, 134, 171, 271, 276, 284, 290, 294], "obstacl": [242, 247], "obtain": [25, 28, 244, 253, 259, 265, 269, 276, 286, 310], "obviou": [148, 161, 247], "obvious": 171, "occasion": [239, 263], "occlus": [115, 295], "occlusion_ratio": 295, "occupi": [74, 135, 161, 271, 276], "occur": [266, 306], "ocean": [25, 180], "oct_actor": 273, "octagon": [273, 289, 307], "octagonalpr": 296, "octob": 179, "odf": [22, 23, 89, 103, 138, 232, 253, 256, 259, 262, 273, 274, 304, 309, 313], "odf_actor_i": 30, "odf_actor_x": 30, "odf_actor_z": 30, "odf_slic": [30, 259, 262, 269, 270, 296, 303, 309], "odf_slicer_3d": 30, "odfsliceractor": [273, 296], "off": [187, 197, 221, 266, 273, 295], "off_focu": 312, "offer": [81, 83, 142, 145, 254, 271, 273], "offici": [93, 112, 114, 116, 118, 119, 121, 124, 127, 129, 130, 133, 136, 142, 145, 178, 179, 180, 269, 274, 314], "offscreen": [237, 252, 255, 264, 267, 295, 312], "offset": [32, 93, 116, 146, 152, 251, 254, 271, 276, 281, 283, 293, 294, 302, 312], "often": [276, 314], "ohbm": 102, "ok": [62, 154, 249], "old": [180, 198, 224, 226, 258, 267, 280, 312], "old_nam": 280, "older": [142, 181, 260, 266, 271], "olson": 165, "omit": 148, "on_chang": [24, 30, 32, 37, 46, 47, 50, 52, 53, 54, 55, 56, 198, 293, 296, 312], "on_collaps": 53, "on_key_press": [293, 296], "on_left_mouse_button_click": [15, 43, 54, 293, 296], "on_left_mouse_button_drag": [293, 296], "on_left_mouse_button_press": [43, 54, 293, 296], "on_left_mouse_button_releas": [293, 296], "on_left_mouse_double_click": [293, 296], "on_middle_mouse_button_click": [293, 296], "on_middle_mouse_button_drag": [293, 296], "on_middle_mouse_button_press": [293, 296], "on_middle_mouse_button_releas": [293, 296], "on_middle_mouse_double_click": [293, 296], "on_moving_slid": 198, "on_right_mouse_button_click": [293, 296], "on_right_mouse_button_drag": [293, 296], "on_right_mouse_button_press": [293, 296], "on_right_mouse_button_releas": [293, 296], "on_right_mouse_double_click": [293, 296], "on_value_chang": 198, "onc": [9, 27, 32, 54, 60, 67, 93, 118, 119, 120, 121, 130, 154, 167, 179, 180, 183, 194, 205, 207, 208, 211, 225, 226, 242, 265, 268, 271, 275, 293, 295, 306, 314], "one": [4, 10, 12, 15, 25, 28, 31, 32, 35, 36, 37, 39, 54, 60, 61, 66, 68, 73, 74, 93, 112, 113, 114, 116, 124, 133, 142, 146, 147, 150, 154, 169, 171, 178, 179, 180, 185, 186, 201, 205, 219, 224, 226, 230, 234, 235, 237, 238, 243, 247, 249, 252, 255, 258, 262, 264, 265, 266, 267, 268, 269, 270, 271, 273, 274, 275, 276, 286, 289, 290, 291, 292, 293, 294, 295, 303, 306, 309, 312, 314], "ones": [12, 15, 64, 67, 68, 71, 81, 83, 142, 168, 255, 264, 276], "ones_lik": 34, "ong": [104, 106, 305, 306], "ongo": [239, 245, 260, 267, 271], "onli": [25, 27, 32, 37, 59, 60, 62, 64, 67, 71, 114, 127, 129, 136, 146, 147, 149, 152, 154, 155, 159, 167, 171, 173, 175, 178, 186, 188, 196, 198, 200, 205, 208, 225, 226, 242, 252, 255, 256, 258, 264, 265, 266, 267, 269, 270, 271, 273, 274, 275, 276, 291, 293, 294, 295, 311], "onlin": [160, 173, 276], "onscreen": [252, 255, 264], "onscreen_manag": 255, "onto": [30, 234, 269, 292], "opac": [14, 20, 24, 30, 35, 37, 39, 57, 58, 67, 71, 74, 86, 87, 88, 89, 94, 226, 235, 273, 274, 275, 289, 293, 294, 296, 303, 309, 313], "opacity_1": 275, "opacity_2": 275, "opacity_slid": 24, "opacity_slider_label": 24, "opaqu": [273, 274, 295], "open": [24, 88, 96, 97, 98, 99, 100, 101, 103, 104, 105, 106, 122, 132, 135, 137, 138, 139, 140, 145, 148, 152, 154, 166, 171, 173, 176, 177, 180, 181, 226, 228, 229, 236, 262, 267, 271, 289, 293, 302, 310, 312, 314], "opencv": [38, 220], "opengl": [22, 23, 89, 96, 109, 139, 142, 145, 173, 175, 178, 179, 230, 234, 243, 246, 252, 267, 290, 291, 295, 311, 312, 313], "openglmoleculemapp": 296, "openglrender": 296, "oper": [24, 71, 93, 118, 135, 175, 184, 234, 237, 240, 255, 312], "opportun": [136, 230, 231, 232, 242, 251, 314], "opposit": [275, 294, 295], "opt": [173, 270], "optim": [4, 109, 116, 118, 162, 172, 178, 189, 205, 226, 240, 269, 286], "optimis": 165, "option": [9, 10, 13, 27, 32, 46, 47, 50, 67, 71, 86, 88, 93, 96, 110, 114, 121, 125, 131, 135, 155, 163, 178, 184, 192, 195, 210, 220, 225, 226, 236, 249, 254, 255, 256, 257, 264, 265, 273, 274, 275, 276, 277, 278, 280, 281, 282, 283, 285, 286, 287, 289, 290, 291, 294, 295, 296, 306, 307, 309, 312, 314], "opu": [86, 88], "opunion": 269, "orang": [27, 47, 53], "orbit": [15, 180], "orbit_actor": 15, "orbit_period": 15, "orcid": 310, "order": [14, 17, 28, 30, 59, 62, 63, 65, 67, 74, 93, 108, 114, 115, 127, 135, 140, 146, 155, 163, 167, 171, 201, 210, 213, 214, 227, 250, 253, 256, 262, 265, 269, 270, 273, 274, 276, 286, 288, 294, 295, 304, 306, 307, 312], "order_transpar": [4, 5, 7, 9, 10, 11, 12, 13, 15, 17, 20, 21, 26, 28, 29, 31, 33, 36, 37, 38, 40, 59, 60, 61, 62, 63, 65, 66, 68, 79, 80, 81, 82, 83, 87, 93, 275, 295, 307], "org": [62, 73, 86, 98, 99, 100, 101, 103, 104, 106, 108, 112, 114, 116, 118, 119, 121, 122, 124, 127, 129, 130, 132, 133, 138, 142, 145, 148, 166, 173, 176, 229, 276, 290, 291, 292], "organ": [108, 139, 142, 148, 173, 178, 179, 180, 250, 286], "organis": [134, 135, 141, 171, 172, 225, 226, 227, 267, 269, 271, 293], "orient": [5, 11, 30, 53, 54, 56, 71, 80, 81, 82, 83, 93, 116, 118, 127, 129, 135, 235, 269, 273, 274, 275, 276, 289, 292, 293, 294], "orient2rgb": 296, "orientationtest": 193, "origin": [24, 26, 32, 59, 60, 64, 74, 93, 118, 130, 184, 197, 202, 206, 221, 227, 230, 243, 249, 258, 264, 272, 273, 276, 277, 281, 294, 312, 314], "orn": [79, 80, 81, 82, 83, 93, 127], "orn_deg": [79, 80, 81, 93], "orthogon": [29, 235], "oscil": [29, 81], "osx": [96, 303, 304], "other": [17, 18, 21, 24, 28, 62, 65, 66, 71, 74, 86, 88, 108, 112, 116, 118, 131, 133, 140, 141, 142, 143, 146, 148, 149, 150, 152, 153, 154, 155, 158, 161, 164, 165, 169, 173, 176, 178, 180, 181, 182, 183, 184, 185, 186, 189, 190, 198, 201, 202, 205, 208, 210, 220, 222, 235, 236, 239, 241, 242, 243, 247, 248, 249, 253, 256, 257, 258, 263, 264, 269, 273, 276, 286, 290, 294, 295, 311, 315], "otherwis": [14, 32, 71, 234, 249, 263, 273, 275, 276, 278, 280, 282, 284, 289, 290, 293, 294, 295, 315], "our": [2, 3, 16, 24, 30, 32, 35, 36, 37, 40, 60, 64, 67, 71, 72, 73, 74, 76, 83, 93, 97, 98, 99, 100, 101, 103, 104, 105, 106, 108, 122, 127, 132, 137, 138, 142, 145, 166, 173, 176, 177, 180, 182, 199, 202, 214, 217, 219, 228, 229, 231, 239, 242, 258, 266, 267, 280, 286, 289, 311, 314], "ourselv": [108, 169], "out": [14, 59, 62, 74, 76, 108, 111, 112, 113, 114, 115, 117, 118, 119, 120, 121, 123, 125, 126, 127, 128, 129, 130, 131, 136, 140, 142, 149, 152, 156, 158, 161, 167, 171, 178, 180, 181, 182, 185, 187, 190, 193, 200, 202, 204, 205, 209, 212, 213, 214, 215, 218, 219, 224, 231, 234, 237, 239, 243, 246, 248, 249, 252, 258, 262, 264, 265, 267, 268, 270, 271, 273, 275, 276, 280, 283, 293, 295, 297, 309, 315], "out_arr": 281, "out_control_point": 59, "out_cp": [59, 275], "out_path": [2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 71, 72, 73, 74, 75, 76, 79, 80, 81, 82, 83, 86, 87, 88, 295], "out_tan": 62, "out_tang": [62, 275], "outbreak": [107, 108], "outcom": 266, "outer": [273, 293], "outer_radiu": [51, 54, 293, 296], "outlin": [134, 169], "outlinefilt": 296, "output": [24, 71, 76, 111, 117, 120, 123, 126, 128, 131, 134, 136, 172, 180, 211, 218, 243, 251, 255, 258, 267, 282, 288, 294, 295], "outsid": [71, 155, 311], "outstand": 314, "over": [5, 74, 86, 107, 123, 125, 133, 179, 235, 242, 247, 267, 270, 281, 293, 314], "overal": [266, 293], "overcom": [209, 236, 271], "overflow": [135, 149, 155, 164, 257, 263, 266, 271, 293, 306, 307, 309, 310], "overflow_postfix": 293, "overhead": 32, "overlai": 293, "overlap": [28, 216], "overlapp": 211, "overload": 302, "overrid": 290, "overshoot": 112, "overview": [35, 121, 256], "overwhelm": [134, 179], "own": [118, 147, 149, 179, 180, 249, 252, 290, 293, 295], "owndata": 276, "p": [26, 34, 71, 79, 80, 81, 82, 83, 86, 87, 93, 127, 148, 173, 179, 193, 267, 269, 270, 273, 274, 278, 292], "p0": 62, "p1": 62, "p5": 180, "p_": 267, "p_actor": 15, "p_color": 40, "p_data": 15, "pack": [175, 258, 267], "packag": [36, 96, 97, 100, 165, 173, 180, 272, 276, 280, 288, 301, 314], "pad": [32, 46, 50, 236, 273, 283, 293, 296], "pad_i": [273, 283], "pad_x": [273, 283], "pad_x_neg": 273, "pad_x_po": 273, "pad_y_neg": 273, "pad_y_po": 273, "pad_z_neg": 273, "pad_z_po": 273, "page": [96, 97, 179, 180, 230, 245, 246, 255, 267, 269, 292, 312, 314], "pain": 154, "pair": [93, 243, 246, 254, 267, 271, 292], "palat": 234, "pallet": 193, "panda3d": 184, "pandem": [107, 108], "panel": [11, 14, 15, 24, 30, 37, 43, 49, 60, 66, 67, 124, 135, 140, 149, 152, 155, 164, 171, 182, 185, 189, 191, 195, 211, 215, 216, 225, 226, 242, 275, 293], "panel2d": [11, 14, 15, 24, 30, 37, 43, 49, 54, 112, 140, 143, 146, 149, 152, 155, 158, 171, 182, 191, 225, 266, 271, 296, 302, 310], "panel2d_object": 293, "panel_1": 49, "panel_2": 49, "panel_color": 293, "panel_pick": 14, "panle2d": 149, "paper": [150, 165, 166, 168, 170, 172, 265, 310], "paragraph": 139, "parallel": [14, 33, 82, 142, 173, 269, 295], "parallelli": 187, "param": [72, 283], "paramet": [8, 15, 28, 30, 36, 37, 40, 55, 64, 71, 72, 73, 79, 80, 81, 82, 83, 88, 93, 94, 114, 119, 151, 157, 199, 215, 225, 227, 241, 244, 253, 256, 262, 264, 266, 267, 268, 269, 272, 273, 274, 275, 276, 277, 278, 280, 281, 282, 283, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 303, 306, 307, 308, 309, 311, 312], "parametr": [246, 259, 310, 311], "parent": [65, 93, 152, 155, 179, 189, 192, 219, 225, 227, 233, 275, 281], "parent_anim": [275, 281, 296], "parent_bone_deform": 281, "parent_bone_transform": 281, "parentbonetransform": 219, "parenthesi": 310, "pari": 5, "paris_actor": 5, "pars": [141, 144], "part": [11, 12, 32, 64, 71, 73, 93, 105, 116, 125, 135, 137, 139, 141, 142, 171, 177, 179, 180, 198, 205, 215, 225, 226, 227, 228, 230, 231, 232, 238, 240, 243, 249, 250, 253, 255, 257, 258, 261, 262, 265, 267, 271, 273, 276, 288, 293, 311, 314], "parti": 220, "partial": [140, 189, 211, 264, 270, 311, 314], "partialactor": [207, 210], "particip": [105, 137, 140, 177, 179, 180, 228, 231, 240, 253], "particl": [22, 23, 26, 89, 159, 172, 308, 313], "particular": [10, 93, 110, 118, 127, 129, 149, 155, 171, 186, 315], "particularli": 269, "parzen": 246, "pass": [10, 28, 40, 74, 75, 76, 88, 93, 114, 115, 117, 123, 146, 148, 150, 152, 157, 158, 159, 171, 179, 180, 215, 225, 242, 243, 246, 249, 252, 253, 255, 256, 257, 258, 259, 264, 265, 267, 268, 269, 270, 273, 280, 291, 293, 294, 309, 312, 314], "pass_shader_uniforms_to_f": 267, "past": [123, 139, 147, 148, 151, 154, 237, 295, 314], "patch": [145, 173, 291, 309, 311], "path": [14, 15, 26, 33, 35, 36, 37, 38, 45, 59, 68, 71, 74, 87, 94, 198, 226, 227, 246, 249, 251, 267, 271, 272, 275, 278, 281, 282, 290, 293, 295, 312], "path_actor": 26, "path_numb": 295, "path_suzann": 94, "path_thick": 26, "patheffectrender": 169, "pattern": [171, 288], "paul": 286, "paus": [15, 66, 67, 198, 226, 275, 293, 296, 312], "pause2": 15, "pause_anim": 15, "pause_button": 15, "pbr": [22, 23, 69, 70, 89, 176, 309, 311, 313], "pbr_param": 37, "pc": [178, 296], "pdb": [141, 144], "pdbx": [141, 144], "pdf": 269, "peak": [180, 270, 296, 303, 309, 311, 312], "peak_actor": 273, "peak_dir": 273, "peak_slic": [296, 303, 312], "peak_valu": 270, "peakactor": [273, 296], "peaks_dir": [273, 274], "peaks_from_model": [39, 273], "peaks_slic": [303, 309], "peaks_valu": 273, "peaksliceractor": 303, "peculiar": [148, 257], "pedesi": 26, "peel": [275, 295], "pend": [108, 119, 129, 242, 250], "pent_actor": 273, "pentagon": [34, 176, 273, 289, 311], "pentagonalpr": 296, "peopl": [178, 230], "pep": [310, 314], "pep8": 314, "peptid": 286, "per": [27, 59, 71, 113, 187, 206, 265, 269, 273, 274, 275, 277, 282, 294, 295], "percent": 275, "percentag": [43, 54, 275, 293], "percept": 276, "perceptu": 276, "perfect": [151, 178, 225], "perfectli": [9, 74, 161, 187, 212, 258, 264, 269], "perform": [15, 28, 37, 40, 43, 46, 53, 54, 71, 74, 80, 82, 86, 88, 93, 97, 117, 125, 134, 138, 139, 140, 142, 146, 148, 151, 154, 171, 173, 186, 205, 207, 225, 235, 269, 286, 291, 309], "perimet": 273, "period": [118, 127, 133, 134, 136, 139, 140, 168, 170, 180, 269, 271, 275, 280, 291], "periodict": 296, "permiss": 315, "permit": [196, 277, 315], "perpendicular": [17, 295], "person": [133, 154, 173], "perspect": [14, 133, 295], "perturb": [269, 274], "ph": 139, "phase": [29, 33, 267, 271], "phase_angl": [29, 33], "phd": 142, "phenomena": 309, "phew": 187, "phi": [5, 35, 36, 37, 46, 50, 71, 72, 73, 262, 265, 270, 273, 289, 292], "phong": [71, 74, 178, 269, 285], "physic": [37, 69, 70, 73, 78, 79, 80, 81, 83, 93, 97, 108, 114, 116, 118, 119, 124, 129, 132, 135, 176, 178, 227, 285, 292, 302, 308, 309, 311, 313], "physicsclientid": 82, "pi": [5, 15, 25, 29, 65, 68, 81, 118, 258, 285, 292], "pic": 273, "pick": [0, 1, 12, 14, 35, 89, 122, 131, 134, 179, 270, 271, 293, 296, 307, 313], "pickable_off": [287, 296], "pickable_on": [287, 296], "picked_info": 11, "picker": 14, "picking_tol": 273, "pickingmanag": [11, 273, 296], "pickl": 306, "pickm": 11, "piec": [74, 154, 261, 267], "pierpaoli": [269, 274], "pietro": [138, 309], "pil": 193, "pil_imag": 193, "pilephimathrm": 292, "pillow": [282, 312], "pinkal": 276, "pip": [86, 88, 96, 97, 98, 99, 100, 101, 103, 104, 106, 122, 132, 138, 166, 176, 229, 305, 314], "pipe": [141, 148, 172], "pipelin": [14, 24, 104, 109, 173, 178, 246, 269, 295, 305, 307, 310], "pitch": [5, 28, 292, 295, 296], "pivot": [81, 194], "pixel": [43, 54, 74, 178, 197, 277, 293, 294, 295], "pjoin": [35, 36, 87], "pkg": [86, 88], "pkg_commit_hash": 296, "pkg_info": 296, "pkg_path": [272, 288], "pkg_version_str": 280, "place": [4, 5, 37, 43, 49, 54, 63, 65, 71, 107, 108, 112, 146, 149, 152, 155, 164, 171, 217, 258, 273, 280, 283, 293, 306, 312], "placehold": [47, 53, 149, 171, 288, 293], "plai": [9, 13, 22, 23, 35, 66, 67, 71, 89, 167, 169, 171, 185, 189, 198, 218, 225, 226, 271, 275, 293, 295, 296, 312, 313], "plain": 273, "plan": [114, 118, 120, 127, 145, 186, 188, 230, 232, 233, 234, 236, 237, 239, 240, 241, 242, 243, 246, 247, 249, 250, 252, 255, 258, 260, 266, 268, 271], "plane": [14, 19, 24, 38, 40, 80, 82, 83, 273, 276, 283, 292], "plane_actor": 38, "planet": 15, "planet_actor": 15, "planet_actor_list": 15, "planet_data": 15, "planet_fil": 15, "planet_imag": 15, "planet_track": 15, "planets_data": 15, "plank": [141, 172], "plasma": [25, 276], "platform": [88, 176, 229, 311, 312], "plausibl": [37, 72], "play3": 15, "play_ev": [295, 296], "play_events_from_fil": [295, 296], "play_onc": [293, 296], "playback": [59, 60, 66, 67, 181, 189, 195, 222, 226, 275, 293], "playback_panel": [59, 60, 61, 65, 66, 67, 192, 275, 296], "playbackpanel": [67, 189, 192, 198, 220, 226, 296, 312], "player": [178, 226], "playlist": 180, "pleas": [24, 30, 35, 39, 97, 314], "plot": [25, 26, 29, 33, 246, 252, 267, 276, 302], "plu": [34, 286], "ply": [76, 94, 282], "plyread": 296, "plywrit": 296, "pm": [178, 179, 180], "png": [2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 71, 72, 73, 74, 75, 76, 79, 80, 81, 82, 83, 86, 87, 88, 97, 193, 277, 278, 282, 293, 295, 302], "png_magnifi": 295, "pngreader": 296, "pngwriter": 296, "po": [11, 25, 32, 36, 59, 60, 62, 72, 73, 74, 79, 80, 81, 82, 83, 93, 127, 273, 278], "point": [17, 25, 29, 32, 33, 37, 40, 59, 62, 71, 74, 75, 93, 129, 142, 149, 154, 158, 161, 167, 169, 173, 180, 182, 185, 186, 187, 189, 194, 196, 197, 203, 205, 206, 209, 218, 221, 225, 230, 243, 245, 246, 249, 252, 255, 258, 264, 265, 267, 268, 270, 271, 274, 275, 276, 289, 292, 294, 295, 296, 309], "point_actor": [17, 273], "point_radiu": [17, 33, 273], "point_vert": 40, "pointpick": 296, "poirier": [138, 309], "polar": [29, 292], "poli": [178, 191, 201], "polici": 294, "polish": [249, 255, 261, 262, 269], "poly_data": 294, "poly_mapp": 294, "polydata": [6, 18, 76, 131, 184, 188, 189, 202, 226, 282, 294, 296, 306, 312], "polydatamapp": [294, 296], "polydatamapper2d": 296, "polydatanorm": 296, "polydataread": 296, "polydatawrit": 296, "polygon": [28, 69, 70, 71, 75, 89, 125, 131, 134, 210, 269, 273, 294, 296, 312, 313], "polylin": [185, 191, 194, 197, 203, 206, 218, 221, 225, 273], "polypeptid": 172, "polyvertex": 296, "ponder": 252, "poor": [117, 148], "pop": [39, 61, 63, 161], "popen": [145, 148, 312], "popul": [37, 243, 246, 293], "popular": [71, 276], "populateframebuff": 243, "port": [88, 291], "portion": [236, 271, 288], "pos_dot": 66, "pos_ev": 68, "pos_fun": 275, "pos_keyfram": 275, "pos_planet": 15, "pos_saturn": 15, "pose": [164, 212, 227, 263, 271, 281], "posit": [4, 5, 8, 11, 14, 15, 18, 21, 24, 25, 26, 27, 28, 29, 30, 32, 33, 35, 36, 37, 40, 43, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 60, 61, 63, 64, 65, 66, 67, 68, 71, 74, 79, 80, 81, 82, 83, 87, 93, 94, 110, 112, 116, 118, 142, 146, 148, 154, 157, 169, 172, 173, 175, 182, 183, 185, 187, 191, 192, 194, 197, 198, 203, 209, 210, 211, 214, 222, 225, 226, 233, 239, 251, 252, 254, 264, 266, 269, 271, 273, 274, 275, 277, 278, 280, 283, 286, 287, 289, 290, 291, 292, 293, 294, 295, 296, 305, 306, 311, 312], "position1": 239, "position2": [114, 239], "position_1": 275, "position_2": 275, "position_control": [81, 83], "position_keyfram": 66, "position_offset": [49, 283], "positiongain": [81, 83], "positions_fil": [35, 36, 87], "posobj": [79, 80, 82, 83, 93], "possibl": [14, 27, 28, 31, 32, 37, 50, 71, 74, 93, 109, 114, 116, 117, 135, 146, 148, 149, 151, 157, 175, 180, 182, 226, 244, 250, 255, 256, 257, 258, 269, 270, 273, 276, 280, 290, 292, 314, 315], "possibli": [113, 146], "post": [113, 129, 142, 148, 153, 154, 164, 173, 180, 218, 225, 226, 227, 252, 255, 258, 264, 267, 269, 271, 310, 311, 312, 314], "posterior": 292, "postfix": 293, "postpon": [178, 181], "pot": 76, "potenti": [150, 255, 271], "power": [15, 22, 32, 71, 89, 97, 180, 226], "pr": [108, 109, 112, 118, 120, 127, 129, 131, 135, 136, 139, 140, 141, 142, 143, 144, 145, 146, 148, 149, 153, 155, 156, 157, 159, 160, 162, 163, 164, 165, 167, 168, 169, 170, 171, 173, 174, 175, 179, 180, 181, 184, 186, 188, 189, 190, 192, 193, 194, 195, 200, 201, 203, 205, 206, 207, 209, 210, 211, 213, 215, 216, 217, 219, 220, 221, 222, 223, 225, 226, 227, 232, 233, 235, 236, 238, 239, 240, 242, 243, 244, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 266, 267, 268, 269, 270, 271, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312], "practic": [97, 154, 173, 178, 180, 232, 267], "pranckevi\u010diu": [258, 267], "praneeth": [166, 176, 180, 181, 184, 225, 229, 271, 302, 310, 311, 312], "prashil": [103, 304], "prayasj": [176, 311], "pre": [31, 140, 175, 225, 265, 269, 293, 312], "precalcul": 270, "preced": [194, 275], "precis": [97, 258, 267, 269], "precommit": 312, "precomput": 273, "predefin": 294, "predict": [147, 246, 273, 274], "prefer": [14, 60, 71, 288], "prefix": 255, "premis": 269, "prepar": [10, 35, 36, 53, 178, 180, 233, 252, 253, 263, 269, 271, 295, 302, 306], "preprocess": 253, "presenc": 147, "present": [11, 14, 33, 93, 146, 148, 149, 155, 173, 175, 225, 237, 249, 255, 258, 264, 265, 267, 269, 271, 286], "preserv": 118, "press": [148, 173, 180, 194, 293, 295], "pretti": [32, 180, 238, 252, 255, 267], "prevent": [32, 129, 148, 155, 264, 312], "preview": [144, 147, 152, 208, 212, 217, 219, 223], "previou": [52, 74, 108, 119, 121, 135, 141, 146, 149, 154, 179, 180, 189, 192, 209, 226, 231, 242, 253, 257, 262, 263, 266, 275, 276, 281, 293], "previous": [15, 37, 71, 124, 127, 133, 152, 158, 169, 171, 182, 191, 209, 211, 225, 255, 264, 266, 271, 276], "previous_angl": [53, 54, 56], "previous_valu": [52, 53, 54, 56, 293, 296], "previouspoint": 62, "previoustang": 62, "prfuri": 175, "price": [142, 258, 309], "prim": [281, 306], "prim_arrow": 296, "prim_box": [32, 296], "prim_con": 296, "prim_count": 294, "prim_cylind": 296, "prim_frustum": 296, "prim_icosahedron": 296, "prim_id": 290, "prim_octagonalpr": 296, "prim_pentagonalpr": 296, "prim_rhombicuboctahedron": 296, "prim_spher": [17, 28, 296], "prim_sphere_actor": 16, "prim_squar": 296, "prim_star": 296, "prim_superquadr": 296, "prim_tetrahedron": [32, 296, 312], "prim_triangularpr": 296, "primari": [140, 146, 171, 178, 271], "primarili": [149, 155, 171, 188], "primit": [2, 3, 16, 17, 24, 28, 32, 40, 74, 75, 87, 106, 109, 113, 122, 134, 138, 166, 179, 184, 186, 188, 189, 196, 205, 223, 226, 227, 273, 281, 294, 296, 306, 307, 308, 309, 310, 311, 312], "primitive_actor": 17, "primitive_color": 17, "primitives_count": 294, "primitives_count_from_actor": 296, "primitives_count_to_actor": 296, "princip": [93, 269, 274, 276], "principl": [69, 70, 89, 97, 148, 176, 225, 285, 311, 312, 313], "principled_param": 285, "print": [10, 18, 24, 25, 27, 94, 96, 148, 179, 182, 243, 295], "print_count": 10, "prior": [109, 126, 180, 200, 206, 246, 252, 267, 315], "priorit": 134, "prioriti": [112, 152, 257, 263, 290, 293, 310], "prism": [129, 166, 176, 273, 289, 307, 310, 311], "pro": [141, 184], "probabilist": 39, "probabl": [130, 143, 146, 151, 152, 154, 155, 157, 181, 232, 246, 252, 258, 269], "problem": [110, 114, 116, 118, 119, 121, 124, 127, 129, 135, 140, 142, 146, 147, 152, 155, 161, 173, 205, 214, 224, 225, 226, 232, 236, 239, 244, 253, 254, 255, 257, 258, 259, 261, 264, 265, 266, 267, 270, 271, 273, 304, 306], "problemat": [148, 161], "proce": [31, 93, 238, 265], "procedur": [93, 116], "proceed": [111, 269], "process": [13, 24, 29, 37, 64, 74, 86, 87, 88, 93, 97, 114, 116, 135, 145, 148, 149, 154, 167, 171, 173, 175, 180, 197, 233, 246, 252, 255, 256, 257, 258, 260, 264, 265, 266, 267, 271, 282, 290, 293, 311], "procur": 315, "produc": [72, 73, 148, 175, 269, 278, 286], "product": [179, 245, 295, 315], "profession": 230, "professor": 178, "profil": 179, "profit": 315, "program": [25, 74, 76, 134, 178, 179, 205, 211, 218, 231, 232, 234, 237, 243, 252, 254, 255, 261, 262, 263, 267, 271, 273, 290, 307], "programm": 136, "progress": [108, 110, 116, 118, 119, 121, 124, 127, 129, 130, 133, 134, 144, 147, 150, 153, 156, 159, 162, 165, 168, 170, 173, 231, 239, 240, 245, 249, 251, 255, 260, 263, 266, 270, 278, 293, 312], "progressbar": 278, "proj": 40, "proj_mat4d": 40, "proj_typ": 295, "projeced_mat3d": 40, "project": [14, 30, 40, 98, 99, 100, 101, 103, 104, 105, 106, 107, 108, 111, 112, 113, 115, 116, 117, 120, 122, 123, 125, 126, 128, 131, 132, 134, 135, 136, 137, 138, 139, 142, 166, 171, 172, 173, 176, 177, 178, 179, 180, 184, 198, 225, 226, 227, 228, 229, 231, 232, 233, 234, 237, 238, 240, 243, 246, 249, 250, 252, 258, 267, 268, 269, 271, 273, 274, 276, 292, 295, 296, 306, 309, 314], "projected_marix": 40, "promis": 209, "promot": [178, 315], "proof": 243, "prop": [200, 275, 281, 293, 294], "propag": [22, 23, 89, 140, 152, 155, 197, 236, 239, 309, 313], "proper": [110, 129, 130, 148, 158, 180, 181, 206, 233, 254, 265, 271], "properli": [24, 30, 108, 112, 129, 149, 181, 184, 211, 221, 246, 259, 264, 267, 270, 271], "properti": [15, 37, 53, 60, 64, 67, 72, 74, 75, 114, 118, 142, 148, 152, 173, 176, 185, 186, 191, 192, 198, 210, 222, 225, 226, 227, 236, 239, 248, 266, 267, 269, 271, 273, 274, 275, 276, 281, 285, 286, 291, 293, 295, 302, 303, 311], "property2d": 296, "proport": [172, 178], "propos": [139, 140, 142, 145, 178, 179, 180, 247, 264, 265, 312, 314], "proppick": 296, "protein": [141, 144, 153, 156, 172, 286], "proteinribbonfilt": [153, 296], "protocol": [142, 148, 173], "prototyp": [185, 191, 209, 227, 312], "prove": [141, 144, 170, 180, 254], "provid": [17, 24, 27, 28, 32, 37, 39, 59, 61, 64, 71, 97, 108, 114, 134, 135, 140, 143, 146, 152, 158, 171, 179, 198, 230, 233, 236, 245, 248, 271, 273, 275, 276, 280, 283, 286, 287, 289, 290, 291, 292, 293, 294, 295, 306, 315], "provides_mjpeg": 291, "provides_webrtc": 291, "psf": [107, 180], "pt": [29, 33, 273, 293, 294], "ptabl": 296, "pts2": 29, "pts_actor": 59, "pts_len": 294, "public": [73, 178, 314], "publicli": 178, "pull": [108, 129, 130, 134, 135, 139, 145, 148, 151, 171, 172, 173, 179, 225, 226, 233, 236, 239, 248, 260, 267, 269, 271, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312], "pune": 140, "pure": [206, 218], "purpos": [28, 71, 72, 73, 97, 143, 149, 150, 171, 241, 247, 253, 315], "pursu": [108, 178, 179, 180], "push": [237, 314], "put": [43, 54, 71, 74, 232, 276, 312, 314], "px": 278, "py": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 70, 71, 72, 73, 74, 75, 76, 78, 79, 80, 81, 82, 83, 85, 86, 87, 88, 96, 99, 142, 148, 151, 154, 161, 169, 175, 190, 198, 201, 216, 257, 272, 273, 292, 300, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314], "pybullet": [79, 80, 81, 82, 83, 114, 116, 118, 124, 127, 129, 135, 308, 309], "pydata": 312, "pygam": 178, "pyglm": 178, "pygltflib": [96, 184, 193, 281], "pymd": [151, 154, 173], "pyopengl": 178, "pypi": 314, "pyplot": 276, "pyproject": 312, "pyramid": [178, 273, 307], "pyramid_vert": 289, "pyrend": 184, "pytest": [96, 143, 173, 311, 314], "python": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 71, 72, 73, 74, 75, 76, 79, 80, 81, 82, 83, 86, 87, 88, 89, 96, 97, 98, 99, 100, 101, 103, 104, 105, 106, 107, 108, 122, 132, 134, 135, 137, 138, 139, 142, 144, 150, 151, 159, 161, 165, 166, 167, 169, 171, 172, 173, 176, 177, 178, 179, 180, 184, 189, 192, 193, 225, 226, 227, 228, 229, 234, 256, 259, 267, 269, 271, 276, 282, 286, 291, 295, 299, 303, 306, 307, 308, 309, 314, 315], "python2": 306, "python3": [311, 314], "python35": 309, "q": 292, "quad": [12, 201, 211, 225, 293], "quadrant": 185, "quadrilater": [71, 269], "quadrup": 118, "qualiti": [25, 29, 71, 101, 103, 104, 106, 122, 132, 235, 247, 250, 258, 259, 269, 282, 295, 303, 304, 305, 306, 307, 308], "quantifi": [269, 274], "quantiti": 269, "quat": 292, "quaternion": [59, 80, 82, 93, 119, 189, 192, 201, 226, 275, 292], "queri": [93, 159, 180, 309], "quest": 271, "question": [98, 99, 100, 101, 103, 104, 106, 122, 132, 138, 166, 176, 178, 179, 180, 183, 185, 229, 291], "queue": [86, 148, 291], "queue_buff": 291, "queue_buffer_nam": 291, "queue_head_tail_buff": 291, "queue_head_tail_buffer_nam": 291, "queue_siz": 291, "quick": [64, 161, 171, 191, 203, 208, 217], "quickli": [118, 225], "quit": [32, 111, 116, 117, 119, 129, 134, 142, 147, 170, 175, 217, 260, 265, 269], "quota": 71, "r": [39, 96, 118, 149, 171, 173, 264, 269, 270, 273, 274, 276, 285, 286, 289, 292, 294, 295, 314], "r_planet": 15, "r_time": 15, "ra": [24, 273], "rad": [81, 293], "radar": 63, "radar_anim": 63, "radar_shaft": 63, "radar_shaft_anim": 63, "radial": 273, "radial_scal": [30, 273, 274], "radian": [5, 93, 293], "radii": [5, 10, 11, 12, 15, 16, 20, 21, 35, 36, 37, 46, 50, 59, 62, 65, 71, 72, 73, 79, 80, 81, 83, 86, 87, 88, 93, 172, 273, 286], "radio": [32, 41, 42, 89, 135, 293, 308, 311, 313], "radiobutton": [32, 50, 129, 296, 308], "radiu": [4, 15, 17, 21, 33, 51, 53, 54, 60, 63, 65, 71, 74, 79, 80, 81, 83, 93, 172, 273, 286, 289, 292, 293], "radius_particl": 33, "radius_typ": 286, "radiusvsoutput": 74, "raglin": [122, 132, 307, 308], "rai": [71, 74, 97, 107, 109, 111, 113, 134, 269], "rais": [180, 185, 188, 203, 273, 278, 280, 290, 311], "raj": [229, 302, 312], "ram": 178, "ran": [178, 181], "rand": [2, 3, 5, 12, 20, 21, 26, 27, 35, 36, 52, 75, 80, 81, 82, 83, 87, 93, 94, 273, 294, 295], "random": [2, 3, 5, 10, 12, 20, 21, 26, 27, 34, 35, 36, 52, 60, 75, 80, 81, 82, 83, 87, 88, 93, 94, 246, 252, 258, 269, 270, 273, 276, 292, 294, 295], "random_geometric_graph": 36, "randomli": [21, 36, 60, 267, 309], "rang": [10, 15, 25, 26, 29, 32, 34, 36, 37, 38, 40, 60, 61, 63, 72, 73, 80, 81, 82, 83, 93, 206, 260, 267, 271, 273, 274, 276, 285, 286, 289, 294], "range_precis": [54, 293], "range_select": 293, "range_slid": [293, 296], "range_slider_cent": [54, 293, 296], "range_slider_handle_move_callback": [293, 296], "range_slider_i": 54, "range_slider_x": 54, "rangeslid": [54, 106, 296, 306], "rank": 303, "ransform": 281, "raster": [169, 179], "rate": [75, 104, 117, 167, 269, 273, 305], "rather": [113, 117, 147, 168, 170, 258, 271, 273, 292], "ratio": [171, 273, 283, 293, 294, 295, 296], "ratio_to_coord": [293, 296], "ratio_to_valu": [293, 296], "ration": 295, "raw": [44, 45, 142], "raw_arr_buff": 142, "rawarrai": [86, 139, 145, 148, 291], "rawarrayimagebuffermanag": [148, 296], "rawarraymultidimensionalbuff": 296, "ray_march": 74, "raymarch": [28, 75, 125, 134, 232, 235, 238, 245, 253, 256], "rbg": 276, "rce": [309, 310], "rcoh_actor": 273, "rcounter": 10, "rd": 74, "re": [3, 9, 13, 16, 24, 31, 86, 87, 121, 148, 158, 180, 219, 264, 293, 294, 303, 306, 307, 312, 314], "re_align": [24, 30, 37, 293, 296], "reach": [173, 178, 190, 246, 255, 263, 312], "read": [8, 14, 32, 35, 36, 38, 110, 112, 113, 114, 116, 118, 119, 121, 124, 127, 129, 130, 133, 135, 142, 145, 148, 150, 154, 159, 168, 170, 178, 179, 180, 182, 184, 193, 199, 227, 234, 277, 278, 281, 291, 295], "read_bundles_2_subject": [24, 27], "read_stanford_label": 39, "read_viz_cubemap": [37, 296], "read_viz_dmri": [28, 30, 296], "read_viz_gltf": [6, 7, 8, 9, 13, 296], "read_viz_icon": [15, 43, 54, 296, 306], "read_viz_model": [4, 76, 296], "read_viz_textur": [4, 5, 15, 19, 296], "readabl": [148, 220, 224, 238], "reader": 309, "readi": [28, 35, 36, 37, 71, 93, 118, 123, 130, 169, 175, 208, 210, 226, 238, 240, 241, 252, 253, 255, 257, 258, 260, 264, 267, 270, 271, 314], "readjust": 244, "readm": [96, 100, 301, 302, 303, 304, 306, 307, 309, 310, 312, 314], "reagan": [101, 303], "real": [71, 88, 120, 149, 171, 173, 178, 180, 186, 201, 230, 258, 262, 267, 269, 276, 296], "realis": [237, 240, 258, 264], "realism": 27, "realist": [111, 113, 227], "realiti": 258, "realiz": [113, 129, 180, 267, 271], "realli": [102, 112, 142, 143, 149, 230, 243, 255, 258, 267, 314], "realpython": 148, "rearrang": 28, "reason": [112, 142, 161, 171, 175, 180, 184, 197, 198, 226, 234, 235, 237, 239, 240, 243, 261, 267, 269, 270, 286], "rebas": [171, 223, 233, 236, 242, 251, 266, 271], "recal": [243, 258], "recap": 252, "receiv": [178, 179, 180, 232, 238, 244, 247, 253, 256, 262, 293], "recent": [71, 142, 165, 168, 260, 266, 297], "reciprocatingsaw": 193, "reckon": 168, "recogn": [178, 271, 314], "recommend": [14, 24, 62, 96, 142, 150, 170, 275, 314], "recomput": [154, 173], "reconst": [30, 39], "reconstruct": 269, "record": [2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 71, 72, 73, 74, 75, 76, 79, 80, 81, 82, 83, 86, 87, 88, 152, 155, 157, 158, 161, 173, 213, 220, 226, 270, 275, 280, 296, 304, 312], "record_ev": [295, 296], "record_events_to_fil": [295, 296], "record_posit": 157, "recreat": 71, "rect": [51, 54, 273, 283, 293], "rect_actor": 273, "rect_grid": 49, "rect_obj": 293, "rectangl": [38, 51, 54, 171, 182, 218, 225, 248, 293, 296, 307], "rectangle2d": [51, 54, 114, 143, 146, 158, 171, 182, 211, 218, 225, 296], "rectangular": 12, "rectifi": [233, 266, 271], "recurs": [32, 152], "recursiveskeleton": 193, "recv": [291, 296], "red": [27, 29, 33, 46, 47, 50, 53, 79, 273, 295], "red_bal": 79, "red_ball_actor": 79, "red_ball_col": 79, "red_orn": 79, "red_po": 79, "red_radiu": 79, "redefin": [28, 295], "redesign": [146, 226], "redirect": [251, 310], "redistribut": 315, "redon": 161, "reduc": [11, 12, 154, 178, 224, 273], "redund": [215, 221, 271], "refactor": [121, 135, 151, 158, 166, 169, 173, 183, 249, 252, 253, 261, 266, 267, 268, 271, 302, 309, 310, 312], "refer": [39, 60, 80, 81, 82, 83, 93, 147, 167, 171, 179, 183, 185, 187, 194, 209, 214, 225, 230, 265, 271, 274, 276, 286, 291, 293, 295, 310], "refin": [244, 263], "reflect": [66, 73, 128, 176, 184, 275, 285, 311], "refract": [37, 72, 176, 285, 311], "refrain": 266, "refresh": [179, 180, 293, 312], "regard": [110, 112, 114, 116, 119, 121, 124, 127, 129, 130, 133, 158, 161, 180, 239, 248, 258, 261, 270], "regardless": 27, "region": [12, 28, 267, 269], "regist": [24, 30, 32, 37, 155, 314], "regul": 231, "regular": [93, 182, 273, 279, 280, 289, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312], "regularpolygonsourc": 296, "reimplement": 290, "reiniti": 275, "reject": [179, 180], "rel": [15, 65, 93, 155, 158, 161, 187, 226, 267, 273, 295, 314], "relat": [63, 108, 114, 129, 145, 148, 149, 151, 152, 154, 155, 158, 168, 173, 180, 184, 205, 230, 233, 234, 235, 236, 241, 248, 253, 255, 257, 258, 259, 262, 264, 266, 267, 268, 269, 270, 271, 276, 290, 293, 295, 310], "relationship": [265, 269], "relative_peak_threshold": 39, "relax": 280, "releas": [38, 86, 125, 157, 194, 280, 291, 293, 295, 296], "release0": 314, "release_context": 296, "release_curr": [10, 295, 296], "release_lock": [295, 296], "release_not": 314, "relev": [15, 121, 154, 171, 236, 253], "reli": [196, 234, 240, 247, 248, 249, 253, 255, 257, 266, 267], "remain": [108, 119, 123, 125, 146, 152, 161, 164, 167, 171, 173, 225, 236, 242, 257, 263, 264, 311], "remark": [179, 180, 231], "rememb": [154, 178, 314], "remind": [180, 181], "remot": [302, 314], "remov": [10, 28, 31, 32, 81, 99, 104, 106, 121, 154, 155, 159, 161, 172, 173, 181, 203, 215, 216, 225, 226, 266, 273, 275, 276, 279, 280, 290, 293, 294, 295, 296, 300, 303, 304, 305, 306, 309, 310, 311, 312, 314], "remove_actor": [275, 296], "remove_anim": [275, 295, 296], "remove_charact": [293, 296], "remove_el": [293, 296], "remove_from_scen": [273, 275, 296], "remove_from_scene_at": [275, 296], "remove_observer_from_actor": [31, 296], "remove_shm_from_resource_track": 296, "removeobserv": 290, "renam": [201, 273, 280, 303, 308, 311], "render": [4, 5, 7, 9, 10, 11, 12, 13, 15, 17, 20, 21, 22, 23, 24, 25, 26, 28, 29, 30, 31, 32, 33, 36, 37, 38, 40, 44, 45, 46, 53, 64, 69, 70, 74, 75, 76, 79, 80, 81, 82, 83, 86, 89, 94, 96, 97, 101, 109, 111, 113, 115, 116, 117, 118, 120, 123, 124, 126, 127, 129, 130, 131, 134, 135, 142, 144, 147, 149, 150, 154, 161, 169, 170, 171, 173, 176, 180, 190, 196, 205, 208, 209, 219, 220, 222, 227, 230, 234, 237, 240, 243, 246, 249, 252, 255, 258, 261, 264, 267, 269, 273, 281, 285, 286, 291, 293, 295, 296, 302, 303, 306, 309, 310, 311, 312, 313, 315], "render_aft": 291, "render_text": [293, 296], "render_window": 295, "renderbuff": 230, "renderev": 267, "renderlargeimag": 296, "renderwindow": [290, 295, 296], "renderwindowinteractor": 296, "renorm": 258, "renwin": 295, "reopen": 200, "reorient": 303, "rep_cent": 74, "rep_direct": 74, "rep_height": 74, "rep_radii": 74, "repeat": [2, 3, 16, 21, 25, 26, 29, 33, 36, 40, 60, 74, 158, 216, 227, 289, 293, 295, 312], "repeat_primit": [32, 227, 273, 296, 312], "repeat_primitive_funct": 296, "repeat_sourc": [273, 296], "repetit": [172, 225, 312], "replac": [20, 71, 76, 93, 101, 104, 129, 135, 171, 218, 224, 249, 279, 280, 290, 293, 303, 305, 306, 311, 312], "replace_al": 290, "replace_first": 290, "replace_shader_in_actor": 296, "replace_strip": 273, "replic": [180, 292], "repo": [96, 111, 180, 314], "report": [258, 264, 267, 280, 295, 302, 312], "reportsnapshot": 295, "reposit": [37, 135, 187, 215, 225, 251, 258, 271, 312], "repositori": [37, 112, 114, 116, 118, 119, 121, 124, 127, 129, 130, 133, 142, 173, 184, 188, 193, 196, 278, 286, 288], "repr": [278, 284, 290], "repres": [17, 18, 32, 33, 35, 36, 74, 146, 154, 169, 172, 173, 230, 255, 256, 269, 270, 273, 274, 276, 280, 286, 289, 291, 293, 294, 295], "represent": [32, 40, 71, 74, 134, 141, 142, 147, 151, 153, 159, 168, 171, 172, 173, 227, 269, 273, 286, 311], "represent_actor_as_wirefram": [71, 296], "reproduc": [314, 315], "repulsion100": [28, 30, 289], "repulsion200": [28, 289], "repulsion724": [28, 289], "repulsionn": 28, "repulst": 36, "request": [97, 108, 129, 130, 133, 134, 135, 136, 139, 148, 151, 163, 170, 171, 172, 173, 179, 193, 201, 205, 225, 226, 233, 236, 239, 248, 260, 267, 269, 271, 276, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312], "requir": [14, 24, 27, 28, 32, 36, 71, 80, 82, 93, 96, 99, 108, 110, 112, 142, 146, 147, 149, 152, 161, 172, 178, 180, 181, 185, 194, 200, 206, 211, 214, 218, 220, 225, 227, 234, 236, 240, 247, 253, 255, 256, 260, 261, 263, 264, 265, 269, 270, 271, 276, 291, 293, 300, 303, 306, 312, 314], "res_factor": 264, "resampl": 14, "rescal": 295, "rescu": 142, "research": [73, 97, 116, 150, 151, 165, 167, 168, 179, 185, 243], "resembl": 180, "reserv": 315, "reset": [10, 32, 295], "reset_camera": [4, 5, 7, 9, 10, 11, 12, 13, 14, 15, 17, 18, 19, 20, 21, 24, 26, 27, 28, 29, 30, 31, 32, 33, 36, 37, 38, 46, 50, 54, 56, 59, 60, 61, 62, 63, 65, 66, 68, 76, 79, 80, 81, 82, 83, 87, 93, 94, 295, 296], "reset_camera_tight": [295, 296], "reset_clipping_rang": [21, 24, 36, 39, 46, 50, 54, 56, 295, 296], "resetcamera": 10, "reshap": [25, 40, 80, 81, 82, 83, 93, 127, 184, 193, 294, 306], "resid": [142, 173], "residu": 286, "residue_seq": 286, "resiz": [37, 48, 110, 112, 114, 140, 143, 149, 152, 155, 158, 161, 171, 182, 225, 239, 242, 248, 251, 266, 271, 291, 293, 296, 310, 312], "resize_shap": [293, 296], "resolut": [5, 17, 29, 30, 33, 46, 63, 65, 71, 74, 87, 142, 236, 257, 264, 269, 273, 289, 295, 304], "resolv": [147, 149, 159, 169, 211, 216, 225, 233, 236, 242, 248, 251, 254, 257, 266, 271, 302, 303, 310, 312], "reson": [269, 274], "resourc": [86, 134, 142, 145, 148, 151, 154, 157, 158, 173, 256, 275, 291], "resource_track": [145, 148, 291], "respect": [15, 21, 72, 74, 81, 83, 93, 108, 110, 114, 135, 140, 149, 169, 184, 187, 216, 225, 235, 273, 281, 291, 293, 294, 306], "respons": [67, 80, 82, 127, 129, 140, 148, 154, 173, 195, 226, 243, 267, 271, 275, 291, 295], "rest": [116, 147, 179, 244], "restart": [242, 275, 296], "restitut": [79, 80, 82, 83, 93], "restrict": [117, 178, 185, 293], "restructur": [155, 171, 201, 224, 260], "restructuredtext": 306, "result": [28, 31, 35, 36, 40, 73, 117, 118, 142, 143, 148, 149, 151, 173, 179, 180, 184, 197, 211, 236, 238, 239, 249, 252, 254, 255, 258, 259, 265, 266, 267, 269, 270, 271, 274, 278, 284, 290, 294, 295], "result_posit": 14, "result_valu": 14, "resum": 314, "retain": [149, 171, 315], "rethink": 258, "retriev": [6, 7, 9, 13, 246, 258, 269, 270, 271, 287, 290], "return": [5, 12, 15, 21, 24, 25, 26, 27, 28, 29, 30, 32, 36, 37, 40, 46, 53, 62, 64, 65, 68, 71, 74, 75, 93, 94, 114, 118, 148, 188, 193, 202, 223, 225, 226, 237, 238, 240, 243, 266, 267, 269, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 312], "return_ifram": [291, 296], "return_inv": 30, "reus": [158, 238, 273], "reveal": [152, 264], "revers": 167, "reverse_scrol": 293, "revert": [28, 263], "review": [108, 109, 140, 146, 149, 162, 163, 164, 167, 174, 179, 181, 210, 220, 225, 227, 232, 233, 235, 238, 241, 245, 247, 249, 250, 251, 252, 253, 255, 256, 257, 258, 263, 264, 266, 268, 269, 270, 271, 286, 309, 310, 314], "revis": [253, 267], "revisit": [242, 271], "revoir": [141, 144, 147, 150, 153, 156, 159, 162, 165, 168, 170], "revolv": [146, 149, 266], "rewind": 226, "rewrit": 271, "rewritten": [135, 276], "rgb": [27, 47, 193, 270, 273, 274, 275, 276, 285, 286, 289, 293, 294, 295, 302, 309], "rgb2hsv": 296, "rgb2lab": 296, "rgb2space": 275, "rgb2xyz": 296, "rgb_arrai": 294, "rgb_from_xyz": 296, "rgb_standard": [274, 276], "rgb_to_vtk": 296, "rgba": [12, 234, 237, 267, 273, 277, 289, 294, 295, 306], "rheault": [229, 312], "rhombi": 306, "rhombicuboctahedron": [176, 289, 296, 306, 311], "rhombocuboctahedron": [122, 307], "ribbon": [141, 144, 147, 150, 156, 159, 162, 168, 171, 172, 296], "richardson": [141, 172, 286], "rid": 111, "riggedfigur": [13, 193, 217], "riggedsimpl": [193, 212, 214], "right": [11, 14, 15, 24, 27, 30, 32, 37, 43, 53, 54, 56, 63, 86, 143, 145, 147, 149, 152, 161, 171, 178, 184, 225, 235, 238, 239, 240, 249, 265, 270, 273, 293, 294, 295, 305, 312, 314, 315], "right_btn_press": 291, "right_btn_releas": 291, "right_button_click_callback": [293, 296], "right_button_release_callback": [293, 296], "right_disk_ratio": [293, 296], "right_disk_valu": [293, 296], "right_move_left": [293, 296], "right_move_right": [293, 296], "right_x_posit": [293, 296], "rightbuttonpressev": 291, "rightbuttonreleaseev": 291, "rigid": [116, 169, 269], "rigidbodi": 180, "rigor": 271, "ring": [15, 51, 54, 56, 293], "ring_slid": [53, 54, 56], "ringslider2d": [53, 54, 56, 124, 194, 225, 254, 296], "rinner": 273, "risk": 263, "rm": [4, 10, 32, 295, 296], "rm_all": [295, 296], "ro": 74, "road": [63, 243, 267], "roadblock": [245, 260], "robin": 302, "robot": [57, 58, 89, 93, 118, 210, 226, 313], "robust": [86, 88, 236], "rock": [47, 53], "rohit": [229, 312], "roi": [22, 23, 28, 89, 250, 273, 302, 312, 313], "roi_ev": 28, "roi_evec": 28, "rokem": [103, 304], "role": 271, "roll": [28, 93, 205, 292, 295, 296], "roman": 276, "room": 97, "roorke": [141, 179], "root": [93, 233, 239, 258, 266, 267, 271, 314], "root_anim": 281, "root_robe_c": [81, 83], "rope": [81, 83, 93, 129], "rope_actor": [81, 83, 93], "rosenblatt": 246, "rot": 74, "rot_dril": 65, "rot_main_arm": 65, "rot_mat": [80, 81, 82, 83, 93, 127], "rot_sub_arm": 65, "rotat": [4, 5, 10, 15, 20, 28, 31, 37, 38, 40, 52, 54, 56, 63, 65, 67, 72, 74, 80, 81, 82, 93, 119, 120, 123, 135, 159, 167, 172, 176, 182, 191, 192, 195, 198, 201, 202, 203, 204, 216, 218, 225, 226, 227, 252, 267, 269, 270, 273, 275, 281, 283, 285, 293, 295, 296, 311, 312], "rotate4d": 40, "rotate_2d": 296, "rotate_axi": 15, "rotate_camera": 10, "rotate_con": 52, "rotate_cub": [53, 54, 56], "rotated_3d": 40, "rotatewxyz": 93, "rotatex": [53, 54, 56], "rotation4d_xi": 40, "rotation4d_zw": 40, "rotation_angl": [53, 54, 56], "rotation_axi": [25, 293], "rotation_ev": 68, "rotation_mat": 292, "rotation_slid": [200, 221, 225, 312], "rotation_spe": 293, "rough": [37, 72, 73, 170, 227, 285], "rougier": 173, "round": [11, 24, 30, 72, 73, 80, 81, 82, 83, 197, 258, 273, 289], "router": 273, "routin": 294, "row": [14, 276, 282, 294], "rp2color": 276, "rplanet": 15, "rresolut": 273, "rst": [96, 164, 303, 307, 312, 314], "rtc_server": 291, "rtcserver": 296, "rtmp": 312, "rubbon": 286, "ruin": 249, "rule": [32, 139, 140, 155, 180, 231, 311], "run": [20, 25, 26, 27, 29, 32, 33, 36, 38, 40, 74, 88, 93, 98, 99, 100, 101, 103, 104, 106, 122, 132, 138, 142, 143, 166, 175, 176, 178, 180, 190, 196, 229, 232, 255, 258, 291, 292, 306, 310, 312, 314], "run_app": 291, "run_command": [291, 296], "run_until_complet": 88, "runtim": [112, 133, 135, 151, 171, 175, 181, 227, 280], "runtimeerror": 280, "rv": 26, "rw": 314, "rx": 36, "ry": 36, "rz": 36, "s2012": 73, "s6": [34, 273], "sa": [170, 172], "safe": 275, "safest": 277, "sagitt": [14, 30], "sai": [142, 178, 181, 267, 279, 293, 314], "said": [93, 112, 114, 116, 118, 121, 124, 135, 154, 179, 181, 238, 255, 264, 267], "sail": 260, "sailesh": [229, 312], "sajag": [138, 141, 166, 172, 176, 309, 310, 311], "same": [2, 4, 14, 18, 21, 27, 28, 32, 59, 61, 67, 68, 80, 81, 83, 93, 107, 110, 111, 112, 114, 116, 120, 121, 126, 134, 141, 142, 143, 144, 148, 152, 154, 155, 156, 161, 173, 175, 179, 180, 181, 182, 190, 191, 192, 194, 203, 205, 210, 211, 212, 214, 217, 226, 234, 238, 246, 249, 255, 259, 264, 265, 266, 267, 268, 269, 270, 273, 274, 275, 276, 280, 283, 286, 290, 291, 294], "sampl": [9, 38, 184, 188, 193, 196, 202, 234, 246, 270, 275, 278, 295, 312], "sampler": [270, 281], "sampler_data": 281, "san": 173, "sanjai": [138, 309], "sanner": 165, "sara": [229, 312], "saransh": [106, 306], "satellit": [4, 180], "satellite_actor": 4, "satellite_filenam": 4, "satellite_obj": 4, "satisfi": [180, 242], "satur": 27, "saturation_rang": [14, 27, 276], "saturn": 15, "saturn_actor": 15, "saturn_r": 15, "saturn_rings_actor": 15, "save": [11, 12, 14, 18, 24, 35, 135, 142, 154, 158, 188, 189, 220, 267, 275, 277, 278, 281, 282, 289, 295, 303, 304, 306, 312, 314], "save_imag": [45, 296, 306], "save_polydata": [18, 296], "save_screenshot": [295, 296], "savefig": 277, "saw": [142, 145, 181], "sc": 287, "scalabl": 271, "scalar": [27, 184, 273, 275, 281, 294], "scalar_bar": [27, 296], "scalar_color": 273, "scalarbaractor": 296, "scale": [2, 4, 5, 10, 11, 12, 14, 15, 21, 25, 26, 28, 30, 31, 32, 34, 46, 53, 54, 56, 59, 60, 61, 63, 64, 65, 67, 68, 71, 72, 73, 74, 75, 80, 81, 82, 83, 87, 93, 114, 123, 152, 178, 181, 200, 202, 204, 210, 212, 213, 216, 218, 226, 227, 235, 239, 248, 249, 254, 255, 257, 258, 262, 263, 264, 265, 269, 270, 271, 273, 274, 275, 281, 286, 289, 293, 295, 296, 308, 309], "scale_1": 275, "scale_2": 275, "scale_ev": 68, "scale_keyfram": 275, "scale_mat": 292, "scale_rang": [14, 27, 276], "scalevsoutput": 269, "scan": 182, "scatter": 285, "scenario": [142, 145, 146, 148, 173, 242, 267], "scene": [0, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 60, 61, 62, 63, 64, 65, 66, 67, 68, 71, 72, 73, 74, 75, 76, 79, 80, 81, 82, 83, 86, 87, 88, 89, 94, 101, 119, 131, 134, 143, 146, 149, 171, 184, 188, 192, 198, 211, 213, 224, 226, 246, 255, 259, 264, 266, 267, 269, 271, 273, 275, 281, 283, 287, 293, 296, 303, 311, 312, 313], "scene_id": 281, "scene_idx": 224, "scfactor": 269, "schedul": 107, "schemat": 172, "scheme": [27, 32], "sci": [108, 140], "scienc": [108, 232], "scientif": [44, 45, 97, 98, 99, 100, 101, 103, 104, 105, 106, 122, 132, 137, 138, 166, 172, 173, 176, 177, 181, 228, 229, 230, 251, 269, 271, 274, 286, 302, 312], "scientist": 151, "scifihelmet": 193, "scikit": [258, 267, 276], "scipi": [26, 96, 119, 306], "scope": [279, 314], "scott": [103, 304], "scratch": [178, 180, 236, 248], "screen": [24, 27, 30, 54, 74, 96, 175, 200, 234, 237, 239, 246, 249, 252, 255, 264, 267, 278, 293, 295, 312], "screen_clip": 295, "screenshot": [14, 24, 71, 167, 171, 295, 312], "screentextur": 264, "script": [96, 188, 262, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 314], "scroll": [14, 112, 129, 178, 293, 302], "scroll_bar_active_color": 293, "scroll_bar_inactive_color": 293, "scroll_callback": [293, 296], "scroll_click_callback": [293, 296], "scroll_drag_callback": [293, 296], "scroll_release_callback": [293, 296], "scrollbar": [110, 112, 114, 135, 155, 236, 239, 242, 248, 266, 271, 293, 302], "scrollbarsupd": 135, "scrollbarui": 271, "sd_cylind": 74, "sd_sphere": 71, "sd_sphere_norm": 71, "sdcone": 269, "sdcylind": 74, "sde": 267, "sdf": [28, 69, 70, 87, 89, 111, 113, 126, 134, 138, 173, 229, 232, 238, 241, 245, 253, 256, 296, 302, 307, 309, 312, 313], "sdf_actor": [123, 125], "sdf_cylinder_frag_impl": 74, "sdf_eval": 71, "sdf_map": 74, "sdfactor": 75, "sdist": 314, "sdsphere": [71, 269], "se": 165, "seamlessli": [254, 260], "search": [121, 168, 178, 180, 203, 218, 237, 267, 295], "sec": [11, 12, 21, 80, 81, 82, 83, 93, 118, 127], "second": [9, 20, 28, 49, 53, 54, 60, 62, 64, 66, 71, 79, 93, 96, 110, 114, 116, 118, 127, 134, 135, 139, 144, 154, 169, 171, 172, 173, 175, 179, 185, 205, 218, 234, 244, 249, 252, 255, 258, 264, 267, 270, 275, 276, 286, 291, 295, 314], "second_button_exampl": [43, 54], "secondli": 152, "section": [93, 184, 245, 249, 251, 267, 271, 276, 290, 302, 309, 312], "sector": [273, 289], "secur": [106, 264, 306], "see": [14, 24, 27, 28, 31, 32, 62, 64, 72, 73, 74, 86, 96, 97, 102, 108, 110, 112, 114, 116, 118, 119, 121, 124, 127, 129, 130, 140, 142, 143, 145, 146, 147, 148, 149, 151, 152, 154, 155, 157, 158, 161, 164, 167, 169, 173, 178, 180, 187, 193, 194, 197, 200, 203, 206, 209, 210, 211, 216, 219, 221, 225, 232, 235, 237, 241, 249, 253, 255, 258, 260, 262, 265, 268, 269, 270, 274, 276, 280, 290, 292, 295, 312], "seed": [39, 271], "seed_mask": 39, "seedroi_actor": 39, "seeds_from_mask": 39, "seek": [186, 275, 293, 296], "seek_perc": [275, 296], "seem": [157, 161, 168, 170, 175, 182, 217, 218, 221, 234, 237, 243, 246, 249, 257, 258, 267, 309], "seen": [140, 223, 225, 267, 269, 289, 314], "seg": 312, "segfault": 312, "segment": [81, 83, 130, 217, 259, 275, 302, 310, 312], "segreg": 239, "select": [0, 1, 11, 32, 47, 55, 89, 108, 121, 135, 161, 166, 173, 179, 180, 182, 183, 185, 191, 194, 197, 215, 216, 218, 225, 260, 282, 285, 286, 287, 293, 294, 296, 310, 313], "select_option_callback": [293, 296], "select_tab_callback": [293, 296], "selectable_off": [12, 287, 296], "selectable_on": [287, 296], "selected_color": 293, "selected_shap": 293, "selected_text": [30, 47, 53, 293, 296], "selected_text_index": [293, 296], "selection_bg_color": 293, "selection_box": [293, 296], "selection_chang": [293, 296], "selection_text_color": 293, "selectionmanag": [12, 273, 296], "self": [28, 32, 38, 148, 283, 293, 312], "selfshadow": 73, "selm": 12, "sem": 187, "semest": [133, 179, 242], "semitranspar": 269, "send": [86, 93, 98, 99, 100, 101, 103, 104, 106, 122, 132, 138, 139, 153, 166, 176, 189, 197, 205, 207, 226, 229, 286, 314], "senior": [178, 179], "sens": [178, 234], "sensit": [269, 276], "sent": [86, 165, 178, 196, 205, 207], "sentenc": 246, "sep": 306, "separ": [7, 9, 13, 60, 93, 114, 116, 121, 127, 130, 135, 154, 169, 173, 183, 188, 189, 194, 201, 222, 225, 226, 239, 248, 266, 267, 269, 278, 286, 291, 302, 312], "sequenc": [178, 251, 276, 286, 287, 292, 295], "sequenti": 295, "serg": [98, 99, 100, 101, 103, 104, 105, 106, 122, 132, 133, 137, 138, 142, 166, 176, 177, 184, 193, 210, 220, 228, 229, 271, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312], "seri": [82, 97, 105, 137, 177, 180, 228, 295, 303, 314], "serial": 306, "serv": [86, 273, 286], "server": [84, 86, 87, 88, 89, 93, 96, 142, 148, 173, 296], "servic": 315, "session": [112, 193, 243, 254, 267, 271], "set": [5, 6, 8, 9, 13, 14, 15, 18, 19, 24, 27, 28, 30, 31, 32, 39, 44, 45, 46, 47, 49, 50, 53, 54, 56, 57, 58, 60, 63, 64, 65, 66, 68, 71, 72, 73, 74, 79, 80, 81, 82, 83, 86, 87, 89, 94, 114, 124, 129, 135, 154, 158, 172, 180, 181, 184, 186, 192, 194, 195, 196, 200, 203, 205, 207, 210, 213, 217, 221, 224, 226, 227, 230, 231, 234, 237, 243, 246, 255, 257, 258, 260, 264, 266, 267, 268, 269, 270, 271, 273, 274, 275, 276, 280, 281, 286, 289, 290, 291, 293, 294, 295, 307, 309, 312, 313, 314], "set_": 67, "set_actor_origin": [65, 296], "set_atomic_numb": 296, "set_atomic_posit": 296, "set_bond_ord": 296, "set_camera": [4, 5, 8, 15, 18, 25, 26, 27, 28, 29, 33, 36, 40, 46, 50, 54, 56, 67, 68, 79, 80, 81, 82, 83, 87, 295, 296], "set_camera_foc": 60, "set_camera_focal_keyfram": 60, "set_color": [61, 275, 296], "set_color_interpol": [61, 68, 275, 296], "set_color_keyfram": [275, 296], "set_figure_visibl": [46, 53], "set_foc": [275, 296], "set_focal_interpol": [60, 275, 296], "set_focal_keyfram": [60, 275, 296], "set_head_tail": [291, 296], "set_icon": [293, 296], "set_icon_by_nam": [293, 296], "set_img": [45, 293, 296], "set_input": 296, "set_interpol": [68, 275, 296], "set_keyfram": [275, 296], "set_messag": [293, 296], "set_mous": 296, "set_mouse_click": 296, "set_opac": [60, 274, 275, 296], "set_opacity_interpol": [275, 296], "set_opacity_keyfram": [275, 296], "set_polydata_color": [18, 296], "set_polydata_norm": 296, "set_polydata_primitives_count": 296, "set_polydata_tang": 296, "set_polydata_tcoord": 296, "set_polydata_triangl": [18, 296], "set_polydata_vertic": [18, 296], "set_posit": [59, 60, 62, 63, 64, 65, 67, 275, 293, 296], "set_position_interpol": [59, 60, 62, 66, 68, 275, 296], "set_position_keyfram": [59, 60, 66, 67, 275, 296], "set_rot": [63, 275, 296], "set_rotation_as_vector": [275, 296], "set_rotation_interpol": [65, 68, 275, 296], "set_scal": [60, 275, 296], "set_scale_interpol": [275, 296], "set_scale_keyfram": [275, 296], "set_slot_color": [293, 296], "set_start_method": [86, 87], "set_view_up": [275, 296], "set_view_up_interpol": [275, 296], "set_view_up_keyfram": [275, 296], "set_vis": [53, 54, 55, 56, 236, 239, 271, 293, 296, 302], "set_weel": 296, "setactivecamera": 6, "setbackground": 6, "setcollisionfilterpair": 93, "setcontext": [237, 240, 243], "setdatatyp": [234, 237], "setformat": [234, 237], "setgrav": [80, 81, 82, 83, 93], "setinput": 246, "setinputconnect": 246, "setinternalformat": [234, 237], "setinterpol": 14, "setinterv": 291, "setjointmotorcontrolmultidof": [81, 83], "setmagnificationfilt": [234, 237], "setminificationfilt": [234, 237], "setoffscreenrend": 243, "setopac": [17, 20, 94], "setorient": [79, 80, 81, 93], "setposit": [4, 12, 14, 15, 53, 54, 56, 63, 64, 65, 79, 80, 81, 82, 83, 93, 273, 296], "setrepresentationtowirefram": 74, "setscal": [4, 5, 15], "setter": [62, 143, 260, 263, 271, 302], "settextscalemodetonon": 239, "settextscalemodetoprop": 239, "settextur": 246, "settl": 200, "setuniformf": 76, "setup": [37, 81, 99, 155, 240, 243, 246, 251, 255, 258, 264, 267, 271, 300, 314], "setuptool": [229, 312], "setviewup": 295, "setvis": [46, 53, 54, 56, 273, 296], "seventh": 159, "sever": [5, 54, 134, 142, 145, 148, 149, 173, 222, 239, 253, 256, 259, 265, 267, 269, 271, 305], "sf": [30, 273, 274], "sh": [30, 148, 265, 269, 270, 273, 274], "sh_order": 39, "sh_to_sf_matrix": 30, "sha": [278, 306], "sha2": 306, "sha256": [106, 306], "sha3": 306, "shade": [27, 71, 73, 76, 128, 134, 181, 227, 273, 285], "shader": [22, 23, 70, 71, 74, 75, 76, 97, 102, 107, 109, 111, 117, 120, 125, 131, 132, 134, 139, 147, 171, 173, 175, 176, 178, 181, 192, 195, 200, 201, 207, 211, 218, 222, 224, 226, 227, 230, 232, 238, 243, 246, 249, 252, 256, 258, 259, 264, 265, 267, 269, 270, 273, 278, 296, 306, 308, 309, 310, 311, 312, 313], "shader_apply_effect": [31, 296], "shader_callback": [76, 310], "shader_fil": 290, "shader_to_actor": [74, 76, 211, 296], "shader_typ": 290, "shaders_dir": 296, "shaders_in_vtk": 290, "shadertoi": 256, "shadow": [24, 30, 178, 273, 293, 296], "shaft": [63, 65, 273, 289], "shaft_radiu": [29, 33, 273, 289], "shall": [141, 153, 199, 267, 315], "shallow": [273, 290, 294], "shallow_copi": 296, "shallowcopi": [273, 296], "shape": [11, 12, 14, 17, 21, 24, 27, 28, 30, 32, 36, 41, 42, 48, 49, 55, 75, 80, 81, 82, 83, 89, 93, 134, 181, 182, 183, 185, 187, 188, 191, 193, 197, 211, 215, 216, 218, 221, 225, 235, 265, 269, 270, 273, 274, 275, 276, 281, 282, 283, 286, 289, 292, 293, 294, 295, 296, 306, 312, 313], "shape_choos": 32, "shape_list": 48, "shape_typ": [48, 293], "share": [86, 110, 112, 114, 116, 118, 119, 121, 124, 127, 133, 135, 144, 145, 147, 148, 150, 153, 154, 156, 157, 159, 162, 165, 168, 170, 173, 231, 264, 291], "shared_memori": 148, "sharedctyp": 142, "sharedmemcircularqueu": 296, "sharedmemimagebuffermanag": [148, 296], "sharedmemmultidimensionalbuff": 296, "sharedmemori": [86, 145, 148, 151, 154, 291], "sheen": [73, 285], "sheen_tint": [73, 285], "sheenchair": 193, "sheencloth": 193, "sheet": [45, 169, 171, 172, 282, 286, 311], "sheet_path": 282, "shell": [145, 148], "shetti": [166, 176, 180, 225, 229, 271, 302, 310, 311, 312], "shi": [229, 312], "shift": [260, 263, 266, 271, 291], "shivam": [176, 179, 181, 198, 201, 222, 227, 229, 311, 312], "shm": [30, 39], "shm_a": 148, "shm_b": 148, "shmem": 148, "shmmanagermultiarrai": 154, "short": [212, 255, 288], "shortcut": 183, "shorten": 264, "shortest": 75, "shortli": 178, "shortlist": 179, "shortlog": 314, "should": [15, 18, 62, 63, 64, 88, 93, 142, 143, 145, 146, 148, 152, 154, 157, 161, 171, 173, 189, 190, 200, 221, 227, 234, 237, 238, 239, 240, 241, 258, 261, 262, 264, 270, 273, 274, 275, 276, 278, 281, 282, 285, 289, 290, 291, 293, 294, 295, 307, 309, 312, 314], "shouldn": [154, 161, 212, 271], "shout": 179, "show": [0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 24, 28, 29, 31, 32, 33, 34, 35, 36, 38, 39, 40, 41, 43, 44, 45, 49, 51, 52, 53, 55, 57, 60, 61, 62, 63, 64, 66, 68, 69, 71, 72, 73, 74, 75, 76, 77, 79, 80, 81, 82, 83, 84, 86, 89, 98, 99, 100, 101, 103, 104, 106, 111, 122, 132, 138, 139, 142, 144, 146, 150, 151, 154, 159, 161, 166, 169, 173, 175, 176, 179, 180, 181, 182, 201, 207, 216, 220, 227, 229, 237, 243, 247, 249, 250, 255, 258, 264, 267, 268, 269, 273, 275, 278, 291, 293, 294, 296, 303, 305, 306, 310], "show_caret": 293, "show_m": [14, 24, 30, 37], "show_m_mosa": 14, "show_manag": [38, 43, 44, 45, 46, 49, 50, 51, 52, 54, 55, 56, 59, 264], "show_panel": 275, "show_rotation_slid": [293, 296], "showable_text": [293, 296], "showcas": [72, 73, 96, 116, 121, 124, 125, 134, 168, 261], "showm": [4, 5, 7, 9, 10, 11, 12, 13, 15, 17, 20, 21, 25, 26, 28, 29, 31, 33, 36, 40, 47, 48, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 75, 76, 79, 80, 81, 82, 83, 86, 87, 88, 93, 94, 267, 290, 291, 295], "showmanag": [4, 5, 7, 9, 10, 11, 12, 13, 14, 15, 17, 20, 21, 24, 25, 26, 28, 29, 30, 31, 32, 33, 36, 37, 38, 40, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 75, 76, 79, 80, 81, 82, 83, 86, 87, 88, 93, 94, 220, 222, 224, 226, 255, 259, 267, 287, 290, 291, 296, 306, 312], "showmgr": 32, "showmmanag": 291, "shown": [35, 54, 55, 93, 117, 120, 125, 131, 136, 172, 185, 218, 225, 267, 268, 280, 286, 293], "shreya": [106, 306], "shrink": [27, 254, 273], "shutdown": 93, "si": [80, 93], "siddharth": [229, 312], "side": [32, 74, 152, 161, 186, 226, 230, 258, 264, 273, 283, 289, 293, 295, 309], "sideeffect": 143, "sierpinski": 32, "sierra": 303, "sig": 280, "siggraph": [73, 173], "sight": [178, 262], "sigma": [252, 255, 258, 264, 267, 269, 273, 274, 280], "sigma_": [267, 269], "sign": [71, 74, 75, 97, 122, 173, 174, 229, 269, 307, 312], "signal": [244, 246, 269, 273, 274], "signatur": 280, "signific": [233, 236, 237, 263, 264, 271], "silent": 151, "silhouett": 131, "silva": [106, 229, 306, 312], "similar": [32, 46, 93, 109, 118, 119, 149, 178, 181, 183, 206, 216, 221, 225, 252, 262, 267, 273, 276, 314], "similarli": [54, 56, 307], "simpl": [0, 1, 7, 18, 20, 21, 25, 30, 39, 41, 42, 54, 75, 84, 89, 114, 116, 121, 133, 142, 172, 173, 180, 181, 182, 193, 196, 199, 215, 217, 219, 223, 234, 238, 240, 243, 255, 257, 261, 262, 264, 267, 271, 275, 276, 281, 286, 292, 294, 295, 312, 313], "simple_collis": 21, "simplebondperceiv": 296, "simplemesh": 193, "simplemorph": 193, "simpler": [36, 74, 80, 224, 234, 237, 305], "simpleskin": [193, 208, 212], "simplesparseaccessor": 193, "simplest": 246, "simpli": [64, 93, 119, 155, 237, 267, 269], "simplic": [21, 180, 267, 269], "simplifi": [64, 88, 145, 224, 238, 260, 312], "simul": [15, 21, 26, 27, 37, 72, 77, 78, 89, 114, 118, 119, 121, 124, 127, 135, 159, 172, 226, 227, 267, 302, 303, 308, 309, 311, 312, 313], "simultan": [113, 260, 267, 269, 271, 287], "sin": [5, 15, 25, 29, 32, 33, 40, 65, 68, 81, 118, 275, 292], "sinc": [28, 60, 62, 64, 68, 71, 74, 75, 93, 96, 107, 109, 123, 125, 133, 147, 148, 178, 179, 184, 193, 202, 205, 226, 230, 232, 238, 244, 250, 251, 253, 260, 261, 262, 265, 266, 269, 270, 280, 295], "singl": [11, 12, 37, 60, 63, 67, 80, 113, 116, 118, 119, 121, 124, 134, 135, 149, 159, 186, 187, 189, 198, 226, 243, 251, 252, 255, 256, 264, 273, 275, 281, 282, 283, 286, 287, 293, 294, 295, 303, 308], "singular": 276, "sinusoid": 29, "site": 179, "sitek": [103, 304], "situat": [148, 266], "six": [267, 270], "sixth": [156, 269], "siyan": [166, 310], "size": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 71, 72, 73, 74, 75, 76, 79, 80, 81, 82, 83, 86, 87, 88, 93, 94, 110, 112, 114, 116, 121, 129, 135, 140, 142, 148, 149, 151, 152, 161, 171, 180, 182, 185, 193, 233, 249, 251, 254, 257, 263, 264, 265, 266, 269, 270, 271, 273, 274, 275, 276, 278, 281, 283, 289, 291, 293, 294, 295, 296, 305, 308], "size_chang": [24, 30, 37], "size_old": [24, 30, 37], "sk": 310, "skelet": [0, 1, 89, 121, 135, 196, 199, 204, 226, 313], "skeleton": [108, 110, 227], "sketch": [148, 174], "skill": [180, 232], "skim": 314, "skin": [13, 199, 202, 204, 208, 214, 217, 219, 223, 281, 312], "skin_anim": [13, 281, 296], "skin_id": 281, "skin_mat": 214, "skin_timelin": 13, "skinmatrix": 219, "skinnig": 281, "skip": [32, 276, 278, 279, 280], "skip_r": 296, "skybox": [37, 178, 278, 295, 296, 312], "skybox_0": 278, "skybox_1": 278, "skybox_front": 278, "skybox_negi": 278, "skybox_posx": 278, "skybox_right": 278, "sleep": [10, 88, 148, 291], "slerp": [189, 192, 202, 205, 224, 226, 296], "slice": [0, 1, 24, 28, 30, 89, 93, 250, 273, 274, 313], "slice_actor": 14, "slice_actor2": 14, "slice_along_axi": [30, 274, 296], "slice_ev": 28, "slice_evec": 28, "slice_index": 274, "slice_mosa": 14, "slicer": [0, 14, 24, 30, 89, 138, 296, 303, 304, 306, 309], "slicer_opac": 24, "slices_lut": 14, "slide": 293, "slider": [24, 30, 35, 37, 41, 42, 49, 89, 161, 186, 189, 198, 203, 218, 221, 225, 226, 261, 267, 293, 305, 306, 311, 312, 313], "slider_inner_radiu": 293, "slider_label_anisotropi": 37, "slider_label_anisotropy_direction_i": 37, "slider_label_anisotropy_direction_x": 37, "slider_label_anisotropy_direction_z": 37, "slider_label_anisotropy_rot": 37, "slider_label_base_ior": 37, "slider_label_coat_ior": 37, "slider_label_coat_rough": 37, "slider_label_coat_strength": 37, "slider_label_metal": 37, "slider_label_rough": 37, "slider_outer_radiu": 293, "slider_slice_anisotropi": 37, "slider_slice_anisotropy_direction_i": 37, "slider_slice_anisotropy_direction_x": 37, "slider_slice_anisotropy_direction_z": 37, "slider_slice_anisotropy_rot": 37, "slider_slice_base_ior": 37, "slider_slice_coat_ior": 37, "slider_slice_coat_rough": 37, "slider_slice_coat_strength": 37, "slider_slice_metal": 37, "slider_slice_rough": 37, "slight": [113, 201, 237], "slightli": [111, 140], "slot": [266, 293], "slow": [25, 29, 80, 81, 82, 83, 93, 147, 205, 226, 273], "slower": 205, "sm": 53, "small": [17, 64, 141, 142, 144, 161, 168, 180, 209, 247, 265, 267, 269, 270, 290, 305, 310], "smaller": [32, 74, 180, 193, 269, 270], "smash": 130, "smooth": [6, 32, 64, 74, 157, 170, 172, 173, 181, 191, 230, 246, 252, 260, 267, 269, 271, 273], "smoothen": [202, 209], "smoother": [28, 40, 71, 184, 200, 227, 248, 273], "smoothli": [125, 136, 142, 178, 251, 260], "smoothstep": 71, "smothli": 173, "snapshot": [24, 296, 305, 311, 312], "snippet": [93, 118, 127, 140, 150], "snowflak": 32, "so": [4, 14, 15, 17, 24, 27, 28, 32, 35, 36, 37, 40, 47, 54, 60, 66, 71, 73, 80, 82, 93, 94, 97, 110, 112, 113, 114, 115, 116, 117, 118, 121, 126, 127, 128, 129, 130, 131, 133, 135, 140, 143, 149, 152, 153, 155, 158, 161, 167, 168, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 189, 190, 191, 192, 194, 196, 200, 201, 205, 209, 213, 215, 216, 217, 218, 219, 221, 222, 225, 226, 237, 238, 241, 243, 247, 249, 250, 252, 253, 256, 259, 262, 265, 267, 269, 270, 273, 274, 291, 292, 295, 314], "social": [154, 173], "societi": [269, 274], "socket": 148, "softwar": [44, 45, 96, 97, 98, 99, 100, 101, 103, 104, 105, 106, 107, 108, 122, 132, 134, 135, 137, 138, 166, 171, 172, 176, 177, 178, 179, 180, 220, 222, 225, 226, 227, 228, 229, 267, 269, 271, 302, 310, 315], "soham": [106, 108, 122, 132, 135, 136, 138, 229, 266, 271, 306, 307, 308, 309, 312], "solar": [0, 1, 89, 307, 311, 313], "solarsystem": 308, "sole": [266, 271], "solid": [51, 54, 74, 173, 267], "solut": [24, 30, 109, 114, 142, 143, 145, 146, 148, 151, 155, 161, 173, 233, 236, 240, 243, 246, 249, 258, 263, 266, 267, 269, 270, 271, 273, 291], "solv": [113, 114, 121, 134, 139, 140, 142, 145, 148, 154, 179, 180, 185, 186, 203, 205, 207, 211, 214, 222, 258, 267, 269, 270, 309], "solvent": [165, 170, 172], "some": [5, 10, 11, 15, 24, 26, 27, 30, 31, 32, 33, 35, 36, 37, 39, 40, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 61, 62, 64, 72, 73, 74, 75, 79, 80, 81, 82, 83, 89, 93, 94, 109, 110, 111, 112, 118, 119, 121, 127, 129, 131, 139, 142, 143, 145, 146, 148, 149, 150, 151, 152, 154, 155, 157, 158, 161, 163, 164, 167, 169, 171, 173, 175, 178, 179, 180, 181, 182, 183, 184, 186, 187, 189, 191, 192, 193, 195, 197, 200, 201, 202, 204, 205, 206, 207, 209, 210, 211, 213, 215, 216, 217, 218, 220, 221, 224, 225, 226, 230, 232, 234, 237, 238, 239, 240, 241, 243, 244, 245, 246, 248, 249, 252, 253, 255, 256, 257, 258, 259, 261, 262, 264, 265, 266, 267, 268, 269, 270, 271, 273, 283, 306, 308, 309, 310, 312], "somehow": 179, "someon": 243, "someth": [114, 119, 121, 146, 149, 178, 180, 211, 221, 225, 232, 234, 237, 240, 241, 243, 246, 253, 255, 258, 261, 264, 265, 270, 276, 279, 293, 314], "sometim": [31, 135, 148, 173, 216, 218, 291], "soni": [138, 309], "soon": [96, 131, 146, 149, 158, 161, 171, 226, 238, 241, 267], "sophomor": 141, "sort": [35, 36, 87, 149, 171, 179, 271, 275, 295], "sought": 266, "souli": 148, "sound": 178, "sourc": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 71, 72, 73, 74, 75, 76, 79, 80, 81, 82, 83, 86, 87, 88, 89, 97, 98, 99, 100, 101, 103, 104, 105, 106, 122, 130, 132, 134, 135, 137, 138, 142, 150, 154, 166, 173, 176, 177, 178, 180, 181, 228, 229, 264, 269, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 310, 314, 315], "south": 292, "sow": 271, "space": [24, 27, 61, 71, 74, 75, 113, 141, 144, 153, 167, 170, 171, 172, 178, 193, 271, 273, 275, 276, 286, 292, 294, 310], "space2rgb": 275, "space_filling_model": 144, "spam": 178, "span": 271, "sparshg": [229, 312], "spatial": 230, "spawm": [142, 145], "spawn": [86, 87], "speak": 178, "spec": 139, "specglossvsmetalrough": 193, "special": [31, 37, 110, 118, 172, 173, 264, 267, 309, 310, 315], "specif": [5, 12, 24, 28, 31, 62, 71, 80, 81, 82, 83, 96, 114, 118, 121, 127, 129, 133, 135, 139, 140, 142, 148, 149, 151, 157, 161, 171, 173, 180, 197, 224, 225, 226, 233, 234, 244, 246, 255, 259, 263, 265, 267, 269, 270, 271, 275, 276, 278, 289, 290, 293, 295, 314, 315], "specifi": [2, 3, 4, 8, 16, 17, 43, 54, 64, 76, 112, 135, 237, 273, 275, 278, 280, 283, 284, 285, 286, 290, 293, 294, 295], "specular": [73, 205, 285], "specular_color": 285, "specular_level": 285, "specular_pow": 285, "specular_tint": [73, 285], "specularcolor": [71, 74], "specularpow": [71, 74], "speculartest": 193, "speed": [11, 12, 26, 40, 97, 147, 176, 178, 195, 198, 226, 240, 275, 293, 295, 296, 311], "spehner": 165, "spell": 306, "spend": [180, 185, 213, 258], "spent": [107, 109, 115, 119, 145, 148, 151, 163, 180, 239, 258, 261, 264, 267], "sph2cart": 292, "sphere": [0, 1, 5, 8, 10, 15, 20, 21, 28, 30, 34, 35, 36, 37, 41, 42, 46, 59, 62, 65, 66, 67, 68, 69, 70, 74, 75, 79, 80, 83, 86, 87, 88, 89, 93, 116, 124, 125, 130, 134, 141, 145, 172, 173, 179, 181, 205, 226, 227, 250, 269, 270, 274, 286, 289, 292, 296, 306, 309, 311, 312, 313], "sphere100": 28, "sphere200": 28, "sphere2cart": 296, "sphere724": 28, "sphere_actor": [4, 5, 10, 20, 21, 35, 36, 87, 273], "sphere_cpk": 296, "sphere_dict": 30, "sphere_dist": 71, "sphere_geometri": 36, "sphere_high": 30, "sphere_linear": 66, "sphere_low": 30, "sphere_nam": 289, "sphere_radiu": 71, "sphere_splin": 66, "sphere_valu": 273, "spheremap": 134, "spheres_actor": 71, "spheres_posit": 36, "spheresourc": 296, "spheric": [5, 30, 93, 113, 125, 134, 195, 226, 253, 256, 259, 262, 269, 270, 273, 275, 292], "spherical_coordinate_system": 292, "sphericalcoordin": 292, "sphinx": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 71, 72, 73, 74, 75, 76, 79, 80, 81, 82, 83, 86, 87, 88, 89, 173, 304, 312, 314], "sphinx_galleri": 303, "spike": 17, "spiki": [0, 1, 89, 306, 313], "spin": [93, 124, 127, 271, 295], "spinbox": [41, 42, 89, 248, 271, 296, 313], "spinbox2d": [164, 171], "spinboxui": [233, 257, 260, 263, 271, 293, 302], "spline": [57, 58, 60, 89, 186, 198, 208, 226, 273, 275, 313], "spline_anim": 66, "spline_degre": 275, "spline_interpol": [62, 66, 296], "spline_subdiv": 273, "splinefilt": 296, "split": [98, 298], "spoiler": 252, "spong": 32, "sponsor": 302, "sponza": 193, "spot": 237, "spq_actor": 273, "spread": [154, 173, 234], "sprite": [45, 169, 171, 282, 302, 311], "sprite_path": 45, "sprite_sheet": 45, "sprite_to_vtk": 45, "spuriou": 314, "sq_actor": 273, "sqrt": [11, 15, 25, 32, 36], "squar": [15, 34, 40, 43, 49, 54, 178, 270, 283, 289, 293, 296, 305, 307], "square_grid": 49, "sreekar": [229, 312], "srgb": 276, "ss": [293, 296], "ssl": 307, "st": [104, 106, 305, 306], "stabl": 277, "stack": [109, 164, 167, 171, 218, 283], "stackoverflow": 291, "stadia": 173, "stage": [142, 226, 232, 244, 250, 260, 264, 267], "stai": 231, "stainedglasslamp": 193, "stakehold": 236, "stall": 171, "stand": [176, 311, 314], "standalon": [127, 129, 135, 302], "standard": [14, 28, 76, 132, 179, 180, 255, 267, 269, 271, 273, 274, 276, 285, 290, 292, 294, 308, 311], "star": [92, 98, 99, 100, 101, 103, 104, 106, 122, 132, 138, 166, 176, 229, 289, 306, 307], "star2d": 306, "start": [4, 5, 7, 9, 10, 11, 12, 13, 14, 15, 17, 19, 20, 21, 24, 25, 26, 28, 29, 30, 31, 32, 33, 35, 36, 37, 38, 40, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 71, 72, 73, 74, 75, 76, 79, 80, 81, 82, 83, 86, 87, 88, 93, 96, 107, 108, 113, 114, 121, 125, 130, 131, 133, 134, 139, 140, 151, 157, 161, 162, 164, 175, 178, 179, 180, 182, 183, 184, 185, 187, 189, 191, 192, 193, 194, 200, 202, 203, 204, 205, 206, 209, 211, 212, 217, 218, 221, 223, 225, 232, 233, 235, 236, 237, 238, 239, 240, 241, 247, 248, 250, 253, 255, 256, 264, 266, 267, 269, 276, 290, 291, 295, 296, 305, 306, 312], "start_anim": 15, "start_button": 15, "startup": 293, "startup_tab_id": 293, "stat": [26, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312], "state": [22, 23, 64, 89, 139, 145, 146, 152, 154, 173, 180, 198, 226, 234, 275, 290, 293, 295, 306, 311, 313], "statement": [4, 71], "static": [61, 65, 140, 167, 171, 198, 254, 255, 257, 259, 271, 275, 293, 312], "static_actor": [275, 296], "statist": [246, 267, 269], "statu": [93, 193, 245, 252, 293, 314], "std": [14, 180], "stderr": 148, "stdout": 148, "stealth": 295, "steam": 148, "steiner": 276, "stem": 254, "stencil": 234, "step": [21, 26, 31, 35, 36, 39, 52, 61, 62, 71, 74, 79, 80, 81, 82, 83, 93, 96, 109, 111, 116, 125, 126, 127, 139, 159, 172, 178, 205, 226, 240, 243, 246, 247, 252, 253, 255, 267, 271, 275, 276, 293, 307, 312, 314], "step_interpol": [61, 296], "step_siz": 39, "step_text": 61, "stepsimul": [79, 80, 81, 82, 83, 93], "stereo": [101, 295, 303], "stereo_typ": 295, "stick": [141, 147, 153, 172, 296], "stiff": [81, 129], "still": [24, 71, 96, 118, 121, 129, 131, 135, 148, 152, 155, 158, 173, 178, 180, 190, 194, 202, 204, 211, 212, 214, 222, 235, 244, 249, 250, 251, 255, 258, 259, 261, 265, 267, 269, 270, 271, 280], "stl": [76, 94, 282], "stlreader": 296, "stlwriter": 296, "stochast": 310, "stop": [67, 86, 87, 88, 96, 172, 226, 234, 237, 275, 291, 293, 296], "stop2": [43, 54], "stopping_criterion": 39, "storag": 267, "store": [9, 13, 25, 26, 27, 32, 39, 46, 47, 64, 74, 80, 82, 86, 93, 94, 148, 150, 154, 157, 184, 193, 197, 199, 205, 220, 225, 227, 230, 267, 270, 276, 278, 286, 291, 293], "stored_sha256": 278, "stori": 178, "str": [10, 11, 14, 20, 21, 25, 35, 36, 72, 73, 80, 81, 82, 83, 87, 272, 273, 274, 275, 276, 277, 278, 280, 281, 282, 283, 284, 288, 289, 290, 291, 293, 294, 295, 304], "straight": 179, "straighter": 273, "straightforward": [181, 255, 267], "strand": 172, "strang": [175, 193], "strategi": 314, "stream": [85, 139, 142, 145, 154, 173, 174, 175, 229, 296, 312, 313], "stream_actor": [24, 27], "stream_actor10": 27, "stream_actor2": 27, "stream_actor3": 27, "stream_actor4": 27, "stream_actor5": 27, "stream_actor6": 27, "stream_actor7": 27, "stream_actor8": 27, "stream_actor9": 27, "stream_client": 291, "stream_interact": 86, "streamclient": 291, "streamer": [87, 139, 145], "streaminteract": 291, "streamlin": [22, 23, 24, 89, 102, 233, 273, 274, 276, 294, 306, 313], "streamlines_actor": 39, "streamtub": [21, 24, 27, 296, 306], "strel": 295, "strength": [37, 72, 285], "stress": 312, "stretch": [140, 141, 171, 172, 173, 225, 227, 267, 271], "strict": [234, 278, 284, 290, 315], "strictli": [73, 170], "stride": [276, 281, 296], "string": [169, 205, 227, 273, 274, 276, 278, 280, 281, 282, 284, 285, 286, 290, 291, 292, 293, 295], "stringarrai": 296, "strip": [172, 273, 276, 312], "strongli": 314, "structur": [15, 18, 24, 32, 35, 146, 149, 154, 172, 173, 179, 184, 186, 238, 243, 247, 250, 266, 267, 269, 270, 271, 283, 286, 295, 306], "struggl": [180, 227, 237, 243], "stuck": 240, "student": [107, 108, 139, 140, 180], "studi": [146, 163, 192, 243], "stuff": [149, 156, 167, 173, 175, 178, 180], "stun": 134, "stupend": 142, "style": [268, 276, 278, 295, 296, 306, 314], "sub": [32, 65, 108, 110, 112, 114, 116, 118, 119, 121, 124, 127, 129, 130, 133, 134, 135, 149, 152, 167, 171, 172, 178, 180, 225, 226, 227, 267, 269, 271, 275, 293, 302], "sub_arm": 65, "sub_timelin": 192, "subdivis": 273, "subj_1": [14, 24, 27], "subj_id": 27, "subject": [24, 180, 226], "submiss": [133, 241], "submit": [169, 232, 238, 240, 245, 250], "submodul": 152, "subprocess": [145, 148], "subscript": 184, "subset": [72, 186, 189], "substanc": 172, "substanti": [271, 314], "substitut": [288, 290, 315], "subsurfac": [73, 285], "subtract": [93, 118, 295], "success": [242, 243, 252, 295], "successfulli": [108, 110, 112, 135, 179, 180, 187, 206, 211, 218, 223, 242, 257, 258, 263, 271, 295], "sudden": 255, "suffer": [243, 249, 255], "suffic": 271, "suffix": 278, "suffix_typ": 278, "suggest": [98, 99, 100, 101, 103, 104, 106, 111, 116, 118, 122, 132, 138, 153, 156, 163, 166, 176, 184, 189, 197, 199, 200, 202, 206, 214, 218, 221, 222, 229, 232, 240, 253, 259, 264, 266, 270, 273, 276], "suit": [71, 180, 266, 311], "suitabl": [71, 173, 213, 265, 271], "sum": [21, 121, 180, 249, 252, 267, 286, 292], "sum_": [258, 267], "summar": [112, 230], "summari": [12, 27, 246, 253], "summer": [107, 133, 136, 139, 140, 141, 178, 180, 193, 230, 231, 310], "sun": [15, 308], "sun_actor": 15, "sun_data": 15, "super": [97, 226], "superactor": 173, "superquadr": [269, 289, 296, 306, 307, 309], "suppli": 273, "support": [67, 76, 80, 82, 94, 96, 98, 99, 100, 101, 103, 104, 106, 111, 112, 113, 115, 117, 120, 122, 123, 125, 132, 133, 134, 135, 136, 138, 143, 146, 149, 155, 157, 159, 161, 164, 166, 169, 171, 173, 176, 181, 188, 190, 192, 193, 196, 202, 203, 204, 208, 213, 223, 225, 226, 227, 229, 267, 269, 273, 274, 276, 282, 290, 293, 295, 303, 306, 309, 310, 311, 312, 314], "suppos": [93, 110, 129, 154, 173, 249, 270], "supposedli": [240, 243], "suppress": 143, "sure": [5, 13, 24, 63, 108, 111, 112, 113, 115, 117, 120, 123, 125, 126, 128, 131, 136, 221, 225, 238, 260, 262, 265, 270, 275, 276, 314], "surf": 25, "surfac": [0, 1, 4, 5, 17, 19, 22, 23, 25, 71, 74, 75, 89, 134, 141, 150, 156, 159, 162, 165, 168, 170, 172, 180, 184, 227, 267, 269, 276, 294, 296, 303, 304, 310, 311, 313], "surface_actor": 273, "surface_color": 39, "surface_opac": 39, "surpris": 180, "surround": [62, 146], "suscept": 269, "suspect": 113, "suspend": 26, "suzann": [94, 193, 309, 312], "svv": [96, 314], "swami": [138, 141, 166, 172, 176, 309, 310, 311], "switch": [32, 35, 135, 140, 171, 180, 185, 225, 239, 281, 293], "sxyz": 292, "sy": [86, 148, 278, 284, 290], "sym_diff": [46, 53], "symbol": [263, 286], "symmetr": [46, 273, 274, 312], "symmetric362": [17, 30, 289], "symmetric642": 289, "symmetric724": 289, "symmetric_differ": [46, 53], "sync": [79, 81, 83, 114, 116, 127, 242], "sync_actor": [79, 80, 81], "sync_brick": [80, 83, 93, 127], "sync_chain": 83, "sync_domino": 82, "sync_joint": [81, 93], "synchron": 243, "syntax": [141, 198], "system": [0, 1, 17, 24, 64, 86, 88, 89, 93, 112, 116, 122, 128, 133, 134, 136, 139, 145, 154, 157, 158, 171, 173, 174, 175, 178, 180, 182, 184, 202, 206, 219, 226, 229, 242, 248, 273, 291, 307, 308, 309, 311, 312, 313], "systemat": 266, "syxz": 292, "t": [13, 14, 24, 25, 28, 29, 48, 59, 60, 61, 62, 65, 67, 68, 71, 74, 81, 86, 88, 93, 110, 112, 113, 114, 116, 118, 121, 133, 135, 139, 140, 142, 143, 146, 148, 149, 151, 154, 158, 159, 161, 167, 170, 171, 173, 175, 178, 179, 180, 181, 182, 184, 185, 188, 189, 191, 192, 194, 195, 196, 197, 198, 199, 202, 205, 206, 208, 209, 210, 211, 212, 213, 214, 215, 216, 218, 219, 220, 221, 223, 224, 225, 233, 237, 240, 242, 243, 245, 246, 249, 252, 257, 258, 261, 264, 265, 267, 269, 270, 271, 273, 275, 276, 286, 291, 294, 296, 302, 303, 309, 310, 314], "t0": [62, 275], "t1": [24, 62, 275], "t1_warp": 14, "t2": 62, "t3": 62, "t_actor": 25, "tab": [41, 42, 89, 114, 121, 132, 135, 180, 293, 296, 302, 308, 312, 313], "tab_bar_po": [53, 293], "tab_idx": 293, "tab_ui": 53, "tabl": [14, 193, 273, 274, 276], "tabpanel2d": [135, 296], "tabui": [53, 124, 239, 271, 296, 312], "tackl": [135, 239, 257, 268, 271], "tad": 168, "tag": [290, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 314], "tail": [148, 291, 296], "tailor": 24, "take": [4, 5, 15, 26, 37, 40, 62, 64, 71, 74, 97, 136, 142, 148, 149, 154, 158, 161, 164, 171, 178, 180, 185, 188, 198, 202, 219, 224, 227, 232, 236, 246, 252, 253, 255, 258, 262, 264, 265, 267, 269, 270, 273, 274, 275, 278, 290, 293, 294, 295, 314], "taken": [15, 26, 267, 269, 293], "talk": [105, 137, 142, 177, 179, 180, 181, 228, 235, 240, 243, 246, 249, 252, 258, 261, 267, 268], "tan": [269, 274], "tan_0": 62, "tan_1": 62, "tan_cubic_spline_interpol": [62, 296], "tangent": [37, 62, 72, 202, 208, 275, 294], "tangents_from_actor": 296, "tangents_from_direction_of_anisotropi": [37, 72, 296], "tangents_to_actor": [37, 72, 296], "tania": [229, 232, 249, 269, 302, 312], "tanta": 178, "target": [10, 35, 36, 86, 87, 227, 275, 281], "target_fp": 45, "targetposit": [81, 83], "targetveloc": [81, 83], "task": [53, 71, 107, 108, 109, 111, 113, 115, 117, 118, 120, 123, 125, 128, 130, 131, 134, 135, 136, 140, 143, 146, 149, 151, 152, 154, 155, 158, 164, 167, 169, 171, 172, 173, 182, 190, 225, 233, 239, 242, 245, 252, 255, 257, 259, 261, 264, 266, 271], "tau": 275, "taught": 178, "tax": 146, "taxonomi": 286, "tb": [10, 20, 21, 25, 26, 29, 33, 40, 76, 79, 80, 81, 82, 83, 94], "tbd": 173, "tcoord": [281, 290, 294], "tcvg": 269, "tdir": 45, "te": 306, "teach": 179, "team": [97, 108, 136, 141, 145, 148, 156, 162, 169, 230, 242, 276], "teapot": 76, "tech": 108, "technic": [142, 182], "techniqu": [27, 28, 64, 71, 74, 115, 128, 131, 161, 197, 230, 232, 245, 267, 269, 291], "technologi": [141, 179, 180], "tediou": 187, "tell": [11, 12, 17, 86, 157, 255, 267, 273, 280], "temperatur": [64, 275], "tempfil": 45, "templat": [74, 163, 256, 290, 293, 304], "tempor": 270, "temporari": 295, "temporarydirectori": 45, "tend": [33, 246], "tensor": [22, 23, 89, 232, 235, 241, 244, 247, 250, 256, 259, 269, 273, 276, 296, 302, 313], "tensor_100": 28, "tensor_200": 28, "tensor_724": 28, "tensor_actor": 273, "tensor_comparison": 28, "tensor_ellipsoid": [273, 296], "tensor_predict": [244, 269], "tensor_roi": 28, "tensor_roi_100": 28, "tensor_roi_sdf": 28, "tensor_sdf": 28, "tensor_slic": [22, 23, 89, 235, 247, 250, 269, 296, 312, 313], "tensor_slice_100": 28, "tensor_slice_100_zoom": 28, "tensor_slice_sdf": 28, "tensor_slice_sdf_zoom": 28, "tensor_whole_brain_sdf": 28, "tensormatrix": 269, "tensorsliceractor": 303, "tenth": 168, "term": [135, 143, 179, 180, 246, 280], "termin": [96, 98, 99, 100, 101, 103, 104, 106, 122, 132, 138, 166, 176, 179, 229, 295, 312], "terminologi": [116, 170], "terrain": 178, "tesseract": [22, 23, 89, 227, 312, 313], "test": [11, 30, 95, 101, 103, 104, 106, 110, 112, 113, 121, 122, 123, 125, 131, 132, 133, 135, 139, 140, 141, 142, 143, 144, 146, 149, 151, 154, 155, 156, 158, 159, 160, 161, 162, 163, 166, 171, 172, 173, 174, 181, 182, 183, 184, 187, 188, 189, 191, 192, 193, 196, 197, 198, 200, 201, 202, 205, 206, 209, 212, 217, 219, 220, 222, 225, 226, 227, 232, 234, 235, 242, 251, 253, 254, 257, 259, 261, 263, 264, 265, 267, 271, 278, 279, 280, 291, 295, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 314], "test_actor": [96, 305, 310], "test_el": 257, "test_materi": 312, "test_mde_layout": 154, "test_my_function_nam": 96, "test_order_transpar": 304, "test_stream": 148, "test_util": 310, "test_valu": 290, "tests_primit": 306, "tetrahedron": [32, 289, 306], "tetrix": 32, "tex_coord": 264, "tex_id": 281, "texa": 12, "texel": 270, "text": [4, 5, 10, 11, 14, 24, 25, 26, 28, 29, 30, 33, 37, 40, 41, 42, 47, 53, 55, 79, 80, 81, 82, 83, 89, 94, 114, 121, 135, 161, 164, 169, 171, 173, 180, 206, 225, 226, 233, 239, 248, 251, 254, 257, 263, 266, 271, 273, 282, 293, 295, 296, 302, 306, 307, 309, 310, 311, 312, 313, 314], "text2": [43, 54], "text3d": [273, 311], "text_3d": [4, 5, 296], "text_actor": 4, "text_align": [53, 56, 293], "text_anim": 60, "text_block": [11, 293, 296], "text_color": 293, "text_scale_mode_non": 114, "text_scale_mode_prop": 114, "text_scale_mode_viewport": 114, "text_templ": [24, 30, 37, 53, 54, 56, 293], "textactor": 296, "textactor3d": 296, "textbf": 267, "textblock": [76, 80, 81, 82, 159, 260, 263, 293], "textblock2d": [10, 11, 14, 20, 21, 24, 25, 26, 29, 30, 33, 37, 40, 43, 47, 53, 54, 55, 76, 79, 80, 81, 82, 83, 94, 110, 112, 119, 135, 182, 225, 239, 251, 254, 260, 266, 271, 296, 302, 307], "textblockui": 271, "textbox": [135, 257, 263, 271, 293, 310], "textbox2d": [257, 296, 309, 310, 312], "textbox_update_valu": [293, 296], "textboxself": 293, "textur": [0, 1, 5, 6, 12, 15, 37, 38, 89, 106, 109, 128, 134, 161, 167, 171, 173, 174, 175, 178, 184, 188, 193, 227, 230, 234, 237, 240, 243, 246, 249, 252, 256, 258, 264, 267, 269, 270, 278, 281, 282, 294, 296, 306, 307, 312, 313], "texture_2d": [12, 296], "texture_actor": 273, "texture_on_spher": [4, 5, 15, 19, 296], "texture_to_actor": [252, 267], "texture_upd": [38, 296], "texturecoordinatetest": 193, "texturedactor2d": 296, "texturedspheresourc": 296, "textureencodingtest": 193, "texturelinearinterpolationtest": 193, "texturemaptoplan": 296, "textureobject": 237, "texturesettingstest": 193, "texturetransformmultitest": 193, "texturetransformtest": 193, "th": [186, 275], "than": [4, 12, 14, 27, 28, 113, 117, 125, 134, 142, 151, 152, 154, 155, 158, 161, 171, 173, 180, 193, 197, 202, 205, 206, 208, 220, 237, 243, 251, 252, 254, 256, 258, 268, 269, 273, 276, 280, 286, 291, 292, 294, 295, 306], "thank": [101, 103, 104, 106, 110, 112, 114, 116, 118, 119, 121, 122, 124, 127, 129, 130, 132, 133, 136, 138, 166, 176, 229, 230, 243, 265, 276], "thankfulli": [108, 127, 129, 260, 268], "thei": [11, 24, 28, 35, 36, 54, 71, 72, 74, 93, 130, 135, 141, 143, 152, 155, 158, 161, 167, 169, 173, 179, 180, 181, 184, 199, 201, 205, 206, 211, 215, 221, 225, 226, 227, 230, 234, 249, 252, 255, 258, 261, 267, 269, 270, 271, 273, 293, 294, 314], "them": [17, 24, 28, 30, 32, 35, 36, 37, 39, 43, 46, 48, 49, 50, 51, 52, 54, 55, 56, 61, 63, 71, 74, 75, 76, 81, 109, 110, 112, 117, 118, 119, 124, 135, 136, 141, 149, 154, 155, 161, 168, 172, 173, 178, 179, 181, 182, 187, 188, 189, 192, 194, 198, 202, 205, 209, 216, 218, 221, 225, 227, 230, 232, 233, 234, 242, 256, 257, 258, 267, 269, 270, 275, 277, 286, 293, 303, 314], "theme": 312, "themselv": [171, 267], "theoret": 107, "theori": [107, 159, 170, 173, 315], "therefor": [14, 24, 27, 72, 93, 108, 112, 114, 116, 119, 135, 139, 142, 148, 154, 173, 248, 269, 273, 294], "thereof": 280, "theta": [5, 35, 36, 37, 46, 50, 71, 72, 73, 262, 265, 269, 270, 273, 274, 289, 292], "thevtk": 111, "thewav": 9, "thi": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 19, 20, 21, 24, 25, 26, 27, 28, 30, 31, 32, 33, 34, 35, 36, 37, 38, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 59, 60, 61, 62, 64, 66, 67, 68, 71, 72, 73, 74, 75, 76, 79, 80, 81, 82, 83, 86, 87, 88, 93, 96, 97, 98, 99, 100, 101, 103, 104, 106, 107, 108, 122, 132, 134, 135, 138, 141, 142, 148, 154, 166, 171, 172, 173, 176, 178, 179, 180, 225, 226, 227, 229, 231, 267, 268, 269, 271, 272, 273, 275, 276, 277, 278, 279, 280, 286, 288, 289, 290, 291, 292, 293, 294, 295, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 314, 315], "thick": [26, 273, 274, 286], "thin": [24, 172], "thing": [2, 3, 16, 71, 93, 121, 129, 142, 148, 152, 155, 158, 161, 167, 180, 182, 185, 191, 200, 206, 215, 221, 225, 232, 234, 235, 237, 238, 246, 255, 260, 265, 267, 311], "think": [32, 71, 142, 152, 170, 180, 182, 211, 221, 230, 232, 258, 259], "third": [49, 53, 112, 114, 134, 135, 142, 147, 148, 173, 220, 234, 258, 267, 270, 309], "thorough": [257, 263, 271], "those": [14, 37, 59, 64, 71, 130, 145, 148, 154, 173, 180, 214, 233, 245, 249, 252, 255, 262, 267, 270, 276, 291, 293], "though": [227, 258, 264, 267, 269, 270], "thought": [119, 142, 179, 180, 182, 185, 218, 221, 237, 250, 255, 258, 264, 267], "thousand": [12, 173, 174, 175, 226], "thread": [10, 142, 148, 173, 175, 291, 295], "thread_a": 10, "thread_b": 10, "thread_c": 10, "three": [30, 32, 54, 60, 80, 82, 108, 114, 135, 150, 153, 154, 167, 172, 173, 175, 178, 225, 252, 254, 255, 258, 267, 271, 276, 294, 312], "thresholdstoppingcriterion": 39, "thresholdtissueclassifi": 39, "thrill": 231, "through": [29, 64, 72, 73, 74, 86, 93, 97, 107, 109, 111, 114, 133, 134, 135, 145, 172, 173, 178, 179, 180, 181, 221, 230, 233, 234, 237, 254, 257, 260, 267, 269, 270, 291, 293, 309, 312, 314], "throughout": [136, 243], "throw": [211, 280, 312], "thrown": [80, 116, 225, 312], "thu": [28, 112, 116, 154, 175, 247, 292], "thursdai": [162, 243, 246], "tif": 282, "tiff": 282, "tiffread": 296, "tiffwrit": 296, "tightest": [273, 283], "tightli": 295, "tile": 26, "till": [155, 179, 180, 226], "tim": 276, "time": [2, 3, 10, 11, 15, 16, 17, 20, 24, 25, 26, 28, 29, 30, 33, 35, 36, 37, 38, 59, 60, 62, 64, 65, 67, 68, 71, 74, 76, 80, 86, 88, 93, 109, 119, 120, 127, 136, 141, 142, 148, 149, 150, 151, 152, 154, 155, 158, 163, 168, 170, 171, 173, 174, 178, 179, 180, 181, 184, 185, 186, 189, 192, 193, 194, 196, 197, 198, 200, 205, 206, 212, 213, 215, 218, 221, 224, 225, 226, 230, 234, 236, 238, 239, 240, 242, 243, 245, 246, 248, 249, 252, 254, 255, 259, 261, 262, 264, 265, 267, 268, 269, 270, 271, 273, 275, 276, 277, 291, 293, 295, 312, 314], "time_delta": 62, "time_incr": 29, "time_sleep": 88, "time_step": 26, "timeinterv": 175, "timelin": [7, 9, 13, 57, 58, 59, 61, 65, 66, 68, 89, 139, 181, 184, 186, 189, 196, 199, 201, 202, 207, 217, 219, 220, 222, 223, 224, 295, 296, 312, 313], "timer": [0, 1, 17, 36, 38, 45, 76, 79, 80, 81, 82, 83, 87, 89, 116, 148, 167, 212, 226, 227, 255, 291, 307, 312, 313], "timer_callback": [4, 5, 7, 9, 13, 15, 17, 20, 21, 25, 26, 29, 31, 32, 33, 36, 38, 40, 45, 76, 79, 80, 81, 82, 83, 93, 295], "timer_id": [20, 295], "timestamp": [9, 59, 60, 62, 64, 66, 154, 212, 214, 217, 227, 275, 281], "timestamp_1": 275, "timestamp_2": 275, "timezon": 178, "timlelin": 227, "tint": [73, 285], "tip": [273, 289], "tip_length": [29, 33, 273, 289], "tip_radiu": [29, 33, 273, 289], "tissu": 269, "titl": [25, 29, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 75, 108, 152, 171, 180, 273, 293, 295, 296, 306], "title_bold": [293, 296], "title_box": [293, 296], "title_color": [293, 296], "title_font_s": [293, 296], "title_ital": [293, 296], "title_text": [44, 45, 293], "tobyt": 148, "todai": [127, 133, 136, 198, 201, 243, 246, 249, 255, 258, 264, 268], "todo": [276, 293], "togeth": [15, 24, 71, 73, 93, 203, 218, 225, 236, 249, 252, 260], "toggl": [46, 54, 183, 225, 226, 266, 293, 296], "toggle_color": [46, 50], "token": 309, "told": [179, 184, 249, 252, 253, 255, 262, 265, 267], "toler": [273, 286], "toml": [271, 312], "tomorrow": [160, 163, 174], "too": [12, 43, 54, 113, 141, 146, 161, 179, 180, 184, 185, 191, 193, 225, 253, 269, 280, 309, 310], "took": [116, 127, 129, 180, 183, 200, 206, 215, 239, 242, 244, 248, 251, 265, 271], "tool": [83, 105, 127, 137, 139, 148, 151, 154, 177, 180, 228, 246, 258, 260, 264, 267, 270, 286, 296, 302, 304, 305, 306, 307, 308, 309, 310, 311, 312, 314], "toolkit": [24, 230], "toon": [134, 136], "top": [47, 53, 56, 63, 112, 134, 152, 167, 178, 184, 200, 263, 271, 273, 293, 294], "top_disk_ratio": [293, 296], "top_disk_valu": [293, 296], "top_y_posit": [293, 296], "tophat": [258, 267], "topic": [31, 107, 129, 159, 224, 270, 271], "topologi": 281, "torment": 243, "tort": 315, "toru": [75, 111, 125, 134, 273], "tostring_argb": 277, "total": [1, 12, 23, 26, 42, 58, 70, 78, 85, 90, 93, 152, 217, 266, 267, 276, 286, 291, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313], "total_length": 278, "total_num_atom": [286, 296], "total_num_bond": [286, 296], "total_tim": 26, "touch": [178, 263, 271], "tournier": 269, "toward": [115, 245, 266, 292, 293, 295], "towardsdatasci": 148, "toycar": 193, "tprism_actor": 273, "tput": 312, "tr": [204, 281], "trace": [71, 74, 96, 97, 206], "tracer": 200, "track": [12, 24, 26, 27, 39, 52, 54, 80, 81, 82, 83, 93, 119, 127, 148, 200, 227, 273, 291, 293, 296, 310, 314], "track_click_callback": [293, 296], "trackbal": 295, "tracker": 148, "tractographi": 302, "tradeoff": 255, "tradit": [75, 125, 269], "tradition": 135, "train": 178, "traj": 81, "trajectori": 81, "tran": 292, "transf": 281, "transfer": 173, "transform": [13, 14, 24, 27, 48, 71, 74, 113, 167, 172, 180, 185, 186, 187, 190, 194, 197, 199, 202, 204, 207, 208, 212, 219, 225, 226, 227, 252, 255, 269, 271, 273, 274, 275, 281, 294, 296, 306, 312], "transform_from_matrix": 296, "transform_mat": 281, "transform_streamlin": [24, 27], "transform_typ": 281, "transformed_act": 294, "transformed_pt": 294, "transformpolydatafilt": 296, "transit": [226, 260], "translat": [54, 56, 60, 62, 65, 66, 74, 93, 135, 148, 181, 183, 185, 187, 202, 203, 204, 205, 212, 215, 216, 221, 225, 226, 227, 237, 246, 281, 296, 309], "translate_cube_hor": 56, "translate_cube_i": [53, 54], "translate_cube_v": 56, "translate_cube_x": [53, 54], "transln_vector": 118, "transmissionroughnesstest": 193, "transmissiontest": 193, "transpar": [12, 39, 273, 274, 275, 277, 295, 303, 304, 307], "transpos": 276, "transverse_anim": [281, 296], "transverse_bon": [281, 296], "transverse_channel": [281, 296], "transverse_nod": [281, 296], "travel": 193, "travi": [100, 138, 299, 301, 303, 304, 305, 309, 314], "tree": [32, 152, 171, 242, 254, 255], "tree2d": [164, 167, 171, 302], "treenode2d": [149, 152, 158, 164], "treeui": [254, 266, 271], "trembl": 314, "tremend": [125, 226], "tri": [114, 116, 131, 133, 144, 147, 150, 155, 159, 178, 179, 180, 182, 184, 185, 187, 189, 191, 194, 197, 205, 206, 207, 209, 211, 214, 216, 221, 222, 225, 227, 244, 255, 258, 261, 265, 267, 270, 312], "triangl": [12, 17, 18, 25, 28, 32, 34, 71, 74, 165, 178, 184, 188, 193, 196, 226, 227, 269, 273, 274, 281, 289, 294, 312], "triangle_ord": 296, "trianglefilt": 296, "trianglewithoutindic": 193, "triangul": [172, 273, 289], "triangular": [166, 273, 289, 294, 310], "triangularpr": 296, "trick": [142, 181, 249], "tricki": 175, "trickier": 258, "trigger": [149, 171, 182, 185, 255, 290], "trilinear": [273, 294], "trinkl": [103, 304], "tripl": [147, 286], "trivial": [256, 292], "troubl": [164, 261], "troubleshoot": 314, "troublesom": 151, "true": [4, 5, 6, 7, 9, 10, 11, 12, 13, 15, 17, 19, 20, 21, 24, 25, 26, 27, 28, 29, 30, 32, 33, 35, 36, 37, 38, 40, 44, 45, 46, 47, 49, 53, 54, 55, 56, 59, 60, 61, 62, 63, 65, 66, 67, 68, 71, 74, 76, 79, 80, 81, 82, 83, 86, 87, 93, 114, 148, 192, 239, 243, 273, 274, 275, 276, 277, 279, 280, 281, 282, 286, 287, 289, 290, 291, 292, 293, 294, 295], "truncat": 288, "trunk": 314, "try": [28, 39, 76, 97, 108, 116, 121, 129, 131, 133, 134, 136, 141, 144, 145, 147, 155, 159, 168, 170, 178, 180, 185, 186, 191, 196, 200, 201, 207, 210, 213, 214, 218, 222, 225, 226, 234, 238, 246, 248, 249, 252, 258, 259, 264, 267, 271, 314], "tube": [172, 273, 286, 303], "tube_sid": 273, "tubefilt": 296, "tuesdai": 258, "tun": 173, "tune": [22, 23, 89, 139, 145, 165, 231, 311, 313], "tunion": 268, "tupl": [93, 273, 274, 275, 276, 278, 280, 283, 285, 286, 287, 288, 289, 291, 292, 293, 294, 295], "turn": [84, 89, 113, 155, 193, 237, 252, 258, 263, 264, 266, 267, 271, 273, 293], "turner": 286, "tushar": [122, 138, 307, 309], "tutori": [0, 4, 5, 6, 7, 8, 9, 11, 12, 13, 15, 17, 18, 19, 24, 28, 39, 41, 57, 60, 61, 62, 64, 65, 66, 67, 68, 69, 71, 72, 74, 75, 84, 86, 96, 103, 104, 106, 121, 122, 125, 132, 133, 134, 135, 140, 141, 142, 144, 148, 158, 161, 165, 168, 169, 171, 172, 179, 180, 181, 182, 183, 189, 190, 195, 196, 198, 199, 206, 207, 210, 222, 226, 227, 229, 253, 267, 269, 278, 302, 304, 305, 306, 307, 308, 309, 310, 311, 312, 314], "tvcastillod": 269, "tweak": [80, 82, 121, 143, 147, 152, 171, 236, 254, 255, 257, 264, 271], "twice": [180, 217, 303], "twine": 314, "two": [14, 15, 21, 28, 35, 36, 43, 46, 49, 53, 54, 60, 62, 64, 66, 71, 74, 86, 93, 96, 116, 131, 133, 141, 144, 148, 152, 154, 155, 169, 171, 172, 173, 175, 180, 181, 189, 192, 198, 201, 205, 207, 208, 214, 215, 218, 223, 225, 226, 227, 230, 242, 249, 255, 256, 264, 271, 276, 286, 289, 292, 293, 310, 314], "twosidedplan": 193, "txt": [96, 99, 300, 306, 312, 314], "type": [18, 34, 93, 97, 135, 141, 148, 152, 153, 154, 171, 172, 173, 180, 184, 193, 227, 236, 237, 247, 255, 268, 272, 273, 274, 275, 276, 277, 278, 280, 281, 282, 283, 285, 286, 287, 289, 290, 291, 292, 293, 294, 295, 306], "typedhint": 268, "typeerror": [184, 280], "typic": [172, 271], "typo": [97, 148, 163, 224, 304, 310, 312], "u": [5, 15, 28, 32, 37, 40, 71, 72, 73, 74, 80, 81, 82, 96, 97, 105, 119, 134, 135, 137, 157, 161, 177, 178, 179, 181, 211, 227, 228, 242, 258, 263, 266, 269], "ubuntu": [197, 303, 307, 312], "uci": 292, "ucsc": 179, "udk": 178, "ui": [10, 11, 14, 15, 20, 21, 24, 25, 26, 28, 29, 30, 32, 33, 37, 40, 41, 42, 43, 44, 45, 46, 47, 48, 50, 51, 54, 55, 56, 76, 79, 80, 81, 82, 83, 89, 94, 98, 106, 108, 110, 112, 114, 116, 121, 122, 127, 129, 130, 131, 132, 133, 134, 135, 136, 140, 161, 164, 166, 171, 176, 179, 180, 181, 187, 200, 203, 206, 218, 225, 226, 233, 236, 239, 242, 248, 257, 258, 261, 266, 267, 268, 271, 283, 294, 296, 298, 302, 304, 306, 307, 308, 309, 310, 311, 312, 313], "ui_layout": 49, "uint8": [11, 12, 142, 273, 294], "umbrella": [105, 107, 108, 137, 177, 180, 228, 293], "un": [116, 118], "unabl": [108, 180, 270, 308, 309], "unbind": 205, "unbound": 192, "uncertainti": [238, 250, 273, 274, 302], "uncertainty_con": 296, "unchang": 276, "uncheck": [46, 53, 293], "unclear": 172, "uncollaps": 293, "uncom": [14, 39, 86, 87, 295], "uncommit": 314, "uncontrol": [124, 127], "uncoupl": [142, 173], "under": [33, 82, 96, 97, 105, 107, 108, 137, 140, 177, 180, 225, 226, 227, 228, 233, 256, 267, 269, 271, 276, 309, 312], "underflow": 267, "undergo": 271, "undergradu": 107, "underli": [97, 149, 170], "understand": [71, 73, 107, 109, 111, 115, 116, 117, 119, 120, 127, 134, 141, 144, 146, 147, 150, 152, 170, 172, 179, 180, 184, 225, 230, 233, 238, 243, 246, 249, 256, 261, 262, 265, 267, 270], "understood": [170, 249], "underw": 271, "undirect": 276, "undo": 212, "unexpect": [236, 271, 307], "unfeas": 154, "unfold": 40, "unfortun": [112, 133, 134, 152, 154, 173, 258, 266], "unicod": 193, "unifi": [44, 45, 97, 180, 271, 315], "uniform": [34, 74, 76, 88, 117, 181, 189, 192, 205, 207, 213, 224, 252, 258, 265, 269], "uniformli": 270, "uniformtool": 151, "unintention": 182, "union": [268, 269], "uniqu": [35, 36, 87, 175, 176, 291, 311, 312], "unit": [80, 93, 97, 141, 144, 198, 201, 222, 226, 242, 276, 289, 294, 304, 309], "uniti": [143, 178, 180], "unittest": [45, 314], "univ": 277, "univers": [107, 108, 178], "unknown": [180, 197], "unless": [93, 135, 276, 293, 294, 295], "unlik": 256, "unlink": [145, 148], "unlittest": 193, "unlock": [291, 296], "unmonitor": 149, "unnecessari": [142, 154, 172], "unneed": 312, "unord": 291, "unpress": 293, "unreal": [143, 180], "unrel": 145, "unsatisfactori": 134, "unselect": 293, "unselected_color": 293, "unsign": [234, 237, 258, 267, 290], "unsigned_char": 294, "unsignedchararrai": 296, "unstructuredgrid": 296, "unsuccess": [144, 150, 153, 159, 180], "unsuccessfulli": 267, "until": [154, 174, 178, 246, 252, 271, 280], "unus": 310, "unusu": 292, "unwant": [93, 309], "up": [10, 14, 20, 21, 26, 27, 28, 32, 39, 43, 54, 60, 71, 72, 73, 74, 83, 93, 142, 171, 178, 179, 180, 226, 237, 240, 243, 246, 252, 264, 267, 271, 275, 280, 293, 294, 295, 303, 308, 309, 314], "up_button_callback": [293, 296], "upcom": [191, 231, 233, 236, 242, 245, 250], "updat": [7, 9, 10, 11, 12, 13, 15, 18, 24, 25, 26, 29, 30, 32, 38, 40, 45, 60, 64, 76, 80, 82, 83, 93, 99, 100, 103, 104, 106, 108, 116, 118, 122, 127, 132, 135, 138, 142, 148, 149, 151, 152, 154, 155, 156, 158, 159, 161, 162, 164, 165, 166, 167, 168, 169, 171, 172, 173, 175, 176, 185, 191, 194, 198, 200, 203, 209, 215, 220, 222, 225, 226, 227, 229, 231, 234, 237, 239, 242, 246, 251, 252, 254, 256, 257, 258, 260, 263, 264, 266, 267, 271, 273, 275, 276, 281, 287, 291, 293, 294, 295, 296, 300, 301, 302, 304, 305, 306, 307, 308, 309, 310, 311, 312, 314], "update_actor": [11, 12, 21, 25, 26, 29, 33, 36, 40, 46, 50, 80, 81, 82, 83, 296, 309], "update_align": [293, 296], "update_anim": [7, 275, 296], "update_border_coord": [293, 296], "update_bounding_box": [293, 296], "update_button_icon": [293, 296], "update_color": 46, "update_coordin": [29, 33], "update_dur": [275, 296], "update_el": [293, 296], "update_interpol": 275, "update_morph": [9, 281, 296], "update_motion_path": [275, 296], "update_path": 26, "update_planet_posit": 15, "update_polydata_norm": 296, "update_progressbar": [296, 312], "update_scrollbar": [293, 296], "update_selection_typ": [287, 296], "update_shape_posit": [293, 296], "update_shape_select": [293, 296], "update_skin": [13, 281, 296], "update_spher": [30, 274, 296], "update_surfac": 25, "update_surface_actor_color": [25, 296], "update_tab": [293, 296], "update_user_matrix": 311, "updateshaderev": 290, "upfront": 32, "upgrad": [98, 99, 100, 101, 103, 104, 106, 122, 132, 138, 166, 176, 195, 229, 314], "upload": 314, "upload_to_gh": 96, "upon": [141, 162, 263, 271], "upper": [25, 239], "upper_xbound": 25, "upper_ybound": 25, "upsidedown": 312, "upstream": 314, "upward": 271, "uranus_actor": 15, "urdf": 93, "uri": [193, 281], "url": [86, 143, 171, 173, 190, 227, 278, 291, 293, 296, 309, 310], "us": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 29, 30, 32, 33, 34, 35, 36, 37, 40, 41, 42, 43, 45, 47, 48, 51, 52, 53, 54, 55, 56, 57, 60, 61, 62, 63, 64, 66, 67, 68, 69, 70, 71, 72, 73, 75, 76, 79, 80, 81, 82, 83, 84, 85, 86, 87, 93, 94, 96, 97, 107, 109, 112, 114, 115, 116, 117, 118, 124, 125, 126, 128, 129, 131, 134, 135, 139, 140, 141, 142, 143, 144, 145, 146, 147, 149, 150, 151, 152, 155, 157, 158, 159, 161, 163, 165, 167, 169, 170, 171, 172, 173, 174, 175, 178, 179, 180, 181, 182, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 202, 204, 205, 206, 207, 209, 210, 211, 213, 215, 216, 217, 218, 219, 220, 223, 224, 225, 226, 227, 230, 232, 234, 235, 237, 239, 242, 243, 244, 246, 247, 248, 249, 250, 251, 252, 253, 255, 256, 258, 259, 262, 264, 265, 267, 268, 269, 270, 271, 273, 274, 275, 276, 277, 278, 280, 281, 282, 284, 285, 286, 287, 290, 291, 292, 293, 294, 295, 302, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315], "usabl": [73, 234], "usag": [25, 93, 97, 150, 180, 240, 242, 247, 261, 264, 267, 269], "use_asyncio": 291, "use_pillow": 282, "use_primit": [3, 10, 16, 71, 273, 312], "use_raw_arrai": [86, 87, 291], "use_shared_mem": [148, 291], "usefulli": 151, "user": [17, 20, 42, 64, 69, 76, 84, 85, 88, 93, 97, 108, 112, 114, 115, 120, 123, 125, 131, 133, 134, 135, 136, 141, 142, 144, 148, 149, 152, 154, 171, 173, 175, 183, 185, 191, 198, 215, 218, 220, 224, 225, 230, 233, 234, 247, 255, 257, 260, 261, 263, 264, 267, 268, 271, 276, 280, 291, 293, 312, 313, 314], "user_timestamp": 291, "usp": [135, 139], "usual": [10, 14, 17, 28, 31, 67, 72, 187, 225, 230, 246, 255, 273, 276, 295], "utah": [76, 218], "util": [4, 5, 11, 12, 15, 17, 18, 21, 25, 26, 29, 30, 31, 32, 33, 36, 37, 39, 40, 46, 50, 52, 65, 71, 72, 74, 76, 80, 81, 82, 83, 93, 94, 98, 100, 146, 169, 172, 182, 188, 227, 239, 242, 266, 271, 274, 296, 298, 301, 302, 303, 306, 311, 312], "utilis": 147, "utiltii": 307, "uv": [76, 227], "ux": [81, 154, 173], "v": [22, 23, 25, 32, 40, 69, 70, 89, 142, 201, 217, 273, 276, 292, 313, 314], "v0": [275, 297, 314], "v1": [178, 275, 276], "vacat": [180, 193], "vacuum": 29, "valenc": 286, "valid": [34, 215, 263, 271, 275, 286, 293], "valid_mask": 28, "validate_valu": [293, 296], "valu": [15, 24, 25, 28, 29, 30, 32, 33, 37, 40, 45, 47, 49, 50, 52, 53, 54, 55, 56, 59, 60, 62, 64, 66, 71, 72, 73, 80, 81, 82, 83, 93, 94, 114, 115, 118, 135, 148, 154, 171, 172, 181, 193, 197, 198, 203, 205, 206, 207, 217, 223, 240, 243, 249, 254, 255, 256, 258, 260, 263, 264, 265, 266, 267, 269, 270, 271, 273, 274, 275, 276, 277, 278, 281, 282, 283, 285, 286, 288, 290, 292, 293, 294, 295, 296, 306, 309, 312, 314], "value_precis": [54, 293], "value_rang": [14, 203, 225, 273, 276, 312], "value_slid": [293, 296], "value_slider_cent": [54, 293, 296], "value_to_ratio": [293, 296], "valueerror": 76, "valuepass": 290, "van": [170, 172, 286], "var": 184, "varepsilon_1": 269, "vari": [69, 70, 89, 200, 251, 256, 309, 313], "variabl": [4, 15, 17, 20, 21, 24, 25, 26, 29, 30, 33, 35, 40, 54, 71, 74, 75, 76, 80, 82, 93, 94, 114, 117, 184, 205, 246, 253, 267, 268, 269, 273, 288, 293], "varianc": [26, 241, 244, 269, 273, 274], "varieti": 267, "variou": [25, 30, 48, 79, 81, 83, 93, 116, 118, 135, 141, 161, 180, 182, 183, 184, 185, 200, 211, 221, 227, 242, 266, 271], "vc": 193, "vcolor": [11, 12, 21, 29, 33, 46, 50], "vcolors2": 29, "vdw": [172, 286], "ve": [68, 139, 142, 145, 148, 151, 154, 160, 163, 168, 173, 174, 175, 178, 199, 232, 271], "vec2": [76, 264, 267, 281], "vec2vecrotmat": [74, 270], "vec3": [71, 74, 76, 270, 281], "vec4": [71, 74, 76, 267, 281], "vec_to_vec_rot_mat": 74, "vector": [17, 27, 62, 74, 93, 118, 173, 205, 206, 235, 256, 270, 273, 275, 276, 289, 292, 294, 295], "vector_text": [11, 25, 28, 60, 61, 72, 73, 210, 213, 226, 296, 311, 312], "vectortext": 296, "vel": 21, "vel_mag_i": 21, "vel_mag_j": 21, "veloc": [21, 33, 36, 159, 172, 178, 312], "velocitygain": [81, 83], "venus_actor": 15, "ver_line_slider_text_left": 56, "ver_line_slider_text_right": 56, "verbos": [272, 295, 314], "veri": [27, 67, 71, 116, 117, 118, 119, 142, 149, 151, 158, 167, 169, 171, 178, 179, 180, 193, 197, 205, 226, 269, 270], "veric": 294, "verifi": [181, 182, 278, 314], "version": [22, 23, 88, 89, 142, 145, 148, 151, 171, 173, 176, 178, 180, 181, 183, 192, 201, 206, 226, 227, 229, 246, 258, 260, 266, 267, 269, 273, 276, 280, 286, 288, 290, 291, 293, 295, 303, 306, 308, 311, 312, 313, 314], "version_cmp": 280, "version_compar": 280, "version_info": 86, "version_str": 280, "vert": [40, 289, 294], "vertex": [11, 17, 40, 74, 76, 134, 178, 192, 194, 204, 205, 214, 219, 222, 226, 227, 269, 273, 281, 285, 287, 290, 294, 312], "vertex1": 36, "vertex2": 36, "vertex_index": 11, "vertex_initial_posit": 36, "vertex_shader_code_decl": 76, "vertex_shader_code_impl": 76, "vertexcolortest": 193, "vertexmc": [74, 76], "vertexmcvsoutput": 74, "vertic": [11, 12, 17, 18, 21, 25, 26, 28, 29, 30, 32, 33, 40, 53, 54, 56, 74, 80, 81, 82, 83, 93, 118, 127, 161, 164, 165, 167, 169, 171, 176, 184, 189, 201, 204, 226, 227, 250, 269, 273, 274, 281, 283, 287, 289, 290, 292, 293, 294, 295, 306, 311], "vertical_justif": [47, 53, 236, 273, 293, 296], "verticallayout": 296, "vertices2": 29, "vertices_count": 36, "vertices_from_actor": [11, 12, 21, 25, 26, 29, 33, 36, 40, 80, 81, 82, 83, 93, 296], "verts3d": 40, "verts4d": 40, "vfrom": 36, "via": [26, 76, 97, 112, 118, 141, 150, 153, 165, 267, 269, 274, 292, 295, 309], "viabl": 266, "victor": [179, 267, 302], "video": [22, 23, 89, 107, 108, 148, 173, 180, 192, 213, 226, 275, 291, 295, 310, 313], "video_gener": 38, "video_url": 38, "videocaptur": 38, "videofram": 291, "videoplay": 38, "videostream": 291, "view": [27, 60, 88, 178, 180, 198, 275, 276, 292, 295], "view_siz": 36, "view_up": [4, 8, 25, 26, 27, 29, 33, 40, 79, 80, 82, 87, 275, 295], "view_up_1": 275, "view_up_2": 275, "viewer": [30, 227], "viewplanenorm": 295, "vinay0410": 148, "violat": 148, "violet": [47, 53], "viridi": [25, 252, 267, 276], "virtual": 231, "virtualenv": 314, "vis_cp": 59, "vis_point": 59, "viscos": 36, "visibl": [46, 53, 56, 191, 221, 230, 237, 266, 271, 273, 274, 281, 293, 295, 312], "vision": 141, "visit": 276, "visual": [0, 1, 4, 9, 13, 14, 15, 17, 19, 22, 23, 30, 31, 37, 38, 44, 45, 46, 50, 56, 59, 60, 66, 69, 70, 71, 72, 73, 74, 80, 82, 83, 86, 88, 89, 93, 97, 98, 99, 100, 101, 103, 104, 105, 106, 115, 122, 125, 126, 132, 134, 137, 138, 139, 144, 150, 151, 154, 155, 157, 166, 171, 172, 173, 175, 176, 177, 180, 181, 186, 187, 198, 217, 221, 225, 226, 228, 229, 230, 232, 233, 235, 238, 241, 247, 250, 256, 259, 262, 267, 272, 273, 274, 275, 286, 295, 302, 303, 306, 309, 310, 313], "visualis": [22, 23, 89, 141, 313], "visualshapeid": [81, 83, 93], "vital": 267, "vive": 312, "vivek": [106, 132, 306, 308], "viz": [53, 98, 180, 276, 298, 303, 306], "viz_advanc": [23, 24, 313], "viz_animated_network": 36, "viz_animated_surfac": [23, 25, 313], "viz_arrow": [1, 2, 313], "viz_ball_collid": [78, 79, 313], "viz_bezier_interpol": [58, 59, 313], "viz_billboad_label": 175, "viz_billboard_sdf_spher": [70, 71, 313], "viz_billboards_circl": 71, "viz_billboards_spher": 71, "viz_billboards_wirefram": 71, "viz_brick_wal": [78, 80, 313], "viz_brownian_mot": [23, 26, 313], "viz_bundl": [23, 27, 313], "viz_button": [42, 43, 313], "viz_camera": [58, 60, 313], "viz_card": [42, 44, 313], "viz_card_sprite_sheet": [42, 45, 313], "viz_chain": [78, 81, 313], "viz_check_box": [42, 46, 313], "viz_checkbox": 46, "viz_color_interpol": [58, 61, 313], "viz_combobox": [42, 47, 313], "viz_con": [1, 3, 313], "viz_custom_interpol": [58, 62, 313], "viz_domino": [78, 82, 313], "viz_drawpanel": [42, 48, 313], "viz_dt_ellipsoid": [23, 28, 313], "viz_earth_anim": [1, 4, 313], "viz_earth_coordin": [1, 5, 313], "viz_emwav": 29, "viz_emwave_anim": [23, 29, 313], "viz_fiber_odf": [23, 30, 313], "viz_fine_tuning_gl_context": [23, 31, 313], "viz_fract": [23, 32, 313], "viz_gltf": [1, 6, 313], "viz_gltf_anim": [1, 7, 313], "viz_gltf_export": [1, 8, 313], "viz_helical_mot": [23, 33, 313], "viz_helios_md": 154, "viz_hi_res_wirefram": 71, "viz_hierarchical_anim": [58, 63, 313], "viz_huge_amount_of_label": 175, "viz_interact": [85, 86, 313], "viz_interpol": 64, "viz_introduct": [58, 64, 313], "viz_keyframe_animation_bezier_1": 59, "viz_keyframe_animation_bezier_2": 59, "viz_keyframe_animation_camera": 60, "viz_keyframe_animation_color": 61, "viz_keyframe_animation_evalu": 68, "viz_keyframe_animation_introduct": 64, "viz_keyframe_animation_splin": 66, "viz_keyframe_animation_timelin": 67, "viz_keyframe_custom_interpol": 62, "viz_keyframe_hierarchical_anim": 63, "viz_layout": [42, 49, 313], "viz_listbox": 55, "viz_low_res_wirefram": 71, "viz_mark": [23, 34, 313], "viz_morph": [1, 9, 313], "viz_multithread": [1, 10, 313], "viz_network": [23, 35, 313], "viz_network_anim": [23, 36, 227, 312, 313], "viz_no_interact": [85, 87, 313], "viz_pbr_interact": [23, 37, 312, 313], "viz_pbr_spher": [70, 72, 313], "viz_pick": [1, 11, 313], "viz_play_video": [23, 38, 313], "viz_poly_cylind": 74, "viz_poly_cylinder_geom": 74, "viz_principled_spher": [70, 73, 313], "viz_radio_button": [42, 50, 313], "viz_regular_spher": 71, "viz_robot_arm": 65, "viz_robot_arm_anim": [58, 65, 313], "viz_roi_contour": [23, 39, 312, 313], "viz_sdf_cylind": [70, 74, 313], "viz_sdfactor": [70, 75, 313], "viz_select": [1, 12, 313], "viz_shad": [70, 76, 313], "viz_shap": [42, 51, 313], "viz_skin": [1, 13, 313], "viz_slic": [1, 14, 313], "viz_slid": 56, "viz_solar_system": [1, 15, 308, 313], "viz_solar_system_anim": 15, "viz_spher": [1, 16, 313], "viz_spiki": [1, 17, 313], "viz_spinbox": [42, 52, 313], "viz_spline_interpol": [58, 66, 313], "viz_surfac": [1, 18, 303, 313], "viz_tab": [42, 53, 313], "viz_tesseract": [23, 40, 313], "viz_textur": [1, 19, 313], "viz_tim": [1, 20, 313], "viz_timelin": [58, 67, 313], "viz_ui": [42, 54, 304, 306, 313], "viz_ui_listbox": [42, 55, 313], "viz_ui_slid": [42, 56, 313], "viz_using_time_equ": [58, 68, 313], "viz_video_on_plan": 273, "viz_widget": [85, 88, 313], "viz_wrecking_bal": [78, 83, 313], "vol": [269, 274], "volum": [0, 1, 30, 89, 170, 273, 274, 295, 296, 313], "volumetr": [109, 126], "volunt": 314, "voxel": [14, 24, 28, 269, 273, 274, 294], "voxsz": 303, "vp": 38, "vs_dec": [74, 273], "vs_impl": [74, 273], "vstack": [25, 27], "vtk": [18, 24, 45, 76, 93, 94, 96, 100, 107, 108, 111, 114, 130, 131, 134, 135, 138, 139, 142, 144, 145, 146, 148, 150, 154, 159, 170, 171, 172, 173, 175, 176, 178, 179, 181, 200, 201, 205, 206, 207, 218, 227, 230, 234, 237, 243, 246, 258, 267, 272, 273, 274, 277, 281, 282, 285, 290, 291, 294, 295, 301, 303, 304, 306, 307, 308, 309, 311, 312], "vtk6": 303, "vtk9": [122, 307], "vtk_9_plu": 311, "vtk_cell": 294, "vtk_color": 294, "vtk_imag": 294, "vtk_matrix_to_numpi": 296, "vtk_object": 294, "vtk_point": 294, "vtk_rgb": 237, "vtk_rgba": [234, 237], "vtk_sphere_actor": 16, "vtk_sprite": 45, "vtk_unsigned_char": [234, 237, 243], "vtk_version": 296, "vtkactor": [274, 275, 281, 286, 290, 293, 294, 311], "vtkactor2d": [171, 293], "vtkalgorithmoutput": 294, "vtkarraytyp": 294, "vtkassembli": 273, "vtkbillboardtextactor": 312, "vtkcamera": [275, 281], "vtkcellarrai": 294, "vtkcellpick": 273, "vtkcommand": 290, "vtkconesourc": 3, "vtkdataarrai": 294, "vtkerrormacro": 237, "vtkeventid": 310, "vtkimageactor": 273, "vtkimagedata": [45, 171, 273, 282, 294, 311], "vtkimagetrac": [206, 209], "vtkinteractor": 291, "vtkinteractorstyl": 295, "vtkinteractorstyleimag": 295, "vtkinteractorstyletrackballcamera": 295, "vtklookupt": [273, 274], "vtkmarchingcub": 170, "vtkmolecul": [147, 150, 286], "vtkmoleculemapp": [147, 150], "vtkmoleculereaderbas": 144, "vtkobject": 294, "vtkopenglframebufferobject": 243, "vtkopenglmoleculemapp": 172, "vtkopenglrender": 295, "vtkopenglst": 295, "vtkpdbreader": 150, "vtkperiodict": [147, 150, 286], "vtkpoint": 294, "vtkpolydata": [150, 153, 172, 282, 294], "vtkpolydatamapp": 294, "vtkprop": 293, "vtkprop3d": [273, 283, 294], "vtkproperti": 159, "vtkproteinribbonfilt": [141, 144, 147, 150, 156, 172], "vtkrender": 295, "vtkrenderwindow": 295, "vtkrenderwindowinteractor": [267, 295], "vtkscalarbaractor": 273, "vtkshader": 76, "vtksimplebondperceiv": [147, 150, 172, 286], "vtksourc": [16, 188, 190, 294], "vtkspheresourc": 16, "vtktextactor": [114, 116, 239, 293], "vtktextactor3d": 311, "vtktextur": [184, 200, 246, 273, 282], "vtktexturedactor": 273, "vtktexturedactor2d": 293, "vtktextureobject": [234, 237], "vtkviewport": [114, 119], "vtkwindowtoimagefilt": [246, 258], "vto": 36, "vtp": [282, 309], "vulner": [264, 309, 310], "vx": 314, "w": [5, 29, 40, 93, 148, 149, 171, 173, 273, 276, 282, 291, 294], "wa": [24, 73, 97, 108, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 123, 124, 125, 126, 127, 128, 129, 130, 131, 133, 134, 135, 136, 140, 142, 143, 144, 146, 147, 148, 149, 150, 151, 152, 154, 155, 156, 157, 158, 159, 161, 165, 167, 170, 172, 173, 175, 178, 179, 180, 181, 182, 183, 184, 185, 187, 188, 190, 191, 193, 194, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 211, 214, 215, 217, 218, 221, 225, 226, 230, 231, 233, 234, 235, 236, 238, 239, 241, 242, 245, 247, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 275, 276, 277, 280, 291, 294, 295, 312, 314], "waal": [170, 172, 286], "wai": [14, 24, 27, 28, 37, 63, 67, 71, 72, 74, 96, 97, 110, 114, 131, 135, 139, 142, 145, 146, 148, 149, 152, 158, 169, 171, 175, 180, 181, 184, 189, 194, 200, 205, 210, 215, 216, 218, 220, 222, 224, 226, 227, 231, 232, 235, 240, 243, 247, 249, 255, 258, 265, 267, 268, 269, 270, 273, 274, 276, 277, 294, 311, 312, 314, 315], "wait": [10, 86, 145, 148, 178, 238, 241, 295, 296], "walk": 178, "wall": [21, 77, 78, 83, 89, 118, 121, 127, 130, 135, 313], "wall_breadth": 83, "wall_height": [80, 83], "wall_length": 83, "wall_width": 80, "want": [9, 13, 14, 17, 24, 27, 32, 35, 63, 64, 71, 74, 88, 131, 142, 154, 157, 173, 178, 179, 180, 182, 184, 185, 225, 238, 246, 249, 250, 255, 258, 259, 281, 289, 290, 291, 292, 295, 311, 314], "ward": 293, "warn": [234, 243, 272, 280, 303, 308, 309, 310, 311], "warn_class": 280, "warning_class": 280, "warnings_origin": 272, "warranti": 315, "wasn": [112, 113, 121, 152, 167, 178, 180, 182, 185, 191, 194, 196, 197, 211, 240, 242, 243, 252, 264, 267, 271], "wast": [158, 181, 218, 221], "watch": [4, 5, 15, 178, 180], "watcher": [143, 146, 149, 171, 302], "water": [28, 269], "waterbottl": 193, "wathcer": 171, "wave": [22, 23, 33, 89, 156, 311, 313], "wave_actor1": 29, "wave_actor2": 29, "wavelength": 29, "wavenumb": 29, "we": [2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 24, 26, 27, 28, 30, 31, 32, 35, 36, 37, 39, 40, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 59, 60, 61, 62, 63, 64, 65, 66, 67, 71, 72, 73, 74, 75, 76, 79, 80, 81, 82, 83, 86, 87, 88, 93, 94, 96, 97, 98, 99, 100, 101, 103, 104, 106, 108, 109, 114, 116, 117, 118, 119, 120, 122, 124, 125, 127, 131, 132, 133, 135, 138, 139, 140, 141, 142, 145, 146, 148, 151, 154, 161, 165, 166, 169, 171, 173, 175, 176, 180, 181, 182, 183, 184, 186, 187, 188, 189, 190, 193, 197, 199, 200, 201, 202, 204, 205, 206, 211, 212, 213, 214, 215, 216, 217, 218, 219, 221, 223, 225, 226, 227, 229, 231, 232, 236, 237, 238, 239, 240, 242, 243, 245, 246, 247, 248, 251, 253, 254, 255, 256, 257, 258, 261, 264, 266, 267, 269, 271, 273, 276, 281, 288, 289, 292, 293, 295, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 314], "web": [86, 88, 173, 314], "web_serv": [86, 296], "web_server_raw_arrai": [86, 87, 296], "webgl": 230, "webrtc": [84, 85, 86, 89, 139, 142, 154, 173, 291, 312, 313], "webrtc_avail": 86, "webrtcserv": 291, "webserv": [142, 291], "websit": [134, 135, 160, 164, 171, 172, 173, 179, 180, 225, 226, 227, 229, 245, 258, 267, 269, 271, 302, 309, 312, 314], "wednesdai": [107, 108, 199, 246], "week": [134, 135, 148, 154, 171, 172, 173, 225, 226, 227, 267, 269, 271, 302, 311, 312], "week0": 302, "week1": [302, 312], "week2": 302, "week3": 302, "weekli": [110, 111, 112, 114, 116, 118, 119, 121, 124, 127, 129, 130, 133, 134, 135, 141, 144, 147, 150, 153, 156, 159, 162, 165, 168, 170, 171, 172, 173, 181, 182, 226, 236, 238, 240, 241, 243, 246, 247, 249, 252, 255, 256, 258, 261, 264, 308], "weel": [148, 291], "weight": [154, 212, 227, 246, 269, 281], "weird": [121, 130, 251], "welcom": [55, 97, 110, 112, 114, 116, 118, 119, 121, 124, 127, 129, 130, 133, 134, 135, 144, 147, 150, 153, 156, 159, 162, 165, 168, 170, 171, 172, 173, 230, 237, 243, 252, 314], "welcome_text": 55, "well": [13, 27, 30, 71, 116, 129, 140, 142, 143, 146, 152, 154, 155, 158, 164, 181, 183, 193, 203, 205, 208, 211, 218, 222, 226, 227, 230, 232, 237, 240, 243, 246, 249, 255, 256, 258, 264, 267, 269, 270, 275, 295], "went": [125, 136, 178, 179, 180, 183, 203, 233, 258, 268], "were": [108, 111, 112, 113, 114, 115, 116, 118, 119, 121, 124, 126, 128, 129, 131, 134, 135, 140, 143, 146, 148, 152, 155, 158, 161, 164, 165, 167, 168, 169, 171, 172, 173, 178, 179, 180, 182, 184, 193, 197, 202, 203, 206, 209, 211, 215, 216, 217, 218, 226, 236, 237, 238, 248, 251, 256, 257, 258, 263, 264, 266, 267, 268, 270, 271, 280, 295], "weren": [184, 188, 202, 206, 211, 237], "west": 292, "what": [2, 3, 11, 14, 15, 24, 32, 71, 94, 142, 148, 172, 173, 179, 180, 225, 237, 240, 243, 246, 255, 258, 261, 267, 277, 295], "whatev": [180, 261, 295], "whatsoev": 178, "wheel": [14, 63, 97], "wheel_anim": 63, "wheel_cent": 63, "wheel_direct": 63, "wheel_posit": 63, "wheels_anim": 63, "when": [4, 11, 12, 21, 25, 27, 29, 31, 33, 37, 53, 54, 55, 59, 62, 63, 71, 72, 75, 114, 129, 131, 142, 143, 148, 149, 152, 157, 158, 161, 171, 173, 175, 178, 180, 181, 185, 186, 188, 192, 193, 197, 198, 203, 211, 215, 222, 224, 225, 226, 232, 236, 237, 239, 240, 242, 246, 248, 251, 252, 254, 255, 256, 258, 263, 264, 266, 267, 269, 270, 271, 273, 275, 276, 278, 280, 286, 293, 295, 303, 304, 305, 306, 309, 310, 311, 312, 314], "whenev": [47, 111, 180, 183, 185, 187, 191, 198, 203, 216, 218, 225, 255, 275], "where": [21, 27, 29, 63, 67, 74, 93, 96, 108, 118, 121, 127, 135, 142, 144, 146, 148, 154, 161, 172, 173, 180, 182, 184, 187, 203, 214, 219, 222, 231, 232, 233, 234, 242, 262, 263, 269, 270, 271, 273, 274, 276, 277, 278, 285, 286, 288, 292, 293, 294, 295, 314], "wherea": 180, "wherein": [143, 161, 171], "whether": [17, 71, 161, 180, 206, 211, 215, 221, 230, 266, 273, 275, 276, 286, 289, 293, 295, 314, 315], "which": [5, 7, 11, 12, 14, 15, 24, 25, 26, 27, 28, 29, 31, 32, 33, 35, 36, 37, 38, 39, 40, 50, 54, 62, 64, 67, 71, 74, 80, 82, 83, 86, 87, 88, 93, 96, 109, 113, 114, 116, 118, 119, 121, 124, 126, 128, 129, 130, 131, 133, 134, 135, 136, 139, 140, 141, 142, 143, 144, 145, 146, 148, 149, 150, 151, 152, 153, 154, 155, 158, 161, 164, 165, 167, 168, 169, 170, 171, 172, 173, 178, 180, 181, 182, 183, 184, 185, 186, 187, 190, 191, 192, 194, 197, 198, 200, 201, 202, 205, 206, 207, 209, 211, 215, 216, 218, 220, 221, 225, 226, 230, 232, 233, 234, 236, 238, 239, 241, 244, 246, 247, 248, 249, 251, 252, 253, 254, 255, 256, 257, 258, 264, 265, 266, 267, 269, 270, 271, 273, 274, 275, 276, 280, 283, 286, 287, 289, 290, 291, 292, 293, 294, 295, 314], "while": [4, 10, 28, 53, 108, 110, 112, 113, 115, 116, 117, 118, 119, 121, 127, 129, 136, 143, 178, 180, 184, 185, 187, 188, 189, 190, 193, 197, 201, 209, 211, 215, 217, 218, 219, 220, 221, 225, 226, 227, 232, 236, 237, 239, 244, 251, 253, 263, 266, 267, 271, 275, 276, 293, 294, 302, 312], "white": [4, 5, 27, 269, 273, 295, 302], "white_matt": 39, "whithout_iren_start": 291, "who": [97, 102, 136, 142, 154, 173, 246, 276], "whoever": 314, "whole": [28, 149, 161, 171, 178, 180, 250, 254, 261, 264, 267], "whole_brain_ev": 28, "whole_brain_evec": 28, "whom": 286, "whose": [26, 33, 71, 172, 273, 278, 283, 286, 293], "why": [60, 71, 112, 148, 149, 180, 182, 197, 226, 234, 237, 243, 247, 258, 267, 270], "wide": [59, 108, 273, 283], "widget": [24, 30, 84, 85, 89, 98, 108, 135, 171, 175, 200, 206, 271, 296, 298, 302, 303, 313], "width": [27, 34, 94, 110, 114, 121, 135, 148, 182, 226, 234, 237, 243, 255, 273, 275, 283, 293, 294, 295, 296, 312], "width_set_text": [293, 296], "wiki": [73, 105, 137, 177, 179, 228, 230, 278, 290, 292, 312], "wikipedia": [73, 246, 255, 267, 292], "win": 295, "win_callback": [24, 30, 37, 295], "wind": [30, 294, 306], "window": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 71, 72, 73, 74, 75, 76, 79, 80, 81, 82, 83, 86, 87, 88, 89, 93, 94, 96, 97, 98, 100, 101, 104, 111, 135, 140, 143, 149, 152, 154, 155, 158, 171, 173, 174, 175, 178, 229, 230, 237, 243, 246, 252, 255, 264, 267, 273, 275, 290, 291, 293, 296, 298, 301, 303, 304, 305, 306, 307, 310, 311, 312], "window_callback": 37, "window_left": [293, 296], "window_right": [293, 296], "window_s": [86, 87, 88], "window_size_chang": 293, "window_to_textur": [252, 267], "windowresizeev": [140, 149, 158, 171], "windowsresizeev": 161, "windowtitlefix": 306, "windowtoimagefilt": [246, 267, 296], "wip": [241, 247, 302, 306, 310, 311, 312], "wire": [141, 172], "wirefram": [40, 71, 294], "wise": [86, 142], "wish": [234, 243, 246, 249, 255, 261, 268], "with_transform": 281, "within": [28, 37, 71, 72, 93, 111, 113, 117, 120, 124, 133, 134, 135, 152, 180, 233, 267, 271, 293, 295], "without": [28, 32, 80, 82, 88, 96, 97, 118, 145, 148, 150, 154, 158, 173, 175, 194, 198, 200, 218, 227, 235, 237, 238, 239, 243, 246, 258, 260, 267, 270, 273, 275, 276, 277, 283, 295, 302, 309, 311, 312, 314, 315], "woke": [175, 179], "wolfram": 292, "won": [13, 93, 102, 133, 179, 198, 205, 291, 303], "wonder": [27, 112], "word": [71, 116, 118], "work": [9, 12, 13, 27, 32, 71, 86, 87, 96, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 118, 119, 121, 123, 124, 125, 126, 127, 128, 129, 130, 131, 133, 136, 139, 140, 141, 143, 145, 148, 149, 152, 154, 156, 157, 158, 160, 162, 164, 167, 169, 170, 173, 175, 178, 179, 180, 181, 182, 183, 184, 185, 187, 188, 189, 192, 193, 196, 198, 202, 203, 205, 206, 209, 211, 212, 214, 215, 216, 218, 230, 232, 234, 235, 236, 237, 238, 239, 240, 242, 243, 244, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 258, 260, 261, 262, 263, 264, 265, 266, 268, 270, 273, 291, 292, 305, 307, 308, 309, 310, 312, 314], "workaround": [121, 144, 155, 234, 246, 258, 267], "world": [11, 12, 22, 23, 24, 27, 74, 80, 82, 89, 93, 116, 127, 178, 179, 230, 267, 273, 274, 287, 313], "world_coord": [24, 287], "world_fram": [79, 80, 82, 83, 93], "worldpointpick": 296, "wors": 234, "worth": [252, 264], "would": [14, 19, 24, 54, 62, 67, 73, 101, 103, 104, 106, 109, 114, 119, 121, 122, 128, 130, 132, 133, 135, 136, 138, 140, 143, 146, 149, 152, 155, 158, 166, 176, 178, 180, 182, 183, 185, 197, 211, 218, 221, 225, 226, 229, 230, 234, 235, 237, 239, 240, 243, 247, 252, 255, 258, 259, 264, 266, 267, 268, 270, 271, 275, 293, 314], "wouldn": 161, "wrap": [38, 71, 161, 164, 233, 260, 264, 293, 310], "wrap_overflow": [161, 296], "wrap_width": 293, "wrapper": [154, 173], "wreck": [77, 78, 89, 118, 129, 135, 309, 313], "write": [24, 30, 97, 133, 135, 142, 147, 148, 151, 154, 169, 179, 181, 212, 224, 261, 264, 281, 291], "write_accessor": 296, "write_buff": 296, "write_bufferview": 296, "write_camera": 296, "write_into": [148, 291, 296], "write_materi": 296, "write_mesh": 296, "write_nod": 296, "write_scen": 296, "writeabl": 276, "written": [97, 116, 154, 173, 180, 230, 315], "wrong": [129, 139, 142, 151, 152, 180, 246], "wrote": [112, 121, 178, 190, 208], "wsl": 88, "www": [73, 148, 173, 276, 277, 292], "wysiwyg": 225, "x": [2, 5, 14, 15, 24, 25, 26, 29, 30, 33, 34, 37, 86, 88, 93, 96, 118, 145, 148, 167, 169, 171, 172, 178, 184, 201, 258, 264, 267, 270, 273, 274, 275, 276, 278, 283, 285, 286, 287, 291, 292, 293, 294, 295, 312, 314], "x1": [36, 274], "x2": [36, 274], "x64": 304, "x_coord": 286, "x_indic": 274, "x_midpoint": 24, "xaxi": [30, 274], "xlayout": 296, "xml": [76, 94, 282], "xmlpolydataread": 296, "xmlpolydatawrit": 296, "xp": 178, "xquartz": 96, "xtanion": [222, 227], "xu": 172, "xvfb": 96, "xx": 29, "xxxy": 267, "xy": [40, 71, 76, 264, 273, 283, 292, 294], "xyx": 76, "xyz": [10, 11, 20, 21, 25, 61, 74, 93, 192, 226, 275, 276, 287, 289, 294], "xyz2lab": 296, "xyz2rgb": 296, "xyz_color_interpol": [61, 296], "xyz_from_rgb": 296, "xyz_text": 61, "xyzcolor": 276, "y": [2, 5, 14, 15, 24, 25, 26, 29, 30, 33, 37, 63, 93, 118, 152, 167, 169, 171, 172, 178, 201, 258, 262, 264, 270, 271, 273, 274, 275, 278, 283, 285, 286, 287, 291, 292, 293, 294, 295, 312, 314], "y1": [36, 274], "y2": [36, 274], "y_coord": 286, "y_indic": 274, "y_midpoint": 24, "yang": 172, "yaw": [292, 295, 296], "yaxi": [30, 274], "ye": 193, "year": [108, 140, 142, 178, 179, 180, 231, 307, 314], "yellow": [29, 47, 53, 216, 218], "yet": [27, 118, 121, 164, 168, 171, 179, 189, 198, 202, 231, 235, 243, 258, 267], "yield": [38, 266, 276], "ylayout": 296, "york": 5, "you": [2, 3, 6, 9, 13, 14, 16, 17, 19, 21, 24, 27, 30, 31, 32, 34, 35, 36, 39, 54, 59, 60, 64, 67, 71, 74, 86, 87, 88, 94, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 122, 132, 135, 137, 138, 140, 142, 143, 146, 148, 149, 152, 154, 155, 158, 161, 164, 166, 167, 169, 173, 176, 177, 180, 225, 228, 229, 237, 240, 243, 249, 255, 258, 264, 270, 271, 273, 276, 277, 278, 290, 291, 294, 295, 314], "your": [0, 4, 15, 19, 71, 86, 88, 89, 96, 98, 99, 100, 101, 103, 104, 105, 106, 122, 132, 133, 137, 138, 154, 166, 173, 176, 177, 180, 212, 228, 229, 243, 246, 276, 286, 290, 291, 295, 314], "your_name_her": 314, "youtub": 180, "yy": 29, "yzww": 267, "z": [2, 5, 14, 24, 25, 26, 29, 30, 33, 37, 40, 71, 93, 118, 167, 169, 171, 172, 178, 201, 213, 270, 273, 274, 275, 278, 283, 285, 286, 292, 294, 312, 314], "z1": [36, 274], "z2": [36, 274], "z_coord": 286, "z_indic": 274, "zaxi": 274, "zenith": 292, "zero": [2, 3, 8, 11, 12, 16, 17, 28, 32, 36, 39, 40, 62, 64, 67, 80, 81, 82, 83, 203, 225, 258, 266, 267, 276, 291, 312], "zerodivisionerror": [225, 266, 271, 312], "zerodivsionerror": 203, "zeros_lik": 62, "zhang": 172, "zhiwen": [229, 312], "zip": [15, 29, 89, 276], "zlayout": 296, "zoom": [4, 5, 12, 14, 18, 21, 24, 26, 28, 33, 39, 259, 295, 296], "zw": 40, "zz": 29, "\u00e5": 286, "\u00e8ffectmanag": 267, "\u03b1": 172, "\u03b2": 172}, "titles": ["Introductory", "Computation times", "Fury Arrow Actor", "Fury Cone Actor", "Texture Sphere Animation", "Earth Coordinate Conversion", "Visualizing a glTF file", "Visualizing a glTF file", "Exporting scene as a glTF file", "Morphing Animation in a glTF", "Multithreading Example", "Simple picking", "Selecting multiple objects", "Skeletal Animation in a glTF file", "Simple volume slicing", "Solar System Animation", "FURY sphere Actor", "Spiky Sphere", "Visualize surfaces", "Sphere Texture", "Using a timer", "Collisions of particles in a box", "Demos", "Computation times", "Advanced interactive visualization", "Animated 2D functions", "Brownian motion", "Visualize bundles and metrics on bundles", "Display Tensor Ellipsoids for DTI using tensor_slicer vs ellipsoid actor", "Electromagnetic Wave Propagation Animation", "Brain Fiber ODF Visualisation", "Fine-tuning the OpenGL state using shader callbacks", "Fractals", "Motion of a charged particle in a combined magnetic and electric field", "Fury Markers", "Visualize Interdisciplinary map of the journals network", "Visualize Networks (Animated version)", "Interactive PBR demo", "Play a video in the 3D world", "Visualization of ROI Surface Rendered with Streamlines", "Tesseract (Hypercube)", "User Interface Elements", "Computation times", "Buttons & Text", "Card", "Card", "Figure and Color Control using Check boxes and Radio Buttons", "ComboBox", "DrawPanel", "Using Layouts with different UI elements", "Sphere Color Control using Radio Buttons", "Simple Shapes", "SpinBox UI", "Tab UI", "User Interfaces", "ListBox", "Cube & Slider Control", "Animation", "Computation times", "Bezier Interpolator", "Keyframe animation: Camera and opacity", "Keyframe Color Interpolators", "Making a custom interpolator", "Keyframe hierarchical Animation", "Keyframe animation introduction", "Arm Robot Animation", "Keyframes Spline Interpolator", "Timeline and setting keyframes", "Keyframe animation", "Shaders", "Computation times", "SDF Impostors on Billboards", "Physically-Based Rendering (PBR) on spheres", "Principled BRDF shader on spheres", "Make a Cylinder using polygons vs SDF", "Visualize SDF Actor", "Varying Color", "Integrate Physics using pybullet", "Computation times", "Ball Collision Simulation", "Brick Wall Simulation", "Chain Simulation", "Domino Physics Simulation", "Wrecking Ball Simulation", "Streaming", "Computation times", "Streaming FURY with user interaction", "Streaming FURY with WebRTC/MJPEG", "Streaming FURY with WebRTC/MJPEG using the Widget Object", "Tutorials", "Computation times", "Blog", "Community", "FURY - pyBullet Integration Guide", "Getting Started", "<no title>", "Installation", "About", "FURY 0.1.0 Released", "FURY 0.1.3 Released", "FURY 0.1.4 Released", "FURY 0.2.0 Released", "Success on Brain Art Competition using FURY", "FURY 0.3.0 Released", "FURY 0.4.0 Released", "Google Summer of Code", "FURY 0.5.1 Released", "Weekly Check-in #1", "Welcome to my GSoC Blog!!!", "First week of coding!!", "First week of coding!!", "Raymarching!!", "ComboBox2D Progress!!", "Raymarching continued", "TextBlock2D Progress!!", "Spherical harmonics", "May the Force be with you!!", "Spherical harmonics, Continued.", "Translation, Reposition, Rotation.", "Orientation, Sizing, Tab UI.", "Multiple SDF primitives.", "ComboBox2D, TextBlock2D, Clipping Overflow.", "FURY 0.6.0 Released", "Improvements in SDF primitives.", "Tab UI, TabPanel2D, Tab UI Tutorial.", "Merging SDF primitives.", "More Shaders!!", "Single Actor, Physics, Scrollbars.", "More Shaders!!", "Chain Simulation, Scrollbar Refactor, Tutorial Update.", "Wrecking Ball Simulation, Scrollbars Update, Physics Tutorials.", "Outline Picker", "FURY 0.6.1 Released", "Part of the Journey is the end unless its Open Source!", "Google Summer of Code 2020 Final Work Product", "Google Summer of Code Final Work Product", "Shader Showcase", "Google Summer of Code", "FURY 0.7.0 Released", "Weekly Check-In #1", "Week #1: Welcome to my weekly Blogs!", "Welcome to my GSoC Blog!", "A Stadia-like system for data visualization", "Week #2: Feature additions in UI and IO modules", "First week of coding!", "Weekly Check-In #3", "Week #3: Adapting GridLayout to work with UI", "Second week of coding!", "SOLID, monkey patching a python issue and network visualization through WebRTC", "Week #4: Adding Tree UI to the UI module", "Third week of coding!", "Weekly Check-In #5", "Week #5: Rebasing all PRs w.r.t the UI restructuring, Tree2D, Bug Fixes", "Fourth week of coding!", "Network layout algorithms using IPC", "Week #6: Bug fixes, Working on Tree2D UI", "Fifth week of coding!", "Weekly Check-In #7", "Week #7: Finalizing the stalling PRs, finishing up Tree2D UI.", "Sixth week of coding!", "Weekly Check-In #8", "Week #8: Code Cleanup, Finishing up open PRs, Continuing work on Tree2D", "Seventh week of coding!", "Week #09: Sphinx custom summary", "Week #9: More Layouts!", "Eighth coding week!", "FURY 0.7.0 Released", "Week#10: Accordion UI, Support for sprite sheet animations", "Ninth coding week!", "Week #11: Finalizing open Pull Requests", "Tenth coding week!", "Google Summer of Code Final Work Product", "Google Summer of Code Final Work Product", "Google Summer of Code 2021 - Final Report - Bruno Messias", "Week #10: SDF Fonts", "Week #11: Removing the flickering effect", "FURY 0.8.0 Released", "Contribute to FURY via Google Summer of Code 2022", "My journey till getting accepted into GSoC22", "My Journey to GSoC 2022", "Pre-GSoC Journey", "Week 1: Implementing a basic Keyframe animation API", "Week 1 - Laying the Foundation of DrawPanel UI", "Week 2 - Improving DrawPanel UI", "Week 1 - A Basic glTF Importer", "Week 3 - Dealing with Problems", "Week 2: Implementing non-linear and color interpolators", "Week 4 - Fixing the Clamping Issue", "Week 2 - Improving Fetcher and Exporting glTF", "Week 3: Redesigning the API, Implementing cubic Bezier Interpolator, and making progress on the GPU side!", "Week 3 - Fixing fetcher, adding tests and docs", "Week 5 - Working on new features", "Week 4: Camera animation, interpolation in GLSL, and a single Timeline!", "Week 4 - Finalizing glTF loader", "Week 6 - Supporting Rotation of the Shapes from the Center", "Week 5: Slerp implementation, documenting the Timeline, and adding unit tests", "Week 5 - Creating PR for glTF exporter and fixing the loader", "Week 7 - Working on Rotation PR and Trying Freehand Drawing", "Week 6: Fixing the Timeline issues and equipping it with more features", "Week 6 - Extracting the animation data", "Week 8 - Working on the polyline feature", "Week 7: Billboard spheres and implementing interpolators using closures", "Week 7 - Fixing bugs in animations", "Week 9 - Grouping and Transforming Shapes", "Week 8 - Fixing animation bugs", "Week 8: Back to the shader-based version of the Timeline", "Week 10 - Understanding Codes and Playing with Animation", "Week 9: Animating primitives of the same actor", "Week 9 - First working skeletal animation prototype", "Week 11 - Creating a base for Freehand Drawing", "Week 10: Supporting hierarchical animating", "Week 12 - Fixing translating issues and updating tests", "Week 10 - Multi-node skinning support", "Week 11: Improving tutorials a little", "Week 11 - Multiple transformations support and adding tests", "Week 13 - Separating tests and fixing bugs", "Week 14 - Updating DrawPanel architecture", "Week 12 - Adding skeleton as actors and fix global transformation", "Week 15 - Highlighting DrawShapes", "Week 13 - Multi-bone skeletal animation support", "Week 13: Keyframes animation is now a bit easier in FURY", "Week 16 - Working with Rotations!", "Week 14: Keyframes animation is now a bit easier in FURY", "Week 14 - Morphing is here!", "Week 12: Adding new tutorials", "Google Summer of Code Final Work Product", "Google Summer of Code Final Work Product", "Google Summer of Code Final Work Product", "Contribute to FURY via Google Summer of Code 2023", "FURY 0.9.0 Released", "The Beginning of Everything - Week 0", "Week 0: Community Bounding Period", "Week 0: Community Bounding Period", "Week 1: Working with SpinBox and TextBox Enhancements", "The FBO Saga - Week 1", "Week 1: Ellipsoid actor implemented with SDF", "Week 2: Tackling Text Justification and Icon Flaw Issues", "Week 2: The Importance of (good) Documentation", "Week 2: Making adjustments to the Ellipsoid Actor", "Week 3: Resolving Combobox Icon Flaw and TextBox Justification", "Week 3: Watch Your Expectations", "Week 3: Working on uncertainty and details of the first PR", "Week 4: Exam Preparations and Reviewing", "Week 4: Nothing is Ever Lost", "Week 4: First draft of the DTI uncertainty visualization", "Week 5: Trying out PRs and Planning Ahead", "Week 5: All Roads Lead to Rome", "Week 5: Preparing the data for the Ellipsoid tutorial", "Week 6: BoundingBox for TextBlock2D!", "Week 6: Things are Starting to Build Up", "Week 6: First draft of the Ellipsoid tutorial", "Week 7: Sowing the seeds for TreeUI", "Week 7: Experimentation Done", "Week 7: Adjustments on the Uncertainty Cones visualization", "Week 8: Another week with TextBlockUI", "Week 8: The Birth of a Versatile API", "Week 8: Working on Ellipsoid Tutorial and exploring SH", "Week 9: TextBlock2D is Finally Merged!", "Week 9: It is Polishing Time!", "Week 9: Tutorial done and polishing DTI uncertainty", "Week 10: Its time for a Spin-Box!", "Week 10: Ready for Review!", "Week 10 : Start of SH implementation experiments", "Week 11: Bye Bye SpinBox", "Week 11: A Refactor is Sometimes Needed", "Week 11 : Adjusting ODF implementation and looking for solutions on issues found", "Week 12: FileDialog Quest Begins!", "Google Summer of Code Final Work Product", "Week 12: Now That is (almost) a Wrap!", "Google Summer of Code Final Work Product", "Week 12 : Experimenting with ODFs implementation", "Google Summer of Code Final Work Product", "fury", "actor", "actors", "animation", "colormap", "convert", "data", "decorators", "deprecator", "gltf", "io", "layout", "lib", "material", "molecular", "pick", "pkg_info", "primitive", "shaders", "stream", "transform", "ui", "utils", "window", "API Reference", "Release History", "Release notes v0.1.0 (2018-09-21)", "Release notes v0.1.1 (2018-10-29)", "Release notes v0.1.2 and v0.1.3 (2018-10-31)", "Release notes v0.1.4 (2018-11-26)", "Release notes v0.10.0 (2024/02/28)", "Release notes v0.2.0 (2019-03-08)", "Release notes v0.3.0 (2019-08-02)", "Release notes v0.4.0 (2019-10-29)", "Release notes v0.5.1 (2020-04-01)", "Release notes v0.6.0 (2020-07-20)", "Release notes v0.6.1 (2020-08-20)", "Release notes v0.7.0 (2021/03/13)", "Release notes v0.7.1 (2021/08/03)", "Release notes v0.8.0 (2022/01/31)", "Release notes v0.9.0 (2023/04/15)", "Computation times", "Contributing", "License"], "titleterms": {"": [230, 237, 240, 243, 246, 249, 252, 255, 258, 261, 264, 268], "0": [53, 98, 99, 100, 101, 103, 104, 106, 122, 132, 138, 166, 176, 229, 230, 231, 232, 298, 302, 303, 304, 305, 307, 309, 311, 312], "01": [306, 311], "02": [302, 304], "03": [303, 309, 310], "04": [306, 312], "07": 307, "08": [303, 304, 308, 310], "09": [163, 298], "1": [53, 98, 99, 100, 106, 107, 132, 139, 140, 151, 181, 182, 184, 233, 234, 235, 298, 299, 300, 301, 306, 308, 310], "10": [167, 174, 206, 210, 212, 260, 261, 262, 299, 300, 302, 305], "11": [169, 175, 209, 213, 214, 263, 264, 265, 301], "12": [211, 217, 224, 266, 268, 270], "13": [215, 219, 220, 309], "14": [216, 222, 223], "15": [218, 312], "16": 221, "2": [53, 101, 143, 183, 186, 188, 236, 237, 238, 300, 303], "20": [307, 308], "2018": [298, 299, 300, 301], "2019": [303, 304, 305], "2020": [134, 306, 307, 308], "2021": [173, 309, 310], "2022": [177, 179, 311], "2023": [228, 231, 232, 312], "2024": 302, "21": [180, 298], "22": 180, "26": 301, "28": 302, "29": [299, 305], "2d": 25, "3": [99, 103, 145, 146, 185, 189, 190, 239, 240, 241, 300, 304], "31": [300, 311], "3d": [38, 178], "4": [100, 104, 149, 187, 192, 193, 242, 243, 244, 301, 305], "437": 151, "5": [106, 151, 152, 191, 195, 196, 245, 246, 247, 306], "50": 60, "6": [122, 132, 155, 194, 198, 199, 248, 249, 250, 307, 308], "7": [138, 157, 158, 166, 197, 201, 202, 251, 252, 253, 309, 310], "8": [160, 161, 176, 200, 204, 205, 254, 255, 256, 311], "9": [164, 203, 207, 208, 229, 257, 258, 259, 312], "A": [59, 142, 145, 154, 178, 184, 264], "For": 53, "In": [139, 145, 151, 157, 160], "It": 258, "Its": 260, "That": 268, "The": [60, 154, 178, 179, 180, 230, 234, 237, 255, 268], "_cqueue": 291, "_cqueue_event_id": 291, "_cqueue_index_info": 291, "_leading_whit": 280, "_tuple2ax": 292, "about": [97, 178, 179, 234], "abstract": [148, 173, 267, 269], "accept": 178, "accordion": 167, "actor": [2, 3, 16, 28, 60, 75, 93, 127, 207, 217, 227, 235, 238, 269, 273, 274, 284], "actor2d": 284, "ad": [60, 93, 149, 190, 195, 214, 217, 224], "adapt": 146, "add": 27, "add_atom": 286, "add_bond": 286, "add_polydata_numeric_field": 294, "add_shader_callback": 290, "addit": 143, "adjust": [238, 253, 265], "advanc": 24, "ahead": 245, "algorithm": 154, "algorithmoutput": 284, "all": [152, 246], "almost": 268, "amount": 28, "an": 27, "analyze_scen": 295, "analyze_snapshot": 295, "anim": [4, 9, 13, 15, 25, 29, 36, 57, 60, 63, 64, 65, 66, 68, 89, 167, 180, 181, 192, 199, 202, 204, 206, 207, 208, 210, 219, 220, 222, 227, 275], "anoth": 254, "antialias": 295, "anywher": [109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 123, 124, 125, 126, 127, 128, 129, 130, 131, 133, 136, 139, 140, 143, 144, 145, 146, 147, 149, 150, 151, 152, 153, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 167, 168, 169, 170, 174, 175, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 232, 233, 235, 236, 238, 239, 241, 242, 244, 245, 247, 248, 250, 251, 253, 254, 256, 257, 259, 260, 262, 263, 265, 266, 270], "api": [181, 189, 255, 296], "applic": 93, "apply_affin": 294, "apply_affine_to_actor": 294, "apply_transform": 292, "ar": 249, "architectur": [97, 216], "argsdeprecationwarn": 280, "arm": 65, "array_from_actor": 294, "arraycircularqueu": 291, "arrow": [2, 273], "arrowsourc": 284, "art": 102, "asbyt": 294, "assembli": 284, "async_app": 291, "attribute_to_actor": 290, "avoid": 148, "ax": 273, "b": 154, "back": 205, "ball": [79, 83, 93, 116, 130], "ball_stick": 286, "base": [72, 205, 209, 290], "basic": [181, 184], "befor": 314, "begin": [180, 230, 266], "behavior": 154, "between": 142, "bezier": [59, 189], "billboard": [71, 201, 273], "birth": 255, "bit": [220, 222], "block": 154, "blog": [91, 107, 108, 140, 141, 225, 227, 267, 269, 271], "bmpreader": 284, "bmpwriter": 284, "bodi": 93, "bond": [107, 108, 141, 181, 184, 230, 231, 232], "bone": 219, "bound": [231, 232], "bounding_box": 286, "boundingbox": 248, "box": [21, 46, 260, 273], "boys2rgb": 276, "brain": [30, 102], "brdf": 73, "brick": [80, 93, 116], "brownian": 26, "bruno": 173, "bug": [97, 148, 152, 155, 202, 204, 215, 314], "build": [96, 249], "bundl": 27, "butterflysubdivisionfilt": 284, "button": [43, 46, 50, 54], "button2d": 293, "bye": 263, "cal_bounding_box_2d": 293, "callback": [31, 47, 93], "callback_stream_cli": 291, "camera": [60, 192, 284], "cameraanim": 275, "card": [44, 45], "card2d": 293, "cart2spher": 292, "cc": 276, "cellarrai": 284, "cellpick": 284, "center": 194, "chain": [81, 93, 129], "chang": 93, "change_vertices_ord": 294, "charg": 33, "check": [46, 107, 139, 145, 151, 157, 160], "check_overflow": 293, "check_port_is_avail": 291, "check_sha": 278, "checkbox": [53, 293], "checklist": 314, "clamp": 187, "class": 148, "cleanpolydata": 284, "cleanup": 161, "client": 291, "clip": 121, "clip_overflow": 293, "closur": 201, "cmp_pkg_version": 280, "code": [105, 109, 110, 134, 135, 137, 144, 147, 148, 150, 153, 154, 156, 159, 161, 162, 165, 168, 170, 171, 172, 173, 177, 178, 206, 225, 226, 227, 228, 267, 269, 271], "collis": [21, 79, 93, 116], "color": [27, 46, 50, 53, 61, 76, 186], "color_check": 294, "color_interpol": 275, "colormap": [14, 27, 276], "colormap_lookup_t": 276, "colors_from_actor": 294, "combin": [27, 33], "combobox": [47, 53, 239], "combobox2d": [112, 121, 293], "come": [107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 123, 124, 125, 126, 127, 128, 129, 130, 131, 133, 136, 139, 140, 141, 143, 144, 145, 146, 147, 149, 150, 151, 152, 153, 155, 156, 157, 159, 160, 161, 162, 163, 164, 165, 167, 168, 169, 170, 174, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 232, 233, 235, 236, 238, 239, 241, 242, 244, 245, 247, 248, 250, 251, 253, 254, 256, 257, 259, 260, 262, 263, 265, 266, 270], "command": 284, "commun": [92, 107, 108, 141, 181, 184, 230, 231, 232], "comparison": 28, "competit": 102, "complet": [134, 135, 171, 172, 173, 225, 226, 227, 267, 269, 271], "complex": 59, "compose_shad": 290, "comput": [1, 23, 42, 58, 70, 78, 85, 90, 313], "compute_bond": 286, "compute_bound": 294, "conda": 96, "cone": [3, 253, 273], "conesourc": 284, "connect": 93, "constant": 291, "contain": [273, 293], "continu": [113, 117, 161], "contour_from_label": 273, "contour_from_roi": 273, "contourfilt": 284, "contribut": [177, 228, 314], "contributor": 92, "control": [46, 50, 53, 56], "convers": 5, "convert": 277, "coordin": 5, "copyfileobj_withprogress": 278, "core": [145, 293], "creat": [14, 60, 67, 93, 196, 209], "create_colormap": 276, "creation": 93, "credit": 97, "cube": [53, 54, 56, 273], "cubic": [59, 62, 189], "cubic_bezier_interpol": 275, "cubic_spline_interpol": 275, "cue": 27, "current": 234, "curv": 59, "custom": [62, 163], "cylind": [53, 74, 273], "cylindersourc": 284, "dai": [178, 179], "data": [28, 62, 142, 199, 247, 278], "data_dir": 278, "dataobject": 284, "datasetattribut": 284, "datasetmapp": 284, "deal": 185, "decor": 279, "deep_copy_molecul": 286, "default": 27, "demo": [22, 37, 89], "depend": 96, "deprec": 280, "deprecate_with_vers": 280, "deprecated_param": 280, "depth": 27, "detail": [241, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312], "develop": [178, 180], "dialog": 133, "did": [107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 123, 124, 125, 126, 127, 128, 129, 130, 131, 133, 136, 139, 140, 141, 143, 144, 145, 146, 147, 149, 150, 151, 152, 153, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 167, 168, 169, 170, 174, 175, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 232, 233, 235, 236, 238, 239, 241, 242, 244, 245, 247, 248, 249, 250, 251, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 268, 270], "differ": [27, 49, 142], "disable_warn": 272, "disconnect": 93, "disk": 273, "disk2d": 293, "disksourc": 284, "displai": 28, "distinguishable_colormap": 276, "do": [107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 123, 124, 125, 126, 127, 128, 129, 130, 131, 133, 136, 139, 140, 141, 143, 144, 145, 146, 147, 149, 150, 151, 152, 153, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 167, 168, 169, 170, 174, 175, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 232, 233, 235, 236, 238, 239, 241, 242, 244, 245, 247, 248, 250, 251, 253, 254, 256, 257, 259, 260, 262, 263, 265, 266, 270, 314], "doc": 190, "doctest_skip_pars": 279, "document": [96, 195, 237, 314], "doe": 142, "domino": [82, 93], "done": [252, 259], "dot": 273, "double_con": 274, "doublearrai": 284, "draft": [244, 250], "draw": [197, 209], "drawpanel": [48, 182, 183, 216, 293], "drawshap": [218, 293], "dti": [28, 244, 259, 269], "dure": [107, 108, 141, 181, 184], "dynam": 93, "earth": 5, "easier": [220, 222], "effect": 175, "effort": [237, 240, 243, 246, 252, 255, 258, 261, 264, 268], "eighth": 165, "electr": 33, "electromagnet": 29, "element": [41, 49, 89, 293], "ellipsoid": [28, 235, 238, 247, 250, 256, 269, 273], "emiss": 227, "enabl": 93, "enable_stereo": 295, "enable_warn": 272, "end": 133, "enhanc": 233, "equip": 198, "euclidean_dist": 275, "euler_matrix": 292, "ever": 243, "everi": 27, "everyth": 230, "exactli": 64, "exam": 242, "exampl": [10, 93], "expect": 240, "experi": [178, 262, 270], "experiment": 252, "expireddeprecationerror": 280, "explor": 256, "export": [8, 188, 196, 227], "export_scen": 281, "extract": 199, "fa": 14, "faces_from_sphere_vertic": 289, "fake": 27, "fbo": 234, "featur": [97, 143, 191, 198, 200, 314], "feedback": 314, "fetch_data": 278, "fetch_gltf": 278, "fetch_viz_cubemap": 278, "fetch_viz_dmri": 278, "fetch_viz_icon": 278, "fetch_viz_model": 278, "fetch_viz_new_icon": 278, "fetch_viz_textur": 278, "fetch_viz_wiki_nw": 278, "fetcher": [188, 190, 227, 278], "fiber": 30, "field": 33, "fifth": 156, "figur": [46, 273], "file": [6, 7, 8, 13, 62, 227], "filedialog": 266, "filemenu2d": 293, "final": [134, 135, 158, 169, 171, 172, 173, 193, 225, 226, 227, 257, 267, 269, 271], "fine": 31, "finish": [158, 161], "first": [109, 110, 144, 178, 208, 241, 244, 250], "fix": [152, 155, 187, 190, 196, 198, 202, 204, 211, 215, 217, 314], "fix_winding_ord": 294, "flaw": [236, 239], "flicker": 175, "floatarrai": 284, "folder": 96, "follow": 284, "font": 174, "forc": [93, 116], "found": 265, "foundat": 182, "fourth": 153, "fractal": 32, "freehand": [197, 209], "from": [14, 27, 62, 194, 227], "frustum": 273, "function": [25, 134], "furi": [2, 3, 16, 34, 53, 60, 64, 86, 87, 88, 93, 98, 99, 100, 101, 102, 103, 104, 106, 122, 132, 138, 148, 151, 163, 166, 174, 175, 176, 177, 220, 222, 228, 229, 272], "furystreamcli": 291, "furystreaminteract": 291, "game": [178, 180], "genericcircularqueu": 291, "genericimagebuffermanag": 291, "genericmultidimensionalbuff": 291, "get": [62, 94, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 123, 124, 125, 126, 127, 128, 129, 130, 131, 133, 136, 139, 140, 143, 144, 145, 146, 147, 149, 150, 151, 152, 153, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 167, 168, 169, 170, 174, 175, 178, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 232, 233, 235, 236, 238, 239, 241, 242, 244, 245, 247, 248, 250, 251, 253, 254, 256, 257, 259, 260, 262, 263, 265, 266, 270, 314], "get_actor_from_polydata": 294, "get_actor_from_polymapp": 294, "get_actor_from_primit": 294, "get_all_atomic_numb": 286, "get_all_atomic_posit": 286, "get_all_bond_ord": 286, "get_app": 291, "get_atomic_numb": 286, "get_atomic_posit": 286, "get_bond_ord": 286, "get_bound": 294, "get_bounding_box_s": 294, "get_cmap": 276, "get_grid_cells_posit": 294, "get_info": 272, "get_next_timestamp": 275, "get_polydata_color": 294, "get_polydata_field": 294, "get_polydata_lin": 294, "get_polydata_norm": 294, "get_polydata_primitives_count": 294, "get_polydata_tang": 294, "get_polydata_tcoord": 294, "get_polydata_triangl": 294, "get_polydata_vertic": 294, "get_polymapper_from_polydata": 294, "get_previous_timestamp": 275, "get_prim": 281, "get_time_tau": 275, "get_timestamps_from_keyfram": 275, "get_values_from_keyfram": 275, "get_xyz_coord": 276, "gl": 151, "gl_disable_blend": 295, "gl_disable_depth": 295, "gl_enable_blend": 295, "gl_enable_depth": 295, "gl_get_current_st": 295, "gl_reset_blend": 295, "gl_set_additive_blend": 295, "gl_set_additive_blending_white_background": 295, "gl_set_multiplicative_blend": 295, "gl_set_normal_blend": 295, "gl_set_subtractive_blend": 295, "global": 217, "glsl": 192, "gltf": [6, 7, 8, 9, 13, 62, 184, 188, 193, 196, 227, 281], "glyph3d": 284, "go": [255, 258, 261, 264, 268], "goal": [230, 237, 240, 243, 246, 249, 252, 255, 258, 261, 264], "good": [154, 237], "googl": [105, 134, 135, 137, 171, 172, 173, 177, 225, 226, 227, 228, 267, 269, 271], "got": 178, "gpu": 189, "grant": 148, "graviti": 93, "grid": 273, "gridlayout": [146, 283], "gridui": 293, "group": 203, "gsoc": [107, 108, 141, 179, 180, 225, 227, 231, 232, 267, 269, 271], "gsoc22": 178, "guid": 93, "guidelin": 314, "hard": 252, "hardwareselector": 284, "harmon": [115, 117], "have": 154, "helio": [148, 151, 163, 174, 175], "helper": [275, 293], "here": 223, "hex_to_rgb": 276, "hierarch": [63, 210], "highlight": 218, "histori": 297, "horizontallayout": 283, "how": [142, 154, 255, 258, 261, 264, 268], "hsv2rgb": 276, "hsv_color_interpol": 275, "hypercub": 40, "i": [64, 67, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 123, 124, 125, 126, 127, 128, 129, 130, 131, 133, 136, 139, 140, 141, 143, 144, 145, 146, 147, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 167, 168, 169, 170, 174, 175, 178, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 232, 233, 235, 236, 238, 239, 241, 242, 243, 244, 245, 247, 248, 249, 250, 251, 253, 254, 256, 257, 258, 259, 260, 262, 263, 264, 265, 266, 268, 270], "icon": [236, 239], "idtypearrai": 284, "imag": 54, "imageactor": 284, "imagecontainer2d": 293, "imagedata": 284, "imageflip": 284, "imagemaptocolor": 284, "imagereader2factori": 284, "imagereslic": 284, "immut": 148, "implement": [62, 154, 181, 186, 189, 195, 201, 235, 262, 265, 269, 270, 314], "import": [93, 154, 184, 227, 237], "import_fury_shad": 290, "impostor": 71, "improv": [123, 183, 188, 213], "index": 53, "indic": 227, "initi": 93, "insid": 142, "instal": 96, "integr": [77, 89, 93], "interact": [24, 37, 86], "interaction_callback": 291, "interactoreventrecord": 284, "interactorstyl": 284, "interactorstyleimag": 284, "interactorstyletrackballactor": 284, "interactorstyletrackballcamera": 284, "interactorstyleus": 284, "interdisciplinari": 35, "interest": 180, "interfac": [41, 54, 89], "interpol": [59, 61, 62, 66, 186, 189, 192, 201, 275], "intervaltim": 291, "intervaltimerthread": 291, "intro": [179, 180], "introduct": [64, 134], "introductori": [0, 89], "io": [143, 282], "ipc": 154, "is_bad_vers": 280, "is_ui": 294, "issu": [145, 148, 187, 198, 211, 236, 265], "its": 133, "join": 92, "joint": 93, "journal": 35, "journei": [133, 178, 179, 180], "jpegread": 284, "jpegwrit": 284, "justif": [236, 239], "keyfram": [59, 60, 61, 62, 63, 64, 66, 67, 68, 181, 220, 222], "khrono": 227, "lab2rgb": 276, "lab2xyz": 276, "lab_color_interpol": 275, "label": 273, "lai": 182, "larger": 28, "last": [237, 240, 243, 246, 249, 252, 255, 258, 261, 264, 268], "layout": [49, 148, 151, 154, 164, 283], "lead": 246, "lerp": 275, "lib": 284, "licens": [97, 315], "like": 142, "line": 273, "line_color": 276, "linear": 186, "linear_interpol": 275, "linearextrusionfilt": 284, "linedoubleslider2d": 293, "lines_to_vtk_polydata": 294, "lineslider2d": 293, "list_gltf_sample_model": 278, "listbox": 55, "listbox2d": 293, "listboxitem2d": 293, "littl": [178, 213], "load": [227, 290], "load_cubemap_textur": 282, "load_imag": 282, "load_polydata": 282, "load_shad": 290, "load_sprite_sheet": 282, "load_text": 282, "loader": [193, 196], "lodactor": 284, "look": 265, "lookupt": 284, "loopsubdivisionfilt": 284, "lost": 243, "magnet": 33, "mai": 116, "main": [60, 291], "main_dir_uncertainti": 274, "make": [62, 74, 189, 238], "manag": [46, 47, 48, 50, 54, 56, 93], "manifest_pbr": 285, "manifest_principl": 285, "manifest_standard": 285, "map": 35, "map_coordinates_3d_4d": 294, "marker": [34, 273], "materi": [227, 285], "matplotlib_figure_to_numpi": 277, "matrix3x3": 284, "matrix4x4": 284, "menu": 54, "merg": [125, 257], "messia": 173, "metric": 27, "mission": 97, "mjpeg": [87, 88], "mniobjectread": 284, "mniobjectwrit": 284, "mode": 93, "model": 227, "modifi": [135, 226], "modul": [143, 149, 274, 275, 278, 290, 291, 293], "molecul": [284, 286], "molecular": 286, "monkei": 148, "more": [59, 126, 128, 164, 198], "morph": [9, 223, 227], "mosaic": 14, "most": [148, 154], "motion": [26, 33], "multi": [212, 219], "multipl": [12, 93, 120, 214], "multiprocess": 142, "multithread": 10, "my": [107, 108, 140, 141, 178, 179, 234], "myself": [178, 179], "namedtupl": 148, "necessari": 93, "need": [97, 264, 314], "network": [35, 36, 148, 151, 154], "new": [191, 224], "next": [107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 123, 124, 125, 126, 127, 128, 129, 130, 131, 133, 136, 139, 140, 141, 143, 144, 145, 146, 147, 149, 150, 151, 152, 153, 154, 155, 156, 157, 159, 160, 161, 162, 163, 164, 165, 167, 168, 169, 170, 174, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 232, 233, 234, 235, 236, 238, 239, 241, 242, 244, 245, 247, 248, 250, 251, 253, 254, 256, 257, 259, 260, 262, 263, 265, 266, 268, 270], "ninth": 168, "node": 212, "non": 186, "normalize_v3": 294, "normals_from_actor": 294, "normals_from_v_f": 294, "normals_to_actor": 294, "note": [86, 88, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312], "noth": 243, "now": [220, 222, 268], "numpy_to_vtk_cel": 294, "numpy_to_vtk_color": 294, "numpy_to_vtk_image_data": 294, "numpy_to_vtk_matrix": 294, "numpy_to_vtk_point": 294, "object": [12, 88, 93, 134, 135, 171, 172, 173, 225, 226, 227, 267, 269, 271], "objread": 284, "octagonalpr": 273, "odf": [30, 265, 269, 270], "odf_slic": [273, 274], "odfsliceractor": 274, "offscreen": 96, "one": 62, "opac": 60, "open": [133, 161, 169, 179], "opengl": 31, "openglmoleculemapp": 284, "openglrender": 284, "opensourc": 180, "oper": 142, "option": 293, "orient": [27, 119], "orient2rgb": 276, "other": [134, 135, 171, 172, 225, 226, 227, 267, 271, 314], "our": 96, "out": 245, "outlin": 131, "outlinefilt": 284, "overflow": 121, "overview": [97, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312], "panel": 54, "panel2d": 293, "paramet": 59, "part": 133, "particl": [21, 33], "past": 234, "patch": 148, "pbr": [37, 72, 227], "pc": 291, "peak": [273, 274], "peak_slic": 273, "peakactor": 274, "pentagonalpr": 273, "period": [107, 108, 141, 181, 184, 230, 231, 232], "periodict": 284, "physic": [72, 77, 82, 89, 127, 130], "pick": [11, 287], "picker": 131, "pickingmanag": 287, "pkg_commit_hash": 288, "pkg_info": 288, "plai": [38, 206], "plan": [60, 245], "playbackpanel": 293, "plyread": 284, "plywrit": 284, "pngreader": 284, "pngwriter": 284, "point": [27, 273, 284], "pointpick": 284, "polish": [258, 259], "polydata": 284, "polydatamapp": 284, "polydatamapper2d": 284, "polydatanorm": 284, "polydataread": 284, "polydatawrit": 284, "polygon": [74, 284], "polylin": 200, "polyvertex": 284, "popul": 96, "posit": [59, 62], "pr": [151, 152, 158, 161, 196, 197, 241, 245], "pre": 180, "prepar": [242, 247], "prim_arrow": 289, "prim_box": 289, "prim_con": 289, "prim_cylind": 289, "prim_frustum": 289, "prim_icosahedron": 289, "prim_octagonalpr": 289, "prim_pentagonalpr": 289, "prim_rhombicuboctahedron": 289, "prim_spher": 289, "prim_squar": 289, "prim_star": 289, "prim_superquadr": 289, "prim_tetrahedron": 289, "prim_triangularpr": 289, "primit": [120, 123, 125, 207, 289], "primitives_count_from_actor": 294, "primitives_count_to_actor": 294, "principl": 73, "problem": [154, 185, 234, 237, 240, 243, 246, 249], "process": 142, "product": [134, 135, 171, 172, 225, 226, 227, 267, 269, 271], "program": 180, "progress": [112, 114, 135, 171, 172, 189, 225, 226, 227, 267, 269, 271], "project": 230, "propag": 29, "properti": 93, "property2d": 284, "propos": [134, 135, 171, 172, 173, 225, 226, 227, 267, 269, 271], "proppick": 284, "proteinribbonfilt": 284, "prototyp": 208, "ptabl": 286, "publish": 314, "pull": [154, 169, 227, 314], "pybullet": [77, 89, 93], "pypi": 96, "python": [145, 148, 154], "qualiti": 28, "quest": 266, "quick": [298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312], "r": 152, "radio": [46, 50], "radiobutton": 293, "rang": [14, 54], "rangeslid": 293, "rawarrai": 142, "rawarrayimagebuffermanag": 291, "rawarraymultidimensionalbuff": 291, "raymarch": [111, 113], "read_viz_cubemap": 278, "read_viz_dmri": 278, "read_viz_gltf": 278, "read_viz_icon": 278, "read_viz_model": 278, "read_viz_textur": 278, "readi": 261, "rebas": 152, "record": 295, "rectangl": 273, "rectangle2d": 293, "redesign": 189, "ref": 148, "refactor": [129, 148, 264], "refer": [71, 74, 173, 269, 296], "regularpolygonsourc": 284, "releas": [98, 99, 100, 101, 103, 104, 106, 122, 132, 138, 166, 176, 229, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 314], "release_context": 295, "relev": 148, "remov": 175, "remove_observer_from_actor": 294, "remove_shm_from_resource_track": 291, "render": [14, 27, 39, 71, 72, 93, 284], "renderlargeimag": 284, "renderwindow": 284, "renderwindowinteractor": 284, "repeat_primit": 289, "repeat_primitive_funct": 289, "repeat_sourc": 294, "replace_shader_in_actor": 290, "report": [97, 173, 314], "reposit": 118, "represent_actor_as_wirefram": 294, "request": [154, 169, 227, 314], "resolv": 239, "restructur": 152, "result": 154, "review": [242, 261], "rgb2hsv": 276, "rgb2lab": 276, "rgb2xyz": 276, "rgb_from_xyz": 276, "rgb_to_vtk": 294, "rhombicuboctahedron": 273, "ribbon": 286, "rigid": 93, "ringslider2d": 293, "road": 246, "robot": 65, "roi": 39, "rome": 246, "rotat": [118, 194, 197, 221, 292, 294], "rotate_2d": 293, "rtcserver": 291, "run": 96, "saga": 234, "same": [62, 207], "sampl": 227, "save": 133, "save_imag": 282, "save_polydata": 282, "scalar_bar": 273, "scalarbaractor": 284, "scale": 292, "scene": [8, 59, 93, 227, 295], "scrollbar": [127, 129, 130], "sdf": [71, 74, 75, 120, 123, 125, 174, 235, 269, 273], "second": 147, "seed": 251, "select": [12, 54], "selectionmanag": 287, "separ": 215, "server": 291, "set": [59, 61, 62, 67, 93], "set_actor_origin": 294, "set_atomic_numb": 286, "set_atomic_posit": 286, "set_bond_ord": 286, "set_input": 294, "set_mous": 291, "set_mouse_click": 291, "set_polydata_color": 294, "set_polydata_norm": 294, "set_polydata_primitives_count": 294, "set_polydata_tang": 294, "set_polydata_tcoord": 294, "set_polydata_triangl": 294, "set_polydata_vertic": 294, "set_weel": 291, "seventh": 162, "sh": [256, 262], "shader": [31, 69, 73, 89, 126, 128, 136, 205, 284, 290], "shader_apply_effect": 290, "shader_to_actor": 290, "shaders_dir": 290, "shallow_copi": 294, "shape": [51, 54, 194, 203], "share": 142, "sharedmemcircularqueu": 291, "sharedmemimagebuffermanag": 291, "sharedmemmultidimensionalbuff": 291, "sheet": 167, "show": [27, 46, 47, 48, 50, 54, 56, 93, 295], "showcas": 136, "showmanag": 295, "side": 189, "silent": 148, "simpl": [11, 14, 51, 93, 227], "simplebondperceiv": 284, "simul": [79, 80, 81, 82, 83, 93, 116, 129, 130], "singl": [93, 127, 192], "sixth": 159, "size": 119, "skelet": [13, 208, 219, 227], "skeleton": 217, "skin": [212, 227], "skine": 227, "skip_r": 279, "skybox": 284, "slerp": [195, 275], "slice": 14, "slicer": 273, "slider": [53, 54, 56], "snapshot": 295, "so": [230, 255, 258, 261, 264, 268], "solar": 15, "solid": 148, "solut": [154, 265], "sometim": 264, "sourc": [96, 133, 179], "sow": 251, "specif": [14, 27], "sphere": [4, 16, 17, 19, 50, 53, 60, 64, 71, 72, 73, 201, 273], "sphere2cart": 292, "sphere_cpk": 286, "spheresourc": 284, "spheric": [115, 117], "sphinx": 163, "spiki": 17, "spin": 260, "spinbox": [52, 233, 263, 293], "spline": [62, 66], "spline_interpol": 275, "splinefilt": 284, "sprite": 167, "squar": 273, "ss": 276, "stadia": 142, "stall": 158, "start": [94, 249, 262, 314], "state": 31, "statement": 97, "static": [60, 227], "step": [154, 268], "step_interpol": 275, "stick": 286, "stlreader": 284, "stlwriter": 284, "stream": [84, 86, 87, 88, 89, 148, 151, 291], "streamlin": [27, 39], "streamtub": 273, "stringarrai": 284, "structur": 96, "stuck": [109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 123, 124, 125, 126, 127, 128, 129, 130, 131, 133, 136, 139, 140, 143, 144, 145, 146, 147, 149, 150, 151, 152, 153, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 167, 168, 169, 170, 174, 175, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 232, 233, 235, 236, 238, 239, 241, 242, 244, 245, 247, 248, 250, 251, 253, 254, 256, 257, 259, 260, 262, 263, 265, 266, 270], "stuff": 314, "submit": 314, "success": 102, "summari": [154, 163], "summer": [105, 134, 135, 137, 171, 172, 173, 177, 225, 226, 227, 228, 267, 269, 271], "superactor": 151, "superquadr": 273, "support": [97, 167, 194, 210, 212, 214, 219], "surfac": [18, 39, 273], "sync": [80, 82, 93], "system": [15, 142, 148, 151], "t": 152, "t1": 14, "tab": [53, 119, 124], "tabpanel2d": [124, 293], "tabui": 293, "tackl": 236, "tan_cubic_spline_interpol": 275, "tangents_from_actor": 294, "tangents_from_direction_of_anisotropi": 294, "tangents_to_actor": 294, "tensor": [28, 274], "tensor_ellipsoid": 274, "tensor_slic": [28, 273], "tenth": 170, "tesseract": 40, "test": [96, 148, 190, 195, 211, 214, 215], "text": [43, 54, 60, 236], "text_3d": 273, "textactor": 284, "textactor3d": 284, "textblock2d": [114, 121, 248, 257, 293], "textblockui": 254, "textbox": [233, 239], "textbox2d": 293, "textur": [4, 19, 273, 284], "texture_2d": 273, "texture_on_spher": 273, "texture_upd": 273, "texturedactor2d": 284, "texturedspheresourc": 284, "texturemaptoplan": 284, "thi": [109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 123, 124, 125, 126, 127, 128, 129, 130, 131, 133, 136, 139, 140, 143, 144, 145, 146, 147, 149, 150, 151, 152, 153, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 167, 168, 169, 170, 174, 175, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 230, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 270], "thing": 249, "third": 150, "thread": 154, "through": 148, "tiffread": 284, "tiffwrit": 284, "till": 178, "time": [1, 23, 42, 58, 70, 78, 85, 90, 258, 260, 313], "timelin": [60, 67, 134, 135, 171, 172, 173, 192, 195, 198, 205, 225, 226, 227, 267, 269, 271, 275], "timer": [20, 93], "tool": 291, "torqu": 93, "tradit": 71, "transform": [203, 214, 217, 284, 292], "transform_from_matrix": 292, "transformpolydatafilt": 284, "translat": [64, 118, 211, 292], "tree": 149, "tree2d": [152, 155, 158, 161], "treeui": 251, "triangle_ord": 294, "trianglefilt": 284, "triangularpr": 273, "try": [197, 245], "tube": 27, "tubefilt": 284, "tune": 31, "tutori": [89, 124, 129, 130, 213, 224, 247, 250, 256, 259], "type": 314, "u": 92, "ui": [49, 52, 53, 119, 124, 143, 146, 149, 152, 155, 158, 167, 182, 183, 293], "uncertainti": [241, 244, 253, 259, 269], "uncertainty_con": 273, "understand": 206, "unit": 195, "unless": 133, "unsignedchararrai": 284, "unstructuredgrid": 284, "unsubmit": 134, "up": [66, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 123, 124, 125, 126, 127, 128, 129, 130, 131, 133, 136, 139, 140, 141, 143, 144, 145, 146, 147, 149, 150, 151, 152, 153, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 167, 168, 169, 170, 174, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 232, 233, 235, 236, 238, 239, 241, 242, 244, 245, 247, 248, 249, 250, 251, 253, 254, 256, 257, 259, 260, 262, 263, 265, 266, 270], "updat": [129, 130, 211, 216], "update_actor": 294, "update_polydata_norm": 294, "update_progressbar": 278, "update_surface_actor_color": 294, "us": [20, 28, 31, 46, 49, 50, 59, 74, 77, 88, 89, 102, 148, 154, 201], "user": [41, 54, 86, 89], "util": 294, "v": [28, 74], "v0": [298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312], "valu": [14, 27], "vari": 76, "vector_text": 273, "vectortext": 284, "versatil": 255, "version": [36, 205], "verticallayout": 283, "vertices_from_actor": 294, "via": [96, 177, 228], "video": 38, "visual": [6, 7, 18, 24, 27, 28, 35, 36, 39, 75, 142, 148, 244, 253, 269], "visualis": 30, "volum": [14, 27, 284], "vtk_matrix_to_numpi": 294, "vtk_version": 284, "w": 152, "wa": [237, 240, 243, 246, 249, 252], "wall": [80, 93, 116], "watch": 240, "wave": 29, "web_serv": 291, "web_server_raw_arrai": 291, "webrtc": [87, 88, 148, 151], "week": [107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 123, 124, 125, 126, 127, 128, 129, 130, 131, 133, 136, 139, 140, 141, 143, 144, 145, 146, 147, 149, 150, 151, 152, 153, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 167, 168, 169, 170, 174, 175, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 268, 270], "weekli": [107, 139, 140, 145, 151, 157, 160, 225, 227, 267, 269, 271], "welcom": [107, 108, 140, 141], "what": [64, 67, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 123, 124, 125, 126, 127, 128, 129, 130, 131, 133, 136, 139, 140, 141, 143, 144, 145, 146, 147, 149, 150, 151, 152, 153, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 167, 168, 169, 170, 174, 175, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 232, 233, 234, 235, 236, 238, 239, 241, 242, 244, 245, 247, 248, 249, 250, 251, 253, 254, 256, 257, 259, 260, 262, 263, 265, 266, 270], "where": [237, 240, 243, 246, 249], "why": 154, "widget": [88, 291], "window": 295, "windowtoimagefilt": 284, "work": [134, 135, 142, 146, 155, 161, 171, 172, 191, 197, 200, 208, 221, 225, 226, 227, 233, 241, 256, 267, 269, 271], "world": 38, "worldpointpick": 284, "wrap": [66, 268], "wrap_overflow": 293, "wreck": [83, 93, 130], "write": 314, "write_accessor": 281, "write_buff": 281, "write_bufferview": 281, "write_camera": 281, "write_materi": 281, "write_mesh": 281, "write_nod": 281, "write_scen": 281, "xlayout": 283, "xmlpolydataread": 284, "xmlpolydatawrit": 284, "xyz2lab": 276, "xyz2rgb": 276, "xyz_color_interpol": 275, "xyz_from_rgb": 276, "ylayout": 283, "you": [62, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 123, 124, 125, 126, 127, 128, 129, 130, 131, 133, 136, 141, 144, 145, 147, 150, 151, 153, 156, 159, 162, 165, 168, 170, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 233, 236, 239, 245, 248, 251, 254, 257, 260, 263, 266], "your": [14, 27, 240], "zlayout": 283}}) \ No newline at end of file +Search.setIndex({"alltitles": {"A Little About Myself": [[178, "a-little-about-myself"]], "A Stadia-like system for data visualization": [[142, "a-stadia-like-system-for-data-visualization"]], "A more complex scene scene": [[59, "a-more-complex-scene-scene"]], "A python-core issue": [[145, "a-python-core-issue"]], "API Reference": [[296, "api-reference"]], "About": [[97, "about"]], "About Myself": [[179, "about-myself"]], "Abstract": [[173, "abstract"], [267, "abstract"], [269, "abstract"]], "Abstract class and SOLID": [[148, "abstract-class-and-solid"]], "Actor": [[284, "actor"]], "Actor2D": [[284, "actor2d"]], "Add depth cues to streamline rendering": [[27, "add-depth-cues-to-streamline-rendering"]], "Adding objects to the scene": [[93, "adding-objects-to-the-scene"]], "Advanced interactive visualization": [[24, "advanced-interactive-visualization"]], "AlgorithmOutput": [[284, "algorithmoutput"]], "Animated 2D functions": [[25, "animated-2d-functions"]], "Animating the camera": [[60, "animating-the-camera"]], "Animation": [[57, "animation"], [89, "animation"], [275, "id1"]], "Animations in FURY": [[64, "animations-in-fury"]], "Application of Force/Torque": [[93, "application-of-force-torque"]], "Architecture": [[97, "architecture"]], "ArgsDeprecationWarning": [[280, "argsdeprecationwarning"]], "Arm Robot Animation": [[65, "arm-robot-animation"]], "ArrayCircularQueue": [[291, "arraycircularqueue"]], "ArrowSource": [[284, "arrowsource"]], "Assembly": [[284, "assembly"]], "BMPReader": [[284, "bmpreader"]], "BMPWriter": [[284, "bmpwriter"]], "Ball Collision Simulation": [[79, "ball-collision-simulation"], [93, "ball-collision-simulation"]], "Ball Collision Simulation:": [[116, "ball-collision-simulation"]], "Bezier Interpolator": [[59, "bezier-interpolator"]], "Blog": [[91, "blog"]], "Brain Fiber ODF Visualisation": [[30, "brain-fiber-odf-visualisation"]], "Brick Wall Simulation": [[80, "brick-wall-simulation"], [93, "brick-wall-simulation"]], "Brick Wall Simulation(Single Actor)": [[93, "brick-wall-simulation-single-actor"]], "Brick Wall Simulation:": [[116, "brick-wall-simulation"]], "Brownian motion": [[26, "brownian-motion"]], "Bug reports and support": [[97, "bug-reports-and-support"]], "Building the documentation": [[96, "building-the-documentation"]], "ButterflySubdivisionFilter": [[284, "butterflysubdivisionfilter"]], "Button2D": [[293, "button2d"]], "Buttons & Text": [[43, "buttons-text"]], "Callbacks": [[47, "callbacks"]], "Camera": [[284, "camera"]], "CameraAnimation": [[275, "cameraanimation"]], "Card": [[44, "card"], [45, "card"]], "Card2D": [[293, "card2d"]], "CellArray": [[284, "cellarray"]], "CellPicker": [[284, "cellpicker"]], "Chain Simulation": [[81, "chain-simulation"], [93, "chain-simulation"]], "Chain Simulation, Scrollbar Refactor, Tutorial Update.": [[129, "chain-simulation-scrollbar-refactor-tutorial-update"]], "Changing Object Dynamics": [[93, "changing-object-dynamics"]], "CheckBoxes For Cylinder and Sphere for Tab Index 1": [[53, "checkboxes-for-cylinder-and-sphere-for-tab-index-1"]], "Checkbox": [[293, "checkbox"]], "Checklist before Releasing": [[314, "checklist-before-releasing"]], "CleanPolyData": [[284, "cleanpolydata"]], "Code Refactoring": [[148, "code-refactoring"]], "Collisions of particles in a box": [[21, "collisions-of-particles-in-a-box"]], "Color Combobox for Fury for Tab Index 2": [[53, "color-combobox-for-fury-for-tab-index-2"]], "Combine depth cues with fake tubes": [[27, "combine-depth-cues-with-fake-tubes"]], "ComboBox": [[47, "combobox"], [47, "id1"]], "ComboBox2D": [[293, "combobox2d"]], "ComboBox2D Progress!!": [[112, "combobox2d-progress"]], "ComboBox2D, TextBlock2D, Clipping Overflow.": [[121, "combobox2d-textblock2d-clipping-overflow"]], "Command": [[284, "command"]], "Community": [[92, "community"]], "Computation times": [[1, "computation-times"], [23, "computation-times"], [42, "computation-times"], [58, "computation-times"], [70, "computation-times"], [78, "computation-times"], [85, "computation-times"], [90, "computation-times"], [313, "computation-times"]], "ConeSource": [[284, "conesource"]], "Connection Mode": [[93, "connection-mode"]], "Container": [[273, "container"]], "ContourFilter": [[284, "contourfilter"]], "Contribute to FURY via Google Summer of Code 2022": [[177, "contribute-to-fury-via-google-summer-of-code-2022"]], "Contribute to FURY via Google Summer of Code 2023": [[228, "contribute-to-fury-via-google-summer-of-code-2023"]], "Contributing": [[314, "contributing"]], "Contributors": [[92, "contributors"]], "Create a mosaic": [[14, "create-a-mosaic"]], "Creating Objects": [[93, "creating-objects"]], "Creating a Timeline": [[67, "creating-a-timeline"]], "Creating and animating 50 Spheres": [[60, "creating-and-animating-50-spheres"]], "Creating the main Timeline and adding static actors to it": [[60, "creating-the-main-timeline-and-adding-static-actors-to-it"]], "Creating \u201cFURY\u201d text": [[60, "creating-fury-text"]], "Creation of Show Manager": [[93, "creation-of-show-manager"]], "Creation of Timer Callback": [[93, "creation-of-timer-callback"]], "Credits": [[97, "credits"]], "Cube & Slider Control": [[56, "cube-slider-control"]], "Cube and sliders": [[54, "cube-and-sliders"], [56, "cube-and-sliders"]], "Cubic Bezier curve parameters": [[59, "cubic-bezier-curve-parameters"]], "Cubic spline keyframes data same as the one you get from glTF file.": [[62, "cubic-spline-keyframes-data-same-as-the-one-you-get-from-gltf-file"]], "Cylinder using SDF": [[74, "cylinder-using-sdf"]], "Cylinder using polygons": [[74, "cylinder-using-polygons"]], "CylinderSource": [[284, "cylindersource"]], "DATA_DIR": [[278, "data-dir"]], "DTI uncertainty visualization": [[269, "dti-uncertainty-visualization"]], "DataObject": [[284, "dataobject"], [284, "id1"]], "DataSetAttributes": [[284, "datasetattributes"]], "DataSetMapper": [[284, "datasetmapper"]], "Demos": [[22, "demos"], [89, "demos"]], "Dependencies": [[96, "dependencies"]], "Details": [[302, "details"], [303, "details"], [304, "details"], [305, "details"], [306, "details"], [307, "details"], [308, "details"], [309, "details"], [310, "details"], [311, "details"], [312, "details"]], "Developing a 3D game": [[178, "developing-a-3d-game"]], "Did I get stuck anywhere?": [[139, "did-i-get-stuck-anywhere"], [140, "did-i-get-stuck-anywhere"], [143, "did-i-get-stuck-anywhere"], [145, "did-i-get-stuck-anywhere"], [146, "did-i-get-stuck-anywhere"], [149, "did-i-get-stuck-anywhere"], [152, "did-i-get-stuck-anywhere"], [155, "did-i-get-stuck-anywhere"], [157, "did-i-get-stuck-anywhere"], [158, "did-i-get-stuck-anywhere"], [160, "did-i-get-stuck-anywhere"], [161, "did-i-get-stuck-anywhere"], [163, "did-i-get-stuck-anywhere"], [164, "did-i-get-stuck-anywhere"], [167, "did-i-get-stuck-anywhere"], [169, "did-i-get-stuck-anywhere"], [174, "did-i-get-stuck-anywhere"], [175, "did-i-get-stuck-anywhere"], [232, "did-i-get-stuck-anywhere"], [235, "did-i-get-stuck-anywhere"], [238, "did-i-get-stuck-anywhere"], [241, "did-i-get-stuck-anywhere"], [242, "did-i-get-stuck-anywhere"], [244, "did-i-get-stuck-anywhere"], [247, "did-i-get-stuck-anywhere"], [250, "did-i-get-stuck-anywhere"], [253, "did-i-get-stuck-anywhere"], [256, "did-i-get-stuck-anywhere"], [259, "did-i-get-stuck-anywhere"], [262, "did-i-get-stuck-anywhere"], [265, "did-i-get-stuck-anywhere"], [270, "did-i-get-stuck-anywhere"]], "Did you get stuck anywhere?": [[109, "did-you-get-stuck-anywhere"], [110, "did-you-get-stuck-anywhere"], [111, "did-you-get-stuck-anywhere"], [112, "did-you-get-stuck-anywhere"], [113, "did-you-get-stuck-anywhere"], [114, "did-you-get-stuck-anywhere"], [115, "did-you-get-stuck-anywhere"], [116, "did-you-get-stuck-anywhere"], [117, "did-you-get-stuck-anywhere"], [118, "did-you-get-stuck-anywhere"], [119, "did-you-get-stuck-anywhere"], [120, "did-you-get-stuck-anywhere"], [121, "did-you-get-stuck-anywhere"], [123, "did-you-get-stuck-anywhere"], [124, "did-you-get-stuck-anywhere"], [125, "did-you-get-stuck-anywhere"], [126, "did-you-get-stuck-anywhere"], [127, "did-you-get-stuck-anywhere"], [128, "did-you-get-stuck-anywhere"], [129, "did-you-get-stuck-anywhere"], [130, "did-you-get-stuck-anywhere"], [131, "did-you-get-stuck-anywhere"], [133, "did-you-get-stuck-anywhere"], [136, "did-you-get-stuck-anywhere"], [144, "did-you-get-stuck-anywhere"], [147, "did-you-get-stuck-anywhere"], [150, "did-you-get-stuck-anywhere"], [151, "did-you-get-stuck-anywhere"], [153, "did-you-get-stuck-anywhere"], [156, "did-you-get-stuck-anywhere"], [159, "did-you-get-stuck-anywhere"], [162, "did-you-get-stuck-anywhere"], [165, "did-you-get-stuck-anywhere"], [168, "did-you-get-stuck-anywhere"], [170, "did-you-get-stuck-anywhere"], [181, "did-you-get-stuck-anywhere"], [182, "did-you-get-stuck-anywhere"], [183, "did-you-get-stuck-anywhere"], [184, "did-you-get-stuck-anywhere"], [185, "did-you-get-stuck-anywhere"], [186, "did-you-get-stuck-anywhere"], [187, "did-you-get-stuck-anywhere"], [188, "did-you-get-stuck-anywhere"], [189, "did-you-get-stuck-anywhere"], [190, "did-you-get-stuck-anywhere"], [191, "did-you-get-stuck-anywhere"], [192, "did-you-get-stuck-anywhere"], [193, "did-you-get-stuck-anywhere"], [194, "did-you-get-stuck-anywhere"], [195, "did-you-get-stuck-anywhere"], [196, "did-you-get-stuck-anywhere"], [197, "did-you-get-stuck-anywhere"], [198, "did-you-get-stuck-anywhere"], [199, "did-you-get-stuck-anywhere"], [200, "did-you-get-stuck-anywhere"], [201, "did-you-get-stuck-anywhere"], [202, "did-you-get-stuck-anywhere"], [203, "did-you-get-stuck-anywhere"], [204, "did-you-get-stuck-anywhere"], [205, "did-you-get-stuck-anywhere"], [206, "did-you-get-stuck-anywhere"], [207, "did-you-get-stuck-anywhere"], [208, "did-you-get-stuck-anywhere"], [209, "did-you-get-stuck-anywhere"], [210, "did-you-get-stuck-anywhere"], [211, "did-you-get-stuck-anywhere"], [212, "did-you-get-stuck-anywhere"], [213, "did-you-get-stuck-anywhere"], [214, "did-you-get-stuck-anywhere"], [215, "did-you-get-stuck-anywhere"], [216, "did-you-get-stuck-anywhere"], [217, "did-you-get-stuck-anywhere"], [218, "did-you-get-stuck-anywhere"], [219, "did-you-get-stuck-anywhere"], [220, "did-you-get-stuck-anywhere"], [221, "did-you-get-stuck-anywhere"], [222, "did-you-get-stuck-anywhere"], [223, "did-you-get-stuck-anywhere"], [224, "did-you-get-stuck-anywhere"], [233, "did-you-get-stuck-anywhere"], [236, "did-you-get-stuck-anywhere"], [239, "did-you-get-stuck-anywhere"], [245, "did-you-get-stuck-anywhere"], [248, "did-you-get-stuck-anywhere"], [251, "did-you-get-stuck-anywhere"], [254, "did-you-get-stuck-anywhere"], [257, "did-you-get-stuck-anywhere"], [260, "did-you-get-stuck-anywhere"], [263, "did-you-get-stuck-anywhere"], [266, "did-you-get-stuck-anywhere"]], "Disconnection": [[93, "disconnection"]], "Disk2D": [[293, "disk2d"]], "DiskSource": [[284, "disksource"]], "Display Tensor Ellipsoids for DTI using tensor_slicer vs ellipsoid actor": [[28, "display-tensor-ellipsoids-for-dti-using-tensor-slicer-vs-ellipsoid-actor"]], "Doing the release": [[314, "doing-the-release"]], "Domino Physics Simulation": [[82, "domino-physics-simulation"]], "Domino Simulation": [[93, "domino-simulation"]], "DoubleArray": [[284, "doublearray"]], "DrawPanel": [[48, "drawpanel"], [293, "drawpanel"]], "DrawShape": [[293, "drawshape"]], "Earth Coordinate Conversion": [[5, "earth-coordinate-conversion"]], "Eighth coding week!": [[165, "eighth-coding-week"]], "Electromagnetic Wave Propagation Animation": [[29, "electromagnetic-wave-propagation-animation"]], "Ellipsoid actor implemented with SDF": [[269, "ellipsoid-actor-implemented-with-sdf"]], "Enabling collision": [[93, "enabling-collision"]], "Examples": [[93, "examples"]], "ExpiredDeprecationError": [[280, "expireddeprecationerror"]], "Exporting Scene as a glTF": [[227, "exporting-scene-as-a-gltf"]], "Exporting scene as a glTF file": [[8, "exporting-scene-as-a-gltf-file"]], "FURY": [[163, "fury"], [174, "fury"], [175, "fury"]], "FURY - pyBullet Integration Guide": [[93, "fury-pybullet-integration-guide"]], "FURY 0.1.0 Released": [[98, "fury-0-1-0-released"]], "FURY 0.1.3 Released": [[99, "fury-0-1-3-released"]], "FURY 0.1.4 Released": [[100, "fury-0-1-4-released"]], "FURY 0.2.0 Released": [[101, "fury-0-2-0-released"]], "FURY 0.3.0 Released": [[103, "fury-0-3-0-released"]], "FURY 0.4.0 Released": [[104, "fury-0-4-0-released"]], "FURY 0.5.1 Released": [[106, "fury-0-5-1-released"]], "FURY 0.6.0 Released": [[122, "fury-0-6-0-released"]], "FURY 0.6.1 Released": [[132, "fury-0-6-1-released"]], "FURY 0.7.0 Released": [[138, "fury-0-7-0-released"], [166, "fury-0-7-0-released"]], "FURY 0.8.0 Released": [[176, "fury-0-8-0-released"]], "FURY 0.9.0 Released": [[229, "fury-0-9-0-released"]], "FURY sphere Actor": [[16, "fury-sphere-actor"]], "FURY/Helios": [[163, "fury-helios"], [174, "fury-helios"], [175, "fury-helios"]], "Features": [[97, "features"]], "Fetcher for importing glTF files from Khronos-glTF-Samples": [[227, "fetcher-for-importing-gltf-files-from-khronos-gltf-samples"]], "Fifth week of coding!": [[156, "fifth-week-of-coding"]], "Figure and Color Control using Check boxes and Radio Buttons": [[46, "figure-and-color-control-using-check-boxes-and-radio-buttons"]], "FileMenu2D": [[293, "filemenu2d"]], "Fine-tuning the OpenGL state using shader callbacks": [[31, "fine-tuning-the-opengl-state-using-shader-callbacks"]], "First week of coding!": [[144, "first-week-of-coding"]], "First week of coding!!": [[109, "first-week-of-coding"], [110, "first-week-of-coding"]], "Fix Bugs": [[314, "fix-bugs"]], "FloatArray": [[284, "floatarray"]], "Folder Structure": [[96, "folder-structure"]], "Follower": [[284, "follower"]], "Fourth week of coding!": [[153, "fourth-week-of-coding"]], "Fractals": [[32, "fractals"]], "Fury Arrow Actor": [[2, "fury-arrow-actor"]], "Fury Cone Actor": [[3, "fury-cone-actor"]], "Fury Markers": [[34, "fury-markers"]], "FuryStreamClient": [[291, "furystreamclient"]], "FuryStreamInteraction": [[291, "furystreaminteraction"]], "GSoC - 21": [[180, "gsoc-21"]], "GSoC - 22": [[180, "gsoc-22"]], "GSoC 2023: Community Bonding Period": [[231, "gsoc-2023-community-bonding-period"], [232, "gsoc-2023-community-bonding-period"]], "GSoC Weekly Blogs": [[225, "gsoc-weekly-blogs"], [267, "gsoc-weekly-blogs"], [269, "gsoc-weekly-blogs"], [271, "gsoc-weekly-blogs"]], "GSoC weekly blogs": [[227, "gsoc-weekly-blogs"]], "GenericCircularQueue": [[291, "genericcircularqueue"]], "GenericImageBufferManager": [[291, "genericimagebuffermanager"]], "GenericMultiDimensionalBuffer": [[291, "genericmultidimensionalbuffer"]], "Get Started!": [[314, "get-started"]], "Getting Started": [[94, "getting-started"]], "Glyph3D": [[284, "glyph3d"]], "Google Summer of Code": [[105, "google-summer-of-code"], [137, "google-summer-of-code"]], "Google Summer of Code 2020 Final Work Product": [[134, "google-summer-of-code-2020-final-work-product"]], "Google Summer of Code 2021 - Final Report - Bruno Messias": [[173, "google-summer-of-code-2021-final-report-bruno-messias"]], "Google Summer of Code Final Work Product": [[135, "google-summer-of-code-final-work-product"], [171, "google-summer-of-code-final-work-product"], [172, "google-summer-of-code-final-work-product"], [225, "google-summer-of-code-final-work-product"], [226, "google-summer-of-code-final-work-product"], [227, "google-summer-of-code-final-work-product"], [267, "google-summer-of-code-final-work-product"], [269, "google-summer-of-code-final-work-product"], [271, "google-summer-of-code-final-work-product"]], "GridLayout": [[283, "gridlayout"]], "GridUI": [[293, "gridui"]], "HardwareSelector": [[284, "hardwareselector"]], "HorizontalLayout": [[283, "horizontallayout"]], "How does it works?": [[142, "how-does-it-works"]], "How have I implemented the code for A and B?": [[154, "how-have-i-implemented-the-code-for-a-and-b"]], "IPC using python": [[154, "ipc-using-python"]], "IdTypeArray": [[284, "idtypearray"]], "Image": [[54, "image"]], "ImageActor": [[284, "imageactor"]], "ImageContainer2D": [[293, "imagecontainer2d"]], "ImageData": [[284, "imagedata"]], "ImageFlip": [[284, "imageflip"]], "ImageMapToColors": [[284, "imagemaptocolors"]], "ImageReader2Factory": [[284, "imagereader2factory"]], "ImageReslice": [[284, "imagereslice"]], "Implement Features": [[314, "implement-features"]], "Implementing a custom interpolator": [[62, "implementing-a-custom-interpolator"]], "Improvements in SDF primitives.": [[123, "improvements-in-sdf-primitives"]], "Initiating the simulation": [[93, "initiating-the-simulation"]], "Installation": [[96, "installation"]], "Installation via Source": [[96, "installation-via-source"]], "Installation with Conda": [[96, "installation-with-conda"]], "Installation with PyPi": [[96, "installation-with-pypi"]], "Integrate Physics using pybullet": [[77, "integrate-physics-using-pybullet"], [89, "integrate-physics-using-pybullet"]], "Interactive PBR demo": [[37, "interactive-pbr-demo"]], "InteractorEventRecorder": [[284, "interactoreventrecorder"]], "InteractorStyle": [[284, "interactorstyle"]], "InteractorStyleImage": [[284, "interactorstyleimage"]], "InteractorStyleTrackballActor": [[284, "interactorstyletrackballactor"]], "InteractorStyleTrackballCamera": [[284, "interactorstyletrackballcamera"]], "InteractorStyleUser": [[284, "interactorstyleuser"]], "Interest in Game Development and Animation": [[180, "interest-in-game-development-and-animation"]], "IntervalTimer": [[291, "intervaltimer"]], "IntervalTimerThreading": [[291, "intervaltimerthreading"]], "Intro to Open-Source and GSoC": [[179, "intro-to-open-source-and-gsoc"]], "Intro to Opensource": [[180, "intro-to-opensource"]], "Introduction": [[134, "introduction"]], "Introductory": [[0, "introductory"], [89, "introductory"]], "JPEGReader": [[284, "jpegreader"]], "JPEGWriter": [[284, "jpegwriter"]], "Join Us!": [[92, "join-us"]], "Keyframe Color Interpolators": [[61, "keyframe-color-interpolators"]], "Keyframe animation": [[68, "keyframe-animation"]], "Keyframe animation introduction": [[64, "keyframe-animation-introduction"]], "Keyframe animation: Camera and opacity": [[60, "keyframe-animation-camera-and-opacity"]], "Keyframe hierarchical Animation": [[63, "keyframe-hierarchical-animation"]], "Keyframes Spline Interpolator": [[66, "keyframes-spline-interpolator"]], "LODActor": [[284, "lodactor"]], "Last Week\u2019s Effort": [[243, "last-week-s-effort"], [246, "last-week-s-effort"], [252, "last-week-s-effort"], [255, "last-week-s-effort"], [258, "last-week-s-effort"], [261, "last-week-s-effort"], [264, "last-week-s-effort"], [268, "last-week-s-effort"]], "Layout": [[283, "id1"]], "License": [[97, "license"], [315, "license"]], "LineDoubleSlider2D": [[293, "linedoubleslider2d"]], "LineSlider2D": [[293, "lineslider2d"]], "LinearExtrusionFilter": [[284, "linearextrusionfilter"]], "ListBox": [[55, "listbox"]], "ListBox2D": [[293, "listbox2d"]], "ListBoxItem2D": [[293, "listboxitem2d"]], "Loading Static glTF models": [[227, "loading-static-gltf-models"]], "LookupTable": [[284, "lookuptable"]], "LoopSubdivisionFilter": [[284, "loopsubdivisionfilter"]], "MNIObjectReader": [[284, "mniobjectreader"]], "MNIObjectWriter": [[284, "mniobjectwriter"]], "Make a Cylinder using polygons vs SDF": [[74, "make-a-cylinder-using-polygons-vs-sdf"]], "Making a custom interpolator": [[62, "making-a-custom-interpolator"]], "Matrix3x3": [[284, "matrix3x3"]], "Matrix4x4": [[284, "matrix4x4"]], "May the Force be with you!!": [[116, "may-the-force-be-with-you"]], "Merging SDF primitives.": [[125, "merging-sdf-primitives"]], "Mission Statement": [[97, "mission-statement"]], "Modified Objectives": [[135, "modified-objectives"], [226, "modified-objectives"]], "Module: actors.odf_slicer": [[274, "module-fury.actors.odf_slicer"]], "Module: actors.peak": [[274, "module-fury.actors.peak"]], "Module: actors.tensor": [[274, "module-fury.actors.tensor"]], "Module: animation.animation": [[275, "module-fury.animation.animation"]], "Module: animation.helpers": [[275, "module-fury.animation.helpers"]], "Module: animation.interpolator": [[275, "module-fury.animation.interpolator"]], "Module: animation.timeline": [[275, "module-fury.animation.timeline"]], "Module: data.fetcher": [[278, "module-fury.data.fetcher"]], "Module: shaders.base": [[290, "module-fury.shaders.base"]], "Module: stream.client": [[291, "module-fury.stream.client"]], "Module: stream.constants": [[291, "module-fury.stream.constants"]], "Module: stream.server": [[291, "module-fury.stream.server"]], "Module: stream.server.async_app": [[291, "module-fury.stream.server.async_app"]], "Module: stream.server.main": [[291, "module-fury.stream.server.main"]], "Module: stream.tools": [[291, "module-fury.stream.tools"]], "Module: stream.widget": [[291, "module-fury.stream.widget"]], "Module: ui.containers": [[293, "module-fury.ui.containers"]], "Module: ui.core": [[293, "module-fury.ui.core"]], "Module: ui.elements": [[293, "module-fury.ui.elements"]], "Module: ui.helpers": [[293, "module-fury.ui.helpers"]], "Molecule": [[284, "molecule"], [286, "molecule"]], "More Shaders!!": [[126, "more-shaders"], [128, "more-shaders"]], "Morphing Animation in a glTF": [[9, "morphing-animation-in-a-gltf"]], "Morphing in glTF": [[227, "morphing-in-gltf"]], "Most relevant bugs": [[148, "most-relevant-bugs"]], "Motion of a charged particle in a combined magnetic and electric field": [[33, "motion-of-a-charged-particle-in-a-combined-magnetic-and-electric-field"]], "Multiple SDF primitives.": [[120, "multiple-sdf-primitives"]], "Multiprocessing inside of different Operating Systems": [[142, "multiprocessing-inside-of-different-operating-systems"]], "Multithreading Example": [[10, "multithreading-example"]], "My Current Problems": [[234, "my-current-problems"]], "My Journey to GSoC 2022": [[179, "my-journey-to-gsoc-2022"]], "My first coding experience": [[178, "my-first-coding-experience"]], "My journey till getting accepted into GSoC22": [[178, "my-journey-till-getting-accepted-into-gsoc22"]], "My journey to GSoC22": [[178, "my-journey-to-gsoc22"]], "Necessary Imports": [[93, "necessary-imports"]], "Network Layout (Helios-FURY)": [[148, "network-layout-helios-fury"]], "Network layout algorithms using IPC": [[154, "network-layout-algorithms-using-ipc"]], "Next steps": [[154, "next-steps"]], "Ninth coding week!": [[168, "ninth-coding-week"]], "Notes": [[86, "notes"], [88, "notes"]], "OBJReader": [[284, "objreader"]], "ODF actor implemented with SDF": [[269, "odf-actor-implemented-with-sdf"]], "Objectives Completed": [[134, "objectives-completed"], [135, "objectives-completed"], [171, "objectives-completed"], [172, "objectives-completed"], [173, "objectives-completed"], [225, "objectives-completed"], [226, "objectives-completed"], [227, "objectives-completed"], [267, "objectives-completed"], [269, "objectives-completed"], [271, "objectives-completed"]], "Objectives in Progress": [[135, "objectives-in-progress"], [171, "objectives-in-progress"], [172, "objectives-in-progress"], [225, "objectives-in-progress"], [226, "objectives-in-progress"], [227, "objectives-in-progress"], [267, "objectives-in-progress"], [269, "objectives-in-progress"], [271, "objectives-in-progress"]], "OdfSlicerActor": [[274, "odfsliceractor"]], "Open Dialog:": [[133, "open-dialog"]], "OpenGLMoleculeMapper": [[284, "openglmoleculemapper"]], "OpenGLRenderer": [[284, "openglrenderer"]], "Option": [[293, "option"]], "Orientation, Sizing, Tab UI.": [[119, "orientation-sizing-tab-ui"]], "Other Objectives": [[134, "other-objectives"], [135, "other-objectives"], [171, "other-objectives"], [172, "other-objectives"], [225, "other-objectives"], [226, "other-objectives"], [227, "other-objectives"], [267, "other-objectives"], [271, "other-objectives"]], "Other Pull Requests": [[227, "other-pull-requests"]], "Other stuff that needs doing for the release": [[314, "other-stuff-that-needs-doing-for-the-release"]], "Outline Picker": [[131, "outline-picker"]], "OutlineFilter": [[284, "outlinefilter"]], "Overview": [[97, "overview"]], "PBR and emission materials in glTF": [[227, "pbr-and-emission-materials-in-gltf"]], "PLYReader": [[284, "plyreader"]], "PLYWriter": [[284, "plywriter"]], "PNGReader": [[284, "pngreader"]], "PNGWriter": [[284, "pngwriter"]], "PTable": [[286, "ptable"]], "Panel with buttons and text": [[54, "panel-with-buttons-and-text"]], "Panel2D": [[293, "panel2d"]], "Part of the Journey is the end unless its Open Source!": [[133, "part-of-the-journey-is-the-end-unless-its-open-source"]], "PeakActor": [[274, "peakactor"]], "PeriodicTable": [[284, "periodictable"]], "Physically-Based Rendering (PBR) on spheres": [[72, "physically-based-rendering-pbr-on-spheres"]], "PickingManager": [[287, "pickingmanager"]], "Play a video in the 3D world": [[38, "play-a-video-in-the-3d-world"]], "PlaybackPanel": [[293, "playbackpanel"]], "PointPicker": [[284, "pointpicker"]], "Points": [[284, "points"]], "PolyData": [[284, "polydata"]], "PolyDataMapper": [[284, "polydatamapper"]], "PolyDataMapper2D": [[284, "polydatamapper2d"]], "PolyDataNormals": [[284, "polydatanormals"]], "PolyDataReader": [[284, "polydatareader"]], "PolyDataWriter": [[284, "polydatawriter"]], "PolyVertex": [[284, "polyvertex"]], "Polygon": [[284, "polygon"]], "Populating our Documentation": [[96, "populating-our-documentation"]], "Position interpolation using cubic Bezier curve": [[59, "position-interpolation-using-cubic-bezier-curve"]], "Pre-GSoC Journey": [[180, "pre-gsoc-journey"]], "Principled BRDF shader on spheres": [[73, "principled-brdf-shader-on-spheres"]], "PropPicker": [[284, "proppicker"]], "Property2D": [[284, "property2d"]], "Proposed Objectives": [[134, "proposed-objectives"], [135, "proposed-objectives"], [171, "proposed-objectives"], [172, "proposed-objectives"], [173, "proposed-objectives"], [225, "proposed-objectives"], [226, "proposed-objectives"], [227, "proposed-objectives"], [267, "proposed-objectives"], [269, "proposed-objectives"], [271, "proposed-objectives"]], "ProteinRibbonFilter": [[284, "proteinribbonfilter"]], "Publishing Releases": [[314, "publishing-releases"]], "Pull Request Guidelines": [[314, "pull-request-guidelines"]], "Quick Overview": [[298, "quick-overview"], [299, "quick-overview"], [300, "quick-overview"], [301, "quick-overview"], [302, "quick-overview"], [303, "quick-overview"], [304, "quick-overview"], [305, "quick-overview"], [306, "quick-overview"], [307, "quick-overview"], [308, "quick-overview"], [309, "quick-overview"], [310, "quick-overview"], [311, "quick-overview"], [312, "quick-overview"]], "RTCServer": [[291, "rtcserver"]], "RadioButton": [[293, "radiobutton"]], "Range Slider": [[54, "range-slider"]], "RangeSlider": [[293, "rangeslider"]], "RawArrayImageBufferManager": [[291, "rawarrayimagebuffermanager"]], "RawArrayMultiDimensionalBuffer": [[291, "rawarraymultidimensionalbuffer"]], "Raymarching continued": [[113, "raymarching-continued"]], "Raymarching!!": [[111, "raymarching"]], "Rectangle2D": [[293, "rectangle2d"]], "References": [[71, "references"], [74, "references"], [173, "references"], [269, "references"]], "Refs:": [[148, "refs"]], "RegularPolygonSource": [[284, "regularpolygonsource"]], "Release History": [[297, "release-history"]], "Release notes v0.1.0 (2018-09-21)": [[298, "release-notes-v0-1-0-2018-09-21"]], "Release notes v0.1.1 (2018-10-29)": [[299, "release-notes-v0-1-1-2018-10-29"]], "Release notes v0.1.2 and v0.1.3 (2018-10-31)": [[300, "release-notes-v0-1-2-and-v0-1-3-2018-10-31"]], "Release notes v0.1.4 (2018-11-26)": [[301, "release-notes-v0-1-4-2018-11-26"]], "Release notes v0.10.0 (2024/02/28)": [[302, "release-notes-v0-10-0-2024-02-28"]], "Release notes v0.2.0 (2019-03-08)": [[303, "release-notes-v0-2-0-2019-03-08"]], "Release notes v0.3.0 (2019-08-02)": [[304, "release-notes-v0-3-0-2019-08-02"]], "Release notes v0.4.0 (2019-10-29)": [[305, "release-notes-v0-4-0-2019-10-29"]], "Release notes v0.5.1 (2020-04-01)": [[306, "release-notes-v0-5-1-2020-04-01"]], "Release notes v0.6.0 (2020-07-20)": [[307, "release-notes-v0-6-0-2020-07-20"]], "Release notes v0.6.1 (2020-08-20)": [[308, "release-notes-v0-6-1-2020-08-20"]], "Release notes v0.7.0 (2021/03/13)": [[309, "release-notes-v0-7-0-2021-03-13"]], "Release notes v0.7.1 (2021/08/03)": [[310, "release-notes-v0-7-1-2021-08-03"]], "Release notes v0.8.0 (2022/01/31)": [[311, "release-notes-v0-8-0-2022-01-31"]], "Release notes v0.9.0 (2023/04/15)": [[312, "release-notes-v0-9-0-2023-04-15"]], "Render Pybullet Objects": [[93, "render-pybullet-objects"]], "Render slices from FA with your colormap": [[14, "render-slices-from-fa-with-your-colormap"]], "Render slices from T1 with a specific value range": [[14, "render-slices-from-t1-with-a-specific-value-range"]], "Render streamlines as fake tubes": [[27, "render-streamlines-as-fake-tubes"]], "Render streamlines as tubes": [[27, "render-streamlines-as-tubes"]], "RenderLargeImage": [[284, "renderlargeimage"]], "RenderWindow": [[284, "renderwindow"]], "RenderWindowInteractor": [[284, "renderwindowinteractor"]], "Renderer": [[284, "renderer"]], "Rendering Joints": [[93, "rendering-joints"]], "Rendering multiple objects by a single actor": [[93, "rendering-multiple-objects-by-a-single-actor"]], "Rendering objects in FURY": [[93, "rendering-objects-in-fury"]], "Report Bugs": [[314, "report-bugs"]], "Reposition:": [[118, "reposition"]], "Results": [[154, "results"]], "RingSlider2D": [[293, "ringslider2d"]], "Rotation:": [[118, "rotation"]], "Running the Tests": [[96, "running-the-tests"]], "Running the Tests Offscreen": [[96, "running-the-tests-offscreen"]], "SDF Impostors on Billboards": [[71, "sdf-impostors-on-billboards"]], "SDF sphere rendering": [[71, "sdf-sphere-rendering"]], "SHADERS_DIR": [[290, "shaders-dir"]], "SKIP_RE": [[279, "skip-re"]], "SOLID, monkey patching a python issue and network visualization through WebRTC": [[148, "solid-monkey-patching-a-python-issue-and-network-visualization-through-webrtc"]], "STLReader": [[284, "stlreader"]], "STLWriter": [[284, "stlwriter"]], "Save Dialog:": [[133, "save-dialog"]], "ScalarBarActor": [[284, "scalarbaractor"]], "Scene": [[295, "scene"]], "Second week of coding!": [[147, "second-week-of-coding"]], "Select menu": [[54, "select-menu"]], "Selecting multiple objects": [[12, "selecting-multiple-objects"]], "SelectionManager": [[287, "selectionmanager"]], "Setting Cubic Bezier keyframes": [[59, "setting-cubic-bezier-keyframes"]], "Setting Gravity": [[93, "setting-gravity"]], "Setting Keyframes": [[67, "setting-keyframes"]], "Setting color keyframes": [[61, "setting-color-keyframes"]], "Setting position keyframes": [[62, "setting-position-keyframes"]], "Seventh week of coding!": [[162, "seventh-week-of-coding"]], "Shader": [[284, "shader"]], "Shader Showcase": [[136, "shader-showcase"]], "Shaders": [[69, "shaders"], [89, "shaders"]], "Shapes": [[54, "shapes"]], "SharedMemCircularQueue": [[291, "sharedmemcircularqueue"]], "SharedMemImageBufferManager": [[291, "sharedmemimagebuffermanager"]], "SharedMemMultiDimensionalBuffer": [[291, "sharedmemmultidimensionalbuffer"]], "Sharing data between process": [[142, "sharing-data-between-process"]], "Show Manager": [[46, "show-manager"], [47, "show-manager"], [48, "show-manager"], [50, "show-manager"], [54, "show-manager"], [56, "show-manager"]], "Show every bundle with a specific color": [[27, "show-every-bundle-with-a-specific-color"]], "Show every point of every streamline with a different color": [[27, "show-every-point-of-every-streamline-with-a-different-color"]], "Show every point with a value from a volume with default colormap": [[27, "show-every-point-with-a-value-from-a-volume-with-default-colormap"]], "Show every point with a value from a volume with your colormap": [[27, "show-every-point-with-a-value-from-a-volume-with-your-colormap"]], "Show every streamline of a bundle with a different color": [[27, "show-every-streamline-of-a-bundle-with-a-different-color"]], "Show every streamline with an orientation color": [[27, "show-every-streamline-with-an-orientation-color"]], "ShowManager": [[295, "showmanager"]], "Simple Actor Animations": [[227, "simple-actor-animations"]], "Simple Rigid Body Dynamics": [[93, "simple-rigid-body-dynamics"]], "Simple Shapes": [[51, "simple-shapes"]], "Simple picking": [[11, "simple-picking"]], "Simple volume slicing": [[14, "simple-volume-slicing"]], "SimpleBondPerceiver": [[284, "simplebondperceiver"]], "Single Actor, Physics, Scrollbars.": [[127, "single-actor-physics-scrollbars"]], "Sixth week of coding!": [[159, "sixth-week-of-coding"]], "Skeletal Animation in a glTF file": [[13, "skeletal-animation-in-a-gltf-file"]], "Skeletal Animations (Skining)": [[227, "skeletal-animations-skining"]], "Skinning for models with no indices": [[227, "skinning-for-models-with-no-indices"]], "Skybox": [[284, "skybox"]], "Slider Controls for a Cube for Tab Index 0": [[53, "slider-controls-for-a-cube-for-tab-index-0"]], "So how did it go?": [[255, "so-how-did-it-go"], [258, "so-how-did-it-go"], [261, "so-how-did-it-go"], [264, "so-how-did-it-go"], [268, "so-how-did-it-go"]], "So it begins\u2026": [[230, "so-it-begins"]], "Solar System Animation": [[15, "solar-system-animation"]], "Sphere Color Control using Radio Buttons": [[50, "sphere-color-control-using-radio-buttons"]], "Sphere Texture": [[19, "sphere-texture"]], "Sphere and Radio Buttons": [[50, "sphere-and-radio-buttons"]], "SphereSource": [[284, "spheresource"]], "Spherical harmonics": [[115, "spherical-harmonics"]], "Spherical harmonics, Continued.": [[117, "spherical-harmonics-continued"]], "Spiky Sphere": [[17, "spiky-sphere"]], "SpinBox": [[293, "spinbox"]], "SpinBox UI": [[52, "spinbox-ui"]], "SplineFilter": [[284, "splinefilter"]], "Statement of Need": [[97, "statement-of-need"]], "Streaming": [[84, "streaming"], [89, "streaming"]], "Streaming FURY with WebRTC/MJPEG": [[87, "streaming-fury-with-webrtc-mjpeg"]], "Streaming FURY with WebRTC/MJPEG using the Widget Object": [[88, "streaming-fury-with-webrtc-mjpeg-using-the-widget-object"]], "Streaming FURY with user interaction": [[86, "streaming-fury-with-user-interaction"]], "Streaming System": [[148, "streaming-system"]], "StringArray": [[284, "stringarray"]], "Submit Feedback": [[314, "submit-feedback"]], "Success on Brain Art Competition using FURY": [[102, "success-on-brain-art-competition-using-fury"]], "Summary of most important pull-requests:": [[154, "summary-of-most-important-pull-requests"]], "Syncing Bricks": [[80, "syncing-bricks"]], "Syncing Dominoes": [[82, "syncing-dominoes"]], "Syncing objects": [[93, "syncing-objects"]], "Syncing properties of actors": [[93, "syncing-properties-of-actors"]], "TIFFReader": [[284, "tiffreader"]], "TIFFWriter": [[284, "tiffwriter"]], "Tab UI": [[53, "tab-ui"]], "Tab UI, TabPanel2D, Tab UI Tutorial.": [[124, "tab-ui-tabpanel2d-tab-ui-tutorial"]], "TabPanel2D": [[293, "tabpanel2d"]], "TabUI": [[293, "tabui"]], "Tenth coding week!": [[170, "tenth-coding-week"]], "Tesseract (Hypercube)": [[40, "tesseract-hypercube"]], "Test the Installation": [[96, "test-the-installation"]], "Testing": [[148, "testing"]], "TextActor": [[284, "textactor"]], "TextActor3D": [[284, "textactor3d"]], "TextBlock2D": [[293, "textblock2d"]], "TextBlock2D Progress!!": [[114, "textblock2d-progress"]], "TextBox2D": [[293, "textbox2d"]], "Texture": [[284, "texture"]], "Texture Sphere Animation": [[4, "texture-sphere-animation"]], "TextureMapToPlane": [[284, "texturemaptoplane"]], "TexturedActor2D": [[284, "texturedactor2d"]], "TexturedSphereSource": [[284, "texturedspheresource"]], "The Beginning of Everything - Week 0": [[230, "the-beginning-of-everything-week-0"]], "The Beginning of Programming": [[180, "the-beginning-of-programming"]], "The Community Bonding Period": [[230, "the-community-bonding-period"]], "The Day": [[179, "the-day"]], "The FBO Saga - Week 1": [[234, "the-fbo-saga-week-1"]], "The Next Steps": [[268, "the-next-steps"]], "The Plan": [[60, "the-plan"]], "The Project\u2019s Goal": [[230, "the-project-s-goal"]], "The day I got accepted": [[178, "the-day-i-got-accepted"]], "The problem: network layout algorithm implementations with a blocking behavior": [[154, "the-problem-network-layout-algorithm-implementations-with-a-blocking-behavior"]], "Third week of coding!": [[150, "third-week-of-coding"]], "This Last Week\u2019s Effort": [[237, "this-last-week-s-effort"], [240, "this-last-week-s-effort"]], "This Past Week": [[234, "this-past-week"]], "This Week\u2019s Goal": [[230, "this-week-s-goal"]], "This Week\u2019s Goals": [[237, "this-week-s-goals"], [240, "this-week-s-goals"], [243, "this-week-s-goals"], [246, "this-week-s-goals"], [249, "this-week-s-goals"], [252, "this-week-s-goals"], [255, "this-week-s-goals"], [258, "this-week-s-goals"], [261, "this-week-s-goals"], [264, "this-week-s-goals"]], "Timeline": [[134, "timeline"], [135, "timeline"], [171, "timeline"], [172, "timeline"], [173, "timeline"], [225, "timeline"], [226, "timeline"], [227, "timeline"], [267, "timeline"], [269, "timeline"], [271, "timeline"], [275, "timeline"]], "Timeline and setting keyframes": [[67, "timeline-and-setting-keyframes"]], "Traditional sphere rendering": [[71, "traditional-sphere-rendering"]], "Transform": [[284, "transform"]], "TransformPolyDataFilter": [[284, "transformpolydatafilter"]], "Translating a sphere": [[64, "translating-a-sphere"]], "Translation, Reposition, Rotation.": [[118, "translation-reposition-rotation"]], "Translation:": [[118, "translation"]], "TriangleFilter": [[284, "trianglefilter"]], "TubeFilter": [[284, "tubefilter"]], "Tutorials": [[89, "tutorials"]], "Types of Contributions": [[314, "types-of-contributions"]], "UI": [[293, "id1"]], "UnsignedCharArray": [[284, "unsignedchararray"]], "UnstructuredGrid": [[284, "unstructuredgrid"]], "Unsubmitted Functionalities": [[134, "unsubmitted-functionalities"]], "User Interface Elements": [[41, "user-interface-elements"], [89, "user-interface-elements"]], "User Interfaces": [[54, "user-interfaces"]], "Using Layouts with different UI elements": [[49, "using-layouts-with-different-ui-elements"]], "Using a timer": [[20, "using-a-timer"]], "Using ellipsoid actor": [[28, "using-ellipsoid-actor"]], "Using namedtuples to grant immutability and to avoid silent bugs": [[148, "using-namedtuples-to-grant-immutability-and-to-avoid-silent-bugs"]], "Using tensor_slicer actor": [[28, "using-tensor-slicer-actor"]], "VTK_VERSION": [[284, "vtk-version"]], "Varying Color": [[76, "varying-color"]], "VectorText": [[284, "vectortext"]], "VerticalLayout": [[283, "verticallayout"]], "Visual quality comparison": [[28, "visual-quality-comparison"]], "Visualization of ROI Surface Rendered with Streamlines": [[39, "visualization-of-roi-surface-rendered-with-streamlines"]], "Visualize Interdisciplinary map of the journals network": [[35, "visualize-interdisciplinary-map-of-the-journals-network"]], "Visualize Networks (Animated version)": [[36, "visualize-networks-animated-version"]], "Visualize SDF Actor": [[75, "visualize-sdf-actor"]], "Visualize a larger amount of data": [[28, "visualize-a-larger-amount-of-data"]], "Visualize bundles and metrics on bundles": [[27, "visualize-bundles-and-metrics-on-bundles"]], "Visualize surfaces": [[18, "visualize-surfaces"]], "Visualizing a glTF file": [[6, "visualizing-a-gltf-file"], [7, "visualizing-a-gltf-file"]], "Volume": [[284, "volume"]], "Was it Hard?": [[252, "was-it-hard"]], "Week #09: Sphinx custom summary": [[163, "week-09-sphinx-custom-summary"]], "Week #10: SDF Fonts": [[174, "week-10-sdf-fonts"]], "Week #11: Finalizing open Pull Requests": [[169, "week-11-finalizing-open-pull-requests"]], "Week #11: Removing the flickering effect": [[175, "week-11-removing-the-flickering-effect"]], "Week #1: Welcome to my weekly Blogs!": [[140, "week-1-welcome-to-my-weekly-blogs"]], "Week #2: Feature additions in UI and IO modules": [[143, "week-2-feature-additions-in-ui-and-io-modules"]], "Week #3: Adapting GridLayout to work with UI": [[146, "week-3-adapting-gridlayout-to-work-with-ui"]], "Week #4: Adding Tree UI to the UI module": [[149, "week-4-adding-tree-ui-to-the-ui-module"]], "Week #5: Rebasing all PRs w.r.t the UI restructuring, Tree2D, Bug Fixes": [[152, "week-5-rebasing-all-prs-w-r-t-the-ui-restructuring-tree2d-bug-fixes"]], "Week #6: Bug fixes, Working on Tree2D UI": [[155, "week-6-bug-fixes-working-on-tree2d-ui"]], "Week #7: Finalizing the stalling PRs, finishing up Tree2D UI.": [[158, "week-7-finalizing-the-stalling-prs-finishing-up-tree2d-ui"]], "Week #8: Code Cleanup, Finishing up open PRs, Continuing work on Tree2D": [[161, "week-8-code-cleanup-finishing-up-open-prs-continuing-work-on-tree2d"]], "Week #9: More Layouts!": [[164, "week-9-more-layouts"]], "Week 0: Community Bounding Period": [[231, "week-0-community-bounding-period"], [232, "week-0-community-bounding-period"]], "Week 1 - A Basic glTF Importer": [[184, "week-1-a-basic-gltf-importer"]], "Week 1 - Laying the Foundation of DrawPanel UI": [[182, "week-1-laying-the-foundation-of-drawpanel-ui"]], "Week 10 - Multi-node skinning support": [[212, "week-10-multi-node-skinning-support"]], "Week 10 - Understanding Codes and Playing with Animation": [[206, "week-10-understanding-codes-and-playing-with-animation"]], "Week 10 : Start of SH implementation experiments": [[262, "week-10-start-of-sh-implementation-experiments"]], "Week 10: Its time for a Spin-Box!": [[260, "week-10-its-time-for-a-spin-box"]], "Week 10: Ready for Review!": [[261, "week-10-ready-for-review"]], "Week 10: Supporting hierarchical animating": [[210, "week-10-supporting-hierarchical-animating"]], "Week 11 - Creating a base for Freehand Drawing": [[209, "week-11-creating-a-base-for-freehand-drawing"]], "Week 11 - Multiple transformations support and adding tests": [[214, "week-11-multiple-transformations-support-and-adding-tests"]], "Week 11 : Adjusting ODF implementation and looking for solutions on issues found": [[265, "week-11-adjusting-odf-implementation-and-looking-for-solutions-on-issues-found"]], "Week 11: A Refactor is Sometimes Needed": [[264, "week-11-a-refactor-is-sometimes-needed"]], "Week 11: Bye Bye SpinBox": [[263, "week-11-bye-bye-spinbox"]], "Week 11: Improving tutorials a little": [[213, "week-11-improving-tutorials-a-little"]], "Week 12 - Adding skeleton as actors and fix global transformation": [[217, "week-12-adding-skeleton-as-actors-and-fix-global-transformation"]], "Week 12 - Fixing translating issues and updating tests": [[211, "week-12-fixing-translating-issues-and-updating-tests"]], "Week 12 : Experimenting with ODFs implementation": [[270, "week-12-experimenting-with-odfs-implementation"]], "Week 12: Adding new tutorials": [[224, "week-12-adding-new-tutorials"]], "Week 12: FileDialog Quest Begins!": [[266, "week-12-filedialog-quest-begins"]], "Week 12: Now That is (almost) a Wrap!": [[268, "week-12-now-that-is-almost-a-wrap"]], "Week 13 - Multi-bone skeletal animation support": [[219, "week-13-multi-bone-skeletal-animation-support"]], "Week 13 - Separating tests and fixing bugs": [[215, "week-13-separating-tests-and-fixing-bugs"]], "Week 13: Keyframes animation is now a bit easier in FURY": [[220, "week-13-keyframes-animation-is-now-a-bit-easier-in-fury"]], "Week 14 - Morphing is here!": [[223, "week-14-morphing-is-here"]], "Week 14 - Updating DrawPanel architecture": [[216, "week-14-updating-drawpanel-architecture"]], "Week 14: Keyframes animation is now a bit easier in FURY": [[222, "week-14-keyframes-animation-is-now-a-bit-easier-in-fury"]], "Week 15 - Highlighting DrawShapes": [[218, "week-15-highlighting-drawshapes"]], "Week 16 - Working with Rotations!": [[221, "week-16-working-with-rotations"]], "Week 1: Ellipsoid actor implemented with SDF": [[235, "week-1-ellipsoid-actor-implemented-with-sdf"]], "Week 1: Implementing a basic Keyframe animation API": [[181, "week-1-implementing-a-basic-keyframe-animation-api"]], "Week 1: Working with SpinBox and TextBox Enhancements": [[233, "week-1-working-with-spinbox-and-textbox-enhancements"]], "Week 2 - Improving DrawPanel UI": [[183, "week-2-improving-drawpanel-ui"]], "Week 2 - Improving Fetcher and Exporting glTF": [[188, "week-2-improving-fetcher-and-exporting-gltf"]], "Week 2: Implementing non-linear and color interpolators": [[186, "week-2-implementing-non-linear-and-color-interpolators"]], "Week 2: Making adjustments to the Ellipsoid Actor": [[238, "week-2-making-adjustments-to-the-ellipsoid-actor"]], "Week 2: Tackling Text Justification and Icon Flaw Issues": [[236, "week-2-tackling-text-justification-and-icon-flaw-issues"]], "Week 2: The Importance of (good) Documentation": [[237, "week-2-the-importance-of-good-documentation"]], "Week 3 - Dealing with Problems": [[185, "week-3-dealing-with-problems"]], "Week 3 - Fixing fetcher, adding tests and docs": [[190, "week-3-fixing-fetcher-adding-tests-and-docs"]], "Week 3: Redesigning the API, Implementing cubic Bezier Interpolator, and making progress on the GPU side!": [[189, "week-3-redesigning-the-api-implementing-cubic-bezier-interpolator-and-making-progress-on-the-gpu-side"]], "Week 3: Resolving Combobox Icon Flaw and TextBox Justification": [[239, "week-3-resolving-combobox-icon-flaw-and-textbox-justification"]], "Week 3: Watch Your Expectations": [[240, "week-3-watch-your-expectations"]], "Week 3: Working on uncertainty and details of the first PR": [[241, "week-3-working-on-uncertainty-and-details-of-the-first-pr"]], "Week 4 - Finalizing glTF loader": [[193, "week-4-finalizing-gltf-loader"]], "Week 4 - Fixing the Clamping Issue": [[187, "week-4-fixing-the-clamping-issue"]], "Week 4: Camera animation, interpolation in GLSL, and a single Timeline!": [[192, "week-4-camera-animation-interpolation-in-glsl-and-a-single-timeline"]], "Week 4: Exam Preparations and Reviewing": [[242, "week-4-exam-preparations-and-reviewing"]], "Week 4: First draft of the DTI uncertainty visualization": [[244, "week-4-first-draft-of-the-dti-uncertainty-visualization"]], "Week 4: Nothing is Ever Lost": [[243, "week-4-nothing-is-ever-lost"]], "Week 5 - Creating PR for glTF exporter and fixing the loader": [[196, "week-5-creating-pr-for-gltf-exporter-and-fixing-the-loader"]], "Week 5 - Working on new features": [[191, "week-5-working-on-new-features"]], "Week 5: All Roads Lead to Rome": [[246, "week-5-all-roads-lead-to-rome"]], "Week 5: Preparing the data for the Ellipsoid tutorial": [[247, "week-5-preparing-the-data-for-the-ellipsoid-tutorial"]], "Week 5: Slerp implementation, documenting the Timeline, and adding unit tests": [[195, "week-5-slerp-implementation-documenting-the-timeline-and-adding-unit-tests"]], "Week 5: Trying out PRs and Planning Ahead": [[245, "week-5-trying-out-prs-and-planning-ahead"]], "Week 6 - Extracting the animation data": [[199, "week-6-extracting-the-animation-data"]], "Week 6 - Supporting Rotation of the Shapes from the Center": [[194, "week-6-supporting-rotation-of-the-shapes-from-the-center"]], "Week 6: BoundingBox for TextBlock2D!": [[248, "week-6-boundingbox-for-textblock2d"]], "Week 6: First draft of the Ellipsoid tutorial": [[250, "week-6-first-draft-of-the-ellipsoid-tutorial"]], "Week 6: Fixing the Timeline issues and equipping it with more features": [[198, "week-6-fixing-the-timeline-issues-and-equipping-it-with-more-features"]], "Week 6: Things are Starting to Build Up": [[249, "week-6-things-are-starting-to-build-up"]], "Week 7 - Fixing bugs in animations": [[202, "week-7-fixing-bugs-in-animations"]], "Week 7 - Working on Rotation PR and Trying Freehand Drawing": [[197, "week-7-working-on-rotation-pr-and-trying-freehand-drawing"]], "Week 7: Adjustments on the Uncertainty Cones visualization": [[253, "week-7-adjustments-on-the-uncertainty-cones-visualization"]], "Week 7: Billboard spheres and implementing interpolators using closures": [[201, "week-7-billboard-spheres-and-implementing-interpolators-using-closures"]], "Week 7: Experimentation Done": [[252, "week-7-experimentation-done"]], "Week 7: Sowing the seeds for TreeUI": [[251, "week-7-sowing-the-seeds-for-treeui"]], "Week 8 - Fixing animation bugs": [[204, "week-8-fixing-animation-bugs"]], "Week 8 - Working on the polyline feature": [[200, "week-8-working-on-the-polyline-feature"]], "Week 8: Another week with TextBlockUI": [[254, "week-8-another-week-with-textblockui"]], "Week 8: Back to the shader-based version of the Timeline": [[205, "week-8-back-to-the-shader-based-version-of-the-timeline"]], "Week 8: The Birth of a Versatile API": [[255, "week-8-the-birth-of-a-versatile-api"]], "Week 8: Working on Ellipsoid Tutorial and exploring SH": [[256, "week-8-working-on-ellipsoid-tutorial-and-exploring-sh"]], "Week 9 - First working skeletal animation prototype": [[208, "week-9-first-working-skeletal-animation-prototype"]], "Week 9 - Grouping and Transforming Shapes": [[203, "week-9-grouping-and-transforming-shapes"]], "Week 9: Animating primitives of the same actor": [[207, "week-9-animating-primitives-of-the-same-actor"]], "Week 9: It is Polishing Time!": [[258, "week-9-it-is-polishing-time"]], "Week 9: TextBlock2D is Finally Merged!": [[257, "week-9-textblock2d-is-finally-merged"]], "Week 9: Tutorial done and polishing DTI uncertainty": [[259, "week-9-tutorial-done-and-polishing-dti-uncertainty"]], "Week#10: Accordion UI, Support for sprite sheet animations": [[167, "week-10-accordion-ui-support-for-sprite-sheet-animations"]], "Weekly Check-In #1": [[139, "weekly-check-in-1"]], "Weekly Check-In #3": [[145, "weekly-check-in-3"]], "Weekly Check-In #5": [[151, "weekly-check-in-5"]], "Weekly Check-In #7": [[157, "weekly-check-in-7"]], "Weekly Check-In #8": [[160, "weekly-check-in-8"]], "Weekly Check-in #1": [[107, "weekly-check-in-1"]], "Welcome to my GSoC Blog!": [[141, "welcome-to-my-gsoc-blog"]], "Welcome to my GSoC Blog!!!": [[107, "welcome-to-my-gsoc-blog"], [108, "welcome-to-my-gsoc-blog"]], "What About Next Week?": [[234, "what-about-next-week"]], "What I did Last Week": [[249, "what-i-did-last-week"]], "What did I do this week?": [[139, "what-did-i-do-this-week"], [140, "what-did-i-do-this-week"], [143, "what-did-i-do-this-week"], [146, "what-did-i-do-this-week"], [149, "what-did-i-do-this-week"], [152, "what-did-i-do-this-week"], [155, "what-did-i-do-this-week"], [157, "what-did-i-do-this-week"], [158, "what-did-i-do-this-week"], [160, "what-did-i-do-this-week"], [161, "what-did-i-do-this-week"], [163, "what-did-i-do-this-week"], [164, "what-did-i-do-this-week"], [167, "what-did-i-do-this-week"], [169, "what-did-i-do-this-week"], [174, "what-did-i-do-this-week"], [175, "what-did-i-do-this-week"], [232, "what-did-i-do-this-week"], [235, "what-did-i-do-this-week"], [238, "what-did-i-do-this-week"], [241, "what-did-i-do-this-week"], [242, "what-did-i-do-this-week"], [244, "what-did-i-do-this-week"], [247, "what-did-i-do-this-week"], [250, "what-did-i-do-this-week"], [253, "what-did-i-do-this-week"], [256, "what-did-i-do-this-week"], [259, "what-did-i-do-this-week"], [262, "what-did-i-do-this-week"], [265, "what-did-i-do-this-week"], [270, "what-did-i-do-this-week"]], "What did you do during the Community Bonding Period?": [[107, "what-did-you-do-during-the-community-bonding-period"], [108, "what-did-you-do-during-the-community-bonding-period"], [141, "what-did-you-do-during-the-community-bonding-period"], [181, "what-did-you-do-during-the-community-bonding-period"], [184, "what-did-you-do-during-the-community-bonding-period"]], "What did you do this week?": [[109, "what-did-you-do-this-week"], [110, "what-did-you-do-this-week"], [111, "what-did-you-do-this-week"], [112, "what-did-you-do-this-week"], [113, "what-did-you-do-this-week"], [114, "what-did-you-do-this-week"], [115, "what-did-you-do-this-week"], [116, "what-did-you-do-this-week"], [117, "what-did-you-do-this-week"], [118, "what-did-you-do-this-week"], [119, "what-did-you-do-this-week"], [120, "what-did-you-do-this-week"], [121, "what-did-you-do-this-week"], [123, "what-did-you-do-this-week"], [124, "what-did-you-do-this-week"], [125, "what-did-you-do-this-week"], [126, "what-did-you-do-this-week"], [127, "what-did-you-do-this-week"], [128, "what-did-you-do-this-week"], [129, "what-did-you-do-this-week"], [130, "what-did-you-do-this-week"], [131, "what-did-you-do-this-week"], [133, "what-did-you-do-this-week"], [136, "what-did-you-do-this-week"], [144, "what-did-you-do-this-week"], [145, "what-did-you-do-this-week"], [147, "what-did-you-do-this-week"], [150, "what-did-you-do-this-week"], [151, "what-did-you-do-this-week"], [153, "what-did-you-do-this-week"], [156, "what-did-you-do-this-week"], [159, "what-did-you-do-this-week"], [162, "what-did-you-do-this-week"], [165, "what-did-you-do-this-week"], [168, "what-did-you-do-this-week"], [170, "what-did-you-do-this-week"], [181, "what-did-you-do-this-week"], [182, "what-did-you-do-this-week"], [183, "what-did-you-do-this-week"], [184, "what-did-you-do-this-week"], [185, "what-did-you-do-this-week"], [186, "what-did-you-do-this-week"], [187, "what-did-you-do-this-week"], [188, "what-did-you-do-this-week"], [189, "what-did-you-do-this-week"], [190, "what-did-you-do-this-week"], [191, "what-did-you-do-this-week"], [192, "what-did-you-do-this-week"], [193, "what-did-you-do-this-week"], [194, "what-did-you-do-this-week"], [195, "what-did-you-do-this-week"], [196, "what-did-you-do-this-week"], [197, "what-did-you-do-this-week"], [198, "what-did-you-do-this-week"], [199, "what-did-you-do-this-week"], [200, "what-did-you-do-this-week"], [201, "what-did-you-do-this-week"], [202, "what-did-you-do-this-week"], [203, "what-did-you-do-this-week"], [204, "what-did-you-do-this-week"], [205, "what-did-you-do-this-week"], [206, "what-did-you-do-this-week"], [207, "what-did-you-do-this-week"], [208, "what-did-you-do-this-week"], [209, "what-did-you-do-this-week"], [210, "what-did-you-do-this-week"], [211, "what-did-you-do-this-week"], [212, "what-did-you-do-this-week"], [213, "what-did-you-do-this-week"], [214, "what-did-you-do-this-week"], [215, "what-did-you-do-this-week"], [216, "what-did-you-do-this-week"], [217, "what-did-you-do-this-week"], [218, "what-did-you-do-this-week"], [219, "what-did-you-do-this-week"], [220, "what-did-you-do-this-week"], [221, "what-did-you-do-this-week"], [222, "what-did-you-do-this-week"], [223, "what-did-you-do-this-week"], [224, "what-did-you-do-this-week"], [233, "what-did-you-do-this-week"], [236, "what-did-you-do-this-week"], [239, "what-did-you-do-this-week"], [245, "what-did-you-do-this-week"], [248, "what-did-you-do-this-week"], [251, "what-did-you-do-this-week"], [254, "what-did-you-do-this-week"], [257, "what-did-you-do-this-week"], [260, "what-did-you-do-this-week"], [263, "what-did-you-do-this-week"], [266, "what-did-you-do-this-week"]], "What exactly is a keyframe": [[64, "what-exactly-is-a-keyframe"]], "What is Keyframe Animation": [[64, "what-is-keyframe-animation"]], "What is Timeline?": [[67, "what-is-timeline"]], "What is coming up next week?": [[107, "what-is-coming-up-next-week"], [108, "what-is-coming-up-next-week"], [109, "what-is-coming-up-next-week"], [110, "what-is-coming-up-next-week"], [111, "what-is-coming-up-next-week"], [112, "what-is-coming-up-next-week"], [113, "what-is-coming-up-next-week"], [114, "what-is-coming-up-next-week"], [115, "what-is-coming-up-next-week"], [116, "what-is-coming-up-next-week"], [117, "what-is-coming-up-next-week"], [118, "what-is-coming-up-next-week"], [119, "what-is-coming-up-next-week"], [120, "what-is-coming-up-next-week"], [121, "what-is-coming-up-next-week"], [123, "what-is-coming-up-next-week"], [124, "what-is-coming-up-next-week"], [125, "what-is-coming-up-next-week"], [126, "what-is-coming-up-next-week"], [127, "what-is-coming-up-next-week"], [128, "what-is-coming-up-next-week"], [129, "what-is-coming-up-next-week"], [130, "what-is-coming-up-next-week"], [131, "what-is-coming-up-next-week"], [133, "what-is-coming-up-next-week"], [136, "what-is-coming-up-next-week"], [141, "what-is-coming-up-next-week"], [144, "what-is-coming-up-next-week"], [147, "what-is-coming-up-next-week"], [150, "what-is-coming-up-next-week"], [151, "what-is-coming-up-next-week"], [153, "what-is-coming-up-next-week"], [156, "what-is-coming-up-next-week"], [159, "what-is-coming-up-next-week"], [161, "what-is-coming-up-next-week"], [162, "what-is-coming-up-next-week"], [164, "what-is-coming-up-next-week"], [165, "what-is-coming-up-next-week"], [167, "what-is-coming-up-next-week"], [168, "what-is-coming-up-next-week"], [169, "what-is-coming-up-next-week"], [170, "what-is-coming-up-next-week"], [181, "what-is-coming-up-next-week"], [184, "what-is-coming-up-next-week"], [186, "what-is-coming-up-next-week"], [188, "what-is-coming-up-next-week"], [189, "what-is-coming-up-next-week"], [190, "what-is-coming-up-next-week"], [192, "what-is-coming-up-next-week"], [193, "what-is-coming-up-next-week"], [195, "what-is-coming-up-next-week"], [196, "what-is-coming-up-next-week"], [198, "what-is-coming-up-next-week"], [199, "what-is-coming-up-next-week"], [201, "what-is-coming-up-next-week"], [202, "what-is-coming-up-next-week"], [204, "what-is-coming-up-next-week"], [205, "what-is-coming-up-next-week"], [207, "what-is-coming-up-next-week"], [208, "what-is-coming-up-next-week"], [210, "what-is-coming-up-next-week"], [212, "what-is-coming-up-next-week"], [213, "what-is-coming-up-next-week"], [214, "what-is-coming-up-next-week"], [217, "what-is-coming-up-next-week"], [219, "what-is-coming-up-next-week"], [220, "what-is-coming-up-next-week"], [222, "what-is-coming-up-next-week"], [223, "what-is-coming-up-next-week"], [224, "what-is-coming-up-next-week"]], "What is coming up next?": [[139, "what-is-coming-up-next"], [140, "what-is-coming-up-next"], [143, "what-is-coming-up-next"], [145, "what-is-coming-up-next"], [146, "what-is-coming-up-next"], [149, "what-is-coming-up-next"], [152, "what-is-coming-up-next"], [155, "what-is-coming-up-next"], [157, "what-is-coming-up-next"], [160, "what-is-coming-up-next"], [163, "what-is-coming-up-next"], [174, "what-is-coming-up-next"], [182, "what-is-coming-up-next"], [183, "what-is-coming-up-next"], [185, "what-is-coming-up-next"], [187, "what-is-coming-up-next"], [191, "what-is-coming-up-next"], [194, "what-is-coming-up-next"], [197, "what-is-coming-up-next"], [200, "what-is-coming-up-next"], [203, "what-is-coming-up-next"], [206, "what-is-coming-up-next"], [209, "what-is-coming-up-next"], [211, "what-is-coming-up-next"], [215, "what-is-coming-up-next"], [216, "what-is-coming-up-next"], [218, "what-is-coming-up-next"], [221, "what-is-coming-up-next"], [232, "what-is-coming-up-next"], [233, "what-is-coming-up-next"], [235, "what-is-coming-up-next"], [236, "what-is-coming-up-next"], [238, "what-is-coming-up-next"], [239, "what-is-coming-up-next"], [241, "what-is-coming-up-next"], [242, "what-is-coming-up-next"], [244, "what-is-coming-up-next"], [245, "what-is-coming-up-next"], [247, "what-is-coming-up-next"], [248, "what-is-coming-up-next"], [250, "what-is-coming-up-next"], [251, "what-is-coming-up-next"], [253, "what-is-coming-up-next"], [254, "what-is-coming-up-next"], [256, "what-is-coming-up-next"], [257, "what-is-coming-up-next"], [259, "what-is-coming-up-next"], [260, "what-is-coming-up-next"], [262, "what-is-coming-up-next"], [263, "what-is-coming-up-next"], [265, "what-is-coming-up-next"], [266, "what-is-coming-up-next"], [270, "what-is-coming-up-next"]], "Where the Problem Was": [[237, "where-the-problem-was"], [240, "where-the-problem-was"], [243, "where-the-problem-was"], [246, "where-the-problem-was"], [249, "where-the-problem-was"]], "Why is using the python threading is not a good solution?": [[154, "why-is-using-the-python-threading-is-not-a-good-solution"]], "Widget": [[291, "widget"]], "WindowToImageFilter": [[284, "windowtoimagefilter"]], "WorldPointPicker": [[284, "worldpointpicker"]], "Wrapping animations up!": [[66, "wrapping-animations-up"]], "Wrecking Ball Simulation": [[83, "wrecking-ball-simulation"], [93, "wrecking-ball-simulation"]], "Wrecking Ball Simulation, Scrollbars Update, Physics Tutorials.": [[130, "wrecking-ball-simulation-scrollbars-update-physics-tutorials"]], "Write Documentation": [[314, "write-documentation"]], "XLayout": [[283, "xlayout"]], "XMLPolyDataReader": [[284, "xmlpolydatareader"]], "XMLPolyDataWriter": [[284, "xmlpolydatawriter"]], "YLayout": [[283, "ylayout"]], "ZLayout": [[283, "zlayout"]], "_CQUEUE": [[291, "cqueue"]], "_CQUEUE_EVENT_IDs": [[291, "cqueue-event-ids"]], "_CQUEUE_INDEX_INFO": [[291, "cqueue-index-info"]], "_LEADING_WHITE": [[280, "leading-white"]], "_TUPLE2AXES": [[292, "tuple2axes"]], "actor": [[273, "module-fury.actor"]], "actors": [[274, "module-fury.actors"]], "add_atom": [[286, "add-atom"]], "add_bond": [[286, "add-bond"]], "add_polydata_numeric_field": [[294, "add-polydata-numeric-field"]], "add_shader_callback": [[290, "add-shader-callback"]], "analyze_scene": [[295, "analyze-scene"]], "analyze_snapshot": [[295, "analyze-snapshot"]], "animation": [[275, "module-fury.animation"]], "antialiasing": [[295, "antialiasing"]], "apply_affine": [[294, "apply-affine"]], "apply_affine_to_actor": [[294, "apply-affine-to-actor"]], "apply_transformation": [[292, "apply-transformation"]], "array_from_actor": [[294, "array-from-actor"]], "arrow": [[273, "arrow"]], "asbytes": [[294, "asbytes"]], "attribute_to_actor": [[290, "attribute-to-actor"]], "axes": [[273, "axes"]], "ball_stick": [[286, "ball-stick"]], "billboard": [[273, "billboard"]], "bounding_box": [[286, "bounding-box"]], "box": [[273, "box"]], "boys2rgb": [[276, "boys2rgb"]], "cal_bounding_box_2d": [[293, "cal-bounding-box-2d"]], "callback_stream_client": [[291, "callback-stream-client"]], "cart2sphere": [[292, "cart2sphere"]], "cc": [[276, "cc"]], "change_vertices_order": [[294, "change-vertices-order"]], "check_overflow": [[293, "check-overflow"]], "check_port_is_available": [[291, "check-port-is-available"]], "check_sha": [[278, "check-sha"]], "clip_overflow": [[293, "clip-overflow"]], "cmp_pkg_version": [[280, "cmp-pkg-version"]], "color_check": [[294, "color-check"]], "color_interpolator": [[275, "color-interpolator"]], "colormap": [[276, "module-fury.colormap"]], "colormap_lookup_table": [[276, "colormap-lookup-table"]], "colors_from_actor": [[294, "colors-from-actor"]], "compose_shader": [[290, "compose-shader"]], "compute_bonding": [[286, "compute-bonding"]], "compute_bounds": [[294, "compute-bounds"]], "cone": [[273, "cone"]], "contour_from_label": [[273, "contour-from-label"]], "contour_from_roi": [[273, "contour-from-roi"]], "convert": [[277, "module-fury.convert"]], "copyfileobj_withprogress": [[278, "copyfileobj-withprogress"]], "create_colormap": [[276, "create-colormap"]], "cube": [[273, "cube"]], "cubic_bezier_interpolator": [[275, "cubic-bezier-interpolator"]], "cubic_spline_interpolator": [[275, "cubic-spline-interpolator"]], "cylinder": [[273, "cylinder"]], "data": [[278, "module-fury.data"]], "decorators": [[279, "module-fury.decorators"]], "deep_copy_molecule": [[286, "deep-copy-molecule"]], "deprecate_with_version": [[280, "deprecate-with-version"]], "deprecated_params": [[280, "deprecated-params"]], "deprecator": [[280, "module-fury.deprecator"]], "disable_warnings": [[272, "disable-warnings"]], "disk": [[273, "disk"]], "distinguishable_colormap": [[276, "distinguishable-colormap"]], "doctest_skip_parser": [[279, "doctest-skip-parser"]], "dot": [[273, "dot"]], "dots": [[273, "dots"]], "double_cone": [[274, "double-cone"]], "ellipsoid": [[273, "ellipsoid"]], "enable_stereo": [[295, "enable-stereo"]], "enable_warnings": [[272, "enable-warnings"]], "euclidean_distances": [[275, "euclidean-distances"]], "euler_matrix": [[292, "euler-matrix"]], "export_scene": [[281, "export-scene"]], "faces_from_sphere_vertices": [[289, "faces-from-sphere-vertices"]], "fetch_data": [[278, "fetch-data"]], "fetch_gltf": [[278, "fetch-gltf"]], "fetch_viz_cubemaps": [[278, "fetch-viz-cubemaps"]], "fetch_viz_dmri": [[278, "fetch-viz-dmri"]], "fetch_viz_icons": [[278, "fetch-viz-icons"]], "fetch_viz_models": [[278, "fetch-viz-models"]], "fetch_viz_new_icons": [[278, "fetch-viz-new-icons"]], "fetch_viz_textures": [[278, "fetch-viz-textures"]], "fetch_viz_wiki_nw": [[278, "fetch-viz-wiki-nw"]], "figure": [[273, "figure"]], "fix_winding_order": [[294, "fix-winding-order"]], "frustum": [[273, "frustum"]], "fury": [[272, "module-fury"]], "fury-gl/fury PR#437: WebRTC streaming system for FURY": [[151, "fury-gl-fury-pr-437-webrtc-streaming-system-for-fury"]], "fury-gl/helios PR 1: Network Layout and SuperActors": [[151, "fury-gl-helios-pr-1-network-layout-and-superactors"]], "get_actor_from_polydata": [[294, "get-actor-from-polydata"]], "get_actor_from_polymapper": [[294, "get-actor-from-polymapper"]], "get_actor_from_primitive": [[294, "get-actor-from-primitive"]], "get_all_atomic_numbers": [[286, "get-all-atomic-numbers"]], "get_all_atomic_positions": [[286, "get-all-atomic-positions"]], "get_all_bond_orders": [[286, "get-all-bond-orders"]], "get_app": [[291, "get-app"]], "get_atomic_number": [[286, "get-atomic-number"]], "get_atomic_position": [[286, "get-atomic-position"]], "get_bond_order": [[286, "get-bond-order"]], "get_bounding_box_sizes": [[294, "get-bounding-box-sizes"]], "get_bounds": [[294, "get-bounds"]], "get_cmap": [[276, "get-cmap"]], "get_grid_cells_position": [[294, "get-grid-cells-position"]], "get_info": [[272, "get-info"]], "get_next_timestamp": [[275, "get-next-timestamp"]], "get_polydata_colors": [[294, "get-polydata-colors"]], "get_polydata_field": [[294, "get-polydata-field"]], "get_polydata_lines": [[294, "get-polydata-lines"]], "get_polydata_normals": [[294, "get-polydata-normals"]], "get_polydata_primitives_count": [[294, "get-polydata-primitives-count"]], "get_polydata_tangents": [[294, "get-polydata-tangents"]], "get_polydata_tcoord": [[294, "get-polydata-tcoord"]], "get_polydata_triangles": [[294, "get-polydata-triangles"]], "get_polydata_vertices": [[294, "get-polydata-vertices"]], "get_polymapper_from_polydata": [[294, "get-polymapper-from-polydata"]], "get_previous_timestamp": [[275, "get-previous-timestamp"]], "get_prim": [[281, "get-prim"]], "get_time_tau": [[275, "get-time-tau"]], "get_timestamps_from_keyframes": [[275, "get-timestamps-from-keyframes"]], "get_values_from_keyframes": [[275, "get-values-from-keyframes"]], "get_xyz_coords": [[276, "get-xyz-coords"]], "glTF": [[281, "id1"]], "gl_disable_blend": [[295, "gl-disable-blend"]], "gl_disable_depth": [[295, "gl-disable-depth"]], "gl_enable_blend": [[295, "gl-enable-blend"]], "gl_enable_depth": [[295, "gl-enable-depth"]], "gl_get_current_state": [[295, "gl-get-current-state"]], "gl_reset_blend": [[295, "gl-reset-blend"]], "gl_set_additive_blending": [[295, "gl-set-additive-blending"]], "gl_set_additive_blending_white_background": [[295, "gl-set-additive-blending-white-background"]], "gl_set_multiplicative_blending": [[295, "gl-set-multiplicative-blending"]], "gl_set_normal_blending": [[295, "gl-set-normal-blending"]], "gl_set_subtractive_blending": [[295, "gl-set-subtractive-blending"]], "gltf": [[281, "module-fury.gltf"]], "grid": [[273, "grid"]], "hex_to_rgb": [[276, "hex-to-rgb"]], "hsv2rgb": [[276, "hsv2rgb"]], "hsv_color_interpolator": [[275, "hsv-color-interpolator"]], "import_fury_shader": [[290, "import-fury-shader"]], "interaction_callback": [[291, "interaction-callback"]], "io": [[282, "module-fury.io"]], "is_bad_version": [[280, "is-bad-version"]], "is_ui": [[294, "is-ui"]], "lab2rgb": [[276, "lab2rgb"]], "lab2xyz": [[276, "lab2xyz"]], "lab_color_interpolator": [[275, "lab-color-interpolator"]], "label": [[273, "label"]], "layout": [[283, "module-fury.layout"]], "lerp": [[275, "lerp"]], "lib": [[284, "module-fury.lib"]], "line": [[273, "line"]], "line_colors": [[276, "line-colors"]], "linear_interpolator": [[275, "linear-interpolator"]], "lines_to_vtk_polydata": [[294, "lines-to-vtk-polydata"]], "list_gltf_sample_models": [[278, "list-gltf-sample-models"]], "load": [[290, "load"]], "load_cubemap_texture": [[282, "load-cubemap-texture"]], "load_image": [[282, "load-image"]], "load_polydata": [[282, "load-polydata"]], "load_shader": [[290, "load-shader"]], "load_sprite_sheet": [[282, "load-sprite-sheet"]], "load_text": [[282, "load-text"]], "main_dir_uncertainty": [[274, "main-dir-uncertainty"]], "manifest_pbr": [[285, "manifest-pbr"]], "manifest_principled": [[285, "manifest-principled"]], "manifest_standard": [[285, "manifest-standard"]], "map_coordinates_3d_4d": [[294, "map-coordinates-3d-4d"]], "markers": [[273, "markers"]], "material": [[285, "module-fury.material"]], "matplotlib_figure_to_numpy": [[277, "matplotlib-figure-to-numpy"]], "molecular": [[286, "module-fury.molecular"]], "multiprocessing RawArray": [[142, "multiprocessing-rawarray"]], "normalize_v3": [[294, "normalize-v3"]], "normals_from_actor": [[294, "normals-from-actor"]], "normals_from_v_f": [[294, "normals-from-v-f"]], "normals_to_actor": [[294, "normals-to-actor"]], "numpy_to_vtk_cells": [[294, "numpy-to-vtk-cells"]], "numpy_to_vtk_colors": [[294, "numpy-to-vtk-colors"]], "numpy_to_vtk_image_data": [[294, "numpy-to-vtk-image-data"]], "numpy_to_vtk_matrix": [[294, "numpy-to-vtk-matrix"]], "numpy_to_vtk_points": [[294, "numpy-to-vtk-points"]], "octagonalprism": [[273, "octagonalprism"]], "odf_slicer": [[273, "odf-slicer"]], "orient2rgb": [[276, "orient2rgb"]], "pcs": [[291, "pcs"]], "peak": [[273, "peak"]], "peak_slicer": [[273, "peak-slicer"]], "pentagonalprism": [[273, "pentagonalprism"]], "pick": [[287, "module-fury.pick"]], "pkg_commit_hash": [[288, "pkg-commit-hash"]], "pkg_info": [[288, "module-fury.pkg_info"]], "point": [[273, "point"]], "prim_arrow": [[289, "prim-arrow"]], "prim_box": [[289, "prim-box"]], "prim_cone": [[289, "prim-cone"]], "prim_cylinder": [[289, "prim-cylinder"]], "prim_frustum": [[289, "prim-frustum"]], "prim_icosahedron": [[289, "prim-icosahedron"]], "prim_octagonalprism": [[289, "prim-octagonalprism"]], "prim_pentagonalprism": [[289, "prim-pentagonalprism"]], "prim_rhombicuboctahedron": [[289, "prim-rhombicuboctahedron"]], "prim_sphere": [[289, "prim-sphere"]], "prim_square": [[289, "prim-square"]], "prim_star": [[289, "prim-star"]], "prim_superquadric": [[289, "prim-superquadric"]], "prim_tetrahedron": [[289, "prim-tetrahedron"]], "prim_triangularprism": [[289, "prim-triangularprism"]], "primitive": [[289, "module-fury.primitive"]], "primitives_count_from_actor": [[294, "primitives-count-from-actor"]], "primitives_count_to_actor": [[294, "primitives-count-to-actor"]], "read_viz_cubemap": [[278, "read-viz-cubemap"]], "read_viz_dmri": [[278, "read-viz-dmri"]], "read_viz_gltf": [[278, "read-viz-gltf"]], "read_viz_icons": [[278, "read-viz-icons"]], "read_viz_models": [[278, "read-viz-models"]], "read_viz_textures": [[278, "read-viz-textures"]], "record": [[295, "record"]], "rectangle": [[273, "rectangle"]], "release_context": [[295, "release-context"]], "remove_observer_from_actor": [[294, "remove-observer-from-actor"]], "remove_shm_from_resource_tracker": [[291, "remove-shm-from-resource-tracker"]], "repeat_primitive": [[289, "repeat-primitive"]], "repeat_primitive_function": [[289, "repeat-primitive-function"]], "repeat_sources": [[294, "repeat-sources"]], "replace_shader_in_actor": [[290, "replace-shader-in-actor"]], "represent_actor_as_wireframe": [[294, "represent-actor-as-wireframe"]], "rgb2hsv": [[276, "rgb2hsv"]], "rgb2lab": [[276, "rgb2lab"]], "rgb2xyz": [[276, "rgb2xyz"]], "rgb_from_xyz": [[276, "rgb-from-xyz"]], "rgb_to_vtk": [[294, "rgb-to-vtk"]], "rhombicuboctahedron": [[273, "rhombicuboctahedron"]], "ribbon": [[286, "ribbon"]], "rotate": [[292, "rotate"], [294, "rotate"]], "rotate_2d": [[293, "rotate-2d"]], "save_image": [[282, "save-image"]], "save_polydata": [[282, "save-polydata"]], "scalar_bar": [[273, "scalar-bar"]], "scale": [[292, "scale"]], "sdf": [[273, "sdf"]], "set_actor_origin": [[294, "set-actor-origin"]], "set_atomic_number": [[286, "set-atomic-number"]], "set_atomic_position": [[286, "set-atomic-position"]], "set_bond_order": [[286, "set-bond-order"]], "set_input": [[294, "set-input"]], "set_mouse": [[291, "set-mouse"]], "set_mouse_click": [[291, "set-mouse-click"]], "set_polydata_colors": [[294, "set-polydata-colors"]], "set_polydata_normals": [[294, "set-polydata-normals"]], "set_polydata_primitives_count": [[294, "set-polydata-primitives-count"]], "set_polydata_tangents": [[294, "set-polydata-tangents"]], "set_polydata_tcoords": [[294, "set-polydata-tcoords"]], "set_polydata_triangles": [[294, "set-polydata-triangles"]], "set_polydata_vertices": [[294, "set-polydata-vertices"]], "set_weel": [[291, "set-weel"]], "shader_apply_effects": [[290, "shader-apply-effects"]], "shader_to_actor": [[290, "shader-to-actor"]], "shaders": [[290, "module-fury.shaders"]], "shallow_copy": [[294, "shallow-copy"]], "show": [[295, "show"]], "slerp": [[275, "slerp"]], "slicer": [[273, "slicer"]], "snapshot": [[295, "snapshot"]], "sphere": [[273, "sphere"]], "sphere2cart": [[292, "sphere2cart"]], "sphere_cpk": [[286, "sphere-cpk"]], "spline_interpolator": [[275, "spline-interpolator"]], "square": [[273, "square"]], "ss": [[276, "ss"]], "step_interpolator": [[275, "step-interpolator"]], "stick": [[286, "stick"]], "stream": [[291, "module-fury.stream"]], "streamtube": [[273, "streamtube"]], "superquadric": [[273, "superquadric"]], "surface": [[273, "surface"]], "tan_cubic_spline_interpolator": [[275, "tan-cubic-spline-interpolator"]], "tangents_from_actor": [[294, "tangents-from-actor"]], "tangents_from_direction_of_anisotropy": [[294, "tangents-from-direction-of-anisotropy"]], "tangents_to_actor": [[294, "tangents-to-actor"]], "tensor_ellipsoid": [[274, "tensor-ellipsoid"]], "tensor_slicer": [[273, "tensor-slicer"]], "text_3d": [[273, "text-3d"]], "texture": [[273, "texture"]], "texture_2d": [[273, "texture-2d"]], "texture_on_sphere": [[273, "texture-on-sphere"]], "texture_update": [[273, "texture-update"]], "transform": [[292, "module-fury.transform"]], "transform_from_matrix": [[292, "transform-from-matrix"]], "translate": [[292, "translate"]], "triangle_order": [[294, "triangle-order"]], "triangularprism": [[273, "triangularprism"]], "ui": [[293, "module-fury.ui"]], "uncertainty_cone": [[273, "uncertainty-cone"]], "update_actor": [[294, "update-actor"]], "update_polydata_normals": [[294, "update-polydata-normals"]], "update_progressbar": [[278, "update-progressbar"]], "update_surface_actor_colors": [[294, "update-surface-actor-colors"]], "utils": [[294, "module-fury.utils"]], "vector_text": [[273, "vector-text"]], "vertices_from_actor": [[294, "vertices-from-actor"]], "vtk_matrix_to_numpy": [[294, "vtk-matrix-to-numpy"]], "web_server": [[291, "web-server"]], "web_server_raw_array": [[291, "web-server-raw-array"]], "window": [[295, "module-fury.window"]], "wrap_overflow": [[293, "wrap-overflow"]], "write_accessor": [[281, "write-accessor"]], "write_buffer": [[281, "write-buffer"]], "write_bufferview": [[281, "write-bufferview"]], "write_camera": [[281, "write-camera"]], "write_material": [[281, "write-material"]], "write_mesh": [[281, "write-mesh"]], "write_node": [[281, "write-node"]], "write_scene": [[281, "write-scene"]], "xyz2lab": [[276, "xyz2lab"]], "xyz2rgb": [[276, "xyz2rgb"]], "xyz_color_interpolator": [[275, "xyz-color-interpolator"]], "xyz_from_rgb": [[276, "xyz-from-rgb"]]}, "docnames": ["auto_examples/01_introductory/index", "auto_examples/01_introductory/sg_execution_times", "auto_examples/01_introductory/viz_arrow", "auto_examples/01_introductory/viz_cone", "auto_examples/01_introductory/viz_earth_animation", "auto_examples/01_introductory/viz_earth_coordinates", "auto_examples/01_introductory/viz_gltf", "auto_examples/01_introductory/viz_gltf_animated", "auto_examples/01_introductory/viz_gltf_export", "auto_examples/01_introductory/viz_morphing", "auto_examples/01_introductory/viz_multithread", "auto_examples/01_introductory/viz_picking", "auto_examples/01_introductory/viz_selection", "auto_examples/01_introductory/viz_skinning", "auto_examples/01_introductory/viz_slice", "auto_examples/01_introductory/viz_solar_system", "auto_examples/01_introductory/viz_sphere", "auto_examples/01_introductory/viz_spiky", "auto_examples/01_introductory/viz_surfaces", "auto_examples/01_introductory/viz_texture", "auto_examples/01_introductory/viz_timers", "auto_examples/04_demos/collision-particles", "auto_examples/04_demos/index", "auto_examples/04_demos/sg_execution_times", "auto_examples/04_demos/viz_advanced", "auto_examples/04_demos/viz_animated_surfaces", "auto_examples/04_demos/viz_brownian_motion", "auto_examples/04_demos/viz_bundles", "auto_examples/04_demos/viz_dt_ellipsoids", "auto_examples/04_demos/viz_emwave_animation", "auto_examples/04_demos/viz_fiber_odf", "auto_examples/04_demos/viz_fine_tuning_gl_context", "auto_examples/04_demos/viz_fractals", "auto_examples/04_demos/viz_helical_motion", "auto_examples/04_demos/viz_markers", "auto_examples/04_demos/viz_network", "auto_examples/04_demos/viz_network_animated", "auto_examples/04_demos/viz_pbr_interactive", "auto_examples/04_demos/viz_play_video", "auto_examples/04_demos/viz_roi_contour", "auto_examples/04_demos/viz_tesseract", "auto_examples/07_ui/index", "auto_examples/07_ui/sg_execution_times", "auto_examples/07_ui/viz_buttons", "auto_examples/07_ui/viz_card", "auto_examples/07_ui/viz_card_sprite_sheet", "auto_examples/07_ui/viz_check_boxes", "auto_examples/07_ui/viz_combobox", "auto_examples/07_ui/viz_drawpanel", "auto_examples/07_ui/viz_layout", "auto_examples/07_ui/viz_radio_buttons", "auto_examples/07_ui/viz_shapes", "auto_examples/07_ui/viz_spinbox", "auto_examples/07_ui/viz_tab", "auto_examples/07_ui/viz_ui", "auto_examples/07_ui/viz_ui_listbox", "auto_examples/07_ui/viz_ui_slider", "auto_examples/10_animation/index", "auto_examples/10_animation/sg_execution_times", "auto_examples/10_animation/viz_bezier_interpolator", "auto_examples/10_animation/viz_camera", "auto_examples/10_animation/viz_color_interpolators", "auto_examples/10_animation/viz_custom_interpolator", "auto_examples/10_animation/viz_hierarchical_animation", "auto_examples/10_animation/viz_introduction", "auto_examples/10_animation/viz_robot_arm_animation", "auto_examples/10_animation/viz_spline_interpolator", "auto_examples/10_animation/viz_timeline", "auto_examples/10_animation/viz_using_time_equations", "auto_examples/13_shaders/index", "auto_examples/13_shaders/sg_execution_times", "auto_examples/13_shaders/viz_billboard_sdf_spheres", "auto_examples/13_shaders/viz_pbr_spheres", "auto_examples/13_shaders/viz_principled_spheres", "auto_examples/13_shaders/viz_sdf_cylinder", "auto_examples/13_shaders/viz_sdfactor", "auto_examples/13_shaders/viz_shader", "auto_examples/17_pybullet/index", "auto_examples/17_pybullet/sg_execution_times", "auto_examples/17_pybullet/viz_ball_collide", "auto_examples/17_pybullet/viz_brick_wall", "auto_examples/17_pybullet/viz_chain", "auto_examples/17_pybullet/viz_domino", "auto_examples/17_pybullet/viz_wrecking_ball", "auto_examples/20_stream/index", "auto_examples/20_stream/sg_execution_times", "auto_examples/20_stream/viz_interaction", "auto_examples/20_stream/viz_no_interaction", "auto_examples/20_stream/viz_widget", "auto_examples/index", "auto_examples/sg_execution_times", "blog", "community", "fury-pybullet", "getting_started", "index", "installation", "introduction", "posts/2018/2018-09-21-release-announcement", "posts/2018/2018-10-31-release-announcement", "posts/2018/2018-11-26-release-announcement", "posts/2019/2019-03-08-release-announcement", "posts/2019/2019-06-19-brain-art", "posts/2019/2019-08-02-release-announcement", "posts/2019/2019-10-29-release-announcement", "posts/2020/2020-01-05-gsoc", "posts/2020/2020-04-09-release-announcement", "posts/2020/2020-05-30-week-1-lenix", "posts/2020/2020-05-30-week-1-soham", "posts/2020/2020-06-07-week-2-lenix", "posts/2020/2020-06-07-week-2-soham", "posts/2020/2020-06-14-week-3-lenix", "posts/2020/2020-06-14-week-3-soham", "posts/2020/2020-06-21-week-4-lenix", "posts/2020/2020-06-21-week-4-soham", "posts/2020/2020-06-28-week-5-lenix", "posts/2020/2020-06-28-week-5-soham", "posts/2020/2020-07-05-week-6-lenix", "posts/2020/2020-07-05-week-6-soham", "posts/2020/2020-07-12-week-7-soham", "posts/2020/2020-07-13-week-7-lenix", "posts/2020/2020-07-19-week-8-soham", "posts/2020/2020-07-20-release-announcement", "posts/2020/2020-07-20-week-8-lenix", "posts/2020/2020-07-26-week-9-soham", "posts/2020/2020-07-27-week-9-lenix", "posts/2020/2020-08-02-week-10-lenix", "posts/2020/2020-08-02-week-10-soham", "posts/2020/2020-08-09-week-11-lenix", "posts/2020/2020-08-09-week-11-soham", "posts/2020/2020-08-16-week-12-soham", "posts/2020/2020-08-17-week-12-lenix", "posts/2020/2020-08-18-release-announcement", "posts/2020/2020-08-23-week-13-soham", "posts/2020/2020-08-24-final-work-lenix", "posts/2020/2020-08-24-final-work-soham", "posts/2020/2020-08-24-week-13-lenix", "posts/2021/2021-03-09-gsoc", "posts/2021/2021-03-13-release-announcement", "posts/2021/2021-06-08-gsoc-devmessias-1", "posts/2021/2021-06-08-week-1-antriksh", "posts/2021/2021-06-08-week-1-sajag", "posts/2021/2021-06-12-gsoc-devmessias-2", "posts/2021/2021-06-13-week-2-antriksh", "posts/2021/2021-06-14-week-2-sajag", "posts/2021/2021-06-21-gsoc-devmessias-3", "posts/2021/2021-06-21-week-3-antriksh", "posts/2021/2021-06-21-week-3-sajag", "posts/2021/2021-06-28-gsoc-devmessias-4", "posts/2021/2021-06-28-week-4-antriksh", "posts/2021/2021-06-28-week-4-sajag", "posts/2021/2021-07-05-gsoc-devmessias-5", "posts/2021/2021-07-05-week-5-antriksh", "posts/2021/2021-07-05-week-5-sajag", "posts/2021/2021-07-12-gsoc-devmessias-6", "posts/2021/2021-07-12-week-6-antriksh", "posts/2021/2021-07-12-week-6-sajag", "posts/2021/2021-07-19-gsoc-devmessias-7", "posts/2021/2021-07-19-week-7-antriksh", "posts/2021/2021-07-19-week-7-sajag", "posts/2021/2021-07-26-gsoc-devmessias-8", "posts/2021/2021-07-26-week-8-antriksh", "posts/2021/2021-07-26-week-8-sajag", "posts/2021/2021-08-02-gsoc-devmessias-9", "posts/2021/2021-08-02-week-9-antriksh", "posts/2021/2021-08-02-week-9-sajag", "posts/2021/2021-08-03-release-announcement", "posts/2021/2021-08-09-week-10-antriksh", "posts/2021/2021-08-09-week-10-sajag", "posts/2021/2021-08-16-week-11-antriksh", "posts/2021/2021-08-16-week-11-sajag", "posts/2021/2021-08-23-final-work-antriksh", "posts/2021/2021-08-23-final-work-sajag", "posts/2021/2021-08-23-gsoc-devmessias-final-report", "posts/2021/2021-09-08-gsoc-devmessias-10", "posts/2021/2021-16-08-gsoc-devmessias-11", "posts/2022/2022-01-31-release-announcement", "posts/2022/2022-02-01-gsoc", "posts/2022/2022-05-23-first-post-mohamed", "posts/2022/2022-05-24-my-journey-to-gsoc-2022-shivam", "posts/2022/2022-05-25-pre-gsoc-journey-praneeth", "posts/2022/2022-06-08-week-1-mohamed", "posts/2022/2022-06-08-week-1-praneeth", "posts/2022/2022-06-15-week-2-praneeth", "posts/2022/2022-06-20-week1-shivam", "posts/2022/2022-06-22-week-3-praneeth", "posts/2022/2022-06-28-week-2-mohamed", "posts/2022/2022-06-29-week-4-praneeth", "posts/2022/2022-06-29-week2-shivam", "posts/2022/2022-07-04-week-3-mohamed", "posts/2022/2022-07-04-week3-shivam", "posts/2022/2022-07-06-week-5-praneeth", "posts/2022/2022-07-11-week-4-mohamed", "posts/2022/2022-07-12-week4-shivam", "posts/2022/2022-07-13-week-6-praneeth", "posts/2022/2022-07-19-week-5-mohamed", "posts/2022/2022-07-19-week5-shivam", "posts/2022/2022-07-20-week-7-praneeth", "posts/2022/2022-07-25-week-6-mohamed", "posts/2022/2022-07-25-week-6-shivam", "posts/2022/2022-07-27-week-8-praneeth", "posts/2022/2022-08-01-week-7-mohamed", "posts/2022/2022-08-01-week-7-shivam", "posts/2022/2022-08-03-week-9-praneeth", "posts/2022/2022-08-09-week-08-shivam", "posts/2022/2022-08-09-week-8-mohamed", "posts/2022/2022-08-10-week-10-praneeth", "posts/2022/2022-08-16-week-9-mohamed", "posts/2022/2022-08-17-week-09-shivam", "posts/2022/2022-08-17-week-11-praneeth", "posts/2022/2022-08-23-week-10-mohamed", "posts/2022/2022-08-24-week-12-praneeth", "posts/2022/2022-08-25-week-10-shivam", "posts/2022/2022-08-30-week-11-mohamed", "posts/2022/2022-08-31-week-11-shivam", "posts/2022/2022-08-31-week-13-praneeth", "posts/2022/2022-09-07-week-14-praneeth", "posts/2022/2022-09-08-week-12-shivam", "posts/2022/2022-09-14-week-15-praneeth", "posts/2022/2022-09-15-week-13-blog", "posts/2022/2022-09-20-week-13-mohamed", "posts/2022/2022-09-21-week-16-praneeth", "posts/2022/2022-09-28-week-14-mohamed", "posts/2022/2022-09-28-week-14-shivam", "posts/2022/2022-09-7-week-12-mohamed", "posts/2023/2023-01-24-final-report-praneeth", "posts/2023/2023-01-29-final-report-mohamed", "posts/2023/2023-01-29-final-report-shivam", "posts/2023/2023-02-01-gsoc", "posts/2023/2023-04-14-release-announcement", "posts/2023/2023-05-29-week-0-joaodellagli", "posts/2023/2023-06-02-week-0-praneeth", "posts/2023/2023-06-02-week-0-tvcastillod", "posts/2023/2023-06-03-week-1-praneeth", "posts/2023/2023-06-05-week-1-joaodellagli", "posts/2023/2023-06-05-week-1-tvcastillod", "posts/2023/2023-06-11-week-2-praneeth", "posts/2023/2023-06-12-week-2-joaodellagli", "posts/2023/2023-06-12-week-2-tvcastillod", "posts/2023/2023-06-17-week-3-praneeth", "posts/2023/2023-06-19-week-3-joaodellagli", "posts/2023/2023-06-19-week-3-tvcastillod", "posts/2023/2023-06-24-week-4-praneeth", "posts/2023/2023-06-26-week-4-joaodellagli", "posts/2023/2023-06-27-week-4-tvcastillod", "posts/2023/2023-07-01-week-5-praneeth", "posts/2023/2023-07-03-week-5-joaodellagli", "posts/2023/2023-07-03-week-5-tvcastillod", "posts/2023/2023-07-08-week-6-praneeth", "posts/2023/2023-07-10-week-6-joaodellagli", "posts/2023/2023-07-10-week-6-tvcastillod", "posts/2023/2023-07-15-week-7-praneeth", "posts/2023/2023-07-17-week-7-joaodellagli", "posts/2023/2023-07-17-week-7-tvcastillod", "posts/2023/2023-07-22-week-8-praneeth", "posts/2023/2023-07-24-week-8-joaodellagli", "posts/2023/2023-07-25-week-8-tvcastillod", "posts/2023/2023-07-29-week-9-praneeth", "posts/2023/2023-07-31-week-9-joaodellagli", "posts/2023/2023-07-31-week-9-tvcastillod", "posts/2023/2023-08-05-week-10-praneeth", "posts/2023/2023-08-07-week-10-joaodellagli", "posts/2023/2023-08-08-week-10-tvcastillod", "posts/2023/2023-08-12-week-11-praneeth", "posts/2023/2023-08-14-week-11-joaodellagli", "posts/2023/2023-08-16-week-11-tvcastillod", "posts/2023/2023-08-19-week-12-praneeth", "posts/2023/2023-08-21-joaodellagli-final-report", "posts/2023/2023-08-21-week-12-joaodellagli", "posts/2023/2023-08-24-final-report-tvcastillod", "posts/2023/2023-08-24-week-12-tvcastillod", "posts/2023/2023-08-25-final-report-praneeth", "reference/fury", "reference/fury.actor", "reference/fury.actors", "reference/fury.animation", "reference/fury.colormap", "reference/fury.convert", "reference/fury.data", "reference/fury.decorators", "reference/fury.deprecator", "reference/fury.gltf", "reference/fury.io", "reference/fury.layout", "reference/fury.lib", "reference/fury.material", "reference/fury.molecular", "reference/fury.pick", "reference/fury.pkg_info", "reference/fury.primitive", "reference/fury.shaders", "reference/fury.stream", "reference/fury.transform", "reference/fury.ui", "reference/fury.utils", "reference/fury.window", "reference/index", "release-history", "release_notes/releasev0.1.0", "release_notes/releasev0.1.1", "release_notes/releasev0.1.3", "release_notes/releasev0.1.4", "release_notes/releasev0.10.0", "release_notes/releasev0.2.0", "release_notes/releasev0.3.0", "release_notes/releasev0.4.0", "release_notes/releasev0.5.1", "release_notes/releasev0.6.0", "release_notes/releasev0.6.1", "release_notes/releasev0.7.0", "release_notes/releasev0.7.1", "release_notes/releasev0.8.0", "release_notes/releasev0.9.0", "sg_execution_times", "symlink/contributing", "symlink/license"], "envversion": {"sphinx": 61, "sphinx.domains.c": 3, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 9, "sphinx.domains.index": 1, "sphinx.domains.javascript": 3, "sphinx.domains.math": 2, "sphinx.domains.python": 4, "sphinx.domains.rst": 2, "sphinx.domains.std": 2, "sphinx.ext.intersphinx": 1, "sphinx.ext.viewcode": 1}, "filenames": ["auto_examples/01_introductory/index.rst", "auto_examples/01_introductory/sg_execution_times.rst", "auto_examples/01_introductory/viz_arrow.rst", "auto_examples/01_introductory/viz_cone.rst", "auto_examples/01_introductory/viz_earth_animation.rst", "auto_examples/01_introductory/viz_earth_coordinates.rst", "auto_examples/01_introductory/viz_gltf.rst", "auto_examples/01_introductory/viz_gltf_animated.rst", "auto_examples/01_introductory/viz_gltf_export.rst", "auto_examples/01_introductory/viz_morphing.rst", "auto_examples/01_introductory/viz_multithread.rst", "auto_examples/01_introductory/viz_picking.rst", "auto_examples/01_introductory/viz_selection.rst", "auto_examples/01_introductory/viz_skinning.rst", "auto_examples/01_introductory/viz_slice.rst", "auto_examples/01_introductory/viz_solar_system.rst", "auto_examples/01_introductory/viz_sphere.rst", "auto_examples/01_introductory/viz_spiky.rst", "auto_examples/01_introductory/viz_surfaces.rst", "auto_examples/01_introductory/viz_texture.rst", "auto_examples/01_introductory/viz_timers.rst", "auto_examples/04_demos/collision-particles.rst", "auto_examples/04_demos/index.rst", "auto_examples/04_demos/sg_execution_times.rst", "auto_examples/04_demos/viz_advanced.rst", "auto_examples/04_demos/viz_animated_surfaces.rst", "auto_examples/04_demos/viz_brownian_motion.rst", "auto_examples/04_demos/viz_bundles.rst", "auto_examples/04_demos/viz_dt_ellipsoids.rst", "auto_examples/04_demos/viz_emwave_animation.rst", "auto_examples/04_demos/viz_fiber_odf.rst", "auto_examples/04_demos/viz_fine_tuning_gl_context.rst", "auto_examples/04_demos/viz_fractals.rst", "auto_examples/04_demos/viz_helical_motion.rst", "auto_examples/04_demos/viz_markers.rst", "auto_examples/04_demos/viz_network.rst", "auto_examples/04_demos/viz_network_animated.rst", "auto_examples/04_demos/viz_pbr_interactive.rst", "auto_examples/04_demos/viz_play_video.rst", "auto_examples/04_demos/viz_roi_contour.rst", "auto_examples/04_demos/viz_tesseract.rst", "auto_examples/07_ui/index.rst", "auto_examples/07_ui/sg_execution_times.rst", "auto_examples/07_ui/viz_buttons.rst", "auto_examples/07_ui/viz_card.rst", "auto_examples/07_ui/viz_card_sprite_sheet.rst", "auto_examples/07_ui/viz_check_boxes.rst", "auto_examples/07_ui/viz_combobox.rst", "auto_examples/07_ui/viz_drawpanel.rst", "auto_examples/07_ui/viz_layout.rst", "auto_examples/07_ui/viz_radio_buttons.rst", "auto_examples/07_ui/viz_shapes.rst", "auto_examples/07_ui/viz_spinbox.rst", "auto_examples/07_ui/viz_tab.rst", "auto_examples/07_ui/viz_ui.rst", "auto_examples/07_ui/viz_ui_listbox.rst", "auto_examples/07_ui/viz_ui_slider.rst", "auto_examples/10_animation/index.rst", "auto_examples/10_animation/sg_execution_times.rst", "auto_examples/10_animation/viz_bezier_interpolator.rst", "auto_examples/10_animation/viz_camera.rst", "auto_examples/10_animation/viz_color_interpolators.rst", "auto_examples/10_animation/viz_custom_interpolator.rst", "auto_examples/10_animation/viz_hierarchical_animation.rst", "auto_examples/10_animation/viz_introduction.rst", "auto_examples/10_animation/viz_robot_arm_animation.rst", "auto_examples/10_animation/viz_spline_interpolator.rst", "auto_examples/10_animation/viz_timeline.rst", "auto_examples/10_animation/viz_using_time_equations.rst", "auto_examples/13_shaders/index.rst", "auto_examples/13_shaders/sg_execution_times.rst", "auto_examples/13_shaders/viz_billboard_sdf_spheres.rst", "auto_examples/13_shaders/viz_pbr_spheres.rst", "auto_examples/13_shaders/viz_principled_spheres.rst", "auto_examples/13_shaders/viz_sdf_cylinder.rst", "auto_examples/13_shaders/viz_sdfactor.rst", "auto_examples/13_shaders/viz_shader.rst", "auto_examples/17_pybullet/index.rst", "auto_examples/17_pybullet/sg_execution_times.rst", "auto_examples/17_pybullet/viz_ball_collide.rst", "auto_examples/17_pybullet/viz_brick_wall.rst", "auto_examples/17_pybullet/viz_chain.rst", "auto_examples/17_pybullet/viz_domino.rst", "auto_examples/17_pybullet/viz_wrecking_ball.rst", "auto_examples/20_stream/index.rst", "auto_examples/20_stream/sg_execution_times.rst", "auto_examples/20_stream/viz_interaction.rst", "auto_examples/20_stream/viz_no_interaction.rst", "auto_examples/20_stream/viz_widget.rst", "auto_examples/index.rst", "auto_examples/sg_execution_times.rst", "blog.rst", "community.rst", "fury-pybullet.rst", "getting_started.rst", "index.rst", "installation.rst", "introduction.rst", "posts/2018/2018-09-21-release-announcement.rst", "posts/2018/2018-10-31-release-announcement.rst", "posts/2018/2018-11-26-release-announcement.rst", "posts/2019/2019-03-08-release-announcement.rst", "posts/2019/2019-06-19-brain-art.rst", "posts/2019/2019-08-02-release-announcement.rst", "posts/2019/2019-10-29-release-announcement.rst", "posts/2020/2020-01-05-gsoc.rst", "posts/2020/2020-04-09-release-announcement.rst", "posts/2020/2020-05-30-week-1-lenix.rst", "posts/2020/2020-05-30-week-1-soham.rst", "posts/2020/2020-06-07-week-2-lenix.rst", "posts/2020/2020-06-07-week-2-soham.rst", "posts/2020/2020-06-14-week-3-lenix.rst", "posts/2020/2020-06-14-week-3-soham.rst", "posts/2020/2020-06-21-week-4-lenix.rst", "posts/2020/2020-06-21-week-4-soham.rst", "posts/2020/2020-06-28-week-5-lenix.rst", "posts/2020/2020-06-28-week-5-soham.rst", "posts/2020/2020-07-05-week-6-lenix.rst", "posts/2020/2020-07-05-week-6-soham.rst", "posts/2020/2020-07-12-week-7-soham.rst", "posts/2020/2020-07-13-week-7-lenix.rst", "posts/2020/2020-07-19-week-8-soham.rst", "posts/2020/2020-07-20-release-announcement.rst", "posts/2020/2020-07-20-week-8-lenix.rst", "posts/2020/2020-07-26-week-9-soham.rst", "posts/2020/2020-07-27-week-9-lenix.rst", "posts/2020/2020-08-02-week-10-lenix.rst", "posts/2020/2020-08-02-week-10-soham.rst", "posts/2020/2020-08-09-week-11-lenix.rst", "posts/2020/2020-08-09-week-11-soham.rst", "posts/2020/2020-08-16-week-12-soham.rst", "posts/2020/2020-08-17-week-12-lenix.rst", "posts/2020/2020-08-18-release-announcement.rst", "posts/2020/2020-08-23-week-13-soham.rst", "posts/2020/2020-08-24-final-work-lenix.rst", "posts/2020/2020-08-24-final-work-soham.rst", "posts/2020/2020-08-24-week-13-lenix.rst", "posts/2021/2021-03-09-gsoc.rst", "posts/2021/2021-03-13-release-announcement.rst", "posts/2021/2021-06-08-gsoc-devmessias-1.rst", "posts/2021/2021-06-08-week-1-antriksh.rst", "posts/2021/2021-06-08-week-1-sajag.rst", "posts/2021/2021-06-12-gsoc-devmessias-2.rst", "posts/2021/2021-06-13-week-2-antriksh.rst", "posts/2021/2021-06-14-week-2-sajag.rst", "posts/2021/2021-06-21-gsoc-devmessias-3.rst", "posts/2021/2021-06-21-week-3-antriksh.rst", "posts/2021/2021-06-21-week-3-sajag.rst", "posts/2021/2021-06-28-gsoc-devmessias-4.rst", "posts/2021/2021-06-28-week-4-antriksh.rst", "posts/2021/2021-06-28-week-4-sajag.rst", "posts/2021/2021-07-05-gsoc-devmessias-5.rst", "posts/2021/2021-07-05-week-5-antriksh.rst", "posts/2021/2021-07-05-week-5-sajag.rst", "posts/2021/2021-07-12-gsoc-devmessias-6.rst", "posts/2021/2021-07-12-week-6-antriksh.rst", "posts/2021/2021-07-12-week-6-sajag.rst", "posts/2021/2021-07-19-gsoc-devmessias-7.rst", "posts/2021/2021-07-19-week-7-antriksh.rst", "posts/2021/2021-07-19-week-7-sajag.rst", "posts/2021/2021-07-26-gsoc-devmessias-8.rst", "posts/2021/2021-07-26-week-8-antriksh.rst", "posts/2021/2021-07-26-week-8-sajag.rst", "posts/2021/2021-08-02-gsoc-devmessias-9.rst", "posts/2021/2021-08-02-week-9-antriksh.rst", "posts/2021/2021-08-02-week-9-sajag.rst", "posts/2021/2021-08-03-release-announcement.rst", "posts/2021/2021-08-09-week-10-antriksh.rst", "posts/2021/2021-08-09-week-10-sajag.rst", "posts/2021/2021-08-16-week-11-antriksh.rst", "posts/2021/2021-08-16-week-11-sajag.rst", "posts/2021/2021-08-23-final-work-antriksh.rst", "posts/2021/2021-08-23-final-work-sajag.rst", "posts/2021/2021-08-23-gsoc-devmessias-final-report.rst", "posts/2021/2021-09-08-gsoc-devmessias-10.rst", "posts/2021/2021-16-08-gsoc-devmessias-11.rst", "posts/2022/2022-01-31-release-announcement.rst", "posts/2022/2022-02-01-gsoc.rst", "posts/2022/2022-05-23-first-post-mohamed.rst", "posts/2022/2022-05-24-my-journey-to-gsoc-2022-shivam.rst", "posts/2022/2022-05-25-pre-gsoc-journey-praneeth.rst", "posts/2022/2022-06-08-week-1-mohamed.rst", "posts/2022/2022-06-08-week-1-praneeth.rst", "posts/2022/2022-06-15-week-2-praneeth.rst", "posts/2022/2022-06-20-week1-shivam.rst", "posts/2022/2022-06-22-week-3-praneeth.rst", "posts/2022/2022-06-28-week-2-mohamed.rst", "posts/2022/2022-06-29-week-4-praneeth.rst", "posts/2022/2022-06-29-week2-shivam.rst", "posts/2022/2022-07-04-week-3-mohamed.rst", "posts/2022/2022-07-04-week3-shivam.rst", "posts/2022/2022-07-06-week-5-praneeth.rst", "posts/2022/2022-07-11-week-4-mohamed.rst", "posts/2022/2022-07-12-week4-shivam.rst", "posts/2022/2022-07-13-week-6-praneeth.rst", "posts/2022/2022-07-19-week-5-mohamed.rst", "posts/2022/2022-07-19-week5-shivam.rst", "posts/2022/2022-07-20-week-7-praneeth.rst", "posts/2022/2022-07-25-week-6-mohamed.rst", "posts/2022/2022-07-25-week-6-shivam.rst", "posts/2022/2022-07-27-week-8-praneeth.rst", "posts/2022/2022-08-01-week-7-mohamed.rst", "posts/2022/2022-08-01-week-7-shivam.rst", "posts/2022/2022-08-03-week-9-praneeth.rst", "posts/2022/2022-08-09-week-08-shivam.rst", "posts/2022/2022-08-09-week-8-mohamed.rst", "posts/2022/2022-08-10-week-10-praneeth.rst", "posts/2022/2022-08-16-week-9-mohamed.rst", "posts/2022/2022-08-17-week-09-shivam.rst", "posts/2022/2022-08-17-week-11-praneeth.rst", "posts/2022/2022-08-23-week-10-mohamed.rst", "posts/2022/2022-08-24-week-12-praneeth.rst", "posts/2022/2022-08-25-week-10-shivam.rst", "posts/2022/2022-08-30-week-11-mohamed.rst", "posts/2022/2022-08-31-week-11-shivam.rst", "posts/2022/2022-08-31-week-13-praneeth.rst", "posts/2022/2022-09-07-week-14-praneeth.rst", "posts/2022/2022-09-08-week-12-shivam.rst", "posts/2022/2022-09-14-week-15-praneeth.rst", "posts/2022/2022-09-15-week-13-blog.rst", "posts/2022/2022-09-20-week-13-mohamed.rst", "posts/2022/2022-09-21-week-16-praneeth.rst", "posts/2022/2022-09-28-week-14-mohamed.rst", "posts/2022/2022-09-28-week-14-shivam.rst", "posts/2022/2022-09-7-week-12-mohamed.rst", "posts/2023/2023-01-24-final-report-praneeth.rst", "posts/2023/2023-01-29-final-report-mohamed.rst", "posts/2023/2023-01-29-final-report-shivam.rst", "posts/2023/2023-02-01-gsoc.rst", "posts/2023/2023-04-14-release-announcement.rst", "posts/2023/2023-05-29-week-0-joaodellagli.rst", "posts/2023/2023-06-02-week-0-praneeth.rst", "posts/2023/2023-06-02-week-0-tvcastillod.rst", "posts/2023/2023-06-03-week-1-praneeth.rst", "posts/2023/2023-06-05-week-1-joaodellagli.rst", "posts/2023/2023-06-05-week-1-tvcastillod.rst", "posts/2023/2023-06-11-week-2-praneeth.rst", "posts/2023/2023-06-12-week-2-joaodellagli.rst", "posts/2023/2023-06-12-week-2-tvcastillod.rst", "posts/2023/2023-06-17-week-3-praneeth.rst", "posts/2023/2023-06-19-week-3-joaodellagli.rst", "posts/2023/2023-06-19-week-3-tvcastillod.rst", "posts/2023/2023-06-24-week-4-praneeth.rst", "posts/2023/2023-06-26-week-4-joaodellagli.rst", "posts/2023/2023-06-27-week-4-tvcastillod.rst", "posts/2023/2023-07-01-week-5-praneeth.rst", "posts/2023/2023-07-03-week-5-joaodellagli.rst", "posts/2023/2023-07-03-week-5-tvcastillod.rst", "posts/2023/2023-07-08-week-6-praneeth.rst", "posts/2023/2023-07-10-week-6-joaodellagli.rst", "posts/2023/2023-07-10-week-6-tvcastillod.rst", "posts/2023/2023-07-15-week-7-praneeth.rst", "posts/2023/2023-07-17-week-7-joaodellagli.rst", "posts/2023/2023-07-17-week-7-tvcastillod.rst", "posts/2023/2023-07-22-week-8-praneeth.rst", "posts/2023/2023-07-24-week-8-joaodellagli.rst", "posts/2023/2023-07-25-week-8-tvcastillod.rst", "posts/2023/2023-07-29-week-9-praneeth.rst", "posts/2023/2023-07-31-week-9-joaodellagli.rst", "posts/2023/2023-07-31-week-9-tvcastillod.rst", "posts/2023/2023-08-05-week-10-praneeth.rst", "posts/2023/2023-08-07-week-10-joaodellagli.rst", "posts/2023/2023-08-08-week-10-tvcastillod.rst", "posts/2023/2023-08-12-week-11-praneeth.rst", "posts/2023/2023-08-14-week-11-joaodellagli.rst", "posts/2023/2023-08-16-week-11-tvcastillod.rst", "posts/2023/2023-08-19-week-12-praneeth.rst", "posts/2023/2023-08-21-joaodellagli-final-report.rst", "posts/2023/2023-08-21-week-12-joaodellagli.rst", "posts/2023/2023-08-24-final-report-tvcastillod.rst", "posts/2023/2023-08-24-week-12-tvcastillod.rst", "posts/2023/2023-08-25-final-report-praneeth.rst", "reference/fury.rst", "reference/fury.actor.rst", "reference/fury.actors.rst", "reference/fury.animation.rst", "reference/fury.colormap.rst", "reference/fury.convert.rst", "reference/fury.data.rst", "reference/fury.decorators.rst", "reference/fury.deprecator.rst", "reference/fury.gltf.rst", "reference/fury.io.rst", "reference/fury.layout.rst", "reference/fury.lib.rst", "reference/fury.material.rst", "reference/fury.molecular.rst", "reference/fury.pick.rst", "reference/fury.pkg_info.rst", "reference/fury.primitive.rst", "reference/fury.shaders.rst", "reference/fury.stream.rst", "reference/fury.transform.rst", "reference/fury.ui.rst", "reference/fury.utils.rst", "reference/fury.window.rst", "reference/index.rst", "release-history.rst", "release_notes/releasev0.1.0.rst", "release_notes/releasev0.1.1.rst", "release_notes/releasev0.1.3.rst", "release_notes/releasev0.1.4.rst", "release_notes/releasev0.10.0.rst", "release_notes/releasev0.2.0.rst", "release_notes/releasev0.3.0.rst", "release_notes/releasev0.4.0.rst", "release_notes/releasev0.5.1.rst", "release_notes/releasev0.6.0.rst", "release_notes/releasev0.6.1.rst", "release_notes/releasev0.7.0.rst", "release_notes/releasev0.7.1.rst", "release_notes/releasev0.8.0.rst", "release_notes/releasev0.9.0.rst", "sg_execution_times.rst", "symlink/contributing.rst", "symlink/license.rst"], "indexentries": {"__init__() (fury.actor.container method)": [[273, "fury.actor.Container.__init__", false]], "__init__() (fury.actors.odf_slicer.odfsliceractor method)": [[274, "fury.actors.odf_slicer.OdfSlicerActor.__init__", false]], "__init__() (fury.actors.peak.peakactor method)": [[274, "fury.actors.peak.PeakActor.__init__", false]], "__init__() (fury.animation.animation.animation method)": [[275, "fury.animation.animation.Animation.__init__", false]], "__init__() (fury.animation.animation.cameraanimation method)": [[275, "fury.animation.animation.CameraAnimation.__init__", false]], "__init__() (fury.animation.timeline.timeline method)": [[275, "fury.animation.timeline.Timeline.__init__", false]], "__init__() (fury.deprecator.argsdeprecationwarning method)": [[280, "fury.deprecator.ArgsDeprecationWarning.__init__", false]], "__init__() (fury.deprecator.expireddeprecationerror method)": [[280, "fury.deprecator.ExpiredDeprecationError.__init__", false]], "__init__() (fury.gltf.gltf method)": [[281, "fury.gltf.glTF.__init__", false]], "__init__() (fury.layout.gridlayout method)": [[283, "fury.layout.GridLayout.__init__", false]], "__init__() (fury.layout.horizontallayout method)": [[283, "fury.layout.HorizontalLayout.__init__", false]], "__init__() (fury.layout.layout method)": [[283, "fury.layout.Layout.__init__", false]], "__init__() (fury.layout.verticallayout method)": [[283, "fury.layout.VerticalLayout.__init__", false]], "__init__() (fury.layout.xlayout method)": [[283, "fury.layout.XLayout.__init__", false]], "__init__() (fury.layout.ylayout method)": [[283, "fury.layout.YLayout.__init__", false]], "__init__() (fury.layout.zlayout method)": [[283, "fury.layout.ZLayout.__init__", false]], "__init__() (fury.molecular.molecule method)": [[286, "fury.molecular.Molecule.__init__", false]], "__init__() (fury.molecular.ptable method)": [[286, "fury.molecular.PTable.__init__", false]], "__init__() (fury.pick.pickingmanager method)": [[287, "fury.pick.PickingManager.__init__", false]], "__init__() (fury.pick.selectionmanager method)": [[287, "fury.pick.SelectionManager.__init__", false]], "__init__() (fury.stream.client.furystreamclient method)": [[291, "fury.stream.client.FuryStreamClient.__init__", false]], "__init__() (fury.stream.client.furystreaminteraction method)": [[291, "fury.stream.client.FuryStreamInteraction.__init__", false]], "__init__() (fury.stream.server.main.rtcserver method)": [[291, "fury.stream.server.main.RTCServer.__init__", false]], "__init__() (fury.stream.tools.arraycircularqueue method)": [[291, "fury.stream.tools.ArrayCircularQueue.__init__", false]], "__init__() (fury.stream.tools.genericcircularqueue method)": [[291, "fury.stream.tools.GenericCircularQueue.__init__", false]], "__init__() (fury.stream.tools.genericimagebuffermanager method)": [[291, "fury.stream.tools.GenericImageBufferManager.__init__", false]], "__init__() (fury.stream.tools.genericmultidimensionalbuffer method)": [[291, "fury.stream.tools.GenericMultiDimensionalBuffer.__init__", false]], "__init__() (fury.stream.tools.intervaltimer method)": [[291, "fury.stream.tools.IntervalTimer.__init__", false]], "__init__() (fury.stream.tools.intervaltimerthreading method)": [[291, "fury.stream.tools.IntervalTimerThreading.__init__", false]], "__init__() (fury.stream.tools.rawarrayimagebuffermanager method)": [[291, "fury.stream.tools.RawArrayImageBufferManager.__init__", false]], "__init__() (fury.stream.tools.rawarraymultidimensionalbuffer method)": [[291, "fury.stream.tools.RawArrayMultiDimensionalBuffer.__init__", false]], "__init__() (fury.stream.tools.sharedmemcircularqueue method)": [[291, "fury.stream.tools.SharedMemCircularQueue.__init__", false]], "__init__() (fury.stream.tools.sharedmemimagebuffermanager method)": [[291, "fury.stream.tools.SharedMemImageBufferManager.__init__", false]], "__init__() (fury.stream.tools.sharedmemmultidimensionalbuffer method)": [[291, "fury.stream.tools.SharedMemMultiDimensionalBuffer.__init__", false]], "__init__() (fury.stream.widget.widget method)": [[291, "fury.stream.widget.Widget.__init__", false]], "__init__() (fury.ui.containers.gridui method)": [[293, "fury.ui.containers.GridUI.__init__", false]], "__init__() (fury.ui.containers.imagecontainer2d method)": [[293, "fury.ui.containers.ImageContainer2D.__init__", false]], "__init__() (fury.ui.containers.panel2d method)": [[293, "fury.ui.containers.Panel2D.__init__", false]], "__init__() (fury.ui.containers.tabpanel2d method)": [[293, "fury.ui.containers.TabPanel2D.__init__", false]], "__init__() (fury.ui.containers.tabui method)": [[293, "fury.ui.containers.TabUI.__init__", false]], "__init__() (fury.ui.core.button2d method)": [[293, "fury.ui.core.Button2D.__init__", false]], "__init__() (fury.ui.core.disk2d method)": [[293, "fury.ui.core.Disk2D.__init__", false]], "__init__() (fury.ui.core.rectangle2d method)": [[293, "fury.ui.core.Rectangle2D.__init__", false]], "__init__() (fury.ui.core.textblock2d method)": [[293, "fury.ui.core.TextBlock2D.__init__", false]], "__init__() (fury.ui.core.ui method)": [[293, "fury.ui.core.UI.__init__", false]], "__init__() (fury.ui.elements.card2d method)": [[293, "fury.ui.elements.Card2D.__init__", false]], "__init__() (fury.ui.elements.checkbox method)": [[293, "fury.ui.elements.Checkbox.__init__", false]], "__init__() (fury.ui.elements.combobox2d method)": [[293, "fury.ui.elements.ComboBox2D.__init__", false]], "__init__() (fury.ui.elements.drawpanel method)": [[293, "fury.ui.elements.DrawPanel.__init__", false]], "__init__() (fury.ui.elements.drawshape method)": [[293, "fury.ui.elements.DrawShape.__init__", false]], "__init__() (fury.ui.elements.filemenu2d method)": [[293, "fury.ui.elements.FileMenu2D.__init__", false]], "__init__() (fury.ui.elements.linedoubleslider2d method)": [[293, "fury.ui.elements.LineDoubleSlider2D.__init__", false]], "__init__() (fury.ui.elements.lineslider2d method)": [[293, "fury.ui.elements.LineSlider2D.__init__", false]], "__init__() (fury.ui.elements.listbox2d method)": [[293, "fury.ui.elements.ListBox2D.__init__", false]], "__init__() (fury.ui.elements.listboxitem2d method)": [[293, "fury.ui.elements.ListBoxItem2D.__init__", false]], "__init__() (fury.ui.elements.option method)": [[293, "fury.ui.elements.Option.__init__", false]], "__init__() (fury.ui.elements.playbackpanel method)": [[293, "fury.ui.elements.PlaybackPanel.__init__", false]], "__init__() (fury.ui.elements.radiobutton method)": [[293, "fury.ui.elements.RadioButton.__init__", false]], "__init__() (fury.ui.elements.rangeslider method)": [[293, "fury.ui.elements.RangeSlider.__init__", false]], "__init__() (fury.ui.elements.ringslider2d method)": [[293, "fury.ui.elements.RingSlider2D.__init__", false]], "__init__() (fury.ui.elements.spinbox method)": [[293, "fury.ui.elements.SpinBox.__init__", false]], "__init__() (fury.ui.elements.textbox2d method)": [[293, "fury.ui.elements.TextBox2D.__init__", false]], "__init__() (fury.window.scene method)": [[295, "fury.window.Scene.__init__", false]], "__init__() (fury.window.showmanager method)": [[295, "fury.window.ShowManager.__init__", false]], "_cqueue() (in module fury.stream.constants)": [[291, "fury.stream.constants._CQUEUE", false]], "_cqueue_event_ids() (in module fury.stream.constants)": [[291, "fury.stream.constants._CQUEUE_EVENT_IDs", false]], "_cqueue_index_info() (in module fury.stream.constants)": [[291, "fury.stream.constants._CQUEUE_INDEX_INFO", false]], "_leading_white() (in module fury.deprecator)": [[280, "fury.deprecator._LEADING_WHITE", false]], "_tuple2axes() (in module fury.transform)": [[292, "fury.transform._TUPLE2AXES", false]], "active_color (fury.ui.elements.linedoubleslider2d attribute)": [[293, "fury.ui.elements.LineDoubleSlider2D.active_color", false]], "active_color (fury.ui.elements.lineslider2d attribute)": [[293, "fury.ui.elements.LineSlider2D.active_color", false]], "active_color (fury.ui.elements.ringslider2d attribute)": [[293, "fury.ui.elements.RingSlider2D.active_color", false]], "actor (fury.ui.core.textblock2d attribute)": [[293, "fury.ui.core.TextBlock2D.actor", false]], "actor (fury.ui.elements.textbox2d attribute)": [[293, "fury.ui.elements.TextBox2D.actor", false]], "actor (in module fury.lib)": [[284, "fury.lib.Actor", false]], "actor2d (in module fury.lib)": [[284, "fury.lib.Actor2D", false]], "actors (fury.animation.animation.animation attribute)": [[275, "fury.animation.animation.Animation.actors", false]], "actors (fury.animation.animation.animation property)": [[275, "id0", false]], "actors (fury.ui.core.ui property)": [[293, "fury.ui.core.UI.actors", false]], "actors() (fury.gltf.gltf method)": [[281, "fury.gltf.glTF.actors", false]], "add() (fury.actor.container method)": [[273, "fury.actor.Container.add", false]], "add() (fury.animation.animation.animation method)": [[275, "fury.animation.animation.Animation.add", false]], "add() (fury.window.scene method)": [[295, "fury.window.Scene.add", false]], "add_actor() (fury.animation.animation.animation method)": [[275, "fury.animation.animation.Animation.add_actor", false]], "add_animation() (fury.animation.timeline.timeline method)": [[275, "fury.animation.timeline.Timeline.add_animation", false]], "add_animation() (fury.window.showmanager method)": [[295, "fury.window.ShowManager.add_animation", false]], "add_atom() (in module fury.molecular)": [[286, "fury.molecular.add_atom", false]], "add_bond() (in module fury.molecular)": [[286, "fury.molecular.add_bond", false]], "add_callback() (fury.ui.core.ui method)": [[293, "fury.ui.core.UI.add_callback", false]], "add_character() (fury.ui.elements.textbox2d method)": [[293, "fury.ui.elements.TextBox2D.add_character", false]], "add_child_animation() (fury.animation.animation.animation method)": [[275, "fury.animation.animation.Animation.add_child_animation", false]], "add_element() (fury.ui.containers.panel2d method)": [[293, "fury.ui.containers.Panel2D.add_element", false]], "add_element() (fury.ui.containers.tabpanel2d method)": [[293, "fury.ui.containers.TabPanel2D.add_element", false]], "add_element() (fury.ui.containers.tabui method)": [[293, "fury.ui.containers.TabUI.add_element", false]], "add_iren_callback() (fury.window.showmanager method)": [[295, "fury.window.ShowManager.add_iren_callback", false]], "add_polydata_numeric_field() (in module fury.utils)": [[294, "fury.utils.add_polydata_numeric_field", false]], "add_shader_callback() (in module fury.shaders.base)": [[290, "fury.shaders.base.add_shader_callback", false]], "add_static_actor() (fury.animation.animation.animation method)": [[275, "fury.animation.animation.Animation.add_static_actor", false]], "add_timer_callback() (fury.window.showmanager method)": [[295, "fury.window.ShowManager.add_timer_callback", false]], "add_to_scene() (fury.actor.container method)": [[273, "fury.actor.Container.add_to_scene", false]], "add_to_scene() (fury.animation.animation.animation method)": [[275, "fury.animation.animation.Animation.add_to_scene", false]], "add_to_scene() (fury.animation.timeline.timeline method)": [[275, "fury.animation.timeline.Timeline.add_to_scene", false]], "add_to_scene() (fury.ui.core.ui method)": [[293, "fury.ui.core.UI.add_to_scene", false]], "add_to_scene_at() (fury.animation.animation.animation method)": [[275, "fury.animation.animation.Animation.add_to_scene_at", false]], "add_update_callback() (fury.animation.animation.animation method)": [[275, "fury.animation.animation.Animation.add_update_callback", false]], "add_window_callback() (fury.window.showmanager method)": [[295, "fury.window.ShowManager.add_window_callback", false]], "addposition() (fury.actor.container method)": [[273, "fury.actor.Container.AddPosition", false]], "algorithmoutput (in module fury.lib)": [[284, "fury.lib.AlgorithmOutput", false]], "alignment (fury.ui.containers.panel2d attribute)": [[293, "fury.ui.containers.Panel2D.alignment", false]], "analyze_scene() (in module fury.window)": [[295, "fury.window.analyze_scene", false]], "analyze_snapshot() (in module fury.window)": [[295, "fury.window.analyze_snapshot", false]], "anchor (fury.actor.container attribute)": [[273, "fury.actor.Container.anchor", false]], "angle (fury.ui.elements.ringslider2d property)": [[293, "fury.ui.elements.RingSlider2D.angle", false]], "animation (class in fury.animation.animation)": [[275, "fury.animation.animation.Animation", false]], "animations (fury.animation.timeline.timeline attribute)": [[275, "fury.animation.timeline.Timeline.animations", false]], "animations (fury.animation.timeline.timeline property)": [[275, "id4", false]], "animations (fury.window.showmanager property)": [[295, "fury.window.ShowManager.animations", false]], "antialiasing() (in module fury.window)": [[295, "fury.window.antialiasing", false]], "anticlockwise_rotation_x (fury.ui.containers.gridui attribute)": [[293, "fury.ui.containers.GridUI.ANTICLOCKWISE_ROTATION_X", false]], "anticlockwise_rotation_y (fury.ui.containers.gridui attribute)": [[293, "fury.ui.containers.GridUI.ANTICLOCKWISE_ROTATION_Y", false]], "append_item() (fury.ui.elements.combobox2d method)": [[293, "fury.ui.elements.ComboBox2D.append_item", false]], "apply() (fury.layout.layout method)": [[283, "fury.layout.Layout.apply", false]], "apply() (fury.layout.xlayout method)": [[283, "fury.layout.XLayout.apply", false]], "apply() (fury.layout.ylayout method)": [[283, "fury.layout.YLayout.apply", false]], "apply() (fury.layout.zlayout method)": [[283, "fury.layout.ZLayout.apply", false]], "apply_affine() (in module fury.utils)": [[294, "fury.utils.apply_affine", false]], "apply_affine_to_actor() (in module fury.utils)": [[294, "fury.utils.apply_affine_to_actor", false]], "apply_morph_vertices() (fury.gltf.gltf method)": [[281, "fury.gltf.glTF.apply_morph_vertices", false]], "apply_skin_matrix() (fury.gltf.gltf method)": [[281, "fury.gltf.glTF.apply_skin_matrix", false]], "apply_transformation() (in module fury.transform)": [[292, "fury.transform.apply_transformation", false]], "argsdeprecationwarning (class in fury.deprecator)": [[280, "fury.deprecator.ArgsDeprecationWarning", false]], "array_from_actor() (in module fury.utils)": [[294, "fury.utils.array_from_actor", false]], "arraycircularqueue (class in fury.stream.tools)": [[291, "fury.stream.tools.ArrayCircularQueue", false]], "arrow() (in module fury.actor)": [[273, "fury.actor.arrow", false]], "arrowsource (in module fury.lib)": [[284, "fury.lib.ArrowSource", false]], "asbytes() (in module fury.utils)": [[294, "fury.utils.asbytes", false]], "assembly (in module fury.lib)": [[284, "fury.lib.Assembly", false]], "async_get_jpeg() (fury.stream.tools.genericimagebuffermanager method)": [[291, "fury.stream.tools.GenericImageBufferManager.async_get_jpeg", false]], "atom_color() (fury.molecular.ptable method)": [[286, "fury.molecular.PTable.atom_color", false]], "atomic_number() (fury.molecular.ptable method)": [[286, "fury.molecular.PTable.atomic_number", false]], "atomic_radius() (fury.molecular.ptable method)": [[286, "fury.molecular.PTable.atomic_radius", false]], "atomic_symbol() (fury.molecular.ptable method)": [[286, "fury.molecular.PTable.atomic_symbol", false]], "attribute_to_actor() (in module fury.shaders.base)": [[290, "fury.shaders.base.attribute_to_actor", false]], "auto_font_scale (fury.ui.core.textblock2d attribute)": [[293, "fury.ui.core.TextBlock2D.auto_font_scale", false]], "auto_font_scale (fury.ui.core.textblock2d property)": [[293, "id4", false]], "axes() (in module fury.actor)": [[273, "fury.actor.axes", false]], "azimuth() (fury.window.scene method)": [[295, "fury.window.Scene.azimuth", false]], "background() (fury.window.scene method)": [[295, "fury.window.Scene.background", false]], "background_color (fury.ui.core.textblock2d property)": [[293, "fury.ui.core.TextBlock2D.background_color", false]], "ball_stick() (in module fury.molecular)": [[286, "fury.molecular.ball_stick", false]], "base (in module fury.colormap)": [[276, "fury.colormap.base", false], [276, "id15", false]], "bg_color (fury.ui.core.textblock2d attribute)": [[293, "fury.ui.core.TextBlock2D.bg_color", false]], "billboard() (in module fury.actor)": [[273, "fury.actor.billboard", false]], "bmpreader (in module fury.lib)": [[284, "fury.lib.BMPReader", false]], "bmpwriter (in module fury.lib)": [[284, "fury.lib.BMPWriter", false]], "body (fury.ui.elements.card2d property)": [[293, "fury.ui.elements.Card2D.body", false]], "body_box (fury.ui.elements.card2d attribute)": [[293, "fury.ui.elements.Card2D.body_box", false]], "bold (fury.ui.core.textblock2d attribute)": [[293, "fury.ui.core.TextBlock2D.bold", false]], "bold (fury.ui.core.textblock2d property)": [[293, "id5", false]], "border_color (fury.ui.containers.panel2d property)": [[293, "fury.ui.containers.Panel2D.border_color", false]], "border_width (fury.ui.containers.panel2d property)": [[293, "fury.ui.containers.Panel2D.border_width", false]], "bottom_disk_ratio (fury.ui.elements.linedoubleslider2d property)": [[293, "fury.ui.elements.LineDoubleSlider2D.bottom_disk_ratio", false]], "bottom_disk_value (fury.ui.elements.linedoubleslider2d property)": [[293, "fury.ui.elements.LineDoubleSlider2D.bottom_disk_value", false]], "bottom_y_position (fury.ui.elements.linedoubleslider2d property)": [[293, "fury.ui.elements.LineDoubleSlider2D.bottom_y_position", false]], "bottom_y_position (fury.ui.elements.lineslider2d property)": [[293, "fury.ui.elements.LineSlider2D.bottom_y_position", false]], "bounding_box() (in module fury.molecular)": [[286, "fury.molecular.bounding_box", false]], "box() (in module fury.actor)": [[273, "fury.actor.box", false]], "boys2rgb() (in module fury.colormap)": [[276, "fury.colormap.boys2rgb", false]], "buffer (fury.stream.tools.genericmultidimensionalbuffer property)": [[291, "fury.stream.tools.GenericMultiDimensionalBuffer.buffer", false]], "buffer_index (fury.stream.tools.genericimagebuffermanager property)": [[291, "fury.stream.tools.GenericImageBufferManager.buffer_index", false]], "butterflysubdivisionfilter (in module fury.lib)": [[284, "fury.lib.ButterflySubdivisionFilter", false]], "button2d (class in fury.ui.core)": [[293, "fury.ui.core.Button2D", false]], "cal_bounding_box() (fury.ui.elements.drawshape method)": [[293, "fury.ui.elements.DrawShape.cal_bounding_box", false]], "cal_bounding_box_2d() (in module fury.ui.helpers)": [[293, "fury.ui.helpers.cal_bounding_box_2d", false]], "cal_min_boundary_distance() (fury.ui.elements.drawpanel method)": [[293, "fury.ui.elements.DrawPanel.cal_min_boundary_distance", false]], "cal_size_from_message() (fury.ui.core.textblock2d method)": [[293, "fury.ui.core.TextBlock2D.cal_size_from_message", false]], "callback_stream_client() (in module fury.stream.client)": [[291, "fury.stream.client.callback_stream_client", false]], "camera (fury.animation.animation.cameraanimation attribute)": [[275, "fury.animation.animation.CameraAnimation.camera", false]], "camera (fury.animation.animation.cameraanimation property)": [[275, "id3", false]], "camera (in module fury.lib)": [[284, "fury.lib.Camera", false]], "camera() (fury.window.scene method)": [[295, "fury.window.Scene.camera", false]], "camera_direction() (fury.window.scene method)": [[295, "fury.window.Scene.camera_direction", false]], "camera_info() (fury.window.scene method)": [[295, "fury.window.Scene.camera_info", false]], "cameraanimation (class in fury.animation.animation)": [[275, "fury.animation.animation.CameraAnimation", false]], "card2d (class in fury.ui.elements)": [[293, "fury.ui.elements.Card2D", false]], "caret_pos (fury.ui.elements.textbox2d attribute)": [[293, "fury.ui.elements.TextBox2D.caret_pos", false]], "cart2sphere() (in module fury.transform)": [[292, "fury.transform.cart2sphere", false]], "cc() (in module fury.colormap)": [[276, "fury.colormap.cc", false]], "cellarray (in module fury.lib)": [[284, "fury.lib.CellArray", false]], "cellpicker (in module fury.lib)": [[284, "fury.lib.CellPicker", false]], "center (fury.ui.core.ui attribute)": [[293, "fury.ui.core.UI.center", false]], "center (fury.ui.core.ui property)": [[293, "id0", false]], "center (fury.ui.elements.drawshape property)": [[293, "fury.ui.elements.DrawShape.center", false]], "change_vertices_order() (in module fury.utils)": [[294, "fury.utils.change_vertices_order", false]], "check_overflow() (in module fury.ui.helpers)": [[293, "fury.ui.helpers.check_overflow", false]], "check_port_is_available() (in module fury.stream.widget)": [[291, "fury.stream.widget.check_port_is_available", false]], "check_sha() (in module fury.data.fetcher)": [[278, "fury.data.fetcher.check_sha", false]], "checkbox (class in fury.ui.elements)": [[293, "fury.ui.elements.Checkbox", false]], "child_animations (fury.animation.animation.animation property)": [[275, "fury.animation.animation.Animation.child_animations", false]], "clamp_mouse_position() (fury.ui.elements.drawpanel method)": [[293, "fury.ui.elements.DrawPanel.clamp_mouse_position", false]], "clamp_position() (fury.ui.elements.drawshape method)": [[293, "fury.ui.elements.DrawShape.clamp_position", false]], "cleanpolydata (in module fury.lib)": [[284, "fury.lib.CleanPolyData", false]], "cleanup() (fury.stream.client.furystreamclient method)": [[291, "fury.stream.client.FuryStreamClient.cleanup", false]], "cleanup() (fury.stream.client.furystreaminteraction method)": [[291, "fury.stream.client.FuryStreamInteraction.cleanup", false]], "cleanup() (fury.stream.tools.arraycircularqueue method)": [[291, "fury.stream.tools.ArrayCircularQueue.cleanup", false]], "cleanup() (fury.stream.tools.genericcircularqueue method)": [[291, "fury.stream.tools.GenericCircularQueue.cleanup", false]], "cleanup() (fury.stream.tools.genericimagebuffermanager method)": [[291, "fury.stream.tools.GenericImageBufferManager.cleanup", false]], "cleanup() (fury.stream.tools.genericmultidimensionalbuffer method)": [[291, "fury.stream.tools.GenericMultiDimensionalBuffer.cleanup", false]], "cleanup() (fury.stream.tools.rawarrayimagebuffermanager method)": [[291, "fury.stream.tools.RawArrayImageBufferManager.cleanup", false]], "cleanup() (fury.stream.tools.rawarraymultidimensionalbuffer method)": [[291, "fury.stream.tools.RawArrayMultiDimensionalBuffer.cleanup", false]], "cleanup() (fury.stream.tools.sharedmemcircularqueue method)": [[291, "fury.stream.tools.SharedMemCircularQueue.cleanup", false]], "cleanup() (fury.stream.tools.sharedmemimagebuffermanager method)": [[291, "fury.stream.tools.SharedMemImageBufferManager.cleanup", false]], "cleanup() (fury.stream.tools.sharedmemmultidimensionalbuffer method)": [[291, "fury.stream.tools.SharedMemMultiDimensionalBuffer.cleanup", false]], "cleanup() (fury.stream.widget.widget method)": [[291, "fury.stream.widget.Widget.cleanup", false]], "clear() (fury.actor.container method)": [[273, "fury.actor.Container.clear", false]], "clear() (fury.window.scene method)": [[295, "fury.window.Scene.clear", false]], "clear_selection() (fury.ui.elements.listbox2d method)": [[293, "fury.ui.elements.ListBox2D.clear_selection", false]], "clip_overflow() (in module fury.ui.helpers)": [[293, "fury.ui.helpers.clip_overflow", false]], "clockwise_rotation_x (fury.ui.containers.gridui attribute)": [[293, "fury.ui.containers.GridUI.CLOCKWISE_ROTATION_X", false]], "clockwise_rotation_y (fury.ui.containers.gridui attribute)": [[293, "fury.ui.containers.GridUI.CLOCKWISE_ROTATION_Y", false]], "cmp_pkg_version() (in module fury.deprecator)": [[280, "fury.deprecator.cmp_pkg_version", false]], "collapse_tab_ui() (fury.ui.containers.tabui method)": [[293, "fury.ui.containers.TabUI.collapse_tab_ui", false]], "color (fury.ui.containers.panel2d property)": [[293, "fury.ui.containers.Panel2D.color", false]], "color (fury.ui.containers.tabpanel2d property)": [[293, "fury.ui.containers.TabPanel2D.color", false]], "color (fury.ui.core.button2d property)": [[293, "fury.ui.core.Button2D.color", false]], "color (fury.ui.core.disk2d property)": [[293, "fury.ui.core.Disk2D.color", false]], "color (fury.ui.core.rectangle2d property)": [[293, "fury.ui.core.Rectangle2D.color", false]], "color (fury.ui.core.textblock2d attribute)": [[293, "fury.ui.core.TextBlock2D.color", false]], "color (fury.ui.core.textblock2d property)": [[293, "id6", false]], "color (fury.ui.elements.card2d property)": [[293, "fury.ui.elements.Card2D.color", false]], "color_check() (in module fury.utils)": [[294, "fury.utils.color_check", false]], "color_interpolator() (in module fury.animation.interpolator)": [[275, "fury.animation.interpolator.color_interpolator", false]], "colormap_lookup_table() (in module fury.colormap)": [[276, "fury.colormap.colormap_lookup_table", false]], "colors_from_actor() (in module fury.utils)": [[294, "fury.utils.colors_from_actor", false]], "combobox2d (class in fury.ui.elements)": [[293, "fury.ui.elements.ComboBox2D", false]], "command (in module fury.lib)": [[284, "fury.lib.Command", false]], "command_string (fury.stream.widget.widget property)": [[291, "fury.stream.widget.Widget.command_string", false]], "compose_shader() (in module fury.shaders.base)": [[290, "fury.shaders.base.compose_shader", false]], "compute_bonding() (in module fury.molecular)": [[286, "fury.molecular.compute_bonding", false]], "compute_bounds() (in module fury.utils)": [[294, "fury.utils.compute_bounds", false]], "compute_positions() (fury.layout.gridlayout method)": [[283, "fury.layout.GridLayout.compute_positions", false]], "compute_positions() (fury.layout.horizontallayout method)": [[283, "fury.layout.HorizontalLayout.compute_positions", false]], "compute_positions() (fury.layout.layout method)": [[283, "fury.layout.Layout.compute_positions", false]], "compute_positions() (fury.layout.verticallayout method)": [[283, "fury.layout.VerticalLayout.compute_positions", false]], "compute_positions() (fury.layout.xlayout method)": [[283, "fury.layout.XLayout.compute_positions", false]], "compute_positions() (fury.layout.ylayout method)": [[283, "fury.layout.YLayout.compute_positions", false]], "compute_positions() (fury.layout.zlayout method)": [[283, "fury.layout.ZLayout.compute_positions", false]], "compute_sizes() (fury.layout.gridlayout method)": [[283, "fury.layout.GridLayout.compute_sizes", false]], "cone() (in module fury.actor)": [[273, "fury.actor.cone", false]], "conesource (in module fury.lib)": [[284, "fury.lib.ConeSource", false]], "container (class in fury.actor)": [[273, "fury.actor.Container", false]], "content_panel (fury.ui.containers.tabpanel2d attribute)": [[293, "fury.ui.containers.TabPanel2D.content_panel", false]], "contour_from_label() (in module fury.actor)": [[273, "fury.actor.contour_from_label", false]], "contour_from_roi() (in module fury.actor)": [[273, "fury.actor.contour_from_roi", false]], "contourfilter (in module fury.lib)": [[284, "fury.lib.ContourFilter", false]], "coord_to_ratio() (fury.ui.elements.linedoubleslider2d method)": [[293, "fury.ui.elements.LineDoubleSlider2D.coord_to_ratio", false]], "copyfileobj_withprogress() (in module fury.data.fetcher)": [[278, "fury.data.fetcher.copyfileobj_withprogress", false]], "create_colormap() (in module fury.colormap)": [[276, "fury.colormap.create_colormap", false]], "create_mem_resource() (fury.stream.tools.arraycircularqueue method)": [[291, "fury.stream.tools.ArrayCircularQueue.create_mem_resource", false]], "create_mem_resource() (fury.stream.tools.genericcircularqueue method)": [[291, "fury.stream.tools.GenericCircularQueue.create_mem_resource", false]], "create_mem_resource() (fury.stream.tools.genericimagebuffermanager method)": [[291, "fury.stream.tools.GenericImageBufferManager.create_mem_resource", false]], "create_mem_resource() (fury.stream.tools.genericmultidimensionalbuffer method)": [[291, "fury.stream.tools.GenericMultiDimensionalBuffer.create_mem_resource", false]], "create_mem_resource() (fury.stream.tools.rawarrayimagebuffermanager method)": [[291, "fury.stream.tools.RawArrayImageBufferManager.create_mem_resource", false]], "create_mem_resource() (fury.stream.tools.rawarraymultidimensionalbuffer method)": [[291, "fury.stream.tools.RawArrayMultiDimensionalBuffer.create_mem_resource", false]], "create_mem_resource() (fury.stream.tools.sharedmemcircularqueue method)": [[291, "fury.stream.tools.SharedMemCircularQueue.create_mem_resource", false]], "create_mem_resource() (fury.stream.tools.sharedmemimagebuffermanager method)": [[291, "fury.stream.tools.SharedMemImageBufferManager.create_mem_resource", false]], "create_mem_resource() (fury.stream.tools.sharedmemmultidimensionalbuffer method)": [[291, "fury.stream.tools.SharedMemMultiDimensionalBuffer.create_mem_resource", false]], "cross_section (fury.actors.peak.peakactor property)": [[274, "fury.actors.peak.PeakActor.cross_section", false]], "ctypes (in module fury.colormap)": [[276, "fury.colormap.ctypes", false], [276, "id14", false]], "cube() (in module fury.actor)": [[273, "fury.actor.cube", false]], "cubic_bezier_interpolator() (in module fury.animation.interpolator)": [[275, "fury.animation.interpolator.cubic_bezier_interpolator", false]], "cubic_spline_interpolator() (in module fury.animation.interpolator)": [[275, "fury.animation.interpolator.cubic_spline_interpolator", false]], "current_mode (fury.ui.elements.drawpanel property)": [[293, "fury.ui.elements.DrawPanel.current_mode", false]], "current_time (fury.ui.elements.playbackpanel property)": [[293, "fury.ui.elements.PlaybackPanel.current_time", false]], "current_time_str (fury.ui.elements.playbackpanel property)": [[293, "fury.ui.elements.PlaybackPanel.current_time_str", false]], "current_timestamp (fury.animation.animation.animation property)": [[275, "fury.animation.animation.Animation.current_timestamp", false]], "current_timestamp (fury.animation.timeline.timeline property)": [[275, "fury.animation.timeline.Timeline.current_timestamp", false]], "cylinder() (in module fury.actor)": [[273, "fury.actor.cylinder", false]], "cylindersource (in module fury.lib)": [[284, "fury.lib.CylinderSource", false]], "data (in module fury.colormap)": [[276, "fury.colormap.data", false], [276, "id2", false]], "data_dir() (in module fury.data)": [[278, "fury.data.DATA_DIR", false]], "dataobject (in module fury.lib)": [[284, "fury.lib.DataObject", false], [284, "id0", false]], "datasetattributes (in module fury.lib)": [[284, "fury.lib.DataSetAttributes", false]], "datasetmapper (in module fury.lib)": [[284, "fury.lib.DataSetMapper", false]], "decrement() (fury.ui.elements.spinbox method)": [[293, "fury.ui.elements.SpinBox.decrement", false]], "decrement_callback() (fury.ui.elements.spinbox method)": [[293, "fury.ui.elements.SpinBox.decrement_callback", false]], "deep_copy_molecule() (in module fury.molecular)": [[286, "fury.molecular.deep_copy_molecule", false]], "default_color (fury.ui.elements.linedoubleslider2d attribute)": [[293, "fury.ui.elements.LineDoubleSlider2D.default_color", false]], "default_color (fury.ui.elements.lineslider2d attribute)": [[293, "fury.ui.elements.LineSlider2D.default_color", false]], "default_color (fury.ui.elements.ringslider2d attribute)": [[293, "fury.ui.elements.RingSlider2D.default_color", false]], "deprecate_with_version() (in module fury.deprecator)": [[280, "fury.deprecator.deprecate_with_version", false]], "deprecated_params() (in module fury.deprecator)": [[280, "fury.deprecator.deprecated_params", false]], "dequeue() (fury.stream.tools.arraycircularqueue method)": [[291, "fury.stream.tools.ArrayCircularQueue.dequeue", false]], "dequeue() (fury.stream.tools.genericcircularqueue method)": [[291, "fury.stream.tools.GenericCircularQueue.dequeue", false]], "dequeue() (fury.stream.tools.sharedmemcircularqueue method)": [[291, "fury.stream.tools.SharedMemCircularQueue.dequeue", false]], "deselect() (fury.ui.elements.listboxitem2d method)": [[293, "fury.ui.elements.ListBoxItem2D.deselect", false]], "deselect() (fury.ui.elements.option method)": [[293, "fury.ui.elements.Option.deselect", false]], "destroy_timer() (fury.window.showmanager method)": [[295, "fury.window.ShowManager.destroy_timer", false]], "destroy_timers() (fury.window.showmanager method)": [[295, "fury.window.ShowManager.destroy_timers", false]], "directory_click_callback() (fury.ui.elements.filemenu2d method)": [[293, "fury.ui.elements.FileMenu2D.directory_click_callback", false]], "disable_warnings() (in module fury)": [[272, "fury.disable_warnings", false]], "disk() (in module fury.actor)": [[273, "fury.actor.disk", false]], "disk2d (class in fury.ui.core)": [[293, "fury.ui.core.Disk2D", false]], "disksource (in module fury.lib)": [[284, "fury.lib.DiskSource", false]], "display() (fury.actors.odf_slicer.odfsliceractor method)": [[274, "fury.actors.odf_slicer.OdfSlicerActor.display", false]], "display() (fury.stream.widget.widget method)": [[291, "fury.stream.widget.Widget.display", false]], "display_cross_section() (fury.actors.peak.peakactor method)": [[274, "fury.actors.peak.PeakActor.display_cross_section", false]], "display_extent() (fury.actors.odf_slicer.odfsliceractor method)": [[274, "fury.actors.odf_slicer.OdfSlicerActor.display_extent", false]], "display_extent() (fury.actors.peak.peakactor method)": [[274, "fury.actors.peak.PeakActor.display_extent", false]], "distinguishable_colormap() (in module fury.colormap)": [[276, "fury.colormap.distinguishable_colormap", false]], "doctest_skip_parser() (in module fury.decorators)": [[279, "fury.decorators.doctest_skip_parser", false]], "dolly() (fury.window.scene method)": [[295, "fury.window.Scene.dolly", false]], "dot() (in module fury.actor)": [[273, "fury.actor.dot", false]], "dots() (in module fury.actor)": [[273, "fury.actor.dots", false]], "double_cone() (in module fury.actors.tensor)": [[274, "fury.actors.tensor.double_cone", false]], "doublearray (in module fury.lib)": [[284, "fury.lib.DoubleArray", false]], "down_button_callback() (fury.ui.elements.listbox2d method)": [[293, "fury.ui.elements.ListBox2D.down_button_callback", false]], "draw_shape() (fury.ui.elements.drawpanel method)": [[293, "fury.ui.elements.DrawPanel.draw_shape", false]], "drawpanel (class in fury.ui.elements)": [[293, "fury.ui.elements.DrawPanel", false]], "drawshape (class in fury.ui.elements)": [[293, "fury.ui.elements.DrawShape", false]], "drop_down_button (fury.ui.elements.combobox2d attribute)": [[293, "fury.ui.elements.ComboBox2D.drop_down_button", false]], "drop_down_menu (fury.ui.elements.combobox2d attribute)": [[293, "fury.ui.elements.ComboBox2D.drop_down_menu", false]], "dtype (in module fury.colormap)": [[276, "fury.colormap.dtype", false], [276, "id3", false]], "duration (fury.animation.animation.animation property)": [[275, "fury.animation.animation.Animation.duration", false]], "duration (fury.animation.timeline.timeline property)": [[275, "fury.animation.timeline.Timeline.duration", false]], "dynamic_bbox (fury.ui.core.textblock2d attribute)": [[293, "fury.ui.core.TextBlock2D.dynamic_bbox", false]], "dynamic_bbox (fury.ui.core.textblock2d property)": [[293, "id7", false]], "edit_mode() (fury.ui.elements.textbox2d method)": [[293, "fury.ui.elements.TextBox2D.edit_mode", false]], "element (fury.ui.elements.listboxitem2d property)": [[293, "fury.ui.elements.ListBoxItem2D.element", false]], "element_name() (fury.molecular.ptable method)": [[286, "fury.molecular.PTable.element_name", false]], "elevation() (fury.window.scene method)": [[295, "fury.window.Scene.elevation", false]], "ellipsoid() (in module fury.actor)": [[273, "fury.actor.ellipsoid", false]], "enable_stereo() (in module fury.window)": [[295, "fury.window.enable_stereo", false]], "enable_warnings() (in module fury)": [[272, "fury.enable_warnings", false]], "enqueue() (fury.stream.tools.arraycircularqueue method)": [[291, "fury.stream.tools.ArrayCircularQueue.enqueue", false]], "enqueue() (fury.stream.tools.genericcircularqueue method)": [[291, "fury.stream.tools.GenericCircularQueue.enqueue", false]], "enqueue() (fury.stream.tools.sharedmemcircularqueue method)": [[291, "fury.stream.tools.SharedMemCircularQueue.enqueue", false]], "euclidean_distances() (in module fury.animation.helpers)": [[275, "fury.animation.helpers.euclidean_distances", false]], "euler_matrix() (in module fury.transform)": [[292, "fury.transform.euler_matrix", false]], "event_position() (fury.pick.pickingmanager method)": [[287, "fury.pick.PickingManager.event_position", false]], "event_position() (fury.pick.selectionmanager method)": [[287, "fury.pick.SelectionManager.event_position", false]], "exit() (fury.window.showmanager method)": [[295, "fury.window.ShowManager.exit", false]], "expireddeprecationerror (class in fury.deprecator)": [[280, "fury.deprecator.ExpiredDeprecationError", false]], "export_scene() (in module fury.gltf)": [[281, "fury.gltf.export_scene", false]], "extensions (fury.ui.elements.filemenu2d attribute)": [[293, "fury.ui.elements.FileMenu2D.extensions", false]], "faces_from_sphere_vertices() (in module fury.primitive)": [[289, "fury.primitive.faces_from_sphere_vertices", false]], "fetch_data() (in module fury.data.fetcher)": [[278, "fury.data.fetcher.fetch_data", false]], "fetch_gltf() (in module fury.data.fetcher)": [[278, "fury.data.fetcher.fetch_gltf", false]], "fetch_viz_cubemaps() (in module fury.data.fetcher)": [[278, "fury.data.fetcher.fetch_viz_cubemaps", false]], "fetch_viz_dmri() (in module fury.data.fetcher)": [[278, "fury.data.fetcher.fetch_viz_dmri", false]], "fetch_viz_icons() (in module fury.data.fetcher)": [[278, "fury.data.fetcher.fetch_viz_icons", false]], "fetch_viz_models() (in module fury.data.fetcher)": [[278, "fury.data.fetcher.fetch_viz_models", false]], "fetch_viz_new_icons() (in module fury.data.fetcher)": [[278, "fury.data.fetcher.fetch_viz_new_icons", false]], "fetch_viz_textures() (in module fury.data.fetcher)": [[278, "fury.data.fetcher.fetch_viz_textures", false]], "fetch_viz_wiki_nw() (in module fury.data.fetcher)": [[278, "fury.data.fetcher.fetch_viz_wiki_nw", false]], "figure() (in module fury.actor)": [[273, "fury.actor.figure", false]], "filemenu2d (class in fury.ui.elements)": [[293, "fury.ui.elements.FileMenu2D", false]], "final_time (fury.ui.elements.playbackpanel property)": [[293, "fury.ui.elements.PlaybackPanel.final_time", false]], "fix_winding_order() (in module fury.utils)": [[294, "fury.utils.fix_winding_order", false]], "flags (in module fury.colormap)": [[276, "fury.colormap.flags", false], [276, "id4", false]], "flat (in module fury.colormap)": [[276, "fury.colormap.flat", false], [276, "id5", false]], "floatarray (in module fury.lib)": [[284, "fury.lib.FloatArray", false]], "follower (in module fury.lib)": [[284, "fury.lib.Follower", false]], "font_family (fury.ui.core.textblock2d attribute)": [[293, "fury.ui.core.TextBlock2D.font_family", false]], "font_family (fury.ui.core.textblock2d property)": [[293, "id8", false]], "font_size (fury.ui.core.textblock2d attribute)": [[293, "fury.ui.core.TextBlock2D.font_size", false]], "font_size (fury.ui.core.textblock2d property)": [[293, "id9", false]], "font_size (fury.ui.elements.checkbox property)": [[293, "fury.ui.elements.Checkbox.font_size", false]], "font_size (fury.ui.elements.option attribute)": [[293, "fury.ui.elements.Option.font_size", false]], "format_text() (fury.ui.elements.linedoubleslider2d method)": [[293, "fury.ui.elements.LineDoubleSlider2D.format_text", false]], "format_text() (fury.ui.elements.lineslider2d method)": [[293, "fury.ui.elements.LineSlider2D.format_text", false]], "format_text() (fury.ui.elements.ringslider2d method)": [[293, "fury.ui.elements.RingSlider2D.format_text", false]], "frame_rate (fury.window.showmanager property)": [[295, "fury.window.ShowManager.frame_rate", false]], "frustum() (in module fury.actor)": [[273, "fury.actor.frustum", false]], "fury": [[272, "module-fury", false]], "fury.actor": [[273, "module-fury.actor", false]], "fury.actors": [[274, "module-fury.actors", false]], "fury.actors.odf_slicer": [[274, "module-fury.actors.odf_slicer", false]], "fury.actors.peak": [[274, "module-fury.actors.peak", false]], "fury.actors.tensor": [[274, "module-fury.actors.tensor", false]], "fury.animation": [[275, "module-fury.animation", false]], "fury.animation.animation": [[275, "module-fury.animation.animation", false]], "fury.animation.helpers": [[275, "module-fury.animation.helpers", false]], "fury.animation.interpolator": [[275, "module-fury.animation.interpolator", false]], "fury.animation.timeline": [[275, "module-fury.animation.timeline", false]], "fury.colormap": [[276, "module-fury.colormap", false]], "fury.convert": [[277, "module-fury.convert", false]], "fury.data": [[278, "module-fury.data", false]], "fury.data.fetcher": [[278, "module-fury.data.fetcher", false]], "fury.decorators": [[279, "module-fury.decorators", false]], "fury.deprecator": [[280, "module-fury.deprecator", false]], "fury.gltf": [[281, "module-fury.gltf", false]], "fury.io": [[282, "module-fury.io", false]], "fury.layout": [[283, "module-fury.layout", false]], "fury.lib": [[284, "module-fury.lib", false]], "fury.material": [[285, "module-fury.material", false]], "fury.molecular": [[286, "module-fury.molecular", false]], "fury.pick": [[287, "module-fury.pick", false]], "fury.pkg_info": [[288, "module-fury.pkg_info", false]], "fury.primitive": [[289, "module-fury.primitive", false]], "fury.shaders": [[290, "module-fury.shaders", false]], "fury.shaders.base": [[290, "module-fury.shaders.base", false]], "fury.stream": [[291, "module-fury.stream", false]], "fury.stream.client": [[291, "module-fury.stream.client", false]], "fury.stream.constants": [[291, "module-fury.stream.constants", false]], "fury.stream.server": [[291, "module-fury.stream.server", false]], "fury.stream.server.async_app": [[291, "module-fury.stream.server.async_app", false]], "fury.stream.server.main": [[291, "module-fury.stream.server.main", false]], "fury.stream.tools": [[291, "module-fury.stream.tools", false]], "fury.stream.widget": [[291, "module-fury.stream.widget", false]], "fury.transform": [[292, "module-fury.transform", false]], "fury.ui": [[293, "module-fury.ui", false]], "fury.ui.containers": [[293, "module-fury.ui.containers", false]], "fury.ui.core": [[293, "module-fury.ui.core", false]], "fury.ui.elements": [[293, "module-fury.ui.elements", false]], "fury.ui.helpers": [[293, "module-fury.ui.helpers", false]], "fury.utils": [[294, "module-fury.utils", false]], "fury.window": [[295, "module-fury.window", false]], "furystreamclient (class in fury.stream.client)": [[291, "fury.stream.client.FuryStreamClient", false]], "furystreaminteraction (class in fury.stream.client)": [[291, "fury.stream.client.FuryStreamInteraction", false]], "fxaa_off() (fury.window.scene method)": [[295, "fury.window.Scene.fxaa_off", false]], "fxaa_on() (fury.window.scene method)": [[295, "fury.window.Scene.fxaa_on", false]], "generate_tmatrix() (fury.gltf.gltf method)": [[281, "fury.gltf.glTF.generate_tmatrix", false]], "genericcircularqueue (class in fury.stream.tools)": [[291, "fury.stream.tools.GenericCircularQueue", false]], "genericimagebuffermanager (class in fury.stream.tools)": [[291, "fury.stream.tools.GenericImageBufferManager", false]], "genericmultidimensionalbuffer (class in fury.stream.tools)": [[291, "fury.stream.tools.GenericMultiDimensionalBuffer", false]], "get_acc_data() (fury.gltf.gltf method)": [[281, "fury.gltf.glTF.get_acc_data", false]], "get_actor_from_polydata() (in module fury.utils)": [[294, "fury.utils.get_actor_from_polydata", false]], "get_actor_from_polymapper() (in module fury.utils)": [[294, "fury.utils.get_actor_from_polymapper", false]], "get_actor_from_primitive() (in module fury.utils)": [[294, "fury.utils.get_actor_from_primitive", false]], "get_all_atomic_numbers() (in module fury.molecular)": [[286, "fury.molecular.get_all_atomic_numbers", false]], "get_all_atomic_positions() (in module fury.molecular)": [[286, "fury.molecular.get_all_atomic_positions", false]], "get_all_bond_orders() (in module fury.molecular)": [[286, "fury.molecular.get_all_bond_orders", false]], "get_all_file_names() (fury.ui.elements.filemenu2d method)": [[293, "fury.ui.elements.FileMenu2D.get_all_file_names", false]], "get_animations() (fury.gltf.gltf method)": [[281, "fury.gltf.glTF.get_animations", false]], "get_app() (in module fury.stream.server.async_app)": [[291, "fury.stream.server.async_app.get_app", false]], "get_atomic_number() (in module fury.molecular)": [[286, "fury.molecular.get_atomic_number", false]], "get_atomic_position() (in module fury.molecular)": [[286, "fury.molecular.get_atomic_position", false]], "get_bond_order() (in module fury.molecular)": [[286, "fury.molecular.get_bond_order", false]], "get_bounding_box_sizes() (in module fury.utils)": [[294, "fury.utils.get_bounding_box_sizes", false]], "get_bounds() (in module fury.utils)": [[294, "fury.utils.get_bounds", false]], "get_buff_array() (fury.gltf.gltf method)": [[281, "fury.gltf.glTF.get_buff_array", false]], "get_camera() (fury.window.scene method)": [[295, "fury.window.Scene.get_camera", false]], "get_cells_shape() (fury.layout.gridlayout method)": [[283, "fury.layout.GridLayout.get_cells_shape", false]], "get_cells_shape() (fury.layout.xlayout method)": [[283, "fury.layout.XLayout.get_cells_shape", false]], "get_cells_shape() (fury.layout.ylayout method)": [[283, "fury.layout.YLayout.get_cells_shape", false]], "get_cells_shape() (fury.layout.zlayout method)": [[283, "fury.layout.ZLayout.get_cells_shape", false]], "get_cmap() (in module fury.colormap)": [[276, "fury.colormap.get_cmap", false]], "get_color() (fury.animation.animation.animation method)": [[275, "fury.animation.animation.Animation.get_color", false]], "get_current_frame() (fury.stream.tools.genericimagebuffermanager method)": [[291, "fury.stream.tools.GenericImageBufferManager.get_current_frame", false]], "get_current_value() (fury.animation.animation.animation method)": [[275, "fury.animation.animation.Animation.get_current_value", false]], "get_directory_names() (fury.ui.elements.filemenu2d method)": [[293, "fury.ui.elements.FileMenu2D.get_directory_names", false]], "get_file_names() (fury.ui.elements.filemenu2d method)": [[293, "fury.ui.elements.FileMenu2D.get_file_names", false]], "get_focal() (fury.animation.animation.cameraanimation method)": [[275, "fury.animation.animation.CameraAnimation.get_focal", false]], "get_grid_cells_position() (in module fury.utils)": [[294, "fury.utils.get_grid_cells_position", false]], "get_info() (in module fury)": [[272, "fury.get_info", false]], "get_joint_actors() (fury.gltf.gltf method)": [[281, "fury.gltf.glTF.get_joint_actors", false]], "get_jpeg() (fury.stream.tools.genericimagebuffermanager method)": [[291, "fury.stream.tools.GenericImageBufferManager.get_jpeg", false]], "get_keyframes() (fury.animation.animation.animation method)": [[275, "fury.animation.animation.Animation.get_keyframes", false]], "get_materials() (fury.gltf.gltf method)": [[281, "fury.gltf.glTF.get_materials", false]], "get_matrix_from_sampler() (fury.gltf.gltf method)": [[281, "fury.gltf.glTF.get_matrix_from_sampler", false]], "get_morph_data() (fury.gltf.gltf method)": [[281, "fury.gltf.glTF.get_morph_data", false]], "get_next_timestamp() (in module fury.animation.helpers)": [[275, "fury.animation.helpers.get_next_timestamp", false]], "get_opacity() (fury.animation.animation.animation method)": [[275, "fury.animation.animation.Animation.get_opacity", false]], "get_polydata_colors() (in module fury.utils)": [[294, "fury.utils.get_polydata_colors", false]], "get_polydata_field() (in module fury.utils)": [[294, "fury.utils.get_polydata_field", false]], "get_polydata_lines() (in module fury.utils)": [[294, "fury.utils.get_polydata_lines", false]], "get_polydata_normals() (in module fury.utils)": [[294, "fury.utils.get_polydata_normals", false]], "get_polydata_primitives_count() (in module fury.utils)": [[294, "fury.utils.get_polydata_primitives_count", false]], "get_polydata_tangents() (in module fury.utils)": [[294, "fury.utils.get_polydata_tangents", false]], "get_polydata_tcoord() (in module fury.utils)": [[294, "fury.utils.get_polydata_tcoord", false]], "get_polydata_triangles() (in module fury.utils)": [[294, "fury.utils.get_polydata_triangles", false]], "get_polydata_vertices() (in module fury.utils)": [[294, "fury.utils.get_polydata_vertices", false]], "get_polymapper_from_polydata() (in module fury.utils)": [[294, "fury.utils.get_polymapper_from_polydata", false]], "get_position() (fury.animation.animation.animation method)": [[275, "fury.animation.animation.Animation.get_position", false]], "get_previous_timestamp() (in module fury.animation.helpers)": [[275, "fury.animation.helpers.get_previous_timestamp", false]], "get_prim() (in module fury.gltf)": [[281, "fury.gltf.get_prim", false]], "get_rotation() (fury.animation.animation.animation method)": [[275, "fury.animation.animation.Animation.get_rotation", false]], "get_sampler_data() (fury.gltf.gltf method)": [[281, "fury.gltf.glTF.get_sampler_data", false]], "get_scale() (fury.animation.animation.animation method)": [[275, "fury.animation.animation.Animation.get_scale", false]], "get_skin_data() (fury.gltf.gltf method)": [[281, "fury.gltf.glTF.get_skin_data", false]], "get_start_end() (fury.stream.tools.genericmultidimensionalbuffer method)": [[291, "fury.stream.tools.GenericMultiDimensionalBuffer.get_start_end", false]], "get_texture() (fury.gltf.gltf method)": [[281, "fury.gltf.glTF.get_texture", false]], "get_time_tau() (in module fury.animation.helpers)": [[275, "fury.animation.helpers.get_time_tau", false]], "get_timestamps_from_keyframes() (in module fury.animation.helpers)": [[275, "fury.animation.helpers.get_timestamps_from_keyframes", false]], "get_value() (fury.animation.animation.animation method)": [[275, "fury.animation.animation.Animation.get_value", false]], "get_values_from_keyframes() (in module fury.animation.helpers)": [[275, "fury.animation.helpers.get_values_from_keyframes", false]], "get_view_up() (fury.animation.animation.cameraanimation method)": [[275, "fury.animation.animation.CameraAnimation.get_view_up", false]], "get_xyz_coords() (in module fury.colormap)": [[276, "fury.colormap.get_xyz_coords", false]], "getbounds() (fury.actor.container method)": [[273, "fury.actor.Container.GetBounds", false]], "getcenter() (fury.actor.container method)": [[273, "fury.actor.Container.GetCenter", false]], "getlength() (fury.actor.container method)": [[273, "fury.actor.Container.GetLength", false]], "getposition() (fury.actor.container method)": [[273, "fury.actor.Container.GetPosition", false]], "getvisibility() (fury.actor.container method)": [[273, "fury.actor.Container.GetVisibility", false]], "gl_disable_blend() (in module fury.window)": [[295, "fury.window.gl_disable_blend", false]], "gl_disable_depth() (in module fury.window)": [[295, "fury.window.gl_disable_depth", false]], "gl_enable_blend() (in module fury.window)": [[295, "fury.window.gl_enable_blend", false]], "gl_enable_depth() (in module fury.window)": [[295, "fury.window.gl_enable_depth", false]], "gl_get_current_state() (in module fury.window)": [[295, "fury.window.gl_get_current_state", false]], "gl_reset_blend() (in module fury.window)": [[295, "fury.window.gl_reset_blend", false]], "gl_set_additive_blending() (in module fury.window)": [[295, "fury.window.gl_set_additive_blending", false]], "gl_set_additive_blending_white_background() (in module fury.window)": [[295, "fury.window.gl_set_additive_blending_white_background", false]], "gl_set_multiplicative_blending() (in module fury.window)": [[295, "fury.window.gl_set_multiplicative_blending", false]], "gl_set_normal_blending() (in module fury.window)": [[295, "fury.window.gl_set_normal_blending", false]], "gl_set_subtractive_blending() (in module fury.window)": [[295, "fury.window.gl_set_subtractive_blending", false]], "global_opacity (fury.actors.peak.peakactor property)": [[274, "fury.actors.peak.PeakActor.global_opacity", false]], "gltf (class in fury.gltf)": [[281, "fury.gltf.glTF", false]], "glyph3d (in module fury.lib)": [[284, "fury.lib.Glyph3D", false]], "grid() (in module fury.actor)": [[273, "fury.actor.grid", false]], "gridlayout (class in fury.layout)": [[283, "fury.layout.GridLayout", false]], "gridui (class in fury.ui.containers)": [[293, "fury.ui.containers.GridUI", false]], "handle (fury.ui.elements.lineslider2d attribute)": [[293, "fury.ui.elements.LineSlider2D.handle", false]], "handle (fury.ui.elements.ringslider2d attribute)": [[293, "fury.ui.elements.RingSlider2D.handle", false]], "handle_character() (fury.ui.elements.textbox2d method)": [[293, "fury.ui.elements.TextBox2D.handle_character", false]], "handle_events() (fury.ui.core.ui method)": [[293, "fury.ui.core.UI.handle_events", false]], "handle_mouse_click() (fury.ui.elements.drawpanel method)": [[293, "fury.ui.elements.DrawPanel.handle_mouse_click", false]], "handle_mouse_drag() (fury.ui.elements.drawpanel method)": [[293, "fury.ui.elements.DrawPanel.handle_mouse_drag", false]], "handle_move_callback() (fury.ui.elements.linedoubleslider2d method)": [[293, "fury.ui.elements.LineDoubleSlider2D.handle_move_callback", false]], "handle_move_callback() (fury.ui.elements.lineslider2d method)": [[293, "fury.ui.elements.LineSlider2D.handle_move_callback", false]], "handle_move_callback() (fury.ui.elements.ringslider2d method)": [[293, "fury.ui.elements.RingSlider2D.handle_move_callback", false]], "handle_release_callback() (fury.ui.elements.linedoubleslider2d method)": [[293, "fury.ui.elements.LineDoubleSlider2D.handle_release_callback", false]], "handle_release_callback() (fury.ui.elements.lineslider2d method)": [[293, "fury.ui.elements.LineSlider2D.handle_release_callback", false]], "handle_release_callback() (fury.ui.elements.ringslider2d method)": [[293, "fury.ui.elements.RingSlider2D.handle_release_callback", false]], "handles (fury.ui.elements.linedoubleslider2d attribute)": [[293, "fury.ui.elements.LineDoubleSlider2D.handles", false]], "hardwareselector (in module fury.lib)": [[284, "fury.lib.HardwareSelector", false]], "has_playback_panel (fury.animation.timeline.timeline property)": [[275, "fury.animation.timeline.Timeline.has_playback_panel", false]], "head (fury.stream.tools.genericcircularqueue property)": [[291, "fury.stream.tools.GenericCircularQueue.head", false]], "height (fury.ui.core.rectangle2d property)": [[293, "fury.ui.core.Rectangle2D.height", false]], "height (fury.ui.elements.textbox2d attribute)": [[293, "fury.ui.elements.TextBox2D.height", false]], "hex_to_rgb() (in module fury.colormap)": [[276, "fury.colormap.hex_to_rgb", false]], "hide() (fury.ui.elements.playbackpanel method)": [[293, "fury.ui.elements.PlaybackPanel.hide", false]], "high_ranges (fury.actors.peak.peakactor property)": [[274, "fury.actors.peak.PeakActor.high_ranges", false]], "horizontallayout (class in fury.layout)": [[283, "fury.layout.HorizontalLayout", false]], "hsv2rgb() (in module fury.colormap)": [[276, "fury.colormap.hsv2rgb", false]], "hsv_color_interpolator() (in module fury.animation.interpolator)": [[275, "fury.animation.interpolator.hsv_color_interpolator", false]], "idtypearray (in module fury.lib)": [[284, "fury.lib.IdTypeArray", false]], "imag (in module fury.colormap)": [[276, "fury.colormap.imag", false], [276, "id6", false]], "image (fury.ui.elements.card2d attribute)": [[293, "fury.ui.elements.Card2D.image", false]], "imageactor (in module fury.lib)": [[284, "fury.lib.ImageActor", false]], "imagecontainer2d (class in fury.ui.containers)": [[293, "fury.ui.containers.ImageContainer2D", false]], "imagedata (in module fury.lib)": [[284, "fury.lib.ImageData", false]], "imageflip (in module fury.lib)": [[284, "fury.lib.ImageFlip", false]], "imagemaptocolors (in module fury.lib)": [[284, "fury.lib.ImageMapToColors", false]], "imagereader2factory (in module fury.lib)": [[284, "fury.lib.ImageReader2Factory", false]], "imagereslice (in module fury.lib)": [[284, "fury.lib.ImageReslice", false]], "img (fury.ui.containers.imagecontainer2d attribute)": [[293, "fury.ui.containers.ImageContainer2D.img", false]], "import_fury_shader() (in module fury.shaders.base)": [[290, "fury.shaders.base.import_fury_shader", false]], "increment() (fury.ui.elements.spinbox method)": [[293, "fury.ui.elements.SpinBox.increment", false]], "increment_callback() (fury.ui.elements.spinbox method)": [[293, "fury.ui.elements.SpinBox.increment_callback", false]], "init (fury.ui.elements.textbox2d attribute)": [[293, "fury.ui.elements.TextBox2D.init", false]], "initialize() (fury.window.showmanager method)": [[295, "fury.window.ShowManager.initialize", false]], "initialize_skin() (fury.gltf.gltf method)": [[281, "fury.gltf.glTF.initialize_skin", false]], "inner_radius (fury.ui.core.disk2d property)": [[293, "fury.ui.core.Disk2D.inner_radius", false]], "inspect_scene() (fury.gltf.gltf method)": [[281, "fury.gltf.glTF.inspect_scene", false]], "interaction_callback() (in module fury.stream.client)": [[291, "fury.stream.client.interaction_callback", false]], "interactoreventrecorder (in module fury.lib)": [[284, "fury.lib.InteractorEventRecorder", false]], "interactorstyle (in module fury.lib)": [[284, "fury.lib.InteractorStyle", false]], "interactorstyleimage (in module fury.lib)": [[284, "fury.lib.InteractorStyleImage", false]], "interactorstyletrackballactor (in module fury.lib)": [[284, "fury.lib.InteractorStyleTrackballActor", false]], "interactorstyletrackballcamera (in module fury.lib)": [[284, "fury.lib.InteractorStyleTrackballCamera", false]], "interactorstyleuser (in module fury.lib)": [[284, "fury.lib.InteractorStyleUser", false]], "intervaltimer (class in fury.stream.tools)": [[291, "fury.stream.tools.IntervalTimer", false]], "intervaltimerthreading (class in fury.stream.tools)": [[291, "fury.stream.tools.IntervalTimerThreading", false]], "iren (fury.window.showmanager attribute)": [[295, "fury.window.ShowManager.iren", false]], "is_bad_version() (in module fury.deprecator)": [[280, "fury.deprecator.is_bad_version", false]], "is_done() (fury.window.showmanager method)": [[295, "fury.window.ShowManager.is_done", false]], "is_inside_scene_at() (fury.animation.animation.animation method)": [[275, "fury.animation.animation.Animation.is_inside_scene_at", false]], "is_interpolatable() (fury.animation.animation.animation method)": [[275, "fury.animation.animation.Animation.is_interpolatable", false]], "is_range (fury.actors.peak.peakactor property)": [[274, "fury.actors.peak.PeakActor.is_range", false]], "is_selected (fury.ui.elements.drawshape property)": [[293, "fury.ui.elements.DrawShape.is_selected", false]], "is_ui() (in module fury.utils)": [[294, "fury.utils.is_ui", false]], "is_unlocked() (fury.stream.tools.sharedmemcircularqueue method)": [[291, "fury.stream.tools.SharedMemCircularQueue.is_unlocked", false]], "italic (fury.ui.core.textblock2d attribute)": [[293, "fury.ui.core.TextBlock2D.italic", false]], "italic (fury.ui.core.textblock2d property)": [[293, "id10", false]], "items (fury.actor.container property)": [[273, "fury.actor.Container.items", false]], "itemsize (in module fury.colormap)": [[276, "fury.colormap.itemsize", false], [276, "id9", false]], "jpegreader (in module fury.lib)": [[284, "fury.lib.JPEGReader", false]], "jpegwriter (in module fury.lib)": [[284, "fury.lib.JPEGWriter", false]], "justification (fury.ui.core.textblock2d attribute)": [[293, "fury.ui.core.TextBlock2D.justification", false]], "justification (fury.ui.core.textblock2d property)": [[293, "id11", false]], "key_press() (fury.ui.elements.textbox2d method)": [[293, "fury.ui.elements.TextBox2D.key_press", false]], "key_press_callback() (fury.ui.containers.gridui method)": [[293, "fury.ui.containers.GridUI.key_press_callback", false]], "key_press_callback() (fury.ui.core.ui static method)": [[293, "fury.ui.core.UI.key_press_callback", false]], "lab2rgb() (in module fury.colormap)": [[276, "fury.colormap.lab2rgb", false]], "lab2xyz() (in module fury.colormap)": [[276, "fury.colormap.lab2xyz", false]], "lab_color_interpolator() (in module fury.animation.interpolator)": [[275, "fury.animation.interpolator.lab_color_interpolator", false]], "label (fury.ui.elements.option attribute)": [[293, "fury.ui.elements.Option.label", false]], "label() (in module fury.actor)": [[273, "fury.actor.label", false]], "labels (fury.ui.elements.checkbox attribute)": [[293, "fury.ui.elements.Checkbox.labels", false]], "labels (fury.ui.elements.radiobutton attribute)": [[293, "fury.ui.elements.RadioButton.labels", false]], "last_render_time (fury.window.scene property)": [[295, "fury.window.Scene.last_render_time", false]], "layout (class in fury.layout)": [[283, "fury.layout.Layout", false]], "left_button_click_callback() (fury.ui.core.ui static method)": [[293, "fury.ui.core.UI.left_button_click_callback", false]], "left_button_clicked() (fury.ui.elements.listboxitem2d method)": [[293, "fury.ui.elements.ListBoxItem2D.left_button_clicked", false]], "left_button_dragged() (fury.ui.containers.panel2d method)": [[293, "fury.ui.containers.Panel2D.left_button_dragged", false]], "left_button_dragged() (fury.ui.containers.tabui method)": [[293, "fury.ui.containers.TabUI.left_button_dragged", false]], "left_button_dragged() (fury.ui.elements.card2d method)": [[293, "fury.ui.elements.Card2D.left_button_dragged", false]], "left_button_dragged() (fury.ui.elements.combobox2d method)": [[293, "fury.ui.elements.ComboBox2D.left_button_dragged", false]], "left_button_dragged() (fury.ui.elements.drawpanel method)": [[293, "fury.ui.elements.DrawPanel.left_button_dragged", false]], "left_button_dragged() (fury.ui.elements.drawshape method)": [[293, "fury.ui.elements.DrawShape.left_button_dragged", false]], "left_button_press() (fury.ui.elements.textbox2d method)": [[293, "fury.ui.elements.TextBox2D.left_button_press", false]], "left_button_pressed() (fury.ui.containers.panel2d method)": [[293, "fury.ui.containers.Panel2D.left_button_pressed", false]], "left_button_pressed() (fury.ui.containers.tabui method)": [[293, "fury.ui.containers.TabUI.left_button_pressed", false]], "left_button_pressed() (fury.ui.elements.card2d method)": [[293, "fury.ui.elements.Card2D.left_button_pressed", false]], "left_button_pressed() (fury.ui.elements.combobox2d method)": [[293, "fury.ui.elements.ComboBox2D.left_button_pressed", false]], "left_button_pressed() (fury.ui.elements.drawpanel method)": [[293, "fury.ui.elements.DrawPanel.left_button_pressed", false]], "left_button_pressed() (fury.ui.elements.drawshape method)": [[293, "fury.ui.elements.DrawShape.left_button_pressed", false]], "left_button_release_callback() (fury.ui.core.ui static method)": [[293, "fury.ui.core.UI.left_button_release_callback", false]], "left_button_released() (fury.ui.elements.drawshape method)": [[293, "fury.ui.elements.DrawShape.left_button_released", false]], "left_click_callback() (fury.ui.containers.gridui static method)": [[293, "fury.ui.containers.GridUI.left_click_callback", false]], "left_click_callback2() (fury.ui.containers.gridui static method)": [[293, "fury.ui.containers.GridUI.left_click_callback2", false]], "left_disk_ratio (fury.ui.elements.linedoubleslider2d property)": [[293, "fury.ui.elements.LineDoubleSlider2D.left_disk_ratio", false]], "left_disk_value (fury.ui.elements.linedoubleslider2d property)": [[293, "fury.ui.elements.LineDoubleSlider2D.left_disk_value", false]], "left_move_left() (fury.ui.elements.textbox2d method)": [[293, "fury.ui.elements.TextBox2D.left_move_left", false]], "left_move_right() (fury.ui.elements.textbox2d method)": [[293, "fury.ui.elements.TextBox2D.left_move_right", false]], "left_release_callback() (fury.ui.containers.gridui static method)": [[293, "fury.ui.containers.GridUI.left_release_callback", false]], "left_release_callback2() (fury.ui.containers.gridui static method)": [[293, "fury.ui.containers.GridUI.left_release_callback2", false]], "left_x_position (fury.ui.elements.linedoubleslider2d property)": [[293, "fury.ui.elements.LineDoubleSlider2D.left_x_position", false]], "left_x_position (fury.ui.elements.lineslider2d property)": [[293, "fury.ui.elements.LineSlider2D.left_x_position", false]], "length (fury.animation.animation.animation attribute)": [[275, "fury.animation.animation.Animation.length", false]], "length (fury.animation.animation.cameraanimation attribute)": [[275, "fury.animation.animation.CameraAnimation.length", false]], "length (fury.animation.timeline.timeline attribute)": [[275, "fury.animation.timeline.Timeline.length", false]], "length (fury.ui.elements.linedoubleslider2d attribute)": [[293, "fury.ui.elements.LineDoubleSlider2D.length", false]], "length (fury.ui.elements.lineslider2d attribute)": [[293, "fury.ui.elements.LineSlider2D.length", false]], "lerp() (in module fury.animation.helpers)": [[275, "fury.animation.helpers.lerp", false]], "line() (in module fury.actor)": [[273, "fury.actor.line", false]], "line_colors() (in module fury.colormap)": [[276, "fury.colormap.line_colors", false]], "line_width (fury.ui.elements.linedoubleslider2d attribute)": [[293, "fury.ui.elements.LineDoubleSlider2D.line_width", false]], "line_width (fury.ui.elements.lineslider2d attribute)": [[293, "fury.ui.elements.LineSlider2D.line_width", false]], "linear_interpolator() (in module fury.animation.interpolator)": [[275, "fury.animation.interpolator.linear_interpolator", false]], "linearextrusionfilter (in module fury.lib)": [[284, "fury.lib.LinearExtrusionFilter", false]], "linedoubleslider2d (class in fury.ui.elements)": [[293, "fury.ui.elements.LineDoubleSlider2D", false]], "lines_to_vtk_polydata() (in module fury.utils)": [[294, "fury.utils.lines_to_vtk_polydata", false]], "lineslider2d (class in fury.ui.elements)": [[293, "fury.ui.elements.LineSlider2D", false]], "linewidth (fury.actors.peak.peakactor property)": [[274, "fury.actors.peak.PeakActor.linewidth", false]], "list_gltf_sample_models() (in module fury.data.fetcher)": [[278, "fury.data.fetcher.list_gltf_sample_models", false]], "listbox (fury.ui.elements.filemenu2d attribute)": [[293, "fury.ui.elements.FileMenu2D.listbox", false]], "listbox2d (class in fury.ui.elements)": [[293, "fury.ui.elements.ListBox2D", false]], "listboxitem2d (class in fury.ui.elements)": [[293, "fury.ui.elements.ListBoxItem2D", false]], "load() (in module fury.shaders.base)": [[290, "fury.shaders.base.load", false]], "load_camera() (fury.gltf.gltf method)": [[281, "fury.gltf.glTF.load_camera", false]], "load_cubemap_texture() (in module fury.io)": [[282, "fury.io.load_cubemap_texture", false]], "load_image() (in module fury.io)": [[282, "fury.io.load_image", false]], "load_mem_resource() (fury.stream.tools.arraycircularqueue method)": [[291, "fury.stream.tools.ArrayCircularQueue.load_mem_resource", false]], "load_mem_resource() (fury.stream.tools.genericcircularqueue method)": [[291, "fury.stream.tools.GenericCircularQueue.load_mem_resource", false]], "load_mem_resource() (fury.stream.tools.genericimagebuffermanager method)": [[291, "fury.stream.tools.GenericImageBufferManager.load_mem_resource", false]], "load_mem_resource() (fury.stream.tools.genericmultidimensionalbuffer method)": [[291, "fury.stream.tools.GenericMultiDimensionalBuffer.load_mem_resource", false]], "load_mem_resource() (fury.stream.tools.rawarrayimagebuffermanager method)": [[291, "fury.stream.tools.RawArrayImageBufferManager.load_mem_resource", false]], "load_mem_resource() (fury.stream.tools.rawarraymultidimensionalbuffer method)": [[291, "fury.stream.tools.RawArrayMultiDimensionalBuffer.load_mem_resource", false]], "load_mem_resource() (fury.stream.tools.sharedmemcircularqueue method)": [[291, "fury.stream.tools.SharedMemCircularQueue.load_mem_resource", false]], "load_mem_resource() (fury.stream.tools.sharedmemimagebuffermanager method)": [[291, "fury.stream.tools.SharedMemImageBufferManager.load_mem_resource", false]], "load_mem_resource() (fury.stream.tools.sharedmemmultidimensionalbuffer method)": [[291, "fury.stream.tools.SharedMemMultiDimensionalBuffer.load_mem_resource", false]], "load_mesh() (fury.gltf.gltf method)": [[281, "fury.gltf.glTF.load_mesh", false]], "load_polydata() (in module fury.io)": [[282, "fury.io.load_polydata", false]], "load_shader() (in module fury.shaders.base)": [[290, "fury.shaders.base.load_shader", false]], "load_sprite_sheet() (in module fury.io)": [[282, "fury.io.load_sprite_sheet", false]], "load_text() (in module fury.io)": [[282, "fury.io.load_text", false]], "lock() (fury.stream.tools.sharedmemcircularqueue method)": [[291, "fury.stream.tools.SharedMemCircularQueue.lock", false]], "lock() (fury.window.showmanager method)": [[295, "fury.window.ShowManager.lock", false]], "lock_current() (fury.window.showmanager method)": [[295, "fury.window.ShowManager.lock_current", false]], "lodactor (in module fury.lib)": [[284, "fury.lib.LODActor", false]], "lookuptable (in module fury.lib)": [[284, "fury.lib.LookupTable", false]], "loop (fury.animation.animation.animation attribute)": [[275, "fury.animation.animation.Animation.loop", false]], "loop (fury.animation.animation.animation property)": [[275, "id2", false]], "loop (fury.animation.animation.cameraanimation attribute)": [[275, "fury.animation.animation.CameraAnimation.loop", false]], "loop (fury.animation.timeline.timeline attribute)": [[275, "fury.animation.timeline.Timeline.loop", false]], "loop (fury.animation.timeline.timeline property)": [[275, "id5", false]], "loop() (fury.ui.elements.playbackpanel method)": [[293, "fury.ui.elements.PlaybackPanel.loop", false]], "loopsubdivisionfilter (in module fury.lib)": [[284, "fury.lib.LoopSubdivisionFilter", false]], "low_ranges (fury.actors.peak.peakactor property)": [[274, "fury.actors.peak.PeakActor.low_ranges", false]], "main_animation() (fury.gltf.gltf method)": [[281, "fury.gltf.glTF.main_animation", false]], "main_dir_uncertainty() (in module fury.actors.tensor)": [[274, "fury.actors.tensor.main_dir_uncertainty", false]], "manifest_pbr() (in module fury.material)": [[285, "fury.material.manifest_pbr", false]], "manifest_principled() (in module fury.material)": [[285, "fury.material.manifest_principled", false]], "manifest_standard() (in module fury.material)": [[285, "fury.material.manifest_standard", false]], "map_coordinates_3d_4d() (in module fury.utils)": [[294, "fury.utils.map_coordinates_3d_4d", false]], "markers() (in module fury.actor)": [[273, "fury.actor.markers", false]], "matplotlib_figure_to_numpy() (in module fury.convert)": [[277, "fury.convert.matplotlib_figure_to_numpy", false]], "matrix3x3 (in module fury.lib)": [[284, "fury.lib.Matrix3x3", false]], "matrix4x4 (in module fury.lib)": [[284, "fury.lib.Matrix4x4", false]], "max_centers (fury.actors.peak.peakactor property)": [[274, "fury.actors.peak.PeakActor.max_centers", false]], "menu_toggle_callback() (fury.ui.elements.combobox2d method)": [[293, "fury.ui.elements.ComboBox2D.menu_toggle_callback", false]], "message (fury.ui.core.textblock2d attribute)": [[293, "fury.ui.core.TextBlock2D.message", false]], "message (fury.ui.core.textblock2d property)": [[293, "id12", false]], "mid_track_radius (fury.ui.elements.ringslider2d attribute)": [[293, "fury.ui.elements.RingSlider2D.mid_track_radius", false]], "mid_track_radius (fury.ui.elements.ringslider2d property)": [[293, "id15", false]], "middle_button_click_callback() (fury.ui.core.ui static method)": [[293, "fury.ui.core.UI.middle_button_click_callback", false]], "middle_button_release_callback() (fury.ui.core.ui static method)": [[293, "fury.ui.core.UI.middle_button_release_callback", false]], "min_centers (fury.actors.peak.peakactor property)": [[274, "fury.actors.peak.PeakActor.min_centers", false]], "mniobjectreader (in module fury.lib)": [[284, "fury.lib.MNIObjectReader", false]], "mniobjectwriter (in module fury.lib)": [[284, "fury.lib.MNIObjectWriter", false]], "module": [[272, "module-fury", false], [273, "module-fury.actor", false], [274, "module-fury.actors", false], [274, "module-fury.actors.odf_slicer", false], [274, "module-fury.actors.peak", false], [274, "module-fury.actors.tensor", false], [275, "module-fury.animation", false], [275, "module-fury.animation.animation", false], [275, "module-fury.animation.helpers", false], [275, "module-fury.animation.interpolator", false], [275, "module-fury.animation.timeline", false], [276, "module-fury.colormap", false], [277, "module-fury.convert", false], [278, "module-fury.data", false], [278, "module-fury.data.fetcher", false], [279, "module-fury.decorators", false], [280, "module-fury.deprecator", false], [281, "module-fury.gltf", false], [282, "module-fury.io", false], [283, "module-fury.layout", false], [284, "module-fury.lib", false], [285, "module-fury.material", false], [286, "module-fury.molecular", false], [287, "module-fury.pick", false], [288, "module-fury.pkg_info", false], [289, "module-fury.primitive", false], [290, "module-fury.shaders", false], [290, "module-fury.shaders.base", false], [291, "module-fury.stream", false], [291, "module-fury.stream.client", false], [291, "module-fury.stream.constants", false], [291, "module-fury.stream.server", false], [291, "module-fury.stream.server.async_app", false], [291, "module-fury.stream.server.main", false], [291, "module-fury.stream.tools", false], [291, "module-fury.stream.widget", false], [292, "module-fury.transform", false], [293, "module-fury.ui", false], [293, "module-fury.ui.containers", false], [293, "module-fury.ui.core", false], [293, "module-fury.ui.elements", false], [293, "module-fury.ui.helpers", false], [294, "module-fury.utils", false], [295, "module-fury.window", false]], "molecule (class in fury.molecular)": [[286, "fury.molecular.Molecule", false]], "molecule (in module fury.lib)": [[284, "fury.lib.Molecule", false]], "morph_animation() (fury.gltf.gltf method)": [[281, "fury.gltf.glTF.morph_animation", false]], "motion_path_res (fury.animation.animation.animation attribute)": [[275, "fury.animation.animation.Animation.motion_path_res", false]], "motion_path_res (fury.animation.animation.cameraanimation attribute)": [[275, "fury.animation.animation.CameraAnimation.motion_path_res", false]], "mouse_move_callback() (fury.ui.containers.gridui static method)": [[293, "fury.ui.containers.GridUI.mouse_move_callback", false]], "mouse_move_callback() (fury.ui.core.ui static method)": [[293, "fury.ui.core.UI.mouse_move_callback", false]], "mouse_move_callback2() (fury.ui.containers.gridui static method)": [[293, "fury.ui.containers.GridUI.mouse_move_callback2", false]], "move_caret_left() (fury.ui.elements.textbox2d method)": [[293, "fury.ui.elements.TextBox2D.move_caret_left", false]], "move_caret_right() (fury.ui.elements.textbox2d method)": [[293, "fury.ui.elements.TextBox2D.move_caret_right", false]], "move_handle() (fury.ui.elements.ringslider2d method)": [[293, "fury.ui.elements.RingSlider2D.move_handle", false]], "move_left() (fury.ui.elements.textbox2d method)": [[293, "fury.ui.elements.TextBox2D.move_left", false]], "move_right() (fury.ui.elements.textbox2d method)": [[293, "fury.ui.elements.TextBox2D.move_right", false]], "nbytes (in module fury.colormap)": [[276, "fury.colormap.nbytes", false], [276, "id10", false]], "ndim (in module fury.colormap)": [[276, "fury.colormap.ndim", false], [276, "id11", false]], "newinstance() (fury.actor.container method)": [[273, "fury.actor.Container.NewInstance", false]], "next_buffer_index (fury.stream.tools.genericimagebuffermanager property)": [[291, "fury.stream.tools.GenericImageBufferManager.next_buffer_index", false]], "next_icon() (fury.ui.core.button2d method)": [[293, "fury.ui.core.Button2D.next_icon", false]], "next_icon_id() (fury.ui.core.button2d method)": [[293, "fury.ui.core.Button2D.next_icon_id", false]], "normalize_v3() (in module fury.utils)": [[294, "fury.utils.normalize_v3", false]], "normals_from_actor() (in module fury.utils)": [[294, "fury.utils.normals_from_actor", false]], "normals_from_v_f() (in module fury.utils)": [[294, "fury.utils.normals_from_v_f", false]], "normals_to_actor() (in module fury.utils)": [[294, "fury.utils.normals_to_actor", false]], "numpy_to_vtk_cells() (in module fury.utils)": [[294, "fury.utils.numpy_to_vtk_cells", false]], "numpy_to_vtk_colors() (in module fury.utils)": [[294, "fury.utils.numpy_to_vtk_colors", false]], "numpy_to_vtk_image_data() (in module fury.utils)": [[294, "fury.utils.numpy_to_vtk_image_data", false]], "numpy_to_vtk_matrix() (in module fury.utils)": [[294, "fury.utils.numpy_to_vtk_matrix", false]], "numpy_to_vtk_points() (in module fury.utils)": [[294, "fury.utils.numpy_to_vtk_points", false]], "objreader (in module fury.lib)": [[284, "fury.lib.OBJReader", false]], "octagonalprism() (in module fury.actor)": [[273, "fury.actor.octagonalprism", false]], "odf_slicer() (in module fury.actor)": [[273, "fury.actor.odf_slicer", false]], "odfsliceractor (class in fury.actors.odf_slicer)": [[274, "fury.actors.odf_slicer.OdfSlicerActor", false]], "on_change (fury.ui.elements.listbox2d attribute)": [[293, "fury.ui.elements.ListBox2D.on_change", false]], "on_key_press (fury.ui.core.ui attribute)": [[293, "fury.ui.core.UI.on_key_press", false]], "on_left_mouse_button_clicked (fury.ui.core.ui attribute)": [[293, "fury.ui.core.UI.on_left_mouse_button_clicked", false]], "on_left_mouse_button_dragged (fury.ui.core.ui attribute)": [[293, "fury.ui.core.UI.on_left_mouse_button_dragged", false]], "on_left_mouse_button_pressed (fury.ui.core.ui attribute)": [[293, "fury.ui.core.UI.on_left_mouse_button_pressed", false]], "on_left_mouse_button_released (fury.ui.core.ui attribute)": [[293, "fury.ui.core.UI.on_left_mouse_button_released", false]], "on_left_mouse_double_clicked (fury.ui.core.ui attribute)": [[293, "fury.ui.core.UI.on_left_mouse_double_clicked", false]], "on_middle_mouse_button_clicked (fury.ui.core.ui attribute)": [[293, "fury.ui.core.UI.on_middle_mouse_button_clicked", false]], "on_middle_mouse_button_dragged (fury.ui.core.ui attribute)": [[293, "fury.ui.core.UI.on_middle_mouse_button_dragged", false]], "on_middle_mouse_button_pressed (fury.ui.core.ui attribute)": [[293, "fury.ui.core.UI.on_middle_mouse_button_pressed", false]], "on_middle_mouse_button_released (fury.ui.core.ui attribute)": [[293, "fury.ui.core.UI.on_middle_mouse_button_released", false]], "on_middle_mouse_double_clicked (fury.ui.core.ui attribute)": [[293, "fury.ui.core.UI.on_middle_mouse_double_clicked", false]], "on_right_mouse_button_clicked (fury.ui.core.ui attribute)": [[293, "fury.ui.core.UI.on_right_mouse_button_clicked", false]], "on_right_mouse_button_dragged (fury.ui.core.ui attribute)": [[293, "fury.ui.core.UI.on_right_mouse_button_dragged", false]], "on_right_mouse_button_pressed (fury.ui.core.ui attribute)": [[293, "fury.ui.core.UI.on_right_mouse_button_pressed", false]], "on_right_mouse_button_released (fury.ui.core.ui attribute)": [[293, "fury.ui.core.UI.on_right_mouse_button_released", false]], "on_right_mouse_double_clicked (fury.ui.core.ui attribute)": [[293, "fury.ui.core.UI.on_right_mouse_double_clicked", false]], "opacity (fury.ui.containers.panel2d property)": [[293, "fury.ui.containers.Panel2D.opacity", false]], "opacity (fury.ui.core.disk2d property)": [[293, "fury.ui.core.Disk2D.opacity", false]], "opacity (fury.ui.core.rectangle2d property)": [[293, "fury.ui.core.Rectangle2D.opacity", false]], "openglmoleculemapper (in module fury.lib)": [[284, "fury.lib.OpenGLMoleculeMapper", false]], "openglrenderer (in module fury.lib)": [[284, "fury.lib.OpenGLRenderer", false]], "option (class in fury.ui.elements)": [[293, "fury.ui.elements.Option", false]], "options (fury.ui.elements.checkbox attribute)": [[293, "fury.ui.elements.Checkbox.options", false]], "options (fury.ui.elements.radiobutton attribute)": [[293, "fury.ui.elements.RadioButton.options", false]], "orient2rgb() (in module fury.colormap)": [[276, "fury.colormap.orient2rgb", false]], "outer_radius (fury.ui.core.disk2d property)": [[293, "fury.ui.core.Disk2D.outer_radius", false]], "outlinefilter (in module fury.lib)": [[284, "fury.lib.OutlineFilter", false]], "padding (fury.actor.container attribute)": [[273, "fury.actor.Container.padding", false]], "padding (fury.ui.elements.checkbox attribute)": [[293, "fury.ui.elements.Checkbox.padding", false]], "padding (fury.ui.elements.checkbox property)": [[293, "id17", false]], "padding (fury.ui.elements.radiobutton attribute)": [[293, "fury.ui.elements.RadioButton.padding", false]], "panel2d (class in fury.ui.containers)": [[293, "fury.ui.containers.Panel2D", false]], "parent_animation (fury.animation.animation.animation property)": [[275, "fury.animation.animation.Animation.parent_animation", false]], "pause() (fury.animation.timeline.timeline method)": [[275, "fury.animation.timeline.Timeline.pause", false]], "pause() (fury.ui.elements.playbackpanel method)": [[293, "fury.ui.elements.PlaybackPanel.pause", false]], "paused (fury.animation.timeline.timeline property)": [[275, "fury.animation.timeline.Timeline.paused", false]], "pcs() (in module fury.stream.server.async_app)": [[291, "fury.stream.server.async_app.pcs", false]], "peak() (in module fury.actor)": [[273, "fury.actor.peak", false]], "peak_slicer() (in module fury.actor)": [[273, "fury.actor.peak_slicer", false]], "peakactor (class in fury.actors.peak)": [[274, "fury.actors.peak.PeakActor", false]], "pentagonalprism() (in module fury.actor)": [[273, "fury.actor.pentagonalprism", false]], "periodictable (in module fury.lib)": [[284, "fury.lib.PeriodicTable", false]], "pick() (fury.pick.pickingmanager method)": [[287, "fury.pick.PickingManager.pick", false]], "pick() (fury.pick.selectionmanager method)": [[287, "fury.pick.SelectionManager.pick", false], [287, "id0", false]], "pickable_off() (fury.pick.pickingmanager method)": [[287, "fury.pick.PickingManager.pickable_off", false]], "pickable_on() (fury.pick.pickingmanager method)": [[287, "fury.pick.PickingManager.pickable_on", false]], "pickingmanager (class in fury.pick)": [[287, "fury.pick.PickingManager", false]], "pitch() (fury.window.scene method)": [[295, "fury.window.Scene.pitch", false]], "pkg_commit_hash() (in module fury.pkg_info)": [[288, "fury.pkg_info.pkg_commit_hash", false]], "play() (fury.animation.timeline.timeline method)": [[275, "fury.animation.timeline.Timeline.play", false]], "play() (fury.ui.elements.playbackpanel method)": [[293, "fury.ui.elements.PlaybackPanel.play", false]], "play_events() (fury.window.showmanager method)": [[295, "fury.window.ShowManager.play_events", false]], "play_events_from_file() (fury.window.showmanager method)": [[295, "fury.window.ShowManager.play_events_from_file", false]], "play_once() (fury.ui.elements.playbackpanel method)": [[293, "fury.ui.elements.PlaybackPanel.play_once", false]], "playback_panel (fury.animation.timeline.timeline attribute)": [[275, "fury.animation.timeline.Timeline.playback_panel", false]], "playbackpanel (class in fury.ui.elements)": [[293, "fury.ui.elements.PlaybackPanel", false]], "playing (fury.animation.timeline.timeline property)": [[275, "fury.animation.timeline.Timeline.playing", false]], "plyreader (in module fury.lib)": [[284, "fury.lib.PLYReader", false]], "plywriter (in module fury.lib)": [[284, "fury.lib.PLYWriter", false]], "pngreader (in module fury.lib)": [[284, "fury.lib.PNGReader", false]], "pngwriter (in module fury.lib)": [[284, "fury.lib.PNGWriter", false]], "point() (in module fury.actor)": [[273, "fury.actor.point", false]], "pointpicker (in module fury.lib)": [[284, "fury.lib.PointPicker", false]], "points (in module fury.lib)": [[284, "fury.lib.Points", false]], "polydata (in module fury.lib)": [[284, "fury.lib.PolyData", false]], "polydatamapper (in module fury.lib)": [[284, "fury.lib.PolyDataMapper", false]], "polydatamapper2d (in module fury.lib)": [[284, "fury.lib.PolyDataMapper2D", false]], "polydatanormals (in module fury.lib)": [[284, "fury.lib.PolyDataNormals", false]], "polydatareader (in module fury.lib)": [[284, "fury.lib.PolyDataReader", false]], "polydatawriter (in module fury.lib)": [[284, "fury.lib.PolyDataWriter", false]], "polygon (in module fury.lib)": [[284, "fury.lib.Polygon", false]], "polyvertex (in module fury.lib)": [[284, "fury.lib.PolyVertex", false]], "position (fury.ui.core.textblock2d attribute)": [[293, "fury.ui.core.TextBlock2D.position", false]], "position (fury.ui.core.ui attribute)": [[293, "fury.ui.core.UI.position", false]], "position (fury.ui.core.ui property)": [[293, "id2", false]], "previous_value (fury.ui.elements.ringslider2d attribute)": [[293, "fury.ui.elements.RingSlider2D.previous_value", false]], "previous_value (fury.ui.elements.ringslider2d property)": [[293, "id16", false]], "prim_arrow() (in module fury.primitive)": [[289, "fury.primitive.prim_arrow", false]], "prim_box() (in module fury.primitive)": [[289, "fury.primitive.prim_box", false]], "prim_cone() (in module fury.primitive)": [[289, "fury.primitive.prim_cone", false]], "prim_cylinder() (in module fury.primitive)": [[289, "fury.primitive.prim_cylinder", false]], "prim_frustum() (in module fury.primitive)": [[289, "fury.primitive.prim_frustum", false]], "prim_icosahedron() (in module fury.primitive)": [[289, "fury.primitive.prim_icosahedron", false]], "prim_octagonalprism() (in module fury.primitive)": [[289, "fury.primitive.prim_octagonalprism", false]], "prim_pentagonalprism() (in module fury.primitive)": [[289, "fury.primitive.prim_pentagonalprism", false]], "prim_rhombicuboctahedron() (in module fury.primitive)": [[289, "fury.primitive.prim_rhombicuboctahedron", false]], "prim_sphere() (in module fury.primitive)": [[289, "fury.primitive.prim_sphere", false]], "prim_square() (in module fury.primitive)": [[289, "fury.primitive.prim_square", false]], "prim_star() (in module fury.primitive)": [[289, "fury.primitive.prim_star", false]], "prim_superquadric() (in module fury.primitive)": [[289, "fury.primitive.prim_superquadric", false]], "prim_tetrahedron() (in module fury.primitive)": [[289, "fury.primitive.prim_tetrahedron", false]], "prim_triangularprism() (in module fury.primitive)": [[289, "fury.primitive.prim_triangularprism", false]], "primitives_count_from_actor() (in module fury.utils)": [[294, "fury.utils.primitives_count_from_actor", false]], "primitives_count_to_actor() (in module fury.utils)": [[294, "fury.utils.primitives_count_to_actor", false]], "projection() (fury.window.scene method)": [[295, "fury.window.Scene.projection", false]], "property2d (in module fury.lib)": [[284, "fury.lib.Property2D", false]], "proppicker (in module fury.lib)": [[284, "fury.lib.PropPicker", false]], "proteinribbonfilter (in module fury.lib)": [[284, "fury.lib.ProteinRibbonFilter", false]], "ptable (class in fury.molecular)": [[286, "fury.molecular.PTable", false]], "radiobutton (class in fury.ui.elements)": [[293, "fury.ui.elements.RadioButton", false]], "range_slider (fury.ui.elements.rangeslider attribute)": [[293, "fury.ui.elements.RangeSlider.range_slider", false]], "range_slider_center (fury.ui.elements.rangeslider attribute)": [[293, "fury.ui.elements.RangeSlider.range_slider_center", false]], "range_slider_handle_move_callback() (fury.ui.elements.rangeslider method)": [[293, "fury.ui.elements.RangeSlider.range_slider_handle_move_callback", false]], "rangeslider (class in fury.ui.elements)": [[293, "fury.ui.elements.RangeSlider", false]], "ratio (fury.ui.elements.lineslider2d property)": [[293, "fury.ui.elements.LineSlider2D.ratio", false]], "ratio (fury.ui.elements.ringslider2d property)": [[293, "fury.ui.elements.RingSlider2D.ratio", false]], "ratio_to_coord() (fury.ui.elements.linedoubleslider2d method)": [[293, "fury.ui.elements.LineDoubleSlider2D.ratio_to_coord", false]], "ratio_to_value() (fury.ui.elements.linedoubleslider2d method)": [[293, "fury.ui.elements.LineDoubleSlider2D.ratio_to_value", false]], "rawarrayimagebuffermanager (class in fury.stream.tools)": [[291, "fury.stream.tools.RawArrayImageBufferManager", false]], "rawarraymultidimensionalbuffer (class in fury.stream.tools)": [[291, "fury.stream.tools.RawArrayMultiDimensionalBuffer", false]], "re_align() (fury.ui.containers.panel2d method)": [[293, "fury.ui.containers.Panel2D.re_align", false]], "read_viz_cubemap() (in module fury.data.fetcher)": [[278, "fury.data.fetcher.read_viz_cubemap", false]], "read_viz_dmri() (in module fury.data.fetcher)": [[278, "fury.data.fetcher.read_viz_dmri", false]], "read_viz_gltf() (in module fury.data.fetcher)": [[278, "fury.data.fetcher.read_viz_gltf", false]], "read_viz_icons() (in module fury.data.fetcher)": [[278, "fury.data.fetcher.read_viz_icons", false]], "read_viz_models() (in module fury.data.fetcher)": [[278, "fury.data.fetcher.read_viz_models", false]], "read_viz_textures() (in module fury.data.fetcher)": [[278, "fury.data.fetcher.read_viz_textures", false]], "real (in module fury.colormap)": [[276, "fury.colormap.real", false], [276, "id7", false]], "record() (fury.animation.timeline.timeline method)": [[275, "fury.animation.timeline.Timeline.record", false]], "record() (in module fury.window)": [[295, "fury.window.record", false]], "record_events() (fury.window.showmanager method)": [[295, "fury.window.ShowManager.record_events", false]], "record_events_to_file() (fury.window.showmanager method)": [[295, "fury.window.ShowManager.record_events_to_file", false]], "rectangle() (in module fury.actor)": [[273, "fury.actor.rectangle", false]], "rectangle2d (class in fury.ui.core)": [[293, "fury.ui.core.Rectangle2D", false]], "recv() (fury.stream.server.main.rtcserver method)": [[291, "fury.stream.server.main.RTCServer.recv", false]], "regularpolygonsource (in module fury.lib)": [[284, "fury.lib.RegularPolygonSource", false]], "release() (fury.stream.server.main.rtcserver method)": [[291, "fury.stream.server.main.RTCServer.release", false]], "release_context() (in module fury.window)": [[295, "fury.window.release_context", false]], "release_current() (fury.window.showmanager method)": [[295, "fury.window.ShowManager.release_current", false]], "release_lock() (fury.window.showmanager method)": [[295, "fury.window.ShowManager.release_lock", false]], "remove() (fury.ui.elements.drawshape method)": [[293, "fury.ui.elements.DrawShape.remove", false]], "remove_actor() (fury.animation.animation.animation method)": [[275, "fury.animation.animation.Animation.remove_actor", false]], "remove_actors() (fury.animation.animation.animation method)": [[275, "fury.animation.animation.Animation.remove_actors", false]], "remove_animation() (fury.window.showmanager method)": [[295, "fury.window.ShowManager.remove_animation", false]], "remove_animations() (fury.animation.animation.animation method)": [[275, "fury.animation.animation.Animation.remove_animations", false]], "remove_character() (fury.ui.elements.textbox2d method)": [[293, "fury.ui.elements.TextBox2D.remove_character", false]], "remove_element() (fury.ui.containers.panel2d method)": [[293, "fury.ui.containers.Panel2D.remove_element", false]], "remove_element() (fury.ui.containers.tabpanel2d method)": [[293, "fury.ui.containers.TabPanel2D.remove_element", false]], "remove_element() (fury.ui.containers.tabui method)": [[293, "fury.ui.containers.TabUI.remove_element", false]], "remove_from_scene() (fury.actor.container method)": [[273, "fury.actor.Container.remove_from_scene", false]], "remove_from_scene() (fury.animation.animation.animation method)": [[275, "fury.animation.animation.Animation.remove_from_scene", false]], "remove_from_scene() (fury.animation.timeline.timeline method)": [[275, "fury.animation.timeline.Timeline.remove_from_scene", false]], "remove_from_scene_at() (fury.animation.animation.animation method)": [[275, "fury.animation.animation.Animation.remove_from_scene_at", false]], "remove_observer_from_actor() (in module fury.utils)": [[294, "fury.utils.remove_observer_from_actor", false]], "remove_shm_from_resource_tracker() (in module fury.stream.tools)": [[291, "fury.stream.tools.remove_shm_from_resource_tracker", false]], "render() (fury.window.showmanager method)": [[295, "fury.window.ShowManager.render", false]], "render_text() (fury.ui.elements.textbox2d method)": [[293, "fury.ui.elements.TextBox2D.render_text", false]], "renderer (in module fury.lib)": [[284, "fury.lib.Renderer", false]], "renderlargeimage (in module fury.lib)": [[284, "fury.lib.RenderLargeImage", false]], "renderwindow (in module fury.lib)": [[284, "fury.lib.RenderWindow", false]], "renderwindowinteractor (in module fury.lib)": [[284, "fury.lib.RenderWindowInteractor", false]], "repeat_primitive() (in module fury.primitive)": [[289, "fury.primitive.repeat_primitive", false]], "repeat_primitive_function() (in module fury.primitive)": [[289, "fury.primitive.repeat_primitive_function", false]], "repeat_sources() (in module fury.utils)": [[294, "fury.utils.repeat_sources", false]], "replace_shader_in_actor() (in module fury.shaders.base)": [[290, "fury.shaders.base.replace_shader_in_actor", false]], "represent_actor_as_wireframe() (in module fury.utils)": [[294, "fury.utils.represent_actor_as_wireframe", false]], "reset_camera() (fury.window.scene method)": [[295, "fury.window.Scene.reset_camera", false]], "reset_camera_tight() (fury.window.scene method)": [[295, "fury.window.Scene.reset_camera_tight", false]], "reset_clipping_range() (fury.window.scene method)": [[295, "fury.window.Scene.reset_clipping_range", false]], "resize() (fury.ui.containers.gridui method)": [[293, "fury.ui.containers.GridUI.resize", false]], "resize() (fury.ui.containers.imagecontainer2d method)": [[293, "fury.ui.containers.ImageContainer2D.resize", false]], "resize() (fury.ui.containers.panel2d method)": [[293, "fury.ui.containers.Panel2D.resize", false]], "resize() (fury.ui.containers.tabpanel2d method)": [[293, "fury.ui.containers.TabPanel2D.resize", false]], "resize() (fury.ui.core.button2d method)": [[293, "fury.ui.core.Button2D.resize", false]], "resize() (fury.ui.core.rectangle2d method)": [[293, "fury.ui.core.Rectangle2D.resize", false]], "resize() (fury.ui.core.textblock2d method)": [[293, "fury.ui.core.TextBlock2D.resize", false]], "resize() (fury.ui.elements.card2d method)": [[293, "fury.ui.elements.Card2D.resize", false]], "resize() (fury.ui.elements.combobox2d method)": [[293, "fury.ui.elements.ComboBox2D.resize", false]], "resize() (fury.ui.elements.drawpanel method)": [[293, "fury.ui.elements.DrawPanel.resize", false]], "resize() (fury.ui.elements.drawshape method)": [[293, "fury.ui.elements.DrawShape.resize", false]], "resize() (fury.ui.elements.filemenu2d method)": [[293, "fury.ui.elements.FileMenu2D.resize", false]], "resize() (fury.ui.elements.listbox2d method)": [[293, "fury.ui.elements.ListBox2D.resize", false]], "resize() (fury.ui.elements.listboxitem2d method)": [[293, "fury.ui.elements.ListBoxItem2D.resize", false]], "resize() (fury.ui.elements.spinbox method)": [[293, "fury.ui.elements.SpinBox.resize", false]], "resize_shape() (fury.ui.elements.drawpanel method)": [[293, "fury.ui.elements.DrawPanel.resize_shape", false]], "restart() (fury.animation.timeline.timeline method)": [[275, "fury.animation.timeline.Timeline.restart", false]], "return_iframe() (fury.stream.widget.widget method)": [[291, "fury.stream.widget.Widget.return_iframe", false]], "rgb2hsv() (in module fury.colormap)": [[276, "fury.colormap.rgb2hsv", false]], "rgb2lab() (in module fury.colormap)": [[276, "fury.colormap.rgb2lab", false]], "rgb2xyz() (in module fury.colormap)": [[276, "fury.colormap.rgb2xyz", false]], "rgb_from_xyz() (in module fury.colormap)": [[276, "fury.colormap.rgb_from_xyz", false]], "rgb_to_vtk() (in module fury.utils)": [[294, "fury.utils.rgb_to_vtk", false]], "rhombicuboctahedron() (in module fury.actor)": [[273, "fury.actor.rhombicuboctahedron", false]], "ribbon() (in module fury.molecular)": [[286, "fury.molecular.ribbon", false]], "right_button_click_callback() (fury.ui.core.ui static method)": [[293, "fury.ui.core.UI.right_button_click_callback", false]], "right_button_release_callback() (fury.ui.core.ui static method)": [[293, "fury.ui.core.UI.right_button_release_callback", false]], "right_disk_ratio (fury.ui.elements.linedoubleslider2d property)": [[293, "fury.ui.elements.LineDoubleSlider2D.right_disk_ratio", false]], "right_disk_value (fury.ui.elements.linedoubleslider2d property)": [[293, "fury.ui.elements.LineDoubleSlider2D.right_disk_value", false]], "right_move_left() (fury.ui.elements.textbox2d method)": [[293, "fury.ui.elements.TextBox2D.right_move_left", false]], "right_move_right() (fury.ui.elements.textbox2d method)": [[293, "fury.ui.elements.TextBox2D.right_move_right", false]], "right_x_position (fury.ui.elements.linedoubleslider2d property)": [[293, "fury.ui.elements.LineDoubleSlider2D.right_x_position", false]], "right_x_position (fury.ui.elements.lineslider2d property)": [[293, "fury.ui.elements.LineSlider2D.right_x_position", false]], "ringslider2d (class in fury.ui.elements)": [[293, "fury.ui.elements.RingSlider2D", false]], "rm() (fury.window.scene method)": [[295, "fury.window.Scene.rm", false]], "rm_all() (fury.window.scene method)": [[295, "fury.window.Scene.rm_all", false]], "roll() (fury.window.scene method)": [[295, "fury.window.Scene.roll", false]], "rotate() (fury.ui.elements.drawshape method)": [[293, "fury.ui.elements.DrawShape.rotate", false]], "rotate() (in module fury.transform)": [[292, "fury.transform.rotate", false]], "rotate() (in module fury.utils)": [[294, "fury.utils.rotate", false]], "rotate_2d() (in module fury.ui.helpers)": [[293, "fury.ui.helpers.rotate_2d", false]], "rtcserver (class in fury.stream.server.main)": [[291, "fury.stream.server.main.RTCServer", false]], "run_command() (fury.stream.widget.widget method)": [[291, "fury.stream.widget.Widget.run_command", false]], "save_image() (in module fury.io)": [[282, "fury.io.save_image", false]], "save_polydata() (in module fury.io)": [[282, "fury.io.save_polydata", false]], "save_screenshot() (fury.window.showmanager method)": [[295, "fury.window.ShowManager.save_screenshot", false]], "scalar_bar() (in module fury.actor)": [[273, "fury.actor.scalar_bar", false]], "scalarbaractor (in module fury.lib)": [[284, "fury.lib.ScalarBarActor", false]], "scale() (fury.ui.containers.imagecontainer2d method)": [[293, "fury.ui.containers.ImageContainer2D.scale", false]], "scale() (fury.ui.core.button2d method)": [[293, "fury.ui.core.Button2D.scale", false]], "scale() (in module fury.transform)": [[292, "fury.transform.scale", false]], "scene (class in fury.window)": [[295, "fury.window.Scene", false]], "scene (fury.window.showmanager attribute)": [[295, "fury.window.ShowManager.scene", false]], "scroll_callback() (fury.ui.elements.filemenu2d method)": [[293, "fury.ui.elements.FileMenu2D.scroll_callback", false]], "scroll_click_callback() (fury.ui.elements.listbox2d method)": [[293, "fury.ui.elements.ListBox2D.scroll_click_callback", false]], "scroll_drag_callback() (fury.ui.elements.listbox2d method)": [[293, "fury.ui.elements.ListBox2D.scroll_drag_callback", false]], "scroll_release_callback() (fury.ui.elements.listbox2d method)": [[293, "fury.ui.elements.ListBox2D.scroll_release_callback", false]], "sdf() (in module fury.actor)": [[273, "fury.actor.sdf", false]], "seek() (fury.animation.timeline.timeline method)": [[275, "fury.animation.timeline.Timeline.seek", false]], "seek_percent() (fury.animation.timeline.timeline method)": [[275, "fury.animation.timeline.Timeline.seek_percent", false]], "select() (fury.pick.selectionmanager method)": [[287, "fury.pick.SelectionManager.select", false], [287, "id1", false]], "select() (fury.ui.elements.listbox2d method)": [[293, "fury.ui.elements.ListBox2D.select", false]], "select() (fury.ui.elements.listboxitem2d method)": [[293, "fury.ui.elements.ListBoxItem2D.select", false]], "select() (fury.ui.elements.option method)": [[293, "fury.ui.elements.Option.select", false]], "select_option_callback() (fury.ui.elements.combobox2d method)": [[293, "fury.ui.elements.ComboBox2D.select_option_callback", false]], "select_tab_callback() (fury.ui.containers.tabui method)": [[293, "fury.ui.containers.TabUI.select_tab_callback", false]], "selectable_off() (fury.pick.selectionmanager method)": [[287, "fury.pick.SelectionManager.selectable_off", false]], "selectable_on() (fury.pick.selectionmanager method)": [[287, "fury.pick.SelectionManager.selectable_on", false]], "selected_text (fury.ui.elements.combobox2d property)": [[293, "fury.ui.elements.ComboBox2D.selected_text", false]], "selected_text_index (fury.ui.elements.combobox2d property)": [[293, "fury.ui.elements.ComboBox2D.selected_text_index", false]], "selection_box (fury.ui.elements.combobox2d attribute)": [[293, "fury.ui.elements.ComboBox2D.selection_box", false]], "selection_change() (fury.ui.elements.drawshape method)": [[293, "fury.ui.elements.DrawShape.selection_change", false]], "selectionmanager (class in fury.pick)": [[287, "fury.pick.SelectionManager", false]], "set_actor_origin() (in module fury.utils)": [[294, "fury.utils.set_actor_origin", false]], "set_atomic_number() (in module fury.molecular)": [[286, "fury.molecular.set_atomic_number", false]], "set_atomic_position() (in module fury.molecular)": [[286, "fury.molecular.set_atomic_position", false]], "set_bond_order() (in module fury.molecular)": [[286, "fury.molecular.set_bond_order", false]], "set_camera() (fury.window.scene method)": [[295, "fury.window.Scene.set_camera", false]], "set_color() (fury.animation.animation.animation method)": [[275, "fury.animation.animation.Animation.set_color", false]], "set_color_interpolator() (fury.animation.animation.animation method)": [[275, "fury.animation.animation.Animation.set_color_interpolator", false]], "set_color_keyframes() (fury.animation.animation.animation method)": [[275, "fury.animation.animation.Animation.set_color_keyframes", false]], "set_focal() (fury.animation.animation.cameraanimation method)": [[275, "fury.animation.animation.CameraAnimation.set_focal", false]], "set_focal_interpolator() (fury.animation.animation.cameraanimation method)": [[275, "fury.animation.animation.CameraAnimation.set_focal_interpolator", false]], "set_focal_keyframes() (fury.animation.animation.cameraanimation method)": [[275, "fury.animation.animation.CameraAnimation.set_focal_keyframes", false]], "set_head_tail() (fury.stream.tools.genericcircularqueue method)": [[291, "fury.stream.tools.GenericCircularQueue.set_head_tail", false]], "set_icon() (fury.ui.core.button2d method)": [[293, "fury.ui.core.Button2D.set_icon", false]], "set_icon_by_name() (fury.ui.core.button2d method)": [[293, "fury.ui.core.Button2D.set_icon_by_name", false]], "set_img() (fury.ui.containers.imagecontainer2d method)": [[293, "fury.ui.containers.ImageContainer2D.set_img", false]], "set_input() (in module fury.utils)": [[294, "fury.utils.set_input", false]], "set_interpolator() (fury.animation.animation.animation method)": [[275, "fury.animation.animation.Animation.set_interpolator", false]], "set_keyframe() (fury.animation.animation.animation method)": [[275, "fury.animation.animation.Animation.set_keyframe", false]], "set_keyframes() (fury.animation.animation.animation method)": [[275, "fury.animation.animation.Animation.set_keyframes", false]], "set_message() (fury.ui.elements.textbox2d method)": [[293, "fury.ui.elements.TextBox2D.set_message", false]], "set_mouse() (in module fury.stream.server.async_app)": [[291, "fury.stream.server.async_app.set_mouse", false]], "set_mouse_click() (in module fury.stream.server.async_app)": [[291, "fury.stream.server.async_app.set_mouse_click", false]], "set_opacity() (fury.actors.odf_slicer.odfsliceractor method)": [[274, "fury.actors.odf_slicer.OdfSlicerActor.set_opacity", false]], "set_opacity() (fury.animation.animation.animation method)": [[275, "fury.animation.animation.Animation.set_opacity", false]], "set_opacity_interpolator() (fury.animation.animation.animation method)": [[275, "fury.animation.animation.Animation.set_opacity_interpolator", false]], "set_opacity_keyframes() (fury.animation.animation.animation method)": [[275, "fury.animation.animation.Animation.set_opacity_keyframes", false]], "set_polydata_colors() (in module fury.utils)": [[294, "fury.utils.set_polydata_colors", false]], "set_polydata_normals() (in module fury.utils)": [[294, "fury.utils.set_polydata_normals", false]], "set_polydata_primitives_count() (in module fury.utils)": [[294, "fury.utils.set_polydata_primitives_count", false]], "set_polydata_tangents() (in module fury.utils)": [[294, "fury.utils.set_polydata_tangents", false]], "set_polydata_tcoords() (in module fury.utils)": [[294, "fury.utils.set_polydata_tcoords", false]], "set_polydata_triangles() (in module fury.utils)": [[294, "fury.utils.set_polydata_triangles", false]], "set_polydata_vertices() (in module fury.utils)": [[294, "fury.utils.set_polydata_vertices", false]], "set_position() (fury.animation.animation.animation method)": [[275, "fury.animation.animation.Animation.set_position", false]], "set_position() (fury.ui.elements.linedoubleslider2d method)": [[293, "fury.ui.elements.LineDoubleSlider2D.set_position", false]], "set_position() (fury.ui.elements.lineslider2d method)": [[293, "fury.ui.elements.LineSlider2D.set_position", false]], "set_position_interpolator() (fury.animation.animation.animation method)": [[275, "fury.animation.animation.Animation.set_position_interpolator", false]], "set_position_keyframes() (fury.animation.animation.animation method)": [[275, "fury.animation.animation.Animation.set_position_keyframes", false]], "set_rotation() (fury.animation.animation.animation method)": [[275, "fury.animation.animation.Animation.set_rotation", false]], "set_rotation_as_vector() (fury.animation.animation.animation method)": [[275, "fury.animation.animation.Animation.set_rotation_as_vector", false]], "set_rotation_interpolator() (fury.animation.animation.animation method)": [[275, "fury.animation.animation.Animation.set_rotation_interpolator", false]], "set_scale() (fury.animation.animation.animation method)": [[275, "fury.animation.animation.Animation.set_scale", false]], "set_scale_interpolator() (fury.animation.animation.animation method)": [[275, "fury.animation.animation.Animation.set_scale_interpolator", false]], "set_scale_keyframes() (fury.animation.animation.animation method)": [[275, "fury.animation.animation.Animation.set_scale_keyframes", false]], "set_slot_colors() (fury.ui.elements.filemenu2d method)": [[293, "fury.ui.elements.FileMenu2D.set_slot_colors", false]], "set_view_up() (fury.animation.animation.cameraanimation method)": [[275, "fury.animation.animation.CameraAnimation.set_view_up", false]], "set_view_up_interpolator() (fury.animation.animation.cameraanimation method)": [[275, "fury.animation.animation.CameraAnimation.set_view_up_interpolator", false]], "set_view_up_keyframes() (fury.animation.animation.cameraanimation method)": [[275, "fury.animation.animation.CameraAnimation.set_view_up_keyframes", false]], "set_visibility() (fury.ui.containers.panel2d method)": [[293, "fury.ui.containers.Panel2D.set_visibility", false]], "set_visibility() (fury.ui.core.ui method)": [[293, "fury.ui.core.UI.set_visibility", false]], "set_visibility() (fury.ui.elements.combobox2d method)": [[293, "fury.ui.elements.ComboBox2D.set_visibility", false]], "set_weel() (in module fury.stream.server.async_app)": [[291, "fury.stream.server.async_app.set_weel", false]], "setposition() (fury.actor.container method)": [[273, "fury.actor.Container.SetPosition", false]], "setvisibility() (fury.actor.container method)": [[273, "fury.actor.Container.SetVisibility", false]], "shader (in module fury.lib)": [[284, "fury.lib.Shader", false]], "shader_apply_effects() (in module fury.shaders.base)": [[290, "fury.shaders.base.shader_apply_effects", false]], "shader_to_actor() (in module fury.shaders.base)": [[290, "fury.shaders.base.shader_to_actor", false]], "shaders_dir() (in module fury.shaders.base)": [[290, "fury.shaders.base.SHADERS_DIR", false]], "shadow (fury.ui.core.textblock2d attribute)": [[293, "fury.ui.core.TextBlock2D.shadow", false]], "shadow (fury.ui.core.textblock2d property)": [[293, "id13", false]], "shallow_copy() (in module fury.utils)": [[294, "fury.utils.shallow_copy", false]], "shallowcopy() (fury.actor.container method)": [[273, "fury.actor.Container.ShallowCopy", false]], "shape (fury.ui.elements.linedoubleslider2d attribute)": [[293, "fury.ui.elements.LineDoubleSlider2D.shape", false]], "shape (fury.ui.elements.lineslider2d attribute)": [[293, "fury.ui.elements.LineSlider2D.shape", false]], "shape (in module fury.colormap)": [[276, "fury.colormap.shape", false], [276, "id12", false]], "sharedmemcircularqueue (class in fury.stream.tools)": [[291, "fury.stream.tools.SharedMemCircularQueue", false]], "sharedmemimagebuffermanager (class in fury.stream.tools)": [[291, "fury.stream.tools.SharedMemImageBufferManager", false]], "sharedmemmultidimensionalbuffer (class in fury.stream.tools)": [[291, "fury.stream.tools.SharedMemMultiDimensionalBuffer", false]], "show() (fury.ui.elements.playbackpanel method)": [[293, "fury.ui.elements.PlaybackPanel.show", false]], "show() (in module fury.window)": [[295, "fury.window.show", false]], "show_rotation_slider() (fury.ui.elements.drawpanel method)": [[293, "fury.ui.elements.DrawPanel.show_rotation_slider", false]], "showable_text() (fury.ui.elements.textbox2d method)": [[293, "fury.ui.elements.TextBox2D.showable_text", false]], "showmanager (class in fury.window)": [[295, "fury.window.ShowManager", false]], "simplebondperceiver (in module fury.lib)": [[284, "fury.lib.SimpleBondPerceiver", false]], "size (fury.ui.containers.imagecontainer2d attribute)": [[293, "fury.ui.containers.ImageContainer2D.size", false]], "size (fury.ui.core.textblock2d attribute)": [[293, "fury.ui.core.TextBlock2D.size", false]], "size (fury.ui.core.ui attribute)": [[293, "fury.ui.core.UI.size", false]], "size (fury.ui.core.ui property)": [[293, "id3", false]], "size (in module fury.colormap)": [[276, "fury.colormap.size", false], [276, "id8", false]], "size() (fury.window.scene method)": [[295, "fury.window.Scene.size", false]], "skin_animation() (fury.gltf.gltf method)": [[281, "fury.gltf.glTF.skin_animation", false]], "skip_re() (in module fury.decorators)": [[279, "fury.decorators.SKIP_RE", false]], "skybox (in module fury.lib)": [[284, "fury.lib.Skybox", false]], "skybox() (fury.window.scene method)": [[295, "fury.window.Scene.skybox", false]], "slerp() (in module fury.animation.interpolator)": [[275, "fury.animation.interpolator.slerp", false]], "slice_along_axis() (fury.actors.odf_slicer.odfsliceractor method)": [[274, "fury.actors.odf_slicer.OdfSlicerActor.slice_along_axis", false]], "slicer() (in module fury.actor)": [[273, "fury.actor.slicer", false]], "snapshot() (in module fury.window)": [[295, "fury.window.snapshot", false]], "speed (fury.animation.timeline.timeline property)": [[275, "fury.animation.timeline.Timeline.speed", false]], "speed (fury.ui.elements.playbackpanel property)": [[293, "fury.ui.elements.PlaybackPanel.speed", false]], "sphere() (in module fury.actor)": [[273, "fury.actor.sphere", false]], "sphere2cart() (in module fury.transform)": [[292, "fury.transform.sphere2cart", false]], "sphere_cpk() (in module fury.molecular)": [[286, "fury.molecular.sphere_cpk", false]], "spheresource (in module fury.lib)": [[284, "fury.lib.SphereSource", false]], "spinbox (class in fury.ui.elements)": [[293, "fury.ui.elements.SpinBox", false]], "spline_interpolator() (in module fury.animation.interpolator)": [[275, "fury.animation.interpolator.spline_interpolator", false]], "splinefilter (in module fury.lib)": [[284, "fury.lib.SplineFilter", false]], "square() (in module fury.actor)": [[273, "fury.actor.square", false]], "ss() (in module fury.colormap)": [[276, "fury.colormap.ss", false]], "start() (fury.stream.client.furystreamclient method)": [[291, "fury.stream.client.FuryStreamClient.start", false]], "start() (fury.stream.client.furystreaminteraction method)": [[291, "fury.stream.client.FuryStreamInteraction.start", false]], "start() (fury.stream.tools.intervaltimer method)": [[291, "fury.stream.tools.IntervalTimer.start", false]], "start() (fury.stream.tools.intervaltimerthreading method)": [[291, "fury.stream.tools.IntervalTimerThreading.start", false]], "start() (fury.stream.widget.widget method)": [[291, "fury.stream.widget.Widget.start", false]], "start() (fury.window.showmanager method)": [[295, "fury.window.ShowManager.start", false]], "static_actors (fury.animation.animation.animation property)": [[275, "fury.animation.animation.Animation.static_actors", false]], "step_interpolator() (in module fury.animation.interpolator)": [[275, "fury.animation.interpolator.step_interpolator", false]], "stick() (in module fury.molecular)": [[286, "fury.molecular.stick", false]], "stlreader (in module fury.lib)": [[284, "fury.lib.STLReader", false]], "stlwriter (in module fury.lib)": [[284, "fury.lib.STLWriter", false]], "stop() (fury.animation.timeline.timeline method)": [[275, "fury.animation.timeline.Timeline.stop", false]], "stop() (fury.stream.client.furystreamclient method)": [[291, "fury.stream.client.FuryStreamClient.stop", false]], "stop() (fury.stream.client.furystreaminteraction method)": [[291, "fury.stream.client.FuryStreamInteraction.stop", false]], "stop() (fury.stream.tools.intervaltimer method)": [[291, "fury.stream.tools.IntervalTimer.stop", false]], "stop() (fury.stream.tools.intervaltimerthreading method)": [[291, "fury.stream.tools.IntervalTimerThreading.stop", false]], "stop() (fury.stream.widget.widget method)": [[291, "fury.stream.widget.Widget.stop", false]], "stop() (fury.ui.elements.playbackpanel method)": [[293, "fury.ui.elements.PlaybackPanel.stop", false]], "stopped (fury.animation.timeline.timeline property)": [[275, "fury.animation.timeline.Timeline.stopped", false]], "streamtube() (in module fury.actor)": [[273, "fury.actor.streamtube", false]], "strides (in module fury.colormap)": [[276, "fury.colormap.strides", false], [276, "id13", false]], "stringarray (in module fury.lib)": [[284, "fury.lib.StringArray", false]], "style (fury.window.showmanager attribute)": [[295, "fury.window.ShowManager.style", false]], "superquadric() (in module fury.actor)": [[273, "fury.actor.superquadric", false]], "surface() (in module fury.actor)": [[273, "fury.actor.surface", false]], "t (in module fury.colormap)": [[276, "fury.colormap.T", false], [276, "id0", false]], "tabpanel2d (class in fury.ui.containers)": [[293, "fury.ui.containers.TabPanel2D", false]], "tabs (fury.ui.containers.tabui attribute)": [[293, "fury.ui.containers.TabUI.tabs", false]], "tabui (class in fury.ui.containers)": [[293, "fury.ui.containers.TabUI", false]], "tail (fury.stream.tools.genericcircularqueue property)": [[291, "fury.stream.tools.GenericCircularQueue.tail", false]], "tan_cubic_spline_interpolator() (in module fury.animation.interpolator)": [[275, "fury.animation.interpolator.tan_cubic_spline_interpolator", false]], "tangents_from_actor() (in module fury.utils)": [[294, "fury.utils.tangents_from_actor", false]], "tangents_from_direction_of_anisotropy() (in module fury.utils)": [[294, "fury.utils.tangents_from_direction_of_anisotropy", false]], "tangents_to_actor() (in module fury.utils)": [[294, "fury.utils.tangents_to_actor", false]], "tensor_ellipsoid() (in module fury.actors.tensor)": [[274, "fury.actors.tensor.tensor_ellipsoid", false]], "tensor_slicer() (in module fury.actor)": [[273, "fury.actor.tensor_slicer", false]], "text (fury.ui.elements.linedoubleslider2d attribute)": [[293, "fury.ui.elements.LineDoubleSlider2D.text", false]], "text (fury.ui.elements.lineslider2d attribute)": [[293, "fury.ui.elements.LineSlider2D.text", false]], "text (fury.ui.elements.ringslider2d attribute)": [[293, "fury.ui.elements.RingSlider2D.text", false]], "text (fury.ui.elements.textbox2d attribute)": [[293, "fury.ui.elements.TextBox2D.text", false]], "text_3d() (in module fury.actor)": [[273, "fury.actor.text_3d", false]], "text_block (fury.ui.containers.tabpanel2d attribute)": [[293, "fury.ui.containers.TabPanel2D.text_block", false]], "textactor (in module fury.lib)": [[284, "fury.lib.TextActor", false]], "textactor3d (in module fury.lib)": [[284, "fury.lib.TextActor3D", false]], "textblock2d (class in fury.ui.core)": [[293, "fury.ui.core.TextBlock2D", false]], "textbox2d (class in fury.ui.elements)": [[293, "fury.ui.elements.TextBox2D", false]], "textbox_update_value() (fury.ui.elements.spinbox method)": [[293, "fury.ui.elements.SpinBox.textbox_update_value", false]], "texture (in module fury.lib)": [[284, "fury.lib.Texture", false]], "texture() (in module fury.actor)": [[273, "fury.actor.texture", false]], "texture_2d() (in module fury.actor)": [[273, "fury.actor.texture_2d", false]], "texture_on_sphere() (in module fury.actor)": [[273, "fury.actor.texture_on_sphere", false]], "texture_update() (in module fury.actor)": [[273, "fury.actor.texture_update", false]], "texturedactor2d (in module fury.lib)": [[284, "fury.lib.TexturedActor2D", false]], "texturedspheresource (in module fury.lib)": [[284, "fury.lib.TexturedSphereSource", false]], "texturemaptoplane (in module fury.lib)": [[284, "fury.lib.TextureMapToPlane", false]], "tiffreader (in module fury.lib)": [[284, "fury.lib.TIFFReader", false]], "tiffwriter (in module fury.lib)": [[284, "fury.lib.TIFFWriter", false]], "timeline (class in fury.animation.timeline)": [[275, "fury.animation.timeline.Timeline", false]], "timeline (fury.animation.animation.animation property)": [[275, "fury.animation.animation.Animation.timeline", false]], "timelines (fury.window.showmanager property)": [[295, "fury.window.ShowManager.timelines", false]], "title (fury.ui.containers.tabpanel2d property)": [[293, "fury.ui.containers.TabPanel2D.title", false]], "title (fury.ui.elements.card2d property)": [[293, "fury.ui.elements.Card2D.title", false]], "title_bold (fury.ui.containers.tabpanel2d property)": [[293, "fury.ui.containers.TabPanel2D.title_bold", false]], "title_box (fury.ui.elements.card2d attribute)": [[293, "fury.ui.elements.Card2D.title_box", false]], "title_color (fury.ui.containers.tabpanel2d property)": [[293, "fury.ui.containers.TabPanel2D.title_color", false]], "title_font_size (fury.ui.containers.tabpanel2d property)": [[293, "fury.ui.containers.TabPanel2D.title_font_size", false]], "title_italic (fury.ui.containers.tabpanel2d property)": [[293, "fury.ui.containers.TabPanel2D.title_italic", false]], "toggle() (fury.ui.elements.option method)": [[293, "fury.ui.elements.Option.toggle", false]], "top_disk_ratio (fury.ui.elements.linedoubleslider2d property)": [[293, "fury.ui.elements.LineDoubleSlider2D.top_disk_ratio", false]], "top_disk_value (fury.ui.elements.linedoubleslider2d property)": [[293, "fury.ui.elements.LineDoubleSlider2D.top_disk_value", false]], "top_y_position (fury.ui.elements.linedoubleslider2d property)": [[293, "fury.ui.elements.LineDoubleSlider2D.top_y_position", false]], "top_y_position (fury.ui.elements.lineslider2d property)": [[293, "fury.ui.elements.LineSlider2D.top_y_position", false]], "total_num_atoms (fury.molecular.molecule property)": [[286, "fury.molecular.Molecule.total_num_atoms", false]], "total_num_bonds (fury.molecular.molecule property)": [[286, "fury.molecular.Molecule.total_num_bonds", false]], "track (fury.ui.elements.linedoubleslider2d attribute)": [[293, "fury.ui.elements.LineDoubleSlider2D.track", false]], "track (fury.ui.elements.lineslider2d attribute)": [[293, "fury.ui.elements.LineSlider2D.track", false]], "track (fury.ui.elements.ringslider2d attribute)": [[293, "fury.ui.elements.RingSlider2D.track", false]], "track_click_callback() (fury.ui.elements.lineslider2d method)": [[293, "fury.ui.elements.LineSlider2D.track_click_callback", false]], "track_click_callback() (fury.ui.elements.ringslider2d method)": [[293, "fury.ui.elements.RingSlider2D.track_click_callback", false]], "transform (in module fury.lib)": [[284, "fury.lib.Transform", false]], "transform_from_matrix() (in module fury.transform)": [[292, "fury.transform.transform_from_matrix", false]], "transformpolydatafilter (in module fury.lib)": [[284, "fury.lib.TransformPolyDataFilter", false]], "translate() (in module fury.transform)": [[292, "fury.transform.translate", false]], "transverse_animations() (fury.gltf.gltf method)": [[281, "fury.gltf.glTF.transverse_animations", false]], "transverse_bones() (fury.gltf.gltf method)": [[281, "fury.gltf.glTF.transverse_bones", false]], "transverse_channels() (fury.gltf.gltf method)": [[281, "fury.gltf.glTF.transverse_channels", false]], "transverse_node() (fury.gltf.gltf method)": [[281, "fury.gltf.glTF.transverse_node", false]], "triangle_order() (in module fury.utils)": [[294, "fury.utils.triangle_order", false]], "trianglefilter (in module fury.lib)": [[284, "fury.lib.TriangleFilter", false]], "triangularprism() (in module fury.actor)": [[273, "fury.actor.triangularprism", false]], "tubefilter (in module fury.lib)": [[284, "fury.lib.TubeFilter", false]], "ui (class in fury.ui.core)": [[293, "fury.ui.core.UI", false]], "uncertainty_cone() (in module fury.actor)": [[273, "fury.actor.uncertainty_cone", false]], "unlock() (fury.stream.tools.sharedmemcircularqueue method)": [[291, "fury.stream.tools.SharedMemCircularQueue.unlock", false]], "unsignedchararray (in module fury.lib)": [[284, "fury.lib.UnsignedCharArray", false]], "unstructuredgrid (in module fury.lib)": [[284, "fury.lib.UnstructuredGrid", false]], "up_button_callback() (fury.ui.elements.listbox2d method)": [[293, "fury.ui.elements.ListBox2D.up_button_callback", false]], "update() (fury.actor.container method)": [[273, "fury.actor.Container.update", false]], "update() (fury.animation.timeline.timeline method)": [[275, "fury.animation.timeline.Timeline.update", false]], "update() (fury.ui.elements.linedoubleslider2d method)": [[293, "fury.ui.elements.LineDoubleSlider2D.update", false]], "update() (fury.ui.elements.lineslider2d method)": [[293, "fury.ui.elements.LineSlider2D.update", false]], "update() (fury.ui.elements.listbox2d method)": [[293, "fury.ui.elements.ListBox2D.update", false]], "update() (fury.ui.elements.ringslider2d method)": [[293, "fury.ui.elements.RingSlider2D.update", false]], "update_actor() (in module fury.utils)": [[294, "fury.utils.update_actor", false]], "update_alignment() (fury.ui.core.textblock2d method)": [[293, "fury.ui.core.TextBlock2D.update_alignment", false]], "update_animation() (fury.animation.animation.animation method)": [[275, "fury.animation.animation.Animation.update_animation", false]], "update_animation() (fury.animation.animation.cameraanimation method)": [[275, "fury.animation.animation.CameraAnimation.update_animation", false]], "update_border_coords() (fury.ui.containers.panel2d method)": [[293, "fury.ui.containers.Panel2D.update_border_coords", false]], "update_bounding_box() (fury.ui.core.textblock2d method)": [[293, "fury.ui.core.TextBlock2D.update_bounding_box", false]], "update_button_icons() (fury.ui.elements.drawpanel method)": [[293, "fury.ui.elements.DrawPanel.update_button_icons", false]], "update_duration() (fury.animation.animation.animation method)": [[275, "fury.animation.animation.Animation.update_duration", false]], "update_duration() (fury.animation.timeline.timeline method)": [[275, "fury.animation.timeline.Timeline.update_duration", false]], "update_element() (fury.ui.containers.panel2d method)": [[293, "fury.ui.containers.Panel2D.update_element", false]], "update_element() (fury.ui.containers.tabpanel2d method)": [[293, "fury.ui.containers.TabPanel2D.update_element", false]], "update_element() (fury.ui.containers.tabui method)": [[293, "fury.ui.containers.TabUI.update_element", false]], "update_morph() (fury.gltf.gltf method)": [[281, "fury.gltf.glTF.update_morph", false]], "update_motion_path() (fury.animation.animation.animation method)": [[275, "fury.animation.animation.Animation.update_motion_path", false]], "update_polydata_normals() (in module fury.utils)": [[294, "fury.utils.update_polydata_normals", false]], "update_progressbar() (in module fury.data.fetcher)": [[278, "fury.data.fetcher.update_progressbar", false]], "update_scrollbar() (fury.ui.elements.listbox2d method)": [[293, "fury.ui.elements.ListBox2D.update_scrollbar", false]], "update_selection_type() (fury.pick.selectionmanager method)": [[287, "fury.pick.SelectionManager.update_selection_type", false]], "update_shape_position() (fury.ui.elements.drawshape method)": [[293, "fury.ui.elements.DrawShape.update_shape_position", false]], "update_shape_selection() (fury.ui.elements.drawpanel method)": [[293, "fury.ui.elements.DrawPanel.update_shape_selection", false]], "update_skin() (fury.gltf.gltf method)": [[281, "fury.gltf.glTF.update_skin", false]], "update_sphere() (fury.actors.odf_slicer.odfsliceractor method)": [[274, "fury.actors.odf_slicer.OdfSlicerActor.update_sphere", false]], "update_surface_actor_colors() (in module fury.utils)": [[294, "fury.utils.update_surface_actor_colors", false]], "update_tabs() (fury.ui.containers.tabui method)": [[293, "fury.ui.containers.TabUI.update_tabs", false]], "url (fury.stream.widget.widget property)": [[291, "fury.stream.widget.Widget.url", false]], "validate_value() (fury.ui.elements.spinbox method)": [[293, "fury.ui.elements.SpinBox.validate_value", false]], "value (fury.ui.elements.lineslider2d property)": [[293, "fury.ui.elements.LineSlider2D.value", false]], "value (fury.ui.elements.ringslider2d property)": [[293, "fury.ui.elements.RingSlider2D.value", false]], "value (fury.ui.elements.spinbox property)": [[293, "fury.ui.elements.SpinBox.value", false]], "value_slider (fury.ui.elements.rangeslider attribute)": [[293, "fury.ui.elements.RangeSlider.value_slider", false]], "value_slider_center (fury.ui.elements.rangeslider attribute)": [[293, "fury.ui.elements.RangeSlider.value_slider_center", false]], "value_to_ratio() (fury.ui.elements.linedoubleslider2d method)": [[293, "fury.ui.elements.LineDoubleSlider2D.value_to_ratio", false]], "vector_text() (in module fury.actor)": [[273, "fury.actor.vector_text", false]], "vectortext (in module fury.lib)": [[284, "fury.lib.VectorText", false]], "vertical_justification (fury.ui.core.textblock2d attribute)": [[293, "fury.ui.core.TextBlock2D.vertical_justification", false]], "vertical_justification (fury.ui.core.textblock2d property)": [[293, "id14", false]], "verticallayout (class in fury.layout)": [[283, "fury.layout.VerticalLayout", false]], "vertices_from_actor() (in module fury.utils)": [[294, "fury.utils.vertices_from_actor", false]], "volume (in module fury.lib)": [[284, "fury.lib.Volume", false]], "vtk_matrix_to_numpy() (in module fury.utils)": [[294, "fury.utils.vtk_matrix_to_numpy", false]], "vtk_version() (in module fury.lib)": [[284, "fury.lib.VTK_VERSION", false]], "wait() (fury.window.showmanager method)": [[295, "fury.window.ShowManager.wait", false]], "web_server() (in module fury.stream.server.main)": [[291, "fury.stream.server.main.web_server", false]], "web_server_raw_array() (in module fury.stream.server.main)": [[291, "fury.stream.server.main.web_server_raw_array", false]], "widget (class in fury.stream.widget)": [[291, "fury.stream.widget.Widget", false]], "width (fury.ui.core.rectangle2d property)": [[293, "fury.ui.core.Rectangle2D.width", false]], "width (fury.ui.elements.playbackpanel property)": [[293, "fury.ui.elements.PlaybackPanel.width", false]], "width (fury.ui.elements.textbox2d attribute)": [[293, "fury.ui.elements.TextBox2D.width", false]], "width_set_text() (fury.ui.elements.textbox2d method)": [[293, "fury.ui.elements.TextBox2D.width_set_text", false]], "window (fury.window.showmanager attribute)": [[295, "fury.window.ShowManager.window", false]], "window_left (fury.ui.elements.textbox2d attribute)": [[293, "fury.ui.elements.TextBox2D.window_left", false]], "window_right (fury.ui.elements.textbox2d attribute)": [[293, "fury.ui.elements.TextBox2D.window_right", false]], "windowtoimagefilter (in module fury.lib)": [[284, "fury.lib.WindowToImageFilter", false]], "worldpointpicker (in module fury.lib)": [[284, "fury.lib.WorldPointPicker", false]], "wrap_overflow() (in module fury.ui.helpers)": [[293, "fury.ui.helpers.wrap_overflow", false]], "write_accessor() (in module fury.gltf)": [[281, "fury.gltf.write_accessor", false]], "write_buffer() (in module fury.gltf)": [[281, "fury.gltf.write_buffer", false]], "write_bufferview() (in module fury.gltf)": [[281, "fury.gltf.write_bufferview", false]], "write_camera() (in module fury.gltf)": [[281, "fury.gltf.write_camera", false]], "write_into() (fury.stream.tools.genericimagebuffermanager method)": [[291, "fury.stream.tools.GenericImageBufferManager.write_into", false]], "write_material() (in module fury.gltf)": [[281, "fury.gltf.write_material", false]], "write_mesh() (in module fury.gltf)": [[281, "fury.gltf.write_mesh", false]], "write_node() (in module fury.gltf)": [[281, "fury.gltf.write_node", false]], "write_scene() (in module fury.gltf)": [[281, "fury.gltf.write_scene", false]], "xlayout (class in fury.layout)": [[283, "fury.layout.XLayout", false]], "xmlpolydatareader (in module fury.lib)": [[284, "fury.lib.XMLPolyDataReader", false]], "xmlpolydatawriter (in module fury.lib)": [[284, "fury.lib.XMLPolyDataWriter", false]], "xyz2lab() (in module fury.colormap)": [[276, "fury.colormap.xyz2lab", false]], "xyz2rgb() (in module fury.colormap)": [[276, "fury.colormap.xyz2rgb", false]], "xyz_color_interpolator() (in module fury.animation.interpolator)": [[275, "fury.animation.interpolator.xyz_color_interpolator", false]], "xyz_from_rgb() (in module fury.colormap)": [[276, "fury.colormap.xyz_from_rgb", false]], "yaw() (fury.window.scene method)": [[295, "fury.window.Scene.yaw", false]], "ylayout (class in fury.layout)": [[283, "fury.layout.YLayout", false]], "zlayout (class in fury.layout)": [[283, "fury.layout.ZLayout", false]], "zoom() (fury.window.scene method)": [[295, "fury.window.Scene.zoom", false]]}, "objects": {"": [[272, 0, 0, "-", "fury"]], "fury": [[273, 0, 0, "-", "actor"], [274, 0, 0, "-", "actors"], [275, 0, 0, "-", "animation"], [276, 0, 0, "-", "colormap"], [277, 0, 0, "-", "convert"], [278, 0, 0, "-", "data"], [279, 0, 0, "-", "decorators"], [280, 0, 0, "-", "deprecator"], [272, 5, 1, "", "disable_warnings"], [272, 5, 1, "", "enable_warnings"], [272, 5, 1, "", "get_info"], [281, 0, 0, "-", "gltf"], [282, 0, 0, "-", "io"], [283, 0, 0, "-", "layout"], [284, 0, 0, "-", "lib"], [285, 0, 0, "-", "material"], [286, 0, 0, "-", "molecular"], [287, 0, 0, "-", "pick"], [288, 0, 0, "-", "pkg_info"], [289, 0, 0, "-", "primitive"], [290, 0, 0, "-", "shaders"], [291, 0, 0, "-", "stream"], [292, 0, 0, "-", "transform"], [293, 0, 0, "-", "ui"], [294, 0, 0, "-", "utils"], [295, 0, 0, "-", "window"]], "fury.actor": [[273, 1, 1, "", "Container"], [273, 5, 1, "", "arrow"], [273, 5, 1, "", "axes"], [273, 5, 1, "", "billboard"], [273, 5, 1, "", "box"], [273, 5, 1, "", "cone"], [273, 5, 1, "", "contour_from_label"], [273, 5, 1, "", "contour_from_roi"], [273, 5, 1, "", "cube"], [273, 5, 1, "", "cylinder"], [273, 5, 1, "", "disk"], [273, 5, 1, "", "dot"], [273, 5, 1, "", "dots"], [273, 5, 1, "", "ellipsoid"], [273, 5, 1, "", "figure"], [273, 5, 1, "", "frustum"], [273, 5, 1, "", "grid"], [273, 5, 1, "", "label"], [273, 5, 1, "", "line"], [273, 5, 1, "", "markers"], [273, 5, 1, "", "octagonalprism"], [273, 5, 1, "", "odf_slicer"], [273, 5, 1, "", "peak"], [273, 5, 1, "", "peak_slicer"], [273, 5, 1, "", "pentagonalprism"], [273, 5, 1, "", "point"], [273, 5, 1, "", "rectangle"], [273, 5, 1, "", "rhombicuboctahedron"], [273, 5, 1, "", "scalar_bar"], [273, 5, 1, "", "sdf"], [273, 5, 1, "", "slicer"], [273, 5, 1, "", "sphere"], [273, 5, 1, "", "square"], [273, 5, 1, "", "streamtube"], [273, 5, 1, "", "superquadric"], [273, 5, 1, "", "surface"], [273, 5, 1, "", "tensor_slicer"], [273, 5, 1, "", "text_3d"], [273, 5, 1, "", "texture"], [273, 5, 1, "", "texture_2d"], [273, 5, 1, "", "texture_on_sphere"], [273, 5, 1, "", "texture_update"], [273, 5, 1, "", "triangularprism"], [273, 5, 1, "", "uncertainty_cone"], [273, 5, 1, "", "vector_text"]], "fury.actor.Container": [[273, 2, 1, "", "AddPosition"], [273, 2, 1, "", "GetBounds"], [273, 2, 1, "", "GetCenter"], [273, 2, 1, "", "GetLength"], [273, 2, 1, "", "GetPosition"], [273, 2, 1, "", "GetVisibility"], [273, 2, 1, "", "NewInstance"], [273, 2, 1, "", "SetPosition"], [273, 2, 1, "", "SetVisibility"], [273, 2, 1, "", "ShallowCopy"], [273, 2, 1, "", "__init__"], [273, 2, 1, "", "add"], [273, 2, 1, "", "add_to_scene"], [273, 3, 1, "", "anchor"], [273, 2, 1, "", "clear"], [273, 4, 1, "", "items"], [273, 3, 1, "", "padding"], [273, 2, 1, "", "remove_from_scene"], [273, 2, 1, "", "update"]], "fury.actors": [[274, 0, 0, "-", "odf_slicer"], [274, 0, 0, "-", "peak"], [274, 0, 0, "-", "tensor"]], "fury.actors.odf_slicer": [[274, 1, 1, "", "OdfSlicerActor"]], "fury.actors.odf_slicer.OdfSlicerActor": [[274, 2, 1, "", "__init__"], [274, 2, 1, "", "display"], [274, 2, 1, "", "display_extent"], [274, 2, 1, "", "set_opacity"], [274, 2, 1, "", "slice_along_axis"], [274, 2, 1, "", "update_sphere"]], "fury.actors.peak": [[274, 1, 1, "", "PeakActor"]], "fury.actors.peak.PeakActor": [[274, 2, 1, "", "__init__"], [274, 4, 1, "", "cross_section"], [274, 2, 1, "", "display_cross_section"], [274, 2, 1, "", "display_extent"], [274, 4, 1, "", "global_opacity"], [274, 4, 1, "", "high_ranges"], [274, 4, 1, "", "is_range"], [274, 4, 1, "", "linewidth"], [274, 4, 1, "", "low_ranges"], [274, 4, 1, "", "max_centers"], [274, 4, 1, "", "min_centers"]], "fury.actors.tensor": [[274, 5, 1, "", "double_cone"], [274, 5, 1, "", "main_dir_uncertainty"], [274, 5, 1, "", "tensor_ellipsoid"]], "fury.animation": [[275, 0, 0, "-", "animation"], [275, 0, 0, "-", "helpers"], [275, 0, 0, "-", "interpolator"], [275, 0, 0, "-", "timeline"]], "fury.animation.animation": [[275, 1, 1, "", "Animation"], [275, 1, 1, "", "CameraAnimation"]], "fury.animation.animation.Animation": [[275, 2, 1, "", "__init__"], [275, 4, 1, "id0", "actors"], [275, 2, 1, "", "add"], [275, 2, 1, "", "add_actor"], [275, 2, 1, "", "add_child_animation"], [275, 2, 1, "", "add_static_actor"], [275, 2, 1, "", "add_to_scene"], [275, 2, 1, "", "add_to_scene_at"], [275, 2, 1, "", "add_update_callback"], [275, 4, 1, "", "child_animations"], [275, 4, 1, "", "current_timestamp"], [275, 4, 1, "", "duration"], [275, 2, 1, "", "get_color"], [275, 2, 1, "", "get_current_value"], [275, 2, 1, "", "get_keyframes"], [275, 2, 1, "", "get_opacity"], [275, 2, 1, "", "get_position"], [275, 2, 1, "", "get_rotation"], [275, 2, 1, "", "get_scale"], [275, 2, 1, "", "get_value"], [275, 2, 1, "", "is_inside_scene_at"], [275, 2, 1, "", "is_interpolatable"], [275, 3, 1, "", "length"], [275, 4, 1, "id2", "loop"], [275, 3, 1, "", "motion_path_res"], [275, 4, 1, "", "parent_animation"], [275, 2, 1, "", "remove_actor"], [275, 2, 1, "", "remove_actors"], [275, 2, 1, "", "remove_animations"], [275, 2, 1, "", "remove_from_scene"], [275, 2, 1, "", "remove_from_scene_at"], [275, 2, 1, "", "set_color"], [275, 2, 1, "", "set_color_interpolator"], [275, 2, 1, "", "set_color_keyframes"], [275, 2, 1, "", "set_interpolator"], [275, 2, 1, "", "set_keyframe"], [275, 2, 1, "", "set_keyframes"], [275, 2, 1, "", "set_opacity"], [275, 2, 1, "", "set_opacity_interpolator"], [275, 2, 1, "", "set_opacity_keyframes"], [275, 2, 1, "", "set_position"], [275, 2, 1, "", "set_position_interpolator"], [275, 2, 1, "", "set_position_keyframes"], [275, 2, 1, "", "set_rotation"], [275, 2, 1, "", "set_rotation_as_vector"], [275, 2, 1, "", "set_rotation_interpolator"], [275, 2, 1, "", "set_scale"], [275, 2, 1, "", "set_scale_interpolator"], [275, 2, 1, "", "set_scale_keyframes"], [275, 4, 1, "", "static_actors"], [275, 4, 1, "", "timeline"], [275, 2, 1, "", "update_animation"], [275, 2, 1, "", "update_duration"], [275, 2, 1, "", "update_motion_path"]], "fury.animation.animation.CameraAnimation": [[275, 2, 1, "", "__init__"], [275, 4, 1, "id3", "camera"], [275, 2, 1, "", "get_focal"], [275, 2, 1, "", "get_view_up"], [275, 3, 1, "", "length"], [275, 3, 1, "", "loop"], [275, 3, 1, "", "motion_path_res"], [275, 2, 1, "", "set_focal"], [275, 2, 1, "", "set_focal_interpolator"], [275, 2, 1, "", "set_focal_keyframes"], [275, 2, 1, "", "set_view_up"], [275, 2, 1, "", "set_view_up_interpolator"], [275, 2, 1, "", "set_view_up_keyframes"], [275, 2, 1, "", "update_animation"]], "fury.animation.helpers": [[275, 5, 1, "", "euclidean_distances"], [275, 5, 1, "", "get_next_timestamp"], [275, 5, 1, "", "get_previous_timestamp"], [275, 5, 1, "", "get_time_tau"], [275, 5, 1, "", "get_timestamps_from_keyframes"], [275, 5, 1, "", "get_values_from_keyframes"], [275, 5, 1, "", "lerp"]], "fury.animation.interpolator": [[275, 5, 1, "", "color_interpolator"], [275, 5, 1, "", "cubic_bezier_interpolator"], [275, 5, 1, "", "cubic_spline_interpolator"], [275, 5, 1, "", "hsv_color_interpolator"], [275, 5, 1, "", "lab_color_interpolator"], [275, 5, 1, "", "linear_interpolator"], [275, 5, 1, "", "slerp"], [275, 5, 1, "", "spline_interpolator"], [275, 5, 1, "", "step_interpolator"], [275, 5, 1, "", "tan_cubic_spline_interpolator"], [275, 5, 1, "", "xyz_color_interpolator"]], "fury.animation.timeline": [[275, 1, 1, "", "Timeline"]], "fury.animation.timeline.Timeline": [[275, 2, 1, "", "__init__"], [275, 2, 1, "", "add_animation"], [275, 2, 1, "", "add_to_scene"], [275, 4, 1, "id4", "animations"], [275, 4, 1, "", "current_timestamp"], [275, 4, 1, "", "duration"], [275, 4, 1, "", "has_playback_panel"], [275, 3, 1, "", "length"], [275, 4, 1, "id5", "loop"], [275, 2, 1, "", "pause"], [275, 4, 1, "", "paused"], [275, 2, 1, "", "play"], [275, 3, 1, "", "playback_panel"], [275, 4, 1, "", "playing"], [275, 2, 1, "", "record"], [275, 2, 1, "", "remove_from_scene"], [275, 2, 1, "", "restart"], [275, 2, 1, "", "seek"], [275, 2, 1, "", "seek_percent"], [275, 4, 1, "", "speed"], [275, 2, 1, "", "stop"], [275, 4, 1, "", "stopped"], [275, 2, 1, "", "update"], [275, 2, 1, "", "update_duration"]], "fury.colormap": [[276, 3, 1, "id0", "T"], [276, 3, 1, "id15", "base"], [276, 5, 1, "", "boys2rgb"], [276, 5, 1, "", "cc"], [276, 5, 1, "", "colormap_lookup_table"], [276, 5, 1, "", "create_colormap"], [276, 3, 1, "id14", "ctypes"], [276, 3, 1, "id2", "data"], [276, 5, 1, "", "distinguishable_colormap"], [276, 3, 1, "id3", "dtype"], [276, 3, 1, "id4", "flags"], [276, 3, 1, "id5", "flat"], [276, 5, 1, "", "get_cmap"], [276, 5, 1, "", "get_xyz_coords"], [276, 5, 1, "", "hex_to_rgb"], [276, 5, 1, "", "hsv2rgb"], [276, 3, 1, "id6", "imag"], [276, 3, 1, "id9", "itemsize"], [276, 5, 1, "", "lab2rgb"], [276, 5, 1, "", "lab2xyz"], [276, 5, 1, "", "line_colors"], [276, 3, 1, "id10", "nbytes"], [276, 3, 1, "id11", "ndim"], [276, 5, 1, "", "orient2rgb"], [276, 3, 1, "id7", "real"], [276, 5, 1, "", "rgb2hsv"], [276, 5, 1, "", "rgb2lab"], [276, 5, 1, "", "rgb2xyz"], [276, 5, 1, "", "rgb_from_xyz"], [276, 3, 1, "id12", "shape"], [276, 3, 1, "id8", "size"], [276, 5, 1, "", "ss"], [276, 3, 1, "id13", "strides"], [276, 5, 1, "", "xyz2lab"], [276, 5, 1, "", "xyz2rgb"], [276, 5, 1, "", "xyz_from_rgb"]], "fury.convert": [[277, 5, 1, "", "matplotlib_figure_to_numpy"]], "fury.data": [[278, 5, 1, "", "DATA_DIR"], [278, 0, 0, "-", "fetcher"]], "fury.data.fetcher": [[278, 5, 1, "", "check_sha"], [278, 5, 1, "", "copyfileobj_withprogress"], [278, 5, 1, "", "fetch_data"], [278, 5, 1, "", "fetch_gltf"], [278, 5, 1, "", "fetch_viz_cubemaps"], [278, 5, 1, "", "fetch_viz_dmri"], [278, 5, 1, "", "fetch_viz_icons"], [278, 5, 1, "", "fetch_viz_models"], [278, 5, 1, "", "fetch_viz_new_icons"], [278, 5, 1, "", "fetch_viz_textures"], [278, 5, 1, "", "fetch_viz_wiki_nw"], [278, 5, 1, "", "list_gltf_sample_models"], [278, 5, 1, "", "read_viz_cubemap"], [278, 5, 1, "", "read_viz_dmri"], [278, 5, 1, "", "read_viz_gltf"], [278, 5, 1, "", "read_viz_icons"], [278, 5, 1, "", "read_viz_models"], [278, 5, 1, "", "read_viz_textures"], [278, 5, 1, "", "update_progressbar"]], "fury.decorators": [[279, 5, 1, "", "SKIP_RE"], [279, 5, 1, "", "doctest_skip_parser"]], "fury.deprecator": [[280, 1, 1, "", "ArgsDeprecationWarning"], [280, 1, 1, "", "ExpiredDeprecationError"], [280, 5, 1, "", "_LEADING_WHITE"], [280, 5, 1, "", "cmp_pkg_version"], [280, 5, 1, "", "deprecate_with_version"], [280, 5, 1, "", "deprecated_params"], [280, 5, 1, "", "is_bad_version"]], "fury.deprecator.ArgsDeprecationWarning": [[280, 2, 1, "", "__init__"]], "fury.deprecator.ExpiredDeprecationError": [[280, 2, 1, "", "__init__"]], "fury.gltf": [[281, 5, 1, "", "export_scene"], [281, 5, 1, "", "get_prim"], [281, 1, 1, "", "glTF"], [281, 5, 1, "", "write_accessor"], [281, 5, 1, "", "write_buffer"], [281, 5, 1, "", "write_bufferview"], [281, 5, 1, "", "write_camera"], [281, 5, 1, "", "write_material"], [281, 5, 1, "", "write_mesh"], [281, 5, 1, "", "write_node"], [281, 5, 1, "", "write_scene"]], "fury.gltf.glTF": [[281, 2, 1, "", "__init__"], [281, 2, 1, "", "actors"], [281, 2, 1, "", "apply_morph_vertices"], [281, 2, 1, "", "apply_skin_matrix"], [281, 2, 1, "", "generate_tmatrix"], [281, 2, 1, "", "get_acc_data"], [281, 2, 1, "", "get_animations"], [281, 2, 1, "", "get_buff_array"], [281, 2, 1, "", "get_joint_actors"], [281, 2, 1, "", "get_materials"], [281, 2, 1, "", "get_matrix_from_sampler"], [281, 2, 1, "", "get_morph_data"], [281, 2, 1, "", "get_sampler_data"], [281, 2, 1, "", "get_skin_data"], [281, 2, 1, "", "get_texture"], [281, 2, 1, "", "initialize_skin"], [281, 2, 1, "", "inspect_scene"], [281, 2, 1, "", "load_camera"], [281, 2, 1, "", "load_mesh"], [281, 2, 1, "", "main_animation"], [281, 2, 1, "", "morph_animation"], [281, 2, 1, "", "skin_animation"], [281, 2, 1, "", "transverse_animations"], [281, 2, 1, "", "transverse_bones"], [281, 2, 1, "", "transverse_channels"], [281, 2, 1, "", "transverse_node"], [281, 2, 1, "", "update_morph"], [281, 2, 1, "", "update_skin"]], "fury.io": [[282, 5, 1, "", "load_cubemap_texture"], [282, 5, 1, "", "load_image"], [282, 5, 1, "", "load_polydata"], [282, 5, 1, "", "load_sprite_sheet"], [282, 5, 1, "", "load_text"], [282, 5, 1, "", "save_image"], [282, 5, 1, "", "save_polydata"]], "fury.layout": [[283, 1, 1, "", "GridLayout"], [283, 1, 1, "", "HorizontalLayout"], [283, 1, 1, "", "Layout"], [283, 1, 1, "", "VerticalLayout"], [283, 1, 1, "", "XLayout"], [283, 1, 1, "", "YLayout"], [283, 1, 1, "", "ZLayout"]], "fury.layout.GridLayout": [[283, 2, 1, "", "__init__"], [283, 2, 1, "", "compute_positions"], [283, 2, 1, "", "compute_sizes"], [283, 2, 1, "", "get_cells_shape"]], "fury.layout.HorizontalLayout": [[283, 2, 1, "", "__init__"], [283, 2, 1, "", "compute_positions"]], "fury.layout.Layout": [[283, 2, 1, "", "__init__"], [283, 2, 1, "", "apply"], [283, 2, 1, "", "compute_positions"]], "fury.layout.VerticalLayout": [[283, 2, 1, "", "__init__"], [283, 2, 1, "", "compute_positions"]], "fury.layout.XLayout": [[283, 2, 1, "", "__init__"], [283, 2, 1, "", "apply"], [283, 2, 1, "", "compute_positions"], [283, 2, 1, "", "get_cells_shape"]], "fury.layout.YLayout": [[283, 2, 1, "", "__init__"], [283, 2, 1, "", "apply"], [283, 2, 1, "", "compute_positions"], [283, 2, 1, "", "get_cells_shape"]], "fury.layout.ZLayout": [[283, 2, 1, "", "__init__"], [283, 2, 1, "", "apply"], [283, 2, 1, "", "compute_positions"], [283, 2, 1, "", "get_cells_shape"]], "fury.lib": [[284, 3, 1, "", "Actor"], [284, 3, 1, "", "Actor2D"], [284, 3, 1, "", "AlgorithmOutput"], [284, 3, 1, "", "ArrowSource"], [284, 3, 1, "", "Assembly"], [284, 3, 1, "", "BMPReader"], [284, 3, 1, "", "BMPWriter"], [284, 3, 1, "", "ButterflySubdivisionFilter"], [284, 3, 1, "", "Camera"], [284, 3, 1, "", "CellArray"], [284, 3, 1, "", "CellPicker"], [284, 3, 1, "", "CleanPolyData"], [284, 3, 1, "", "Command"], [284, 3, 1, "", "ConeSource"], [284, 3, 1, "", "ContourFilter"], [284, 3, 1, "", "CylinderSource"], [284, 3, 1, "id0", "DataObject"], [284, 3, 1, "", "DataSetAttributes"], [284, 3, 1, "", "DataSetMapper"], [284, 3, 1, "", "DiskSource"], [284, 3, 1, "", "DoubleArray"], [284, 3, 1, "", "FloatArray"], [284, 3, 1, "", "Follower"], [284, 3, 1, "", "Glyph3D"], [284, 3, 1, "", "HardwareSelector"], [284, 3, 1, "", "IdTypeArray"], [284, 3, 1, "", "ImageActor"], [284, 3, 1, "", "ImageData"], [284, 3, 1, "", "ImageFlip"], [284, 3, 1, "", "ImageMapToColors"], [284, 3, 1, "", "ImageReader2Factory"], [284, 3, 1, "", "ImageReslice"], [284, 3, 1, "", "InteractorEventRecorder"], [284, 3, 1, "", "InteractorStyle"], [284, 3, 1, "", "InteractorStyleImage"], [284, 3, 1, "", "InteractorStyleTrackballActor"], [284, 3, 1, "", "InteractorStyleTrackballCamera"], [284, 3, 1, "", "InteractorStyleUser"], [284, 3, 1, "", "JPEGReader"], [284, 3, 1, "", "JPEGWriter"], [284, 3, 1, "", "LODActor"], [284, 3, 1, "", "LinearExtrusionFilter"], [284, 3, 1, "", "LookupTable"], [284, 3, 1, "", "LoopSubdivisionFilter"], [284, 3, 1, "", "MNIObjectReader"], [284, 3, 1, "", "MNIObjectWriter"], [284, 3, 1, "", "Matrix3x3"], [284, 3, 1, "", "Matrix4x4"], [284, 3, 1, "", "Molecule"], [284, 3, 1, "", "OBJReader"], [284, 3, 1, "", "OpenGLMoleculeMapper"], [284, 3, 1, "", "OpenGLRenderer"], [284, 3, 1, "", "OutlineFilter"], [284, 3, 1, "", "PLYReader"], [284, 3, 1, "", "PLYWriter"], [284, 3, 1, "", "PNGReader"], [284, 3, 1, "", "PNGWriter"], [284, 3, 1, "", "PeriodicTable"], [284, 3, 1, "", "PointPicker"], [284, 3, 1, "", "Points"], [284, 3, 1, "", "PolyData"], [284, 3, 1, "", "PolyDataMapper"], [284, 3, 1, "", "PolyDataMapper2D"], [284, 3, 1, "", "PolyDataNormals"], [284, 3, 1, "", "PolyDataReader"], [284, 3, 1, "", "PolyDataWriter"], [284, 3, 1, "", "PolyVertex"], [284, 3, 1, "", "Polygon"], [284, 3, 1, "", "PropPicker"], [284, 3, 1, "", "Property2D"], [284, 3, 1, "", "ProteinRibbonFilter"], [284, 3, 1, "", "RegularPolygonSource"], [284, 3, 1, "", "RenderLargeImage"], [284, 3, 1, "", "RenderWindow"], [284, 3, 1, "", "RenderWindowInteractor"], [284, 3, 1, "", "Renderer"], [284, 3, 1, "", "STLReader"], [284, 3, 1, "", "STLWriter"], [284, 3, 1, "", "ScalarBarActor"], [284, 3, 1, "", "Shader"], [284, 3, 1, "", "SimpleBondPerceiver"], [284, 3, 1, "", "Skybox"], [284, 3, 1, "", "SphereSource"], [284, 3, 1, "", "SplineFilter"], [284, 3, 1, "", "StringArray"], [284, 3, 1, "", "TIFFReader"], [284, 3, 1, "", "TIFFWriter"], [284, 3, 1, "", "TextActor"], [284, 3, 1, "", "TextActor3D"], [284, 3, 1, "", "Texture"], [284, 3, 1, "", "TextureMapToPlane"], [284, 3, 1, "", "TexturedActor2D"], [284, 3, 1, "", "TexturedSphereSource"], [284, 3, 1, "", "Transform"], [284, 3, 1, "", "TransformPolyDataFilter"], [284, 3, 1, "", "TriangleFilter"], [284, 3, 1, "", "TubeFilter"], [284, 3, 1, "", "UnsignedCharArray"], [284, 3, 1, "", "UnstructuredGrid"], [284, 5, 1, "", "VTK_VERSION"], [284, 3, 1, "", "VectorText"], [284, 3, 1, "", "Volume"], [284, 3, 1, "", "WindowToImageFilter"], [284, 3, 1, "", "WorldPointPicker"], [284, 3, 1, "", "XMLPolyDataReader"], [284, 3, 1, "", "XMLPolyDataWriter"]], "fury.material": [[285, 5, 1, "", "manifest_pbr"], [285, 5, 1, "", "manifest_principled"], [285, 5, 1, "", "manifest_standard"]], "fury.molecular": [[286, 1, 1, "", "Molecule"], [286, 1, 1, "", "PTable"], [286, 5, 1, "", "add_atom"], [286, 5, 1, "", "add_bond"], [286, 5, 1, "", "ball_stick"], [286, 5, 1, "", "bounding_box"], [286, 5, 1, "", "compute_bonding"], [286, 5, 1, "", "deep_copy_molecule"], [286, 5, 1, "", "get_all_atomic_numbers"], [286, 5, 1, "", "get_all_atomic_positions"], [286, 5, 1, "", "get_all_bond_orders"], [286, 5, 1, "", "get_atomic_number"], [286, 5, 1, "", "get_atomic_position"], [286, 5, 1, "", "get_bond_order"], [286, 5, 1, "", "ribbon"], [286, 5, 1, "", "set_atomic_number"], [286, 5, 1, "", "set_atomic_position"], [286, 5, 1, "", "set_bond_order"], [286, 5, 1, "", "sphere_cpk"], [286, 5, 1, "", "stick"]], "fury.molecular.Molecule": [[286, 2, 1, "", "__init__"], [286, 4, 1, "", "total_num_atoms"], [286, 4, 1, "", "total_num_bonds"]], "fury.molecular.PTable": [[286, 2, 1, "", "__init__"], [286, 2, 1, "", "atom_color"], [286, 2, 1, "", "atomic_number"], [286, 2, 1, "", "atomic_radius"], [286, 2, 1, "", "atomic_symbol"], [286, 2, 1, "", "element_name"]], "fury.pick": [[287, 1, 1, "", "PickingManager"], [287, 1, 1, "", "SelectionManager"]], "fury.pick.PickingManager": [[287, 2, 1, "", "__init__"], [287, 2, 1, "", "event_position"], [287, 2, 1, "", "pick"], [287, 2, 1, "", "pickable_off"], [287, 2, 1, "", "pickable_on"]], "fury.pick.SelectionManager": [[287, 2, 1, "", "__init__"], [287, 2, 1, "", "event_position"], [287, 2, 1, "id0", "pick"], [287, 2, 1, "id1", "select"], [287, 2, 1, "", "selectable_off"], [287, 2, 1, "", "selectable_on"], [287, 2, 1, "", "update_selection_type"]], "fury.pkg_info": [[288, 5, 1, "", "pkg_commit_hash"]], "fury.primitive": [[289, 5, 1, "", "faces_from_sphere_vertices"], [289, 5, 1, "", "prim_arrow"], [289, 5, 1, "", "prim_box"], [289, 5, 1, "", "prim_cone"], [289, 5, 1, "", "prim_cylinder"], [289, 5, 1, "", "prim_frustum"], [289, 5, 1, "", "prim_icosahedron"], [289, 5, 1, "", "prim_octagonalprism"], [289, 5, 1, "", "prim_pentagonalprism"], [289, 5, 1, "", "prim_rhombicuboctahedron"], [289, 5, 1, "", "prim_sphere"], [289, 5, 1, "", "prim_square"], [289, 5, 1, "", "prim_star"], [289, 5, 1, "", "prim_superquadric"], [289, 5, 1, "", "prim_tetrahedron"], [289, 5, 1, "", "prim_triangularprism"], [289, 5, 1, "", "repeat_primitive"], [289, 5, 1, "", "repeat_primitive_function"]], "fury.shaders": [[290, 0, 0, "-", "base"]], "fury.shaders.base": [[290, 5, 1, "", "SHADERS_DIR"], [290, 5, 1, "", "add_shader_callback"], [290, 5, 1, "", "attribute_to_actor"], [290, 5, 1, "", "compose_shader"], [290, 5, 1, "", "import_fury_shader"], [290, 5, 1, "", "load"], [290, 5, 1, "", "load_shader"], [290, 5, 1, "", "replace_shader_in_actor"], [290, 5, 1, "", "shader_apply_effects"], [290, 5, 1, "", "shader_to_actor"]], "fury.stream": [[291, 0, 0, "-", "client"], [291, 0, 0, "-", "constants"], [291, 0, 0, "-", "server"], [291, 0, 0, "-", "tools"], [291, 0, 0, "-", "widget"]], "fury.stream.client": [[291, 1, 1, "", "FuryStreamClient"], [291, 1, 1, "", "FuryStreamInteraction"], [291, 5, 1, "", "callback_stream_client"], [291, 5, 1, "", "interaction_callback"]], "fury.stream.client.FuryStreamClient": [[291, 2, 1, "", "__init__"], [291, 2, 1, "", "cleanup"], [291, 2, 1, "", "start"], [291, 2, 1, "", "stop"]], "fury.stream.client.FuryStreamInteraction": [[291, 2, 1, "", "__init__"], [291, 2, 1, "", "cleanup"], [291, 2, 1, "", "start"], [291, 2, 1, "", "stop"]], "fury.stream.constants": [[291, 5, 1, "", "_CQUEUE"], [291, 5, 1, "", "_CQUEUE_EVENT_IDs"], [291, 5, 1, "", "_CQUEUE_INDEX_INFO"]], "fury.stream.server": [[291, 0, 0, "-", "async_app"], [291, 0, 0, "-", "main"]], "fury.stream.server.async_app": [[291, 5, 1, "", "get_app"], [291, 5, 1, "", "pcs"], [291, 5, 1, "", "set_mouse"], [291, 5, 1, "", "set_mouse_click"], [291, 5, 1, "", "set_weel"]], "fury.stream.server.main": [[291, 1, 1, "", "RTCServer"], [291, 5, 1, "", "web_server"], [291, 5, 1, "", "web_server_raw_array"]], "fury.stream.server.main.RTCServer": [[291, 2, 1, "", "__init__"], [291, 2, 1, "", "recv"], [291, 2, 1, "", "release"]], "fury.stream.tools": [[291, 1, 1, "", "ArrayCircularQueue"], [291, 1, 1, "", "GenericCircularQueue"], [291, 1, 1, "", "GenericImageBufferManager"], [291, 1, 1, "", "GenericMultiDimensionalBuffer"], [291, 1, 1, "", "IntervalTimer"], [291, 1, 1, "", "IntervalTimerThreading"], [291, 1, 1, "", "RawArrayImageBufferManager"], [291, 1, 1, "", "RawArrayMultiDimensionalBuffer"], [291, 1, 1, "", "SharedMemCircularQueue"], [291, 1, 1, "", "SharedMemImageBufferManager"], [291, 1, 1, "", "SharedMemMultiDimensionalBuffer"], [291, 5, 1, "", "remove_shm_from_resource_tracker"]], "fury.stream.tools.ArrayCircularQueue": [[291, 2, 1, "", "__init__"], [291, 2, 1, "", "cleanup"], [291, 2, 1, "", "create_mem_resource"], [291, 2, 1, "", "dequeue"], [291, 2, 1, "", "enqueue"], [291, 2, 1, "", "load_mem_resource"]], "fury.stream.tools.GenericCircularQueue": [[291, 2, 1, "", "__init__"], [291, 2, 1, "", "cleanup"], [291, 2, 1, "", "create_mem_resource"], [291, 2, 1, "", "dequeue"], [291, 2, 1, "", "enqueue"], [291, 4, 1, "", "head"], [291, 2, 1, "", "load_mem_resource"], [291, 2, 1, "", "set_head_tail"], [291, 4, 1, "", "tail"]], "fury.stream.tools.GenericImageBufferManager": [[291, 2, 1, "", "__init__"], [291, 2, 1, "", "async_get_jpeg"], [291, 4, 1, "", "buffer_index"], [291, 2, 1, "", "cleanup"], [291, 2, 1, "", "create_mem_resource"], [291, 2, 1, "", "get_current_frame"], [291, 2, 1, "", "get_jpeg"], [291, 2, 1, "", "load_mem_resource"], [291, 4, 1, "", "next_buffer_index"], [291, 2, 1, "", "write_into"]], "fury.stream.tools.GenericMultiDimensionalBuffer": [[291, 2, 1, "", "__init__"], [291, 4, 1, "", "buffer"], [291, 2, 1, "", "cleanup"], [291, 2, 1, "", "create_mem_resource"], [291, 2, 1, "", "get_start_end"], [291, 2, 1, "", "load_mem_resource"]], "fury.stream.tools.IntervalTimer": [[291, 2, 1, "", "__init__"], [291, 2, 1, "", "start"], [291, 2, 1, "", "stop"]], "fury.stream.tools.IntervalTimerThreading": [[291, 2, 1, "", "__init__"], [291, 2, 1, "", "start"], [291, 2, 1, "", "stop"]], "fury.stream.tools.RawArrayImageBufferManager": [[291, 2, 1, "", "__init__"], [291, 2, 1, "", "cleanup"], [291, 2, 1, "", "create_mem_resource"], [291, 2, 1, "", "load_mem_resource"]], "fury.stream.tools.RawArrayMultiDimensionalBuffer": [[291, 2, 1, "", "__init__"], [291, 2, 1, "", "cleanup"], [291, 2, 1, "", "create_mem_resource"], [291, 2, 1, "", "load_mem_resource"]], "fury.stream.tools.SharedMemCircularQueue": [[291, 2, 1, "", "__init__"], [291, 2, 1, "", "cleanup"], [291, 2, 1, "", "create_mem_resource"], [291, 2, 1, "", "dequeue"], [291, 2, 1, "", "enqueue"], [291, 2, 1, "", "is_unlocked"], [291, 2, 1, "", "load_mem_resource"], [291, 2, 1, "", "lock"], [291, 2, 1, "", "unlock"]], "fury.stream.tools.SharedMemImageBufferManager": [[291, 2, 1, "", "__init__"], [291, 2, 1, "", "cleanup"], [291, 2, 1, "", "create_mem_resource"], [291, 2, 1, "", "load_mem_resource"]], "fury.stream.tools.SharedMemMultiDimensionalBuffer": [[291, 2, 1, "", "__init__"], [291, 2, 1, "", "cleanup"], [291, 2, 1, "", "create_mem_resource"], [291, 2, 1, "", "load_mem_resource"]], "fury.stream.widget": [[291, 1, 1, "", "Widget"], [291, 5, 1, "", "check_port_is_available"]], "fury.stream.widget.Widget": [[291, 2, 1, "", "__init__"], [291, 2, 1, "", "cleanup"], [291, 4, 1, "", "command_string"], [291, 2, 1, "", "display"], [291, 2, 1, "", "return_iframe"], [291, 2, 1, "", "run_command"], [291, 2, 1, "", "start"], [291, 2, 1, "", "stop"], [291, 4, 1, "", "url"]], "fury.transform": [[292, 5, 1, "", "_TUPLE2AXES"], [292, 5, 1, "", "apply_transformation"], [292, 5, 1, "", "cart2sphere"], [292, 5, 1, "", "euler_matrix"], [292, 5, 1, "", "rotate"], [292, 5, 1, "", "scale"], [292, 5, 1, "", "sphere2cart"], [292, 5, 1, "", "transform_from_matrix"], [292, 5, 1, "", "translate"]], "fury.ui": [[293, 0, 0, "-", "containers"], [293, 0, 0, "-", "core"], [293, 0, 0, "-", "elements"], [293, 0, 0, "-", "helpers"]], "fury.ui.containers": [[293, 1, 1, "", "GridUI"], [293, 1, 1, "", "ImageContainer2D"], [293, 1, 1, "", "Panel2D"], [293, 1, 1, "", "TabPanel2D"], [293, 1, 1, "", "TabUI"]], "fury.ui.containers.GridUI": [[293, 3, 1, "", "ANTICLOCKWISE_ROTATION_X"], [293, 3, 1, "", "ANTICLOCKWISE_ROTATION_Y"], [293, 3, 1, "", "CLOCKWISE_ROTATION_X"], [293, 3, 1, "", "CLOCKWISE_ROTATION_Y"], [293, 2, 1, "", "__init__"], [293, 2, 1, "", "key_press_callback"], [293, 2, 1, "", "left_click_callback"], [293, 2, 1, "", "left_click_callback2"], [293, 2, 1, "", "left_release_callback"], [293, 2, 1, "", "left_release_callback2"], [293, 2, 1, "", "mouse_move_callback"], [293, 2, 1, "", "mouse_move_callback2"], [293, 2, 1, "", "resize"]], "fury.ui.containers.ImageContainer2D": [[293, 2, 1, "", "__init__"], [293, 3, 1, "", "img"], [293, 2, 1, "", "resize"], [293, 2, 1, "", "scale"], [293, 2, 1, "", "set_img"], [293, 3, 1, "", "size"]], "fury.ui.containers.Panel2D": [[293, 2, 1, "", "__init__"], [293, 2, 1, "", "add_element"], [293, 3, 1, "", "alignment"], [293, 4, 1, "", "border_color"], [293, 4, 1, "", "border_width"], [293, 4, 1, "", "color"], [293, 2, 1, "", "left_button_dragged"], [293, 2, 1, "", "left_button_pressed"], [293, 4, 1, "", "opacity"], [293, 2, 1, "", "re_align"], [293, 2, 1, "", "remove_element"], [293, 2, 1, "", "resize"], [293, 2, 1, "", "set_visibility"], [293, 2, 1, "", "update_border_coords"], [293, 2, 1, "", "update_element"]], "fury.ui.containers.TabPanel2D": [[293, 2, 1, "", "__init__"], [293, 2, 1, "", "add_element"], [293, 4, 1, "", "color"], [293, 3, 1, "", "content_panel"], [293, 2, 1, "", "remove_element"], [293, 2, 1, "", "resize"], [293, 3, 1, "", "text_block"], [293, 4, 1, "", "title"], [293, 4, 1, "", "title_bold"], [293, 4, 1, "", "title_color"], [293, 4, 1, "", "title_font_size"], [293, 4, 1, "", "title_italic"], [293, 2, 1, "", "update_element"]], "fury.ui.containers.TabUI": [[293, 2, 1, "", "__init__"], [293, 2, 1, "", "add_element"], [293, 2, 1, "", "collapse_tab_ui"], [293, 2, 1, "", "left_button_dragged"], [293, 2, 1, "", "left_button_pressed"], [293, 2, 1, "", "remove_element"], [293, 2, 1, "", "select_tab_callback"], [293, 3, 1, "", "tabs"], [293, 2, 1, "", "update_element"], [293, 2, 1, "", "update_tabs"]], "fury.ui.core": [[293, 1, 1, "", "Button2D"], [293, 1, 1, "", "Disk2D"], [293, 1, 1, "", "Rectangle2D"], [293, 1, 1, "", "TextBlock2D"], [293, 1, 1, "", "UI"]], "fury.ui.core.Button2D": [[293, 2, 1, "", "__init__"], [293, 4, 1, "", "color"], [293, 2, 1, "", "next_icon"], [293, 2, 1, "", "next_icon_id"], [293, 2, 1, "", "resize"], [293, 2, 1, "", "scale"], [293, 2, 1, "", "set_icon"], [293, 2, 1, "", "set_icon_by_name"]], "fury.ui.core.Disk2D": [[293, 2, 1, "", "__init__"], [293, 4, 1, "", "color"], [293, 4, 1, "", "inner_radius"], [293, 4, 1, "", "opacity"], [293, 4, 1, "", "outer_radius"]], "fury.ui.core.Rectangle2D": [[293, 2, 1, "", "__init__"], [293, 4, 1, "", "color"], [293, 4, 1, "", "height"], [293, 4, 1, "", "opacity"], [293, 2, 1, "", "resize"], [293, 4, 1, "", "width"]], "fury.ui.core.TextBlock2D": [[293, 2, 1, "", "__init__"], [293, 3, 1, "", "actor"], [293, 4, 1, "id4", "auto_font_scale"], [293, 4, 1, "", "background_color"], [293, 3, 1, "", "bg_color"], [293, 4, 1, "id5", "bold"], [293, 2, 1, "", "cal_size_from_message"], [293, 4, 1, "id6", "color"], [293, 4, 1, "id7", "dynamic_bbox"], [293, 4, 1, "id8", "font_family"], [293, 4, 1, "id9", "font_size"], [293, 4, 1, "id10", "italic"], [293, 4, 1, "id11", "justification"], [293, 4, 1, "id12", "message"], [293, 3, 1, "", "position"], [293, 2, 1, "", "resize"], [293, 4, 1, "id13", "shadow"], [293, 3, 1, "", "size"], [293, 2, 1, "", "update_alignment"], [293, 2, 1, "", "update_bounding_box"], [293, 4, 1, "id14", "vertical_justification"]], "fury.ui.core.UI": [[293, 2, 1, "", "__init__"], [293, 4, 1, "", "actors"], [293, 2, 1, "", "add_callback"], [293, 2, 1, "", "add_to_scene"], [293, 4, 1, "id0", "center"], [293, 2, 1, "", "handle_events"], [293, 2, 1, "", "key_press_callback"], [293, 2, 1, "", "left_button_click_callback"], [293, 2, 1, "", "left_button_release_callback"], [293, 2, 1, "", "middle_button_click_callback"], [293, 2, 1, "", "middle_button_release_callback"], [293, 2, 1, "", "mouse_move_callback"], [293, 3, 1, "", "on_key_press"], [293, 3, 1, "", "on_left_mouse_button_clicked"], [293, 3, 1, "", "on_left_mouse_button_dragged"], [293, 3, 1, "", "on_left_mouse_button_pressed"], [293, 3, 1, "", "on_left_mouse_button_released"], [293, 3, 1, "", "on_left_mouse_double_clicked"], [293, 3, 1, "", "on_middle_mouse_button_clicked"], [293, 3, 1, "", "on_middle_mouse_button_dragged"], [293, 3, 1, "", "on_middle_mouse_button_pressed"], [293, 3, 1, "", "on_middle_mouse_button_released"], [293, 3, 1, "", "on_middle_mouse_double_clicked"], [293, 3, 1, "", "on_right_mouse_button_clicked"], [293, 3, 1, "", "on_right_mouse_button_dragged"], [293, 3, 1, "", "on_right_mouse_button_pressed"], [293, 3, 1, "", "on_right_mouse_button_released"], [293, 3, 1, "", "on_right_mouse_double_clicked"], [293, 4, 1, "id2", "position"], [293, 2, 1, "", "right_button_click_callback"], [293, 2, 1, "", "right_button_release_callback"], [293, 2, 1, "", "set_visibility"], [293, 4, 1, "id3", "size"]], "fury.ui.elements": [[293, 1, 1, "", "Card2D"], [293, 1, 1, "", "Checkbox"], [293, 1, 1, "", "ComboBox2D"], [293, 1, 1, "", "DrawPanel"], [293, 1, 1, "", "DrawShape"], [293, 1, 1, "", "FileMenu2D"], [293, 1, 1, "", "LineDoubleSlider2D"], [293, 1, 1, "", "LineSlider2D"], [293, 1, 1, "", "ListBox2D"], [293, 1, 1, "", "ListBoxItem2D"], [293, 1, 1, "", "Option"], [293, 1, 1, "", "PlaybackPanel"], [293, 1, 1, "", "RadioButton"], [293, 1, 1, "", "RangeSlider"], [293, 1, 1, "", "RingSlider2D"], [293, 1, 1, "", "SpinBox"], [293, 1, 1, "", "TextBox2D"]], "fury.ui.elements.Card2D": [[293, 2, 1, "", "__init__"], [293, 4, 1, "", "body"], [293, 3, 1, "", "body_box"], [293, 4, 1, "", "color"], [293, 3, 1, "", "image"], [293, 2, 1, "", "left_button_dragged"], [293, 2, 1, "", "left_button_pressed"], [293, 2, 1, "", "resize"], [293, 4, 1, "", "title"], [293, 3, 1, "", "title_box"]], "fury.ui.elements.Checkbox": [[293, 2, 1, "", "__init__"], [293, 4, 1, "", "font_size"], [293, 3, 1, "", "labels"], [293, 3, 1, "", "options"], [293, 4, 1, "id17", "padding"]], "fury.ui.elements.ComboBox2D": [[293, 2, 1, "", "__init__"], [293, 2, 1, "", "append_item"], [293, 3, 1, "", "drop_down_button"], [293, 3, 1, "", "drop_down_menu"], [293, 2, 1, "", "left_button_dragged"], [293, 2, 1, "", "left_button_pressed"], [293, 2, 1, "", "menu_toggle_callback"], [293, 2, 1, "", "resize"], [293, 2, 1, "", "select_option_callback"], [293, 4, 1, "", "selected_text"], [293, 4, 1, "", "selected_text_index"], [293, 3, 1, "", "selection_box"], [293, 2, 1, "", "set_visibility"]], "fury.ui.elements.DrawPanel": [[293, 2, 1, "", "__init__"], [293, 2, 1, "", "cal_min_boundary_distance"], [293, 2, 1, "", "clamp_mouse_position"], [293, 4, 1, "", "current_mode"], [293, 2, 1, "", "draw_shape"], [293, 2, 1, "", "handle_mouse_click"], [293, 2, 1, "", "handle_mouse_drag"], [293, 2, 1, "", "left_button_dragged"], [293, 2, 1, "", "left_button_pressed"], [293, 2, 1, "", "resize"], [293, 2, 1, "", "resize_shape"], [293, 2, 1, "", "show_rotation_slider"], [293, 2, 1, "", "update_button_icons"], [293, 2, 1, "", "update_shape_selection"]], "fury.ui.elements.DrawShape": [[293, 2, 1, "", "__init__"], [293, 2, 1, "", "cal_bounding_box"], [293, 4, 1, "", "center"], [293, 2, 1, "", "clamp_position"], [293, 4, 1, "", "is_selected"], [293, 2, 1, "", "left_button_dragged"], [293, 2, 1, "", "left_button_pressed"], [293, 2, 1, "", "left_button_released"], [293, 2, 1, "", "remove"], [293, 2, 1, "", "resize"], [293, 2, 1, "", "rotate"], [293, 2, 1, "", "selection_change"], [293, 2, 1, "", "update_shape_position"]], "fury.ui.elements.FileMenu2D": [[293, 2, 1, "", "__init__"], [293, 2, 1, "", "directory_click_callback"], [293, 3, 1, "", "extensions"], [293, 2, 1, "", "get_all_file_names"], [293, 2, 1, "", "get_directory_names"], [293, 2, 1, "", "get_file_names"], [293, 3, 1, "", "listbox"], [293, 2, 1, "", "resize"], [293, 2, 1, "", "scroll_callback"], [293, 2, 1, "", "set_slot_colors"]], "fury.ui.elements.LineDoubleSlider2D": [[293, 2, 1, "", "__init__"], [293, 3, 1, "", "active_color"], [293, 4, 1, "", "bottom_disk_ratio"], [293, 4, 1, "", "bottom_disk_value"], [293, 4, 1, "", "bottom_y_position"], [293, 2, 1, "", "coord_to_ratio"], [293, 3, 1, "", "default_color"], [293, 2, 1, "", "format_text"], [293, 2, 1, "", "handle_move_callback"], [293, 2, 1, "", "handle_release_callback"], [293, 3, 1, "", "handles"], [293, 4, 1, "", "left_disk_ratio"], [293, 4, 1, "", "left_disk_value"], [293, 4, 1, "", "left_x_position"], [293, 3, 1, "", "length"], [293, 3, 1, "", "line_width"], [293, 2, 1, "", "ratio_to_coord"], [293, 2, 1, "", "ratio_to_value"], [293, 4, 1, "", "right_disk_ratio"], [293, 4, 1, "", "right_disk_value"], [293, 4, 1, "", "right_x_position"], [293, 2, 1, "", "set_position"], [293, 3, 1, "", "shape"], [293, 3, 1, "", "text"], [293, 4, 1, "", "top_disk_ratio"], [293, 4, 1, "", "top_disk_value"], [293, 4, 1, "", "top_y_position"], [293, 3, 1, "", "track"], [293, 2, 1, "", "update"], [293, 2, 1, "", "value_to_ratio"]], "fury.ui.elements.LineSlider2D": [[293, 2, 1, "", "__init__"], [293, 3, 1, "", "active_color"], [293, 4, 1, "", "bottom_y_position"], [293, 3, 1, "", "default_color"], [293, 2, 1, "", "format_text"], [293, 3, 1, "", "handle"], [293, 2, 1, "", "handle_move_callback"], [293, 2, 1, "", "handle_release_callback"], [293, 4, 1, "", "left_x_position"], [293, 3, 1, "", "length"], [293, 3, 1, "", "line_width"], [293, 4, 1, "", "ratio"], [293, 4, 1, "", "right_x_position"], [293, 2, 1, "", "set_position"], [293, 3, 1, "", "shape"], [293, 3, 1, "", "text"], [293, 4, 1, "", "top_y_position"], [293, 3, 1, "", "track"], [293, 2, 1, "", "track_click_callback"], [293, 2, 1, "", "update"], [293, 4, 1, "", "value"]], "fury.ui.elements.ListBox2D": [[293, 2, 1, "", "__init__"], [293, 2, 1, "", "clear_selection"], [293, 2, 1, "", "down_button_callback"], [293, 3, 1, "", "on_change"], [293, 2, 1, "", "resize"], [293, 2, 1, "", "scroll_click_callback"], [293, 2, 1, "", "scroll_drag_callback"], [293, 2, 1, "", "scroll_release_callback"], [293, 2, 1, "", "select"], [293, 2, 1, "", "up_button_callback"], [293, 2, 1, "", "update"], [293, 2, 1, "", "update_scrollbar"]], "fury.ui.elements.ListBoxItem2D": [[293, 2, 1, "", "__init__"], [293, 2, 1, "", "deselect"], [293, 4, 1, "", "element"], [293, 2, 1, "", "left_button_clicked"], [293, 2, 1, "", "resize"], [293, 2, 1, "", "select"]], "fury.ui.elements.Option": [[293, 2, 1, "", "__init__"], [293, 2, 1, "", "deselect"], [293, 3, 1, "", "font_size"], [293, 3, 1, "", "label"], [293, 2, 1, "", "select"], [293, 2, 1, "", "toggle"]], "fury.ui.elements.PlaybackPanel": [[293, 2, 1, "", "__init__"], [293, 4, 1, "", "current_time"], [293, 4, 1, "", "current_time_str"], [293, 4, 1, "", "final_time"], [293, 2, 1, "", "hide"], [293, 2, 1, "", "loop"], [293, 2, 1, "", "pause"], [293, 2, 1, "", "play"], [293, 2, 1, "", "play_once"], [293, 2, 1, "", "show"], [293, 4, 1, "", "speed"], [293, 2, 1, "", "stop"], [293, 4, 1, "", "width"]], "fury.ui.elements.RadioButton": [[293, 2, 1, "", "__init__"], [293, 3, 1, "", "labels"], [293, 3, 1, "", "options"], [293, 3, 1, "", "padding"]], "fury.ui.elements.RangeSlider": [[293, 2, 1, "", "__init__"], [293, 3, 1, "", "range_slider"], [293, 3, 1, "", "range_slider_center"], [293, 2, 1, "", "range_slider_handle_move_callback"], [293, 3, 1, "", "value_slider"], [293, 3, 1, "", "value_slider_center"]], "fury.ui.elements.RingSlider2D": [[293, 2, 1, "", "__init__"], [293, 3, 1, "", "active_color"], [293, 4, 1, "", "angle"], [293, 3, 1, "", "default_color"], [293, 2, 1, "", "format_text"], [293, 3, 1, "", "handle"], [293, 2, 1, "", "handle_move_callback"], [293, 2, 1, "", "handle_release_callback"], [293, 4, 1, "id15", "mid_track_radius"], [293, 2, 1, "", "move_handle"], [293, 4, 1, "id16", "previous_value"], [293, 4, 1, "", "ratio"], [293, 3, 1, "", "text"], [293, 3, 1, "", "track"], [293, 2, 1, "", "track_click_callback"], [293, 2, 1, "", "update"], [293, 4, 1, "", "value"]], "fury.ui.elements.SpinBox": [[293, 2, 1, "", "__init__"], [293, 2, 1, "", "decrement"], [293, 2, 1, "", "decrement_callback"], [293, 2, 1, "", "increment"], [293, 2, 1, "", "increment_callback"], [293, 2, 1, "", "resize"], [293, 2, 1, "", "textbox_update_value"], [293, 2, 1, "", "validate_value"], [293, 4, 1, "", "value"]], "fury.ui.elements.TextBox2D": [[293, 2, 1, "", "__init__"], [293, 3, 1, "", "actor"], [293, 2, 1, "", "add_character"], [293, 3, 1, "", "caret_pos"], [293, 2, 1, "", "edit_mode"], [293, 2, 1, "", "handle_character"], [293, 3, 1, "", "height"], [293, 3, 1, "", "init"], [293, 2, 1, "", "key_press"], [293, 2, 1, "", "left_button_press"], [293, 2, 1, "", "left_move_left"], [293, 2, 1, "", "left_move_right"], [293, 2, 1, "", "move_caret_left"], [293, 2, 1, "", "move_caret_right"], [293, 2, 1, "", "move_left"], [293, 2, 1, "", "move_right"], [293, 2, 1, "", "remove_character"], [293, 2, 1, "", "render_text"], [293, 2, 1, "", "right_move_left"], [293, 2, 1, "", "right_move_right"], [293, 2, 1, "", "set_message"], [293, 2, 1, "", "showable_text"], [293, 3, 1, "", "text"], [293, 3, 1, "", "width"], [293, 2, 1, "", "width_set_text"], [293, 3, 1, "", "window_left"], [293, 3, 1, "", "window_right"]], "fury.ui.helpers": [[293, 5, 1, "", "cal_bounding_box_2d"], [293, 5, 1, "", "check_overflow"], [293, 5, 1, "", "clip_overflow"], [293, 5, 1, "", "rotate_2d"], [293, 5, 1, "", "wrap_overflow"]], "fury.utils": [[294, 5, 1, "", "add_polydata_numeric_field"], [294, 5, 1, "", "apply_affine"], [294, 5, 1, "", "apply_affine_to_actor"], [294, 5, 1, "", "array_from_actor"], [294, 5, 1, "", "asbytes"], [294, 5, 1, "", "change_vertices_order"], [294, 5, 1, "", "color_check"], [294, 5, 1, "", "colors_from_actor"], [294, 5, 1, "", "compute_bounds"], [294, 5, 1, "", "fix_winding_order"], [294, 5, 1, "", "get_actor_from_polydata"], [294, 5, 1, "", "get_actor_from_polymapper"], [294, 5, 1, "", "get_actor_from_primitive"], [294, 5, 1, "", "get_bounding_box_sizes"], [294, 5, 1, "", "get_bounds"], [294, 5, 1, "", "get_grid_cells_position"], [294, 5, 1, "", "get_polydata_colors"], [294, 5, 1, "", "get_polydata_field"], [294, 5, 1, "", "get_polydata_lines"], [294, 5, 1, "", "get_polydata_normals"], [294, 5, 1, "", "get_polydata_primitives_count"], [294, 5, 1, "", "get_polydata_tangents"], [294, 5, 1, "", "get_polydata_tcoord"], [294, 5, 1, "", "get_polydata_triangles"], [294, 5, 1, "", "get_polydata_vertices"], [294, 5, 1, "", "get_polymapper_from_polydata"], [294, 5, 1, "", "is_ui"], [294, 5, 1, "", "lines_to_vtk_polydata"], [294, 5, 1, "", "map_coordinates_3d_4d"], [294, 5, 1, "", "normalize_v3"], [294, 5, 1, "", "normals_from_actor"], [294, 5, 1, "", "normals_from_v_f"], [294, 5, 1, "", "normals_to_actor"], [294, 5, 1, "", "numpy_to_vtk_cells"], [294, 5, 1, "", "numpy_to_vtk_colors"], [294, 5, 1, "", "numpy_to_vtk_image_data"], [294, 5, 1, "", "numpy_to_vtk_matrix"], [294, 5, 1, "", "numpy_to_vtk_points"], [294, 5, 1, "", "primitives_count_from_actor"], [294, 5, 1, "", "primitives_count_to_actor"], [294, 5, 1, "", "remove_observer_from_actor"], [294, 5, 1, "", "repeat_sources"], [294, 5, 1, "", "represent_actor_as_wireframe"], [294, 5, 1, "", "rgb_to_vtk"], [294, 5, 1, "", "rotate"], [294, 5, 1, "", "set_actor_origin"], [294, 5, 1, "", "set_input"], [294, 5, 1, "", "set_polydata_colors"], [294, 5, 1, "", "set_polydata_normals"], [294, 5, 1, "", "set_polydata_primitives_count"], [294, 5, 1, "", "set_polydata_tangents"], [294, 5, 1, "", "set_polydata_tcoords"], [294, 5, 1, "", "set_polydata_triangles"], [294, 5, 1, "", "set_polydata_vertices"], [294, 5, 1, "", "shallow_copy"], [294, 5, 1, "", "tangents_from_actor"], [294, 5, 1, "", "tangents_from_direction_of_anisotropy"], [294, 5, 1, "", "tangents_to_actor"], [294, 5, 1, "", "triangle_order"], [294, 5, 1, "", "update_actor"], [294, 5, 1, "", "update_polydata_normals"], [294, 5, 1, "", "update_surface_actor_colors"], [294, 5, 1, "", "vertices_from_actor"], [294, 5, 1, "", "vtk_matrix_to_numpy"]], "fury.window": [[295, 1, 1, "", "Scene"], [295, 1, 1, "", "ShowManager"], [295, 5, 1, "", "analyze_scene"], [295, 5, 1, "", "analyze_snapshot"], [295, 5, 1, "", "antialiasing"], [295, 5, 1, "", "enable_stereo"], [295, 5, 1, "", "gl_disable_blend"], [295, 5, 1, "", "gl_disable_depth"], [295, 5, 1, "", "gl_enable_blend"], [295, 5, 1, "", "gl_enable_depth"], [295, 5, 1, "", "gl_get_current_state"], [295, 5, 1, "", "gl_reset_blend"], [295, 5, 1, "", "gl_set_additive_blending"], [295, 5, 1, "", "gl_set_additive_blending_white_background"], [295, 5, 1, "", "gl_set_multiplicative_blending"], [295, 5, 1, "", "gl_set_normal_blending"], [295, 5, 1, "", "gl_set_subtractive_blending"], [295, 5, 1, "", "record"], [295, 5, 1, "", "release_context"], [295, 5, 1, "", "show"], [295, 5, 1, "", "snapshot"]], "fury.window.Scene": [[295, 2, 1, "", "__init__"], [295, 2, 1, "", "add"], [295, 2, 1, "", "azimuth"], [295, 2, 1, "", "background"], [295, 2, 1, "", "camera"], [295, 2, 1, "", "camera_direction"], [295, 2, 1, "", "camera_info"], [295, 2, 1, "", "clear"], [295, 2, 1, "", "dolly"], [295, 2, 1, "", "elevation"], [295, 2, 1, "", "fxaa_off"], [295, 2, 1, "", "fxaa_on"], [295, 2, 1, "", "get_camera"], [295, 4, 1, "", "last_render_time"], [295, 2, 1, "", "pitch"], [295, 2, 1, "", "projection"], [295, 2, 1, "", "reset_camera"], [295, 2, 1, "", "reset_camera_tight"], [295, 2, 1, "", "reset_clipping_range"], [295, 2, 1, "", "rm"], [295, 2, 1, "", "rm_all"], [295, 2, 1, "", "roll"], [295, 2, 1, "", "set_camera"], [295, 2, 1, "", "size"], [295, 2, 1, "", "skybox"], [295, 2, 1, "", "yaw"], [295, 2, 1, "", "zoom"]], "fury.window.ShowManager": [[295, 2, 1, "", "__init__"], [295, 2, 1, "", "add_animation"], [295, 2, 1, "", "add_iren_callback"], [295, 2, 1, "", "add_timer_callback"], [295, 2, 1, "", "add_window_callback"], [295, 4, 1, "", "animations"], [295, 2, 1, "", "destroy_timer"], [295, 2, 1, "", "destroy_timers"], [295, 2, 1, "", "exit"], [295, 4, 1, "", "frame_rate"], [295, 2, 1, "", "initialize"], [295, 3, 1, "", "iren"], [295, 2, 1, "", "is_done"], [295, 2, 1, "", "lock"], [295, 2, 1, "", "lock_current"], [295, 2, 1, "", "play_events"], [295, 2, 1, "", "play_events_from_file"], [295, 2, 1, "", "record_events"], [295, 2, 1, "", "record_events_to_file"], [295, 2, 1, "", "release_current"], [295, 2, 1, "", "release_lock"], [295, 2, 1, "", "remove_animation"], [295, 2, 1, "", "render"], [295, 2, 1, "", "save_screenshot"], [295, 3, 1, "", "scene"], [295, 2, 1, "", "start"], [295, 3, 1, "", "style"], [295, 4, 1, "", "timelines"], [295, 2, 1, "", "wait"], [295, 3, 1, "", "window"]]}, "objnames": {"0": ["py", "module", "Python module"], "1": ["py", "class", "Python class"], "2": ["py", "method", "Python method"], "3": ["py", "attribute", "Python attribute"], "4": ["py", "property", "Python property"], "5": ["py", "function", "Python function"]}, "objtypes": {"0": "py:module", "1": "py:class", "2": "py:method", "3": "py:attribute", "4": "py:property", "5": "py:function"}, "terms": {"": [2, 4, 5, 9, 10, 11, 12, 13, 14, 15, 17, 19, 20, 21, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 40, 43, 44, 45, 46, 47, 51, 52, 54, 60, 62, 63, 64, 67, 71, 72, 73, 74, 76, 81, 83, 86, 87, 93, 94, 96, 107, 108, 112, 114, 118, 119, 121, 127, 129, 130, 134, 135, 139, 140, 142, 143, 145, 146, 147, 148, 149, 152, 154, 155, 157, 158, 160, 161, 163, 164, 165, 166, 167, 170, 171, 172, 173, 175, 178, 179, 180, 181, 184, 185, 188, 189, 190, 193, 196, 198, 201, 204, 206, 207, 208, 211, 212, 213, 217, 219, 220, 222, 223, 224, 225, 226, 231, 233, 234, 242, 260, 263, 266, 267, 269, 271, 273, 275, 276, 277, 285, 286, 287, 288, 290, 291, 292, 293, 294, 295, 309, 310, 311, 312, 314], "0": [1, 3, 4, 5, 6, 8, 9, 10, 11, 12, 14, 15, 16, 17, 18, 20, 21, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, 40, 42, 43, 44, 45, 46, 47, 49, 50, 51, 52, 54, 55, 56, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 70, 71, 72, 73, 74, 75, 76, 78, 79, 80, 81, 82, 83, 85, 86, 87, 88, 90, 92, 93, 94, 96, 118, 125, 143, 158, 171, 178, 184, 193, 217, 225, 226, 227, 234, 237, 240, 243, 254, 255, 258, 262, 264, 267, 269, 270, 271, 273, 274, 275, 276, 278, 280, 281, 282, 283, 285, 286, 287, 289, 290, 291, 292, 293, 294, 295, 297, 306, 308, 310, 313, 314], "00": [1, 4, 23, 27, 42, 58, 70, 78, 79, 85, 90, 178, 179, 313], "000": [1, 23, 42, 58, 70, 78, 85, 90, 125, 276, 313], "0001": [71, 74], "0005": [36, 81, 83], "001": 269, "002": [4, 29, 33], "004": [4, 33], "005": [4, 5, 29, 33], "0060": 5, "01": [4, 5, 10, 17, 21, 32, 37, 81, 83, 226, 227, 267, 271, 273, 297, 312], "011": 5, "012": [29, 33], "015": 5, "01_introductori": [1, 313], "02": [40, 81, 83, 134, 135, 171, 172, 173, 269, 295, 297, 305, 306], "025": [4, 273], "02f": [37, 72], "03": [4, 225, 249, 269, 271, 273, 289, 297, 304, 311], "03448276": 276, "04": [5, 226, 227, 297, 302, 307], "04_demo": [23, 313], "05": [10, 17, 20, 21, 37, 134, 135, 171, 172, 173, 225, 226, 227, 269, 271, 273], "06": [5, 29, 33, 134, 135, 171, 172, 173, 225, 226, 227, 269, 271], "07": [4, 5, 134, 135, 171, 172, 173, 225, 226, 227, 249, 267, 269, 271, 276, 297, 308], "071dab85": 145, "07_ui": [42, 313], "08": [33, 134, 135, 171, 172, 173, 225, 226, 227, 269, 271, 297, 305, 309, 311], "09": [33, 135, 171, 172, 173, 225, 226, 227, 297, 307, 311], "0dev": 280, "0e": 276, "0f": [24, 30], "0lethetamathrm": 292, "1": [2, 3, 4, 5, 6, 8, 10, 11, 12, 14, 15, 16, 17, 18, 21, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 43, 44, 45, 46, 47, 48, 50, 51, 52, 54, 56, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 71, 72, 73, 74, 75, 76, 79, 80, 81, 82, 83, 86, 87, 88, 93, 94, 96, 118, 131, 134, 135, 142, 144, 145, 148, 154, 166, 171, 172, 173, 176, 180, 193, 210, 213, 225, 226, 227, 240, 243, 258, 264, 267, 269, 270, 271, 273, 274, 275, 276, 278, 280, 281, 282, 283, 285, 286, 289, 290, 291, 292, 293, 294, 295, 297, 302, 303, 307, 309, 311, 312, 314], "10": [7, 10, 11, 14, 15, 17, 18, 20, 21, 28, 29, 32, 33, 34, 36, 38, 40, 48, 52, 53, 54, 55, 56, 58, 59, 60, 63, 64, 66, 67, 71, 73, 74, 79, 80, 81, 82, 83, 93, 125, 134, 135, 138, 154, 171, 172, 173, 180, 225, 226, 227, 255, 267, 269, 271, 273, 276, 289, 291, 293, 294, 295, 297, 306, 309, 311, 312], "100": [10, 11, 12, 15, 20, 28, 33, 36, 43, 45, 46, 49, 51, 52, 54, 56, 62, 73, 82, 116, 125, 180, 246, 250, 254, 273, 275, 277, 278, 282, 291, 293, 294, 305], "1000": [5, 21, 31, 36, 38, 44, 45, 46, 65, 87, 88, 252, 258], "10000": [4, 12, 34, 80, 148, 273], "101": 305, "102": 305, "1024": [11, 12, 75, 76, 94], "103": 305, "1030": [24, 30], "104": [305, 306], "105": 305, "106": 305, "107": 305, "1073741824": 15, "108": 306, "1080": [37, 40], "109": 305, "10_anim": [58, 313], "10th": 127, "11": [15, 46, 50, 72, 73, 134, 135, 171, 172, 173, 179, 180, 225, 226, 227, 269, 271, 280, 294, 297, 302, 303, 311, 312], "110": 305, "1100": 4, "112": 305, "113": 27, "1141": 277, "1145": 173, "115": 306, "116": [5, 308], "117": 306, "1176": 269, "118": [27, 306], "1185": 269, "119": 306, "11th": 129, "12": [8, 12, 16, 25, 28, 33, 65, 71, 74, 134, 135, 154, 171, 172, 173, 193, 225, 226, 227, 258, 267, 269, 271, 273, 289, 294, 302, 311, 312], "120": [24, 30, 46, 193, 306], "1200": [14, 24, 30], "121": 306, "122": 306, "123": 306, "124": 306, "125": [14, 306], "126": 306, "127": 307, "128": [25, 27, 285, 306], "1280": [6, 8], "1281500": 173, "1281665": 173, "128mb": 178, "129": [302, 306], "12th": 130, "13": [15, 66, 71, 80, 82, 134, 135, 154, 157, 173, 225, 226, 227, 297, 304, 310, 312], "130": [80, 81, 83, 306], "131": 306, "132": 306, "133": 306, "134": 306, "135": 306, "136": 306, "137": 306, "138": 307, "139": 306, "13_shader": [70, 313], "13x13": 258, "14": [37, 42, 60, 66, 134, 135, 154, 171, 172, 173, 225, 227, 276, 294, 303, 309, 312], "140": [24, 30, 306], "141": [269, 274], "142": 306, "143": 306, "144": 306, "145": 306, "146": 306, "147": [269, 306], "148": 306, "149": [269, 274], "15": [14, 24, 33, 45, 46, 54, 56, 59, 60, 66, 68, 79, 83, 173, 225, 227, 271, 297, 302, 304, 305, 306, 308, 310], "150": [11, 12, 43, 46, 47, 49, 50, 53, 54, 56, 286, 291, 306], "1500": [4, 49], "151": 306, "152": 306, "153": 306, "154": [269, 306], "155": 306, "156": 306, "157": 306, "158": 306, "16": [15, 32, 36, 37, 40, 46, 50, 60, 71, 74, 96, 134, 135, 157, 171, 172, 173, 225, 226, 269, 271, 273, 283, 291, 293, 294, 312], "160": [29, 306], "160k": 205, "161": 306, "162": 306, "163": 306, "16384": 278, "164": [92, 304, 306, 308], "165": 306, "166": [306, 312], "167": [286, 306], "16777216": 267, "168": 306, "169": [305, 307], "16k": 5, "17": [25, 32, 66, 71, 86, 157, 160, 173, 225, 227, 267, 269, 271, 294, 303, 305], "170": 306, "171": 306, "172": 306, "17241379": 276, "173": 306, "174": 306, "1740": [269, 274], "175": 306, "176": [27, 306], "177": 306, "178": 306, "179": 306, "17_pybullet": [78, 313], "18": [23, 24, 25, 27, 30, 32, 46, 54, 59, 79, 80, 82, 160, 173, 179, 293, 304, 307], "180": [4, 5, 17, 28, 43, 44, 45, 52, 54, 63, 65, 293, 306], "181": 306, "182": 306, "183": 306, "1835": 312, "184": 306, "184512": 28, "185": 306, "186": [303, 306], "187": 306, "188": 306, "189": 306, "18th": 179, "19": [1, 15, 32, 33, 134, 135, 171, 172, 173, 226, 227, 269, 271], "190": 306, "191": 306, "192": 306, "1920": [37, 40], "1920x1080x24": 96, "193": 306, "194": 306, "195": [37, 306, 309], "1953": 286, "197": 307, "1971": 286, "198": [12, 306], "1981": 286, "1986": 276, "199": 306, "1996": [71, 74], "1997": [269, 274], "1999": 276, "19th": 308, "1_earth_16k": 5, "1_earth_8k": [4, 15, 19], "1d": 294, "1f": [37, 53, 54, 56, 293], "1mb0": 141, "1mm": [24, 273], "1st": [38, 271], "1x1": 275, "1x3": 275, "1xjcg1tl5zrjzdyi8v76leyzt_maxgp0kob7ozixksta": 135, "2": [2, 4, 5, 8, 11, 12, 14, 15, 17, 18, 21, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 35, 36, 37, 39, 40, 46, 54, 59, 60, 61, 62, 63, 65, 66, 67, 68, 71, 72, 73, 74, 76, 80, 81, 82, 83, 93, 94, 96, 106, 114, 118, 120, 131, 134, 135, 144, 145, 148, 154, 171, 172, 173, 179, 180, 225, 226, 227, 229, 258, 262, 267, 269, 271, 273, 274, 275, 276, 278, 280, 281, 283, 285, 289, 291, 292, 293, 294, 295, 297, 299, 302, 304, 306, 307, 309, 311, 312, 314], "20": [9, 10, 13, 14, 15, 17, 21, 26, 27, 28, 29, 32, 33, 40, 46, 54, 56, 60, 61, 63, 66, 74, 81, 108, 173, 179, 180, 225, 226, 227, 269, 273, 275, 289, 291, 293, 294, 295, 297, 303, 306, 309], "200": [5, 11, 12, 17, 20, 24, 25, 28, 30, 33, 36, 40, 47, 49, 50, 51, 52, 54, 55, 56, 68, 180, 250, 291, 293], "2000": [15, 80, 81, 93], "2004": 269, "2007": [173, 269, 274], "2008": [178, 276], "2009": 178, "200x200": 295, "201": 306, "2010": 276, "2011": 276, "2012": 73, "2013": 178, "2018": [173, 230, 297, 303], "2019": [96, 297, 306], "202": 306, "2020": [105, 130, 133, 135, 136, 171, 172, 173, 297, 309], "2021": [137, 148, 171, 172, 179, 297, 311, 312], "2022": [225, 226, 227, 269, 297, 312], "2023": [178, 230, 249, 271, 297, 302], "2024": [179, 297, 315], "203": 306, "204": 306, "205": 308, "206": 306, "207": 306, "208": 308, "209": 306, "20_stream": [85, 313], "20space": 193, "20with": 193, "21": [8, 25, 134, 135, 171, 172, 173, 178, 225, 297, 303, 308, 310], "210": 306, "211": [306, 310], "212": 306, "213": [306, 312], "214": 306, "215": 306, "21516": [145, 148], "216": 307, "217": 306, "218": 306, "219": [92, 306], "22": [15, 63, 163, 174, 225, 271, 303, 312], "220": 306, "222": 302, "223": 306, "225": 306, "226": 307, "227": 306, "23": [37, 60, 94, 134, 135, 174, 175, 226, 269, 294, 302, 303], "230": 56, "231": [135, 307], "233": 307, "235": [26, 307], "236": 308, "237": 307, "238": 307, "239": 309, "24": [4, 25, 173, 175, 225, 227, 243, 269, 271, 286, 289, 292, 294, 303, 304, 312], "240": [81, 135, 307], "241": 307, "242": 308, "243": [15, 308], "244": 307, "245": 307, "246": [135, 307], "247": 307, "248": [135, 307], "249": 307, "25": [4, 5, 14, 15, 29, 34, 37, 39, 43, 46, 54, 60, 72, 73, 79, 225, 226, 227, 269, 292, 307], "250": [5, 14, 47, 49, 53, 54, 63, 134, 307], "251": 307, "252": [135, 308], "253": 307, "254": 307, "255": [12, 14, 18, 28, 34, 46, 50, 75, 267, 273, 276, 294, 307], "256": [170, 258, 267, 306, 307], "258": 307, "259": [292, 307], "26": [72, 73, 80, 82, 83, 134, 135, 148, 171, 172, 173, 297, 303], "260": 308, "261": 307, "262": 307, "263": 307, "264": 307, "265": 307, "266": 307, "267": [134, 307], "268": [135, 307], "269": 308, "27": [15, 32, 59, 60, 80, 82, 225, 269, 271, 302, 308], "270": 308, "271": 308, "272": [135, 308], "273": 308, "274": 309, "275": [48, 135, 308], "276": 308, "277": 308, "278": 308, "279": 308, "28": [83, 134, 135, 148, 171, 172, 173, 226, 227, 294, 297, 303, 311], "280": 308, "281": [135, 308], "282": 308, "283": 308, "284": 308, "285": [135, 302], "286": [135, 309], "287": [135, 308], "288": 308, "289": 308, "29": [60, 225, 227, 267, 271, 294, 297, 303, 306], "292": 308, "294": [44, 45, 135, 266, 271, 302], "295": 309, "296": 134, "297": 309, "29702": 276, "298": 309, "2cylinderengin": 193, "2d": [12, 22, 23, 34, 71, 89, 97, 108, 140, 151, 172, 173, 179, 193, 198, 225, 237, 252, 255, 267, 270, 273, 274, 282, 283, 287, 293, 294, 295, 307, 310, 313], "2g": 180, "2k_neptun": 15, "2k_uranu": 15, "2nd": [108, 113], "3": [2, 3, 4, 5, 8, 10, 11, 12, 14, 15, 16, 18, 20, 21, 24, 26, 27, 28, 29, 32, 33, 34, 36, 37, 40, 47, 49, 52, 53, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 71, 72, 74, 75, 80, 81, 82, 83, 85, 86, 88, 93, 94, 96, 97, 118, 124, 127, 134, 135, 142, 143, 148, 154, 171, 172, 173, 178, 179, 184, 191, 225, 226, 227, 249, 265, 267, 269, 270, 271, 273, 274, 275, 276, 278, 280, 282, 283, 285, 286, 289, 290, 291, 292, 293, 294, 295, 297, 302, 303, 305, 307, 312, 314], "30": [11, 15, 21, 25, 26, 27, 46, 50, 54, 55, 56, 60, 63, 76, 79, 80, 81, 82, 83, 134, 135, 179, 226, 273, 275, 293, 303], "300": [4, 15, 20, 24, 26, 28, 29, 30, 36, 43, 44, 45, 47, 49, 52, 53, 54, 55, 82, 86, 293, 295, 309], "3000": 173, "302": 309, "303": 309, "304": 309, "3051798": 62, "306": 309, "307": 309, "308": 309, "309": 309, "31": [4, 27, 60, 225, 227, 269, 297, 304, 312], "310": 309, "311": 309, "312": 309, "313": 309, "314": 4, "315": 309, "316": 312, "317": 310, "3175": 4, "318": 309, "319": 309, "31st": 96, "32": [37, 72, 73, 74, 180, 258, 267, 303, 305], "323": 276, "324": 311, "328": 309, "329": 309, "32bit": 309, "33": [15, 43, 54, 148, 291, 295], "332": 309, "333": 309, "334": 309, "335": 309, "336": 309, "337": 309, "338": 309, "339": [286, 309], "3393612": 291, "34": [4, 286, 311], "340": 309, "341": 309, "342": 309, "343": 309, "345": 309, "346": 309, "34786452": 292, "348": 309, "349014": 5, "35": [4, 24, 28, 30, 60, 72, 83, 273, 289, 307, 310], "350": [5, 54, 293, 309], "351": 309, "352": 309, "3522": 5, "353": 309, "354": 312, "355": 310, "356": 310, "357": 309, "358": 310, "358402e": 148, "359": 309, "36": [289, 294, 304], "360": [46, 50, 52, 68, 293], "361": 309, "362": [156, 162, 168, 172, 289, 311], "363": 309, "364": 309, "366": 309, "368": 309, "369": 309, "37": [61, 303, 309], "370": 309, "371": 310, "372": 309, "373": 309, "374": 309, "375": 310, "376": 309, "379": [309, 312], "38": [24, 30], "38119": [145, 148], "382": [302, 309], "383": 309, "383331": 5, "383436184": 292, "385": 309, "386": 310, "387": 309, "388": 309, "388287": 148, "389": 309, "39": [4, 5, 83, 303, 304], "393": 310, "394": 310, "395": 310, "396": 310, "397": 302, "398": [171, 239, 242, 271, 302], "399": 310, "3a4fdea8d23207d67431973fe5df1811605c4132": 169, "3d": [11, 12, 14, 22, 23, 24, 26, 30, 32, 34, 37, 39, 40, 71, 74, 75, 89, 97, 98, 99, 100, 101, 103, 104, 105, 106, 108, 119, 122, 132, 137, 138, 140, 145, 151, 166, 167, 171, 172, 173, 176, 177, 180, 222, 225, 226, 227, 228, 229, 234, 252, 255, 267, 269, 273, 274, 276, 277, 282, 283, 287, 292, 294, 306, 307, 310, 313], "3pgk": 144, "3rd": 127, "3x1": 235, "3x3": [80, 82, 93, 235, 255, 256], "4": [4, 6, 8, 10, 12, 14, 15, 18, 20, 21, 24, 25, 26, 28, 29, 32, 40, 44, 45, 49, 54, 56, 59, 60, 61, 62, 63, 65, 66, 74, 75, 76, 80, 81, 82, 83, 86, 88, 93, 96, 115, 118, 132, 134, 135, 145, 146, 148, 154, 158, 171, 172, 173, 208, 225, 226, 227, 234, 237, 249, 258, 265, 267, 269, 270, 271, 273, 274, 275, 276, 280, 281, 282, 286, 289, 291, 292, 293, 294, 295, 297, 302, 303, 306, 308, 312], "40": [5, 26, 46, 47, 48, 53, 60, 65, 72, 73, 79, 293, 303], "400": [11, 15, 31, 37, 43, 46, 47, 49, 51, 54, 55, 56, 86, 87, 293, 311], "40000": 79, "400x400": 295, "402": 302, "403": 310, "404": 311, "405": 310, "406": 310, "407": [286, 306, 310], "4074": 5, "408": 310, "4086": 151, "409": 310, "41": [15, 37, 303], "410": 310, "411": 310, "412": 310, "413": 310, "414": 310, "415": 310, "416": 310, "417": 310, "418": 312, "419": 312, "42": [4, 27, 303, 308], "420": 310, "421": 310, "422": [139, 145, 146, 310], "424": [151, 181], "425": [5, 302], "426": 310, "429": 310, "43": 303, "430": 310, "431": 311, "432": [139, 145, 163, 173, 174, 311], "433": 311, "434": 310, "435": 312, "436": 310, "437": [142, 145, 148, 154, 163, 174, 175, 312], "438": 310, "439": 310, "44": [37, 289, 293, 294, 303], "440": [310, 314], "440a39d427822096679ba384c7d1d9a362dab061": 148, "441": [171, 310], "442": [158, 161, 310], "443": [158, 161, 171, 312], "444": 310, "445": 310, "446": [171, 242], "447": 310, "448": [171, 302], "449": 311, "45": [8, 14, 15, 25, 39, 51, 54, 303], "450": [4, 54, 94, 293, 310], "451": 310, "452": [156, 162, 165, 168, 170, 172, 311], "453": 310, "454": 310, "455": 310, "456": 310, "457": 311, "459": 310, "46": [80, 82, 303], "460": [171, 242, 302], "462": [159, 162, 168, 172], "463": 312, "464": 310, "466": 310, "467": 311, "468": 311, "469": 311, "47": [303, 311], "470": 311, "474": [163, 174, 311], "475": [165, 172, 310], "476": [173, 310], "477": [171, 310], "478": 312, "479": [171, 311], "48": [5, 25, 269, 286, 303], "480": [171, 173, 311], "484": 174, "486": [171, 312], "487": 171, "488": 311, "489": [173, 175], "49": [53, 60, 303, 306], "491": [171, 311], "492": [170, 172], "493": [172, 311], "494": 171, "496": 311, "498": 311, "499": [233, 263, 271, 302], "4d": [40, 273, 274, 294], "4th": [81, 83, 114], "4x15": 270, "4x4": [273, 274], "5": [2, 3, 4, 5, 10, 11, 12, 14, 15, 16, 18, 20, 21, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 44, 45, 46, 47, 49, 53, 54, 56, 59, 60, 61, 63, 65, 66, 68, 71, 72, 73, 74, 76, 78, 79, 80, 81, 82, 83, 86, 87, 88, 93, 94, 96, 122, 134, 135, 143, 145, 148, 154, 171, 172, 173, 180, 225, 226, 227, 249, 264, 269, 270, 271, 273, 275, 276, 281, 285, 286, 289, 291, 292, 293, 294, 297, 302, 303, 307, 312], "50": [11, 15, 21, 28, 39, 43, 46, 47, 48, 50, 51, 54, 79, 275, 286, 291, 293, 303], "500": [36, 37, 43, 51, 53, 54, 55, 81, 83, 88, 290, 311], "50000": 12, "501": 312, "502": 312, "503": 311, "504": 311, "505": 311, "506": 311, "507": 311, "509": 311, "51": 307, "511": 311, "512": 311, "513": 311, "514": 311, "515": 311, "516": 311, "518": 311, "519": 311, "52": [27, 303], "520": [179, 311], "521": 311, "523": 311, "524": 311, "525": [5, 179, 312], "526": 311, "527": [71, 74, 311], "528": 312, "529": 312, "53": 304, "530": 312, "532": 311, "533": [179, 227, 312], "534": 311, "535": 311, "536": 311, "537": 312, "54": [302, 306, 310], "540": [239, 242], "541": 312, "542": 312, "544": 312, "545": [71, 74, 312], "546": 312, "547": [179, 227, 312], "548": 312, "549": 312, "55": [14, 24, 30, 44, 45, 303], "550": [4, 94, 312], "551": 312, "552": [178, 312], "553": 312, "554": 312, "555": [178, 312], "556": [179, 227, 312], "557": 312, "559": [179, 227, 312], "56": [27, 303], "560": [28, 48, 312], "561": 312, "562": [236, 302], "563": 312, "564": 312, "565": 312, "566": 312, "567": 312, "569": 312, "57": [80, 82, 83, 269, 274, 303], "570": 312, "571": 312, "572": 312, "573": 312, "574": 312, "575": [4, 5, 312], "576": [233, 236, 239, 302], "577": 312, "58": [15, 303], "580": 312, "581": 312, "582": 312, "584": 312, "585": 312, "586": 312, "587": 312, "588": 312, "589": 312, "58ad5f7": 314, "59": [37, 303], "590": 312, "591": [226, 312], "592": 302, "593": 312, "594": [226, 312], "595": 312, "596": 312, "597": [226, 312], "598": [226, 312], "599": [182, 183, 225, 312], "5e": 276, "5th": [66, 81, 83, 116, 269, 274], "6": [2, 11, 12, 15, 18, 21, 24, 25, 26, 28, 29, 32, 37, 39, 47, 49, 53, 59, 60, 61, 62, 63, 64, 65, 66, 68, 70, 71, 74, 79, 80, 81, 82, 83, 93, 125, 134, 135, 154, 171, 172, 173, 225, 226, 227, 269, 270, 271, 273, 275, 282, 286, 291, 293, 294, 297, 302, 303, 309, 312, 314], "60": [15, 25, 125, 273, 295, 303, 307], "600": [2, 3, 14, 16, 18, 19, 25, 26, 27, 28, 29, 31, 33, 34, 35, 38, 39, 40, 46, 49, 51, 53, 71, 72, 73, 74, 79, 184, 188, 190, 227, 273, 312], "600x600": 249, "601": 312, "602": [184, 227, 312], "603": 312, "604": 181, "605": 312, "606": 312, "607": 312, "608": 312, "609": [225, 312], "61": [303, 309], "610": 312, "611": 312, "612": [186, 312], "613": [186, 312], "614": 312, "615": 312, "616": [190, 227, 312], "617": [189, 226, 312], "618": 312, "619": 312, "61966": 276, "62": 304, "620": 312, "621": [286, 312], "622": 312, "623": [197, 200, 203, 209, 211, 215, 225, 312], "624": 312, "625": 312, "626": [195, 196, 199, 312], "627": [286, 312], "629": 302, "63": 304, "630": [56, 196, 227, 312], "631": [195, 226], "632": 312, "633": 312, "634": [198, 226, 312], "637": 312, "638": 312, "639": 312, "64": [37, 61, 178], "640117": 62, "641": 312, "642": 312, "643": [198, 217, 219, 223, 227, 312], "644": 312, "645": [203, 206, 225, 312], "646": 312, "647": [201, 226, 312], "648": 312, "649": 312, "65": 304, "650": [48, 54, 312], "653": [203, 209, 211, 215, 225], "654": 312, "655": 312, "65536": 267, "656": 312, "657": 312, "659": 312, "66": [15, 43, 54, 305], "660": 226, "661": [226, 312], "662": 312, "663": 312, "664": 312, "665": [220, 226, 312], "666": 312, "667": 312, "669": 312, "67": 304, "670": 312, "671": 312, "672": 312, "673": [15, 215, 225, 312], "674": [215, 225, 312], "675": 312, "676": 312, "677": 312, "678": [216, 225, 312], "679": [4, 216, 225, 312], "68": [37, 61, 304], "680": [80, 81, 82, 83, 226, 312], "681": 312, "682": 312, "683": 312, "684": 312, "685": [223, 227, 312], "686": 312, "687": [226, 312], "688": [221, 225, 312], "689": [223, 227, 312], "69": 304, "690": [226, 312], "691": 312, "692": [226, 312], "693": 312, "694": [222, 226, 312], "695": 225, "696": 225, "697": 312, "698": 312, "699": 312, "6th": 118, "7": [5, 15, 18, 25, 26, 28, 37, 40, 60, 61, 63, 65, 71, 81, 82, 83, 96, 134, 135, 154, 171, 172, 173, 193, 225, 226, 227, 269, 271, 273, 274, 276, 291, 293, 294, 297, 299, 302, 304, 311, 312, 314], "70": [15, 65], "700": [5, 79, 227, 312], "701": [225, 312], "702": 226, "704": 312, "705": 312, "706": 312, "708": 312, "709": 312, "71": 306, "710": 312, "712": 312, "7128": 5, "713": 312, "714": 312, "716": 312, "717": 312, "718": 312, "719": 312, "72": [282, 295, 304], "720": [6, 8, 75, 76, 88, 94, 289, 312], "721": 312, "722": 312, "723": 312, "724": [28, 250, 312], "725": 312, "726": 312, "727": 312, "728": 312, "729": 312, "73": [5, 304], "730": 312, "730610": 5, "731": [236, 302], "732": 312, "734": 312, "735": 312, "736": 312, "737": 312, "738": 312, "739": 312, "74": 5, "740": [54, 312], "741": 312, "743": 312, "744": 312, "745": 312, "747": 312, "748": 312, "75": [4, 14, 24, 30, 37, 47, 282, 302, 306, 313], "750": [4, 54], "754": 312, "756": 312, "75862069": 276, "76": [27, 306], "760": 312, "761": 312, "762": 312, "764": 312, "765": 312, "766": 312, "767": 312, "768": [4, 5, 7, 9, 10, 11, 12, 13, 15, 17, 19, 20, 21, 31, 36, 38, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 80, 81, 82, 83, 93, 236, 239, 271, 275, 302], "769": [251, 271, 312], "77": [37, 306], "770": 312, "771": 312, "772": 312, "774": 302, "776": 312, "777": 312, "7777777777777777": [273, 283, 293, 294], "778": 312, "779": 312, "78": 79, "781": 312, "782": 312, "783": [240, 243], "787": 302, "788": 302, "789": 302, "79": [80, 82, 304], "790": [233, 236, 271, 302], "791": [235, 238, 245, 247, 249, 250, 256, 269, 302], "792": 302, "794": 302, "796": 302, "797": 302, "798": 302, "799": 302, "7th": [119, 180], "8": [4, 11, 15, 21, 25, 26, 30, 33, 35, 36, 39, 40, 44, 45, 47, 49, 53, 54, 62, 63, 65, 66, 71, 72, 73, 74, 75, 80, 82, 83, 86, 88, 96, 134, 135, 145, 171, 172, 173, 178, 179, 225, 226, 227, 258, 267, 269, 271, 273, 275, 276, 286, 289, 290, 291, 294, 295, 297, 302, 303, 304, 307, 308, 312, 314], "80": [180, 304], "800": [29, 32, 33, 43, 50, 51, 52, 53, 54, 55, 56, 86, 302], "8000": [86, 88, 142, 291], "801": 302, "802": 302, "803": [239, 248, 255, 266, 271, 302], "804": [249, 252, 267], "805": 302, "806": 302, "807": 302, "808": 302, "809": 302, "81": [306, 311], "810": [244, 247, 255, 269, 302], "811": 302, "812": [245, 302], "814": [251, 302], "815": 302, "816": 271, "817": 302, "818": [250, 259, 269, 302], "819": 302, "82": 312, "820": [5, 251, 271, 302], "821": 271, "822": 302, "823": 302, "824": 302, "825": 302, "826": [261, 267, 268], "827": 302, "828": 302, "829": 302, "83": 304, "830": [260, 263, 271, 302], "831": 302, "832": [260, 266, 271], "833": 302, "834": 302, "836": 302, "837": [271, 302], "838": 263, "839": 302, "84": 304, "840": 302, "841": 302, "842": 302, "843": 302, "844": 302, "845": 302, "846": 302, "847": 302, "848": 302, "849": 267, "85": [5, 15, 46, 304], "850": 267, "852": 302, "8566": 5, "86": [37, 304], "861": 302, "863": 302, "864": 302, "864716": 5, "865": 302, "866": [292, 302], "87": [28, 304], "88": 304, "89": [79, 304, 310], "89655172": 276, "8c670c2": 151, "8f": 14, "8k": 4, "8k_mar": 15, "8k_mercuri": 15, "8k_saturn": 15, "8k_saturn_ring_alpha": 15, "8k_sun": 15, "8k_venus_surfac": 15, "8th": 121, "9": [15, 26, 59, 60, 63, 66, 71, 72, 73, 74, 83, 93, 96, 134, 135, 138, 154, 171, 172, 173, 176, 181, 184, 193, 225, 226, 227, 256, 269, 271, 273, 276, 283, 290, 293, 294, 297, 302, 307, 308, 309, 311, 314], "90": [4, 5, 15, 28, 29, 33, 65, 68, 80, 82, 184, 294, 304], "900": [4, 5, 7, 9, 10, 13, 14, 15, 17, 19, 20, 21, 24, 30, 31, 36, 38, 40, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 79, 80, 81, 82, 83, 93, 275], "9042": 5, "9062272e6bdc": 148, "91": [278, 304], "916668": 5, "92": 305, "930": 5, "935242": 5, "94": [53, 305], "95": [37, 178], "950": 40, "96": 305, "966": 292, "97": 305, "98": [12, 27, 305, 309], "985": 5, "989": 15, "99": [82, 193, 306], "999": 290, "9d": 193, "9th": 124, "A": [10, 22, 27, 29, 32, 33, 36, 38, 40, 44, 45, 46, 50, 60, 62, 64, 71, 74, 80, 89, 90, 93, 105, 130, 135, 137, 139, 141, 143, 146, 148, 149, 161, 167, 171, 173, 174, 177, 180, 198, 205, 225, 227, 228, 230, 236, 267, 269, 273, 274, 275, 276, 277, 278, 281, 285, 286, 288, 289, 290, 291, 293, 294, 295, 315], "AND": 315, "AS": 315, "And": [37, 64, 73, 123, 142, 178, 186, 192, 201, 205, 226, 243, 255, 267, 269, 275], "As": [28, 71, 102, 110, 113, 119, 125, 135, 140, 141, 142, 148, 152, 154, 155, 161, 164, 169, 180, 181, 182, 184, 185, 187, 188, 189, 194, 199, 204, 205, 206, 209, 211, 212, 214, 215, 218, 221, 225, 226, 230, 234, 237, 238, 239, 240, 241, 248, 249, 251, 253, 255, 258, 261, 263, 264, 265, 267, 269, 270, 271, 275], "At": [32, 93, 178, 182, 226, 227, 234, 239, 252, 271, 280], "BE": 315, "BUT": 315, "BY": 315, "Be": [105, 137, 177, 228], "Being": [126, 257, 264], "But": [60, 114, 145, 148, 152, 154, 173, 175, 178, 180, 185, 188, 197, 205, 213, 214, 226, 237, 246, 267, 294], "By": [14, 26, 27, 37, 53, 56, 88, 93, 180, 233, 273, 276, 294], "FOR": 315, "For": [4, 6, 21, 25, 27, 28, 29, 32, 39, 64, 71, 72, 73, 74, 76, 86, 88, 93, 96, 98, 99, 100, 101, 103, 104, 106, 116, 122, 124, 132, 138, 142, 154, 159, 161, 164, 166, 173, 176, 183, 191, 194, 200, 218, 221, 222, 229, 230, 232, 234, 235, 236, 238, 243, 246, 249, 252, 265, 267, 269, 270, 271, 275, 276, 278, 279, 280, 290, 292, 294, 295, 297], "IF": 315, "IN": [4, 315], "If": [9, 13, 14, 24, 28, 32, 39, 48, 54, 59, 71, 86, 88, 94, 105, 114, 119, 133, 137, 142, 148, 149, 151, 155, 158, 171, 177, 180, 181, 197, 198, 205, 213, 228, 234, 237, 243, 258, 263, 267, 271, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 293, 294, 295, 314], "In": [4, 5, 6, 7, 8, 9, 10, 12, 13, 14, 15, 17, 19, 21, 24, 26, 27, 28, 32, 33, 34, 37, 43, 54, 59, 62, 63, 67, 71, 72, 73, 74, 75, 79, 80, 81, 82, 83, 86, 88, 93, 96, 111, 112, 116, 118, 127, 129, 130, 135, 136, 140, 141, 142, 144, 146, 147, 148, 149, 150, 152, 154, 155, 161, 169, 171, 172, 173, 175, 178, 179, 180, 183, 184, 197, 212, 232, 234, 237, 242, 246, 254, 255, 256, 266, 267, 269, 271, 273, 274, 288, 295, 311], "It": [9, 13, 14, 18, 25, 27, 31, 40, 62, 71, 98, 116, 121, 129, 133, 134, 142, 149, 152, 157, 165, 167, 169, 170, 172, 173, 175, 176, 178, 179, 180, 181, 193, 194, 197, 200, 206, 211, 212, 217, 222, 225, 226, 227, 230, 231, 236, 239, 244, 249, 250, 255, 264, 265, 267, 270, 271, 273, 275, 276, 280, 286, 289, 293, 298, 311, 314], "Its": [121, 271], "NO": 315, "NOT": [276, 315], "No": [7, 9, 13, 64, 120, 123, 126, 128, 156, 162, 165, 167, 168, 169, 170, 183, 187, 190, 193, 199, 203, 208, 209, 212, 214, 216, 218, 219, 223, 237, 242, 276, 312], "Not": [93, 180, 235, 238, 241, 253, 262, 264, 308], "OF": [35, 315], "ON": 315, "OR": 315, "On": [98, 99, 100, 101, 103, 104, 106, 122, 132, 136, 138, 166, 169, 176, 229, 247], "One": [28, 142, 145, 146, 148, 154, 170, 173, 175, 179, 227, 233, 243, 246, 258, 267, 269, 276, 281, 292], "SUCH": 315, "Such": 109, "THE": 315, "THe": 125, "TO": 315, "That": [67, 148, 178, 180, 220, 238, 243, 246, 249, 258, 262, 267, 270], "The": [2, 3, 4, 10, 12, 14, 15, 16, 17, 20, 24, 25, 26, 28, 29, 30, 31, 32, 33, 35, 36, 37, 38, 39, 49, 54, 59, 61, 62, 63, 64, 71, 72, 73, 74, 76, 83, 88, 93, 94, 96, 97, 98, 99, 100, 101, 103, 104, 106, 107, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 138, 139, 140, 142, 143, 144, 145, 146, 147, 148, 149, 151, 152, 155, 158, 161, 165, 166, 167, 168, 169, 171, 172, 173, 175, 176, 182, 184, 187, 188, 190, 191, 197, 198, 203, 205, 212, 218, 223, 225, 226, 227, 229, 235, 236, 239, 240, 242, 244, 246, 247, 249, 251, 252, 254, 256, 257, 258, 261, 263, 264, 265, 266, 267, 269, 270, 271, 273, 274, 275, 276, 277, 278, 279, 280, 281, 283, 286, 287, 289, 290, 291, 292, 293, 294, 295, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 314], "Then": [4, 15, 20, 24, 30, 35, 36, 37, 43, 51, 54, 61, 63, 64, 71, 74, 93, 178, 180, 181, 182, 183, 188, 191, 194, 200, 203, 205, 206, 211, 216, 225, 250, 269, 273, 274, 294, 314], "There": [34, 67, 96, 112, 124, 129, 130, 131, 135, 142, 172, 178, 180, 193, 196, 221, 227, 244, 259, 262, 270, 271, 273, 276, 277, 306], "These": [0, 28, 32, 41, 57, 64, 69, 72, 77, 84, 89, 140, 148, 158, 164, 167, 169, 171, 180, 225, 226, 227, 255, 260, 266, 271, 276, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312], "To": [15, 17, 19, 25, 27, 28, 32, 44, 45, 47, 49, 53, 54, 63, 67, 71, 76, 93, 94, 96, 97, 98, 99, 100, 101, 103, 104, 106, 109, 113, 120, 122, 132, 138, 142, 148, 154, 155, 158, 161, 166, 173, 176, 184, 193, 194, 197, 203, 205, 211, 216, 225, 229, 231, 233, 236, 237, 239, 246, 247, 248, 251, 254, 257, 260, 263, 264, 265, 266, 269, 270, 271, 276, 280, 281, 293, 314], "With": [21, 24, 28, 37, 71, 88, 97, 114, 124, 131, 135, 136, 148, 152, 161, 193, 245, 264, 267, 269, 314], "_": [26, 28, 32, 36, 38, 46, 63, 80, 82, 83, 169, 249, 269, 276, 292], "__init__": [28, 38, 148, 272, 273, 274, 275, 276, 280, 281, 283, 286, 287, 291, 293, 295, 296], "__main__": [86, 87], "__name__": [86, 87], "__new__": 276, "__str__": [278, 284, 290], "__version__": [280, 314], "_actor": 283, "_add_to_scen": 119, "_axes2tupl": 292, "_buffer": 86, "_button": [15, 43, 54, 293], "_caller": [76, 290], "_check_and_sync": 154, "_color_fa": 28, "_combobox": 293, "_cqueue": 296, "_cqueue_event_id": 296, "_cqueue_index_info": 296, "_element": 293, "_ev": 14, "_event": [4, 5, 7, 9, 12, 13, 15, 17, 20, 21, 24, 25, 26, 29, 30, 32, 33, 36, 38, 40, 76, 79, 80, 81, 82, 83, 93, 290], "_evt": 45, "_fa": 28, "_filemenu_item": 293, "_keyfram": 67, "_leading_whit": 296, "_list_box": 293, "_list_box_item": 293, "_obj": [4, 5, 7, 9, 12, 13, 15, 17, 20, 21, 25, 26, 29, 32, 33, 36, 38, 40, 43, 45, 54, 79, 80, 81, 82, 83, 93, 293], "_opac": 309, "_panel2d_object": 293, "_rect_obj": 293, "_slider": 293, "_sub_compon": 293, "_tab_comp": 293, "_textbox_object": 293, "_timer": 36, "_tuple2ax": 296, "_use_shared_mem": 148, "_vtkactor": 293, "_what": 293, "a4": 193, "a94e22dbc2854ec87b8c934f6cabdf48931dc279": 154, "aabb": 187, "ab": [25, 28, 71], "abbrevi": 267, "abc": [148, 291], "abil": [14, 153, 168, 170, 173, 184, 198, 220, 223, 226, 227, 276, 312], "abl": [12, 14, 17, 24, 32, 59, 63, 108, 110, 111, 112, 113, 115, 116, 117, 118, 119, 121, 124, 127, 129, 130, 131, 133, 134, 135, 147, 149, 156, 165, 172, 174, 180, 187, 189, 190, 191, 194, 199, 205, 208, 225, 226, 227, 234, 240, 243, 256, 270, 291], "abouagour": 226, "about": [31, 71, 81, 83, 93, 94, 96, 105, 108, 116, 119, 137, 141, 142, 148, 150, 154, 159, 165, 167, 169, 170, 173, 177, 180, 181, 184, 186, 194, 197, 199, 209, 221, 224, 225, 228, 230, 232, 235, 240, 242, 243, 244, 246, 248, 252, 255, 259, 261, 262, 265, 267, 268, 270, 271, 278, 280, 286, 291, 295, 306, 310, 312, 314], "abov": [14, 17, 27, 32, 60, 63, 82, 93, 96, 111, 113, 116, 117, 120, 123, 124, 136, 145, 147, 148, 192, 205, 210, 211, 221, 222, 225, 226, 246, 249, 265, 267, 269, 276, 315], "abs_dist": 71, "abscissa": 29, "absdist": 71, "absolut": [71, 152, 171, 293], "abstract": [114, 154, 291, 293], "abstractmethod": 148, "ac": 312, "academ": 180, "acc": 33, "acc_id": 281, "acceler": [33, 243, 310], "accent": 276, "accept": [135, 179, 180, 226, 275, 280], "access": [11, 12, 14, 19, 24, 93, 97, 120, 125, 134, 135, 139, 148, 170, 172, 173, 183, 286, 291, 294, 295, 306, 308], "accessor": 281, "accident": 184, "accomplish": [234, 242, 252], "accord": [32, 37, 80, 82, 148, 170, 181, 182, 183, 185, 211, 226, 239, 248, 254, 273, 276, 283, 293, 294, 295, 310, 314], "accordingli": [67, 93, 149, 171, 182, 233, 256, 293], "accordion": [149, 171], "accordion2d": [164, 167, 171], "accordionui": 271, "account": [227, 232, 236, 269, 294, 314], "accssor_typ": 281, "accur": [80, 82, 117, 226, 271, 302, 312], "accuraci": [246, 269], "achiev": [32, 59, 97, 115, 118, 120, 121, 127, 131, 134, 139, 142, 145, 148, 149, 173, 225, 266, 267], "acid": 286, "acm": 173, "acquaint": [141, 231], "acquir": 295, "across": [132, 139, 148, 173, 175, 178, 179, 277, 308], "acrro": 175, "act": [5, 26, 121, 207, 225, 273, 293, 294], "action": [15, 43, 54, 138, 142, 171, 173, 225, 229, 245, 248, 266, 302, 309, 312], "activ": [53, 93, 129, 133, 136, 183, 200, 225, 249, 252, 271, 275, 293, 304], "active_color": [293, 296], "active_scalar": 294, "active_tab_idx": 53, "actor": [0, 1, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 46, 50, 52, 53, 54, 56, 57, 59, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 79, 80, 81, 82, 83, 86, 87, 88, 89, 94, 96, 98, 103, 104, 106, 109, 111, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 134, 135, 138, 140, 141, 144, 145, 146, 159, 162, 164, 165, 166, 168, 171, 172, 173, 175, 176, 178, 181, 184, 186, 188, 189, 190, 191, 192, 195, 196, 198, 201, 202, 204, 205, 210, 213, 218, 219, 220, 222, 223, 224, 226, 229, 232, 239, 241, 244, 245, 246, 247, 249, 250, 251, 252, 253, 255, 256, 258, 259, 264, 265, 266, 267, 271, 275, 276, 281, 283, 285, 286, 287, 290, 293, 294, 295, 296, 298, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313], "actor2d": [182, 218, 296], "actor_add_blend": 31, "actor_index": 281, "actor_list": [81, 83, 93], "actor_mul_blend": 31, "actor_no_depth_test": 31, "actor_normal_blend": 31, "actor_pentagon": 273, "actor_sub_blend": 31, "actors_list": 192, "actual": [80, 82, 114, 140, 143, 146, 158, 180, 194, 200, 212, 215, 251, 267, 275, 276, 277], "ad": [2, 3, 8, 11, 12, 13, 14, 16, 25, 27, 31, 35, 36, 37, 45, 48, 54, 59, 61, 62, 63, 64, 65, 66, 67, 68, 80, 81, 82, 94, 98, 99, 100, 101, 103, 104, 106, 109, 111, 112, 113, 115, 117, 118, 120, 121, 122, 123, 125, 132, 134, 135, 138, 140, 141, 142, 143, 146, 152, 155, 158, 159, 161, 162, 163, 164, 165, 166, 167, 168, 169, 171, 172, 173, 176, 178, 180, 181, 183, 184, 186, 187, 188, 192, 193, 194, 196, 197, 198, 199, 200, 201, 202, 203, 209, 210, 211, 212, 213, 215, 220, 222, 223, 225, 226, 227, 229, 237, 239, 255, 256, 263, 267, 269, 271, 273, 275, 276, 286, 293, 295, 302, 303, 306, 307, 308, 309, 310, 311, 312], "adapt": [143, 155, 171, 222, 312], "add": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 24, 25, 26, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 59, 60, 61, 63, 64, 65, 66, 67, 71, 72, 73, 74, 75, 76, 79, 80, 81, 82, 83, 86, 87, 88, 93, 94, 100, 101, 103, 104, 111, 112, 113, 114, 115, 117, 118, 129, 130, 140, 143, 146, 149, 152, 155, 156, 164, 167, 169, 171, 173, 178, 182, 184, 187, 188, 189, 191, 192, 195, 197, 198, 201, 216, 218, 219, 220, 222, 226, 227, 247, 255, 258, 264, 267, 271, 273, 274, 275, 281, 286, 290, 293, 294, 295, 296, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 314], "add_actor": [59, 60, 61, 62, 64, 66, 67, 68, 275, 296], "add_anim": [59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 275, 295, 296], "add_atom": [159, 296], "add_bond": 296, "add_callback": [293, 296], "add_charact": [293, 296], "add_child_anim": [63, 65, 275, 296], "add_el": [11, 14, 15, 24, 30, 37, 43, 53, 54, 293, 296], "add_iren_callback": [12, 255, 267, 295, 296], "add_polydata_numeric_field": 296, "add_remove_ax": 10, "add_shader_callback": [76, 296], "add_static_actor": [275, 296], "add_timelin": 192, "add_timer_callback": [4, 5, 7, 9, 13, 15, 17, 20, 21, 25, 26, 29, 31, 32, 33, 36, 38, 40, 45, 76, 79, 80, 81, 82, 83, 93, 295, 296], "add_to_scen": [155, 273, 275, 293, 296], "add_to_scene_at": [275, 296], "add_update_callback": [275, 296], "add_window_callback": [24, 30, 37, 295, 296, 306], "addit": [12, 24, 28, 32, 34, 62, 88, 139, 140, 142, 147, 148, 149, 150, 171, 173, 175, 218, 226, 232, 241, 249, 252, 256, 265, 267, 269, 270, 275, 276, 293, 295, 303, 311, 312, 314], "addition": [9, 13, 71, 236, 239, 247, 248, 251, 257, 269, 270], "addobserv": [11, 14], "addon": 240, "addposit": [273, 296], "address": [97, 152, 158, 161, 162, 167, 236, 239, 242, 247, 248, 250, 251, 253, 254, 256, 257, 259, 262, 263, 266, 267, 268, 270, 271], "adjac": 293, "adjust": [14, 24, 152, 232, 233, 236, 239, 241, 244, 247, 254, 256, 257, 260, 262, 269, 270, 271, 294, 312], "admit": 237, "advanc": [22, 23, 89, 97, 149, 232, 286, 309, 313], "advantag": [15, 145, 148, 164, 227, 255], "advis": [93, 114, 178, 181, 315], "af": 24, "aff": 294, "affect": [72, 201, 215, 251, 257, 270, 271], "affili": 112, "affin": [14, 24, 27, 30, 39, 273, 274, 294, 303], "after": [13, 14, 15, 17, 19, 20, 24, 31, 38, 45, 53, 63, 64, 80, 81, 82, 86, 93, 96, 109, 111, 112, 113, 119, 121, 123, 124, 126, 127, 133, 134, 142, 143, 149, 152, 154, 155, 157, 158, 167, 168, 171, 172, 173, 178, 179, 180, 184, 187, 190, 191, 192, 200, 202, 203, 204, 206, 215, 217, 218, 221, 225, 233, 237, 240, 242, 243, 246, 248, 249, 251, 252, 254, 255, 257, 258, 260, 261, 263, 264, 267, 268, 269, 271, 276, 279, 291, 293, 308, 312, 314], "afterward": [6, 237], "again": [9, 64, 71, 171, 178, 179, 180, 185, 218, 225, 240, 243, 246, 268, 277, 314], "agli": [267, 302], "ago": [205, 240], "agour": [229, 312], "agre": 114, "ahead": [24, 180, 231, 233, 260, 263, 271], "ai": 292, "aid": [121, 271], "aim": [72, 97, 142, 143, 146, 155, 236, 240, 242], "aiohttp": [96, 184, 291], "aiortc": [86, 88, 163], "air": 231, "aj": 292, "aju100": [138, 309], "ak": 292, "aka": [141, 153], "alan": 269, "alarm": 180, "alexandr": [101, 106, 122, 176, 303, 306, 307, 311], "algorithm": [36, 74, 75, 109, 111, 113, 116, 118, 121, 126, 134, 147, 157, 165, 168, 170, 172, 173, 175, 178, 179, 235, 240, 269, 273, 276, 286, 306], "algorithmoutput": 296, "alia": [276, 312], "alias": [104, 169, 178, 275, 295, 305], "aliaz": 295, "alien": 170, "align": [4, 11, 14, 15, 24, 30, 37, 43, 54, 56, 71, 74, 93, 124, 193, 217, 233, 242, 248, 251, 260, 264, 270, 271, 283, 293, 296, 302, 312], "align_cent": 273, "all": [6, 8, 9, 11, 12, 14, 15, 17, 24, 28, 30, 31, 35, 36, 37, 43, 46, 50, 51, 52, 54, 55, 56, 61, 64, 66, 71, 74, 75, 76, 79, 80, 81, 82, 83, 89, 93, 96, 97, 101, 103, 104, 106, 108, 114, 116, 118, 122, 127, 132, 133, 135, 136, 138, 140, 141, 142, 148, 149, 151, 154, 158, 161, 162, 166, 167, 169, 170, 171, 172, 176, 178, 179, 180, 185, 187, 188, 189, 190, 192, 193, 194, 195, 196, 197, 199, 200, 205, 206, 207, 211, 214, 219, 221, 222, 223, 225, 226, 227, 229, 230, 231, 234, 239, 251, 252, 254, 255, 258, 261, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 278, 281, 286, 288, 289, 293, 294, 295, 309, 311, 312, 313, 314, 315], "all_arrai": 294, "all_file_nam": 293, "allclos": 292, "alloc": [32, 234, 237, 240, 276], "allocate2d": [234, 237], "allocate3d": [234, 237], "allow": [14, 24, 28, 32, 64, 71, 74, 86, 112, 114, 119, 135, 142, 145, 146, 148, 151, 152, 155, 164, 171, 173, 174, 186, 192, 207, 213, 222, 224, 226, 227, 235, 238, 241, 249, 258, 260, 263, 264, 267, 271, 276, 287, 291, 293, 295, 304, 306, 310, 311, 312, 314], "almost": [64, 123, 146, 149, 158, 161, 169, 178, 179, 184, 201, 207, 257, 259, 267, 269, 275], "alon": [142, 173, 258], "along": [33, 38, 74, 110, 114, 118, 146, 152, 161, 171, 178, 179, 182, 183, 184, 187, 191, 198, 209, 211, 215, 216, 218, 231, 235, 273, 274, 275, 280, 283, 292, 293, 311], "alongsid": [185, 293], "alpha": [36, 118, 141, 173, 269, 273, 280, 309], "alphabet": 271, "alphablendmodetest": 193, "alreadi": [4, 19, 31, 71, 129, 142, 146, 148, 154, 173, 178, 181, 182, 194, 198, 201, 212, 226, 227, 235, 238, 247, 249, 250, 255, 258, 267, 271, 278, 286, 291, 294, 314], "also": [4, 14, 15, 18, 24, 25, 27, 28, 30, 31, 32, 34, 36, 46, 53, 60, 61, 62, 64, 71, 74, 79, 93, 96, 98, 99, 100, 101, 103, 104, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 124, 125, 127, 129, 130, 131, 132, 133, 134, 135, 136, 138, 139, 140, 141, 142, 143, 144, 146, 148, 149, 152, 154, 155, 158, 164, 166, 167, 170, 171, 172, 175, 176, 178, 179, 180, 181, 183, 184, 186, 187, 189, 191, 193, 194, 197, 198, 201, 204, 205, 212, 214, 215, 217, 218, 225, 226, 227, 229, 232, 235, 237, 238, 240, 241, 242, 243, 244, 246, 247, 248, 249, 250, 252, 253, 255, 256, 258, 259, 261, 262, 264, 265, 267, 268, 269, 270, 271, 275, 276, 280, 286, 293, 295, 312, 314], "alter": [4, 207, 271], "altern": [40, 109, 111, 113, 117, 134, 180, 247, 273, 280, 307], "although": [28, 73, 142, 147, 148, 173, 232, 242, 247, 257, 263, 264, 266], "altogeth": 133, "alwai": [6, 60, 63, 71, 93, 114, 116, 118, 119, 121, 124, 127, 142, 146, 178, 179, 198, 273, 314], "am": [107, 108, 112, 114, 116, 118, 119, 121, 129, 130, 131, 133, 140, 152, 155, 164, 178, 179, 180, 184, 211, 225, 232, 234, 238, 240, 242, 249, 255, 258, 264, 267, 268, 314], "aman": [138, 309], "amaz": [178, 180], "ambient": 285, "ambient_color": 285, "ambient_level": 285, "ambientcolor": [71, 74], "ambigu": 149, "amidst": 242, "amino": 286, "amit": [166, 310], "among": [81, 118, 129, 176, 220, 266, 311], "amount": [25, 64, 71, 87, 142, 224, 226, 235, 244, 247, 256, 269, 273, 291], "amplif": 269, "amplitud": [273, 274], "amplitude_i": 81, "amplitude_x": 81, "an": [0, 4, 11, 12, 14, 15, 17, 18, 19, 24, 25, 26, 28, 32, 33, 34, 35, 36, 39, 40, 51, 54, 59, 60, 61, 62, 63, 64, 68, 71, 72, 74, 86, 89, 93, 96, 97, 98, 99, 100, 101, 103, 104, 106, 107, 108, 109, 111, 115, 117, 118, 121, 122, 124, 126, 129, 132, 134, 135, 138, 140, 141, 142, 144, 146, 147, 148, 149, 152, 154, 155, 156, 165, 166, 168, 170, 171, 173, 176, 178, 179, 180, 181, 182, 183, 184, 186, 187, 188, 190, 192, 194, 195, 198, 200, 201, 202, 205, 206, 210, 212, 217, 218, 221, 222, 224, 225, 226, 227, 229, 230, 231, 233, 234, 235, 237, 242, 244, 246, 247, 248, 249, 252, 254, 255, 258, 260, 261, 263, 264, 266, 267, 268, 269, 270, 271, 273, 274, 275, 276, 280, 281, 282, 286, 289, 290, 291, 292, 293, 294, 295, 306, 309, 310, 312, 314], "anaglyph": 295, "analyse_snapshot": 211, "analysi": [180, 236, 257, 269, 271, 274], "analyz": [211, 295], "analyze_scen": 296, "analyze_snapshot": 296, "anand": [176, 227, 229, 311, 312], "ananoda": 303, "anatomi": 286, "anchor": [154, 273, 293, 296], "android": 179, "ang_frq": 29, "angl": [5, 15, 29, 33, 40, 53, 54, 56, 118, 167, 225, 238, 269, 270, 273, 274, 276, 292, 293, 294, 295, 296], "angular": [29, 33, 269, 274], "angular_frq": [29, 33], "ani": [14, 18, 32, 62, 64, 93, 97, 98, 99, 100, 101, 103, 104, 106, 112, 113, 116, 118, 119, 121, 122, 124, 127, 129, 130, 132, 133, 135, 136, 138, 140, 142, 143, 146, 149, 152, 154, 155, 161, 166, 171, 173, 176, 178, 179, 180, 181, 182, 192, 196, 197, 200, 205, 211, 212, 218, 221, 225, 226, 227, 229, 233, 236, 240, 242, 243, 245, 247, 249, 256, 260, 261, 266, 267, 270, 273, 275, 276, 278, 294, 295, 314, 315], "anim": [0, 1, 5, 7, 17, 20, 22, 23, 26, 33, 40, 58, 59, 61, 62, 67, 97, 98, 99, 100, 101, 103, 104, 105, 106, 122, 132, 137, 138, 154, 156, 157, 159, 166, 169, 171, 172, 173, 176, 177, 178, 184, 186, 189, 193, 195, 196, 198, 201, 205, 212, 213, 214, 217, 223, 224, 225, 226, 228, 229, 281, 295, 296, 306, 307, 309, 311, 312, 313], "anim_0": [9, 13], "anim_1": [9, 13], "anim_channel": 281, "anim_hsv_color": 61, "anim_lab_color": 61, "anim_linear_color": 61, "anim_step_color": 61, "anim_xyz_color": 61, "animat": 60, "animatedcub": 193, "animatedmorphcub": [193, 223], "animatedmorphspher": [193, 223], "animatedtriangl": 193, "anisotrop": [73, 176, 285, 311], "anisotropi": [27, 28, 37, 72, 270, 285, 294, 311], "anisotropic_direct": 285, "anisotropy_rot": [37, 72, 285], "anki": 178, "annoi": 152, "announc": [98, 99, 100, 101, 103, 104, 106, 108, 122, 132, 138, 166, 176, 178, 179, 229, 231, 314], "anoth": [4, 20, 37, 64, 66, 114, 126, 148, 149, 180, 188, 192, 197, 202, 207, 226, 227, 231, 238, 240, 243, 246, 249, 252, 255, 258, 261, 262, 264, 266, 267, 268, 271, 276, 314], "anousheh": [132, 229, 308, 312], "answer": [178, 180, 212, 214, 246], "anterior": 292, "anti": [104, 169, 178, 275, 295, 305], "antialias": [71, 74, 296], "anticlockwise_rotation_i": [293, 296], "anticlockwise_rotation_x": [293, 296], "antiparallel": 33, "antiquecamera": 193, "antriksh": [140, 166, 171, 176, 229, 271, 302, 310, 311, 312], "anxieti": 180, "anxiou": 179, "anymor": [121, 255], "anyon": [234, 246], "anyth": [64, 94, 178, 225, 226, 235, 241, 246, 276, 286, 314], "anywher": 148, "apart": [110, 112, 116, 118, 119, 121, 124, 129, 130, 135, 136, 167, 267], "apertur": 276, "api": [43, 46, 50, 51, 52, 54, 55, 56, 93, 97, 114, 129, 132, 134, 135, 155, 158, 161, 173, 178, 179, 180, 184, 186, 188, 190, 207, 210, 226, 227, 230, 234, 249, 252, 258, 261, 264, 267, 268, 302, 303, 307, 308, 312], "app": [22, 35, 89], "app_async": 148, "appar": [240, 243, 246], "appeal": 233, "appear": [11, 12, 24, 60, 110, 148, 175, 180, 225, 226, 227, 239, 251, 263, 264, 265, 270, 276, 294, 295, 309, 311, 312], "append": [25, 35, 36, 40, 43, 45, 54, 80, 81, 82, 83, 87, 112, 188, 290, 293], "append_item": [293, 296], "appli": [6, 9, 13, 14, 15, 18, 21, 31, 49, 74, 79, 80, 81, 82, 83, 93, 127, 148, 178, 180, 181, 182, 184, 192, 197, 202, 204, 212, 214, 217, 219, 221, 227, 236, 239, 252, 255, 258, 267, 269, 273, 274, 281, 282, 283, 285, 289, 290, 291, 294, 295, 296], "applic": [17, 20, 71, 105, 137, 142, 154, 173, 177, 180, 183, 226, 228, 237, 240, 246, 249, 267, 269, 291, 294, 311], "apply_affin": 296, "apply_affine_to_actor": 296, "apply_forc": [79, 80, 82, 83, 93], "apply_morph_vertic": [281, 296], "apply_norm": [6, 9, 13, 281], "apply_skin_matrix": [281, 296], "apply_transform": 296, "applyexternalforc": [79, 80, 82, 83, 93], "applyexternaltorqu": 93, "appreci": 314, "approach": [80, 113, 120, 131, 134, 142, 149, 157, 173, 182, 185, 197, 203, 206, 207, 211, 220, 221, 226, 242, 249, 252, 258, 259, 266, 267, 269, 271, 291], "approcach": 175, "appropri": [14, 24, 74, 80, 93, 129, 172, 186, 253, 270, 293], "approv": 271, "approx": 269, "approx_polygon_track": 273, "approxim": [27, 269, 273, 274], "appveyor": [103, 104, 304, 305], "apr": 148, "april": 179, "apt": [86, 88], "ar": [11, 12, 14, 15, 17, 24, 25, 27, 28, 29, 30, 32, 33, 34, 36, 37, 43, 44, 45, 46, 47, 48, 50, 51, 52, 53, 54, 55, 56, 60, 62, 64, 66, 67, 71, 72, 74, 80, 82, 83, 86, 93, 94, 96, 97, 98, 99, 100, 101, 103, 104, 105, 106, 107, 109, 112, 116, 117, 122, 123, 126, 127, 128, 129, 130, 131, 132, 134, 135, 136, 137, 138, 140, 142, 143, 146, 148, 149, 151, 152, 154, 155, 157, 158, 161, 164, 166, 167, 169, 171, 172, 173, 176, 177, 178, 180, 181, 192, 193, 197, 199, 205, 207, 211, 215, 216, 217, 222, 225, 226, 227, 228, 229, 230, 232, 234, 236, 237, 241, 242, 244, 246, 251, 252, 255, 256, 259, 262, 265, 266, 267, 268, 269, 270, 271, 273, 274, 275, 276, 278, 280, 282, 283, 286, 287, 288, 290, 292, 293, 294, 295, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 314, 315], "ara": [258, 267], "arab": 178, "arang": [36, 81, 83], "archaic": 168, "architectur": [206, 225], "archiv": [148, 180, 288], "archive_subst_hash": 288, "arcuat": 24, "area": [14, 24, 112, 135, 206, 230, 246, 287], "aren": [135, 218, 302], "arg": [86, 87, 96, 280, 289, 291], "arg_in_kwarg": 280, "argsdeprecationwarn": 296, "argument": [62, 68, 88, 93, 114, 115, 135, 224, 275, 280, 289, 292, 293, 309, 312], "ari": 32, "arial": [24, 30, 46, 50, 273, 293], "ariel": [103, 304], "aris": [183, 185, 266, 269, 271, 315], "arm": [57, 58, 89, 210, 226, 313], "aromat": 286, "aros": [236, 239, 254], "around": [5, 12, 15, 26, 28, 32, 63, 81, 93, 146, 149, 168, 178, 179, 180, 185, 187, 191, 194, 201, 205, 215, 218, 220, 225, 230, 249, 252, 258, 263, 266, 267, 271, 273, 275, 285, 286, 287, 292, 294, 295], "arr": [273, 277, 282, 290, 291, 294, 295], "arr_buff": 142, "arr_buffer_uint8": 142, "arr_uint8_repr": 142, "arrai": [2, 3, 4, 5, 8, 11, 12, 16, 18, 21, 26, 28, 29, 31, 32, 33, 35, 36, 40, 45, 46, 50, 53, 54, 56, 59, 60, 61, 62, 63, 65, 66, 67, 68, 71, 73, 74, 75, 79, 80, 81, 82, 83, 86, 87, 93, 118, 142, 148, 159, 170, 193, 252, 265, 269, 273, 274, 275, 276, 277, 281, 282, 286, 290, 291, 292, 293, 294, 295, 306, 308, 311], "arrang": [49, 140, 225, 273], "array_from_actor": 296, "array_lik": [273, 276, 292], "array_nam": 294, "array_typ": 294, "arraycircularqueu": 296, "arraysequ": 312, "arriv": 180, "arrow": [0, 1, 17, 29, 33, 46, 60, 89, 104, 217, 281, 289, 296, 302, 304, 305, 306, 312, 313], "arrow_actor": [2, 17, 29, 33, 273], "arrow_actor2": 2, "arrowsourc": 296, "arthur": 165, "articl": [241, 314], "artist": 169, "as_arrai": 142, "as_quat": 275, "as_vtk": 294, "as_vtk_typ": 294, "as_vtktyp": [45, 282], "asarrai": [26, 28], "asbyt": 296, "ascertain": 266, "ask": [60, 148, 179, 180, 181, 182, 218, 253, 267], "aspect": [135, 152, 154, 155, 173, 211, 263, 271, 273, 283, 293, 294], "aspect_ratio": [25, 273, 283, 293, 294], "assembli": 296, "assert": [237, 305], "assess": 269, "asset": [44, 45], "assign": [15, 28, 59, 60, 107, 109, 113, 117, 125, 126, 128, 131, 182, 213, 273, 275, 276, 286, 294], "assist": 271, "associ": [14, 59, 74, 143, 148, 158, 181, 185, 225, 233, 244, 256, 267, 269, 270, 273, 274, 275, 276, 286, 294], "assum": [32, 142, 270, 273, 274, 280, 293], "astolfi": [138, 309], "astropi": 280, "astyp": [12, 81, 83], "asymmetr": 309, "async": [88, 145, 148, 291], "async_app": 296, "async_get_jpeg": [148, 291, 296], "asynchron": [184, 227], "asyncio": [88, 175, 184, 291], "atextur": 281, "atla": [154, 167, 169, 175], "atom": [144, 150, 159, 172, 286], "atom1_index": 286, "atom2_index": 286, "atom_color": [286, 296], "atom_coordin": 286, "atom_index": 286, "atom_nam": 286, "atom_num": 286, "atom_scale_factor": 286, "atomic_num": 286, "atomic_numb": [286, 296], "atomic_radiu": [286, 296], "atomic_symbol": [286, 296], "atomicnumb": 286, "attach": [63, 67, 93, 130, 192, 234, 237, 243, 246], "attempt": [180, 263, 266, 302], "attend": [181, 249], "attent": [152, 178, 180, 237, 252, 261, 263, 266], "attenu": 71, "attenuationtest": 193, "attr_nam": 290, "attract": 36, "attrib": 275, "attribut": [35, 36, 64, 74, 149, 155, 171, 192, 193, 226, 227, 235, 239, 275, 276, 287, 290, 295, 303, 306, 314], "attribute_to_actor": [74, 296], "au": [141, 144, 147, 150, 153, 156, 159, 162, 165, 168, 170], "authent": 309, "author": [236, 251, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 314], "auto": [9, 13, 155, 271, 276], "auto_exampl": [1, 23, 42, 58, 70, 78, 85, 90, 271], "auto_examples_jupyt": 89, "auto_examples_python": 89, "auto_font_sc": 293, "auto_font_scal": [248, 260, 293, 296], "autom": 314, "automat": [149, 161, 175, 178, 187, 192, 197, 225, 236, 248, 251, 257, 265, 269, 271, 273, 275, 293, 294, 295, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 314], "auxiliari": 15, "avail": [19, 24, 27, 35, 36, 84, 89, 93, 97, 98, 99, 100, 101, 103, 104, 106, 109, 111, 113, 114, 117, 120, 122, 123, 126, 128, 131, 132, 136, 138, 140, 142, 148, 154, 160, 166, 169, 171, 173, 176, 178, 229, 246, 252, 267, 271, 273, 286, 291, 295], "averag": [35, 36, 87, 281], "avg": [80, 81, 82, 83], "avocado": 193, "avoid": [4, 12, 15, 17, 20, 21, 32, 113, 142, 154, 161, 173, 175, 264, 269, 271, 276, 286, 306], "avoid_unlink_shared_mem": 291, "awai": [30, 178, 294, 295], "await": [88, 264], "awar": 129, "ax": [10, 11, 17, 25, 28, 79, 80, 81, 82, 83, 124, 171, 235, 274, 292, 295, 296, 302], "axi": [15, 21, 25, 26, 28, 29, 32, 33, 35, 36, 40, 63, 74, 81, 83, 87, 93, 118, 171, 184, 201, 270, 273, 274, 283, 292, 293, 294, 295, 311], "axial": [14, 15, 30], "ayappan": [166, 310], "az_ang": 295, "az_angl": 295, "azimuth": [4, 5, 10, 17, 20, 21, 26, 28, 31, 32, 38, 46, 50, 54, 56, 76, 159, 292, 295, 296], "azur": [104, 229, 305, 307, 310, 312], "b": [10, 29, 30, 36, 39, 108, 145, 148, 173, 240, 243, 244, 269, 273, 274, 276, 280, 285, 286, 289, 294, 314], "b1e985": 148, "b_high": 30, "b_low": 30, "b_matrix": [30, 269, 273, 274], "bachelor": [108, 178, 179, 180], "back": [24, 93, 118, 121, 178, 180, 190, 193, 226, 243, 249, 258, 295, 314], "backbon": [141, 172], "backend": 116, "backfac": 294, "backface_cul": [17, 294], "backfacecul": 159, "background": [14, 26, 28, 31, 72, 73, 75, 81, 114, 182, 216, 218, 225, 233, 248, 249, 251, 254, 257, 266, 271, 276, 277, 293, 295, 296, 302, 310], "background_color": [24, 30, 293, 296], "background_opac": 293, "backward": [24, 303, 306], "bad": [142, 264, 267], "badg": 303, "ball": [77, 78, 80, 89, 118, 129, 135, 141, 147, 153, 172, 286, 309, 313], "ball_actor": [80, 83, 93], "ball_col": [80, 93], "ball_color": [80, 83], "ball_mass": [80, 83], "ball_orient": 80, "ball_orn": [80, 93], "ball_po": [80, 93], "ball_posit": 80, "ball_radiu": [80, 83], "ball_shap": 83, "ball_stick": 296, "bandwidth": [142, 173, 261, 264, 267, 268], "bansal": [106, 122, 306, 307], "bar": [27, 53, 273, 293, 295, 312], "bar2": 27, "bar3": 27, "barramundifish": 193, "base": [4, 18, 28, 37, 59, 62, 64, 65, 66, 68, 69, 70, 73, 74, 75, 80, 81, 82, 83, 89, 93, 96, 97, 109, 110, 114, 115, 116, 117, 121, 123, 125, 126, 134, 135, 152, 156, 161, 165, 171, 172, 173, 176, 178, 179, 180, 181, 184, 191, 192, 201, 210, 222, 224, 225, 226, 227, 230, 233, 244, 246, 247, 248, 251, 254, 255, 256, 257, 258, 260, 262, 265, 266, 267, 269, 270, 271, 273, 274, 275, 276, 278, 280, 281, 283, 285, 286, 287, 291, 293, 294, 295, 296, 307, 309, 311, 313], "base64": 227, "base_actor": [80, 81, 82, 83], "base_col": [80, 82, 83], "base_color": [80, 82], "base_ior": [37, 72, 285], "base_mass": [81, 83, 93], "base_orient": [80, 82], "base_orn": 83, "base_po": [80, 82, 83], "base_posit": [80, 82], "base_s": [80, 82], "base_shap": [81, 83, 93], "basecollisionshapeindex": [79, 80, 82, 83, 93], "basecolortextur": [193, 281], "baselin": 271, "basemass": [79, 80, 82, 83, 93], "baseorient": [79, 80, 81, 82, 83, 93], "baseposit": [79, 80, 81, 82, 83, 93], "basetextur": 188, "basi": [265, 269], "basic": [32, 74, 109, 117, 124, 126, 130, 144, 146, 178, 179, 180, 182, 185, 226, 227, 232, 249, 250, 252, 264, 267, 289, 293, 306, 309], "basser": [269, 274], "bat": 96, "bay": 246, "bb_type": 273, "bbox_actor": 286, "bbtest": 193, "bdist_wheel": 314, "beauti": [102, 252, 258], "becam": [71, 185, 280], "becaus": [14, 24, 28, 37, 71, 74, 114, 116, 119, 121, 127, 130, 139, 142, 146, 148, 151, 154, 155, 158, 170, 171, 173, 175, 180, 185, 194, 197, 200, 202, 205, 206, 215, 220, 236, 240, 244, 253, 256, 258, 267, 269, 276, 292], "becom": [14, 158, 203, 215, 219], "been": [17, 20, 28, 43, 44, 45, 46, 50, 51, 52, 54, 55, 56, 68, 75, 76, 96, 97, 108, 110, 119, 123, 125, 139, 142, 143, 147, 149, 152, 153, 154, 155, 157, 160, 161, 171, 173, 178, 179, 180, 202, 212, 226, 230, 232, 237, 255, 263, 266, 269, 271, 273, 276, 288, 290, 293], "befor": [13, 15, 28, 32, 71, 86, 93, 108, 109, 114, 118, 121, 130, 140, 146, 148, 149, 151, 152, 155, 157, 158, 161, 173, 178, 179, 180, 199, 202, 205, 217, 233, 240, 253, 262, 264, 265, 267, 269, 271, 290, 293, 295, 312], "beforehand": 293, "beg": 178, "began": [254, 271], "begin": [25, 26, 29, 32, 33, 64, 65, 156, 173, 236, 271], "beginn": [180, 213], "behalf": [98, 99, 100, 101, 103, 104, 106, 122, 132, 138, 166, 176, 229], "behav": [142, 173, 175, 204, 275, 293], "behavior": [14, 31, 134, 140, 142, 145, 148, 151, 173, 175, 236, 249, 251, 257, 263, 286, 290, 291, 295, 307], "behaviour": [62, 277], "behind": [12, 115, 117, 118, 143, 159, 171, 173, 238, 239, 255, 261, 267], "beign": 80, "beij": 5, "beijing_actor": 5, "being": [25, 36, 74, 83, 96, 111, 113, 129, 136, 146, 147, 148, 155, 161, 178, 186, 203, 205, 207, 210, 213, 222, 224, 226, 237, 240, 243, 246, 255, 258, 264, 267, 270, 271, 275, 293, 294, 303, 306, 312], "believ": [142, 178], "belong": [286, 293], "below": [2, 3, 4, 14, 16, 22, 62, 63, 89, 102, 109, 111, 113, 115, 117, 120, 123, 126, 128, 131, 136, 140, 142, 143, 146, 148, 149, 151, 152, 154, 155, 157, 158, 161, 164, 167, 169, 171, 173, 185, 187, 189, 190, 192, 194, 197, 200, 203, 206, 209, 211, 216, 218, 225, 234, 237, 240, 244, 246, 249, 252, 255, 258, 259, 261, 264, 267, 268, 269, 270, 271, 276, 295], "benchmark": [134, 192, 201], "benefici": [113, 141, 144], "benefit": [230, 295], "besid": [161, 175, 206, 226, 256, 269], "best": [27, 62, 136, 149, 180, 185, 264, 273, 314], "beta": [118, 280], "better": [15, 27, 28, 46, 50, 56, 68, 74, 80, 82, 83, 97, 109, 133, 134, 136, 142, 148, 150, 154, 157, 173, 178, 180, 181, 220, 232, 248, 249, 250, 252, 256, 258, 262, 267, 269, 270], "between": [4, 5, 15, 17, 21, 32, 35, 36, 39, 46, 53, 59, 64, 72, 73, 74, 75, 79, 80, 82, 83, 86, 88, 93, 116, 118, 135, 145, 154, 171, 172, 173, 175, 178, 182, 187, 194, 197, 209, 225, 226, 241, 242, 247, 252, 254, 265, 267, 269, 273, 274, 275, 278, 282, 285, 286, 291, 292, 293, 295, 312], "beyond": [152, 183, 233, 255, 257, 271], "bezier": [57, 58, 89, 226, 275, 313], "bf": 309, "bg": 276, "bg_color": [44, 45, 293, 295, 296], "bg_opac": [44, 45, 293], "bhalodiya": [176, 311], "bhujbal": [106, 306], "bias": 134, "bib": 310, "bibtex": 310, "bidirect": [73, 176, 311], "bidirectional_reflectance_distribution_funct": 73, "big": [5, 180, 249, 258, 267], "big_cent": 289, "big_color": 289, "big_triangl": 289, "big_vertic": 289, "bigbuckbunni": 38, "bigger": [205, 215, 258], "bilinear": 178, "billboard": [69, 70, 89, 106, 174, 195, 205, 207, 220, 222, 224, 226, 237, 246, 249, 252, 264, 267, 269, 296, 306, 309, 312, 313], "billboard_actor": 273, "billboards_actor": 71, "bin": [227, 278, 281], "binar": 273, "binari": [32, 121, 184, 227, 273, 278, 282, 315], "bind": [11, 12, 167, 169, 171, 205, 212, 234, 237, 246, 281], "bioconda": 165, "biolog": 269, "biopython": 144, "biswa": [106, 108, 122, 132, 135, 138, 229, 306, 307, 308, 309, 312], "bit": [36, 116, 130, 133, 152, 167, 168, 170, 179, 180, 187, 221, 226, 258, 265, 266, 267, 269, 271, 314], "bitenc": 267, "bitmap": [161, 174], "black": [27, 180, 249, 302, 312], "blacklist": 310, "blank": 226, "blend": [73, 249, 252, 267, 295], "blender": [94, 178, 179, 180, 217, 222], "bless": 179, "blinn": [71, 74, 178, 269], "blinn_phong_model": [71, 74], "blinnphongillummodel": [71, 74], "blob": [148, 169, 184], "block": [10, 55, 74, 76, 94, 114, 142, 145, 148, 158, 173, 290, 293, 310, 311], "blog": [73, 113, 122, 129, 130, 134, 135, 146, 147, 149, 152, 163, 164, 165, 170, 171, 172, 173, 180, 212, 226, 307, 308, 309, 310, 311, 312, 314], "blogpost": [234, 237, 240, 243, 246, 249, 252, 255, 258, 261, 264, 267, 268, 269, 302, 312], "bloomington": 4, "blue": [27, 29, 33, 39, 46, 47, 50, 53, 79, 150, 218, 273, 276, 286, 293, 295], "blue_bal": 79, "blue_ball_actor": 79, "blue_ball_col": 79, "blue_medium": 4, "blue_orn": 79, "blue_po": 79, "blue_radiu": 79, "blur": [255, 258, 267], "bmp": [19, 282], "bmpreader": 296, "bmpwriter": 296, "bodi": [44, 45, 63, 80, 81, 116, 171, 269, 293, 296], "body_actor": 63, "body_box": [293, 296], "body_color": 293, "body_text": [44, 45, 293], "boi": 276, "boid": 311, "bold": [10, 20, 21, 24, 25, 26, 29, 30, 33, 273, 293, 296], "bond": [139, 140, 147, 150, 159, 172, 286, 310], "bond_index": 286, "bond_ord": 286, "bond_thick": 286, "bone": [13, 217, 227, 276, 281], "bone_id": 281, "bonedeform": 219, "book": [173, 179], "bool": [11, 273, 274, 275, 276, 277, 280, 281, 282, 286, 287, 289, 290, 291, 293, 294, 295], "boolean": [273, 293], "boombox": 193, "boomboxwithax": 193, "border": [14, 71, 143, 146, 158, 164, 171, 187, 191, 211, 215, 216, 218, 225, 255, 267, 271, 293, 310], "border_color": [44, 45, 293, 296], "border_width": [44, 45, 158, 293, 296], "bore": 154, "borrow": 273, "bot": [302, 304], "both": [4, 16, 24, 27, 28, 39, 65, 79, 93, 113, 115, 116, 124, 136, 152, 172, 173, 178, 181, 189, 192, 198, 201, 209, 218, 227, 236, 247, 250, 251, 255, 258, 273, 274, 280, 282, 283, 289, 293, 295], "bother": 178, "bottleneck": 226, "bottom": [53, 56, 143, 149, 152, 171, 184, 263, 271, 273, 293, 294], "bottom_disk_ratio": [293, 296], "bottom_disk_valu": [293, 296], "bottom_y_posit": [293, 296], "bounc": [17, 206], "bound": [25, 114, 135, 168, 172, 180, 185, 187, 191, 194, 215, 221, 225, 248, 251, 254, 257, 262, 269, 270, 271, 273, 283, 286, 293, 294, 302, 306, 307], "boundari": [71, 74, 183, 185, 225, 233, 236, 263, 271, 293], "bounding_box": 296, "boundingbox": [239, 271], "bounds_max": 32, "bounds_min": 32, "box": [12, 22, 23, 25, 26, 29, 30, 33, 40, 41, 42, 50, 53, 54, 60, 63, 65, 74, 80, 81, 82, 83, 89, 93, 104, 114, 121, 135, 159, 168, 169, 172, 180, 187, 191, 193, 194, 215, 221, 225, 248, 251, 254, 255, 257, 269, 271, 278, 283, 286, 289, 293, 294, 296, 302, 305, 306, 307, 308, 313], "box_actor": [8, 21, 74, 83, 273, 274], "box_cent": 21, "box_color": 21, "box_direct": 21, "box_edg": 21, "box_li": 21, "box_lx": 21, "box_lz": 21, "boxanim": 193, "boxinterleav": 193, "boxtextur": [8, 193, 278], "boxtexturednonpoweroftwo": 193, "boxvertexcolor": 193, "boys2rgb": 296, "boys_standard": 276, "bpo": 148, "brackei": 180, "brain": [22, 23, 28, 89, 250, 269, 313], "brainart": 102, "brainstem": [193, 223, 227], "brainstorm": 152, "branch": [111, 113, 117, 120, 123, 140, 188, 190, 227, 269, 270, 303, 314], "brazil": 139, "brazilian": 142, "brdf": [69, 70, 89, 97, 176, 311, 313], "break": [10, 14, 38, 133, 154, 173, 238, 267], "breakthrough": 231, "brent": 73, "brew": [86, 88], "brick": [77, 78, 83, 89, 118, 121, 124, 127, 130, 135, 313], "brick_actor": [80, 83], "brick_actor_singl": 93, "brick_cent": [80, 83, 93, 127], "brick_col": [80, 83, 93], "brick_color": [80, 83, 93], "brick_direct": [80, 83, 93], "brick_mass": 80, "brick_orn": [80, 83, 93, 127], "brick_sec": 83, "brick_siz": [80, 83, 93], "brick_vertic": 83, "brief": [129, 146, 242, 246, 314], "briefli": [146, 230], "brighter": [216, 218], "bring": [24, 71, 93, 118], "broadcast": 291, "broke": 121, "broken": [271, 302], "brother": 180, "brought": [169, 180], "brown": 276, "brownian": [22, 23, 89, 159, 172, 309, 312, 313], "brows": [129, 133], "browser": [86, 88, 96, 161, 173, 291], "bruno": [139, 166, 176, 181, 229, 243, 246, 255, 258, 310, 311, 312], "brush": 179, "bsd": 97, "btdf": 97, "bucket": 38, "budget": 142, "buff_id": 281, "buffer": [86, 142, 148, 167, 193, 199, 226, 227, 230, 234, 276, 278, 281, 284, 290, 291, 296], "buffer_arrai": 281, "buffer_index": [148, 291, 296], "buffer_nam": [86, 291], "buffer_s": 148, "bufferview": [193, 281], "bug": [109, 112, 113, 114, 120, 123, 125, 130, 131, 145, 146, 151, 161, 171, 173, 174, 175, 179, 183, 184, 193, 209, 225, 227, 255, 258, 264, 291, 302, 303, 305, 306, 308, 309, 310, 311, 312], "bugfix": [312, 314], "buggi": 193, "build": [11, 12, 31, 35, 36, 71, 74, 97, 108, 112, 154, 173, 180, 263, 269, 291, 293, 302, 306, 312, 314], "build_label": [24, 30], "built": [31, 93, 175, 179, 227], "bulki": 180, "bulletlist": 310, "bump": [32, 302, 306], "bumpi": 246, "bumpier": 243, "bunch": [22, 51, 54, 55, 76, 89], "bundl": [11, 12, 22, 23, 24, 89, 313], "bundle1": 27, "bundle10": 27, "bundle2": 27, "bundle3": 27, "bundle4": 27, "bundle5": 27, "bundle6": 27, "bundle7": 27, "bundle8": 27, "bundle9": 27, "bundle_n": 27, "bundles_2_subject": 14, "bundles_and_3_slic": 24, "burlei": 73, "busi": [148, 315], "butterfli": 273, "butterflysubdivisionfilt": 296, "button": [14, 15, 24, 41, 42, 89, 108, 135, 149, 183, 198, 225, 226, 293, 304, 311, 312, 313], "button2d": [15, 43, 54, 155, 225, 296, 310], "button_exampl": [43, 54], "bval": 244, "bvec": 244, "bye": [55, 271], "bye_text": 55, "byte": [151, 276, 281, 291], "byte_length": 281, "byte_offset": 281, "byte_strid": 281, "byteoffset": 281, "bytes_or_buff": [278, 284, 290], "b\u00e9zier": [186, 226, 275], "c": [10, 15, 29, 71, 74, 96, 98, 99, 100, 101, 103, 104, 106, 122, 132, 138, 148, 154, 166, 167, 173, 176, 178, 179, 193, 206, 229, 269, 273, 274, 276, 278, 295, 314, 315], "c_contigu": 276, "cad": 276, "cagatai": 276, "cairo": 178, "cal_bounding_box": [293, 296], "cal_bounding_box_2d": 296, "cal_min_boundary_dist": [293, 296], "cal_size_from_messag": [293, 296], "calamant": 269, "calcul": [11, 15, 17, 32, 71, 74, 80, 82, 83, 93, 116, 118, 150, 152, 161, 182, 185, 187, 194, 195, 197, 205, 206, 211, 214, 215, 217, 221, 225, 226, 233, 238, 241, 244, 246, 248, 249, 253, 255, 258, 262, 266, 267, 269, 273, 274, 275, 281, 283, 285, 293, 294, 295], "calculate_path": 15, "california": 173, "call": [9, 11, 12, 13, 15, 17, 20, 27, 29, 33, 38, 47, 54, 76, 80, 82, 93, 129, 144, 145, 146, 148, 161, 165, 173, 175, 179, 180, 189, 194, 197, 198, 200, 215, 225, 230, 239, 240, 241, 243, 255, 264, 267, 273, 274, 275, 280, 286, 288, 290, 291, 292, 295, 303, 310, 311, 312, 314], "callabl": [275, 276, 280, 289, 290, 293], "callback": [11, 12, 14, 15, 17, 20, 22, 23, 24, 30, 32, 36, 38, 40, 43, 45, 50, 54, 56, 76, 79, 80, 81, 82, 83, 89, 108, 110, 112, 116, 122, 129, 130, 135, 148, 149, 158, 161, 167, 171, 181, 182, 184, 191, 200, 212, 222, 224, 227, 252, 255, 264, 267, 275, 284, 290, 291, 293, 295, 304, 307, 312, 313], "callback_funct": 267, "callback_stream_cli": 296, "callbackhigh": 290, "callbacklow": 290, "callbackmean": 290, "calldata": [76, 290], "caller": 290, "callosum": 39, "calott": [153, 172], "cam_foc": 295, "cam_po": 295, "cam_view": 295, "came": [155, 178, 179, 182, 183, 246, 257], "camera": [4, 5, 6, 8, 9, 10, 15, 25, 26, 27, 29, 32, 33, 36, 38, 40, 46, 50, 56, 57, 58, 63, 64, 65, 68, 71, 74, 80, 82, 83, 89, 172, 178, 184, 186, 188, 193, 198, 224, 226, 227, 267, 273, 275, 281, 290, 294, 295, 296, 312, 313], "camera_anim": 60, "camera_direct": [295, 296], "camera_focal_posit": 60, "camera_id": 281, "camera_info": [27, 295, 296], "camera_posit": 60, "cameraanim": [60, 296], "can": [4, 6, 9, 10, 12, 13, 14, 15, 17, 21, 24, 25, 27, 28, 30, 31, 32, 33, 34, 35, 36, 37, 40, 43, 51, 53, 54, 56, 59, 60, 61, 64, 67, 71, 72, 73, 75, 86, 88, 93, 94, 96, 98, 99, 100, 101, 102, 103, 104, 106, 110, 112, 114, 116, 118, 119, 120, 121, 122, 124, 125, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 138, 140, 141, 142, 145, 146, 147, 148, 149, 150, 151, 152, 154, 158, 161, 166, 167, 169, 171, 172, 173, 175, 176, 178, 179, 180, 181, 182, 183, 186, 187, 188, 189, 190, 192, 193, 194, 196, 197, 199, 200, 201, 203, 206, 209, 211, 216, 218, 221, 225, 226, 227, 229, 230, 234, 235, 236, 237, 238, 239, 240, 241, 242, 244, 246, 247, 248, 249, 250, 253, 255, 256, 257, 258, 259, 260, 262, 265, 266, 267, 268, 269, 270, 271, 273, 274, 275, 276, 277, 278, 282, 283, 287, 290, 291, 292, 293, 294, 295, 309, 310, 314], "cannot": [114, 171, 193, 234, 237, 280, 287, 312], "canva": [48, 182, 183, 185, 187, 200, 226, 277, 293], "cap": [63, 74, 81, 83, 93, 267, 273, 275, 289], "cap_prop_fp": 38, "cap_prop_frame_count": 38, "capabl": [24, 30, 120, 126, 127, 128, 134, 136, 170, 226, 227, 261, 273], "capston": 249, "capsul": [75, 309], "caption": [25, 28, 273, 293, 304, 312], "caption_offset": [25, 28, 273, 293], "captur": [37, 200, 225, 249, 252, 267], "car": 63, "car_anim": 63, "carbon": 141, "card": [41, 42, 89, 167, 169, 171, 271, 293, 313], "card2d": [44, 45, 143, 164, 167, 169, 171, 296, 302], "card_ui": [44, 45], "cardui": [239, 242, 271], "care": [64, 142, 236, 271], "carefulli": [73, 248], "caret": 293, "caret_po": [293, 296], "cart2spher": 296, "cartesian": [5, 292], "case": [27, 32, 37, 43, 54, 62, 71, 74, 93, 109, 112, 118, 136, 152, 154, 161, 172, 173, 180, 185, 203, 206, 242, 248, 249, 255, 264, 265, 267, 269, 271, 275, 276, 286, 293, 294, 306], "cast": [142, 311], "cast_rai": 74, "castabl": 293, "castillo": [229, 232, 269, 302, 312], "castrai": 74, "catch": [231, 242, 280], "categor": 233, "categori": [35, 36, 72, 87, 102, 233], "categories_fil": [35, 36, 87], "category2index": [35, 36, 87], "category_color": 36, "categorycolor": [35, 87], "caught": 237, "caus": [113, 139, 142, 149, 151, 175, 184, 186, 202, 214, 217, 233, 236, 239, 251, 271, 312, 315], "cautiou": 271, "cc": 296, "cc_1": 24, "ccw": 294, "cd": 314, "celebr": 178, "cell": [49, 273, 283, 294, 305], "cell_height": 294, "cell_pad": [25, 28, 273, 283, 293], "cell_shap": [49, 273, 283, 293], "cell_width": 294, "cellarrai": 296, "cellpick": 296, "cellshap": 146, "cen2": [2, 3, 16], "center": [2, 3, 4, 5, 8, 10, 11, 12, 15, 16, 17, 20, 21, 24, 26, 28, 29, 30, 31, 32, 33, 34, 35, 36, 43, 46, 47, 50, 51, 52, 53, 54, 56, 60, 65, 71, 72, 73, 74, 75, 79, 80, 81, 82, 83, 86, 87, 88, 93, 94, 118, 201, 202, 211, 221, 225, 226, 251, 255, 263, 271, 273, 274, 289, 292, 293, 294, 295, 296, 309, 312], "center_po": [80, 82, 83, 93], "center_posit": 293, "centermcvsoutput": [74, 269], "centers_list": 82, "central": [15, 71, 74, 269], "central_diff": [71, 74], "central_diffs_norm": [71, 74], "centraldiffsnorm": [71, 74], "cerasoli": [229, 312], "certain": [4, 15, 53, 64, 143, 146, 149, 152, 167, 227, 245, 257, 275, 283, 291], "certif": 307, "cesiumman": [193, 219], "cesiummilktruck": 193, "cg": 27, "cgi": 97, "chain": [77, 78, 89, 130, 135, 225, 286, 313], "chain_sec": 83, "chain_vertic": 83, "challeng": [27, 109, 111, 116, 117, 154, 178, 231, 233, 236, 239, 242, 245, 254, 258, 263, 266, 271], "chang": [5, 11, 12, 14, 15, 20, 21, 24, 29, 30, 31, 33, 40, 46, 53, 59, 60, 61, 63, 66, 68, 71, 74, 76, 80, 116, 121, 127, 133, 136, 143, 148, 149, 153, 154, 158, 161, 167, 169, 171, 173, 175, 178, 180, 181, 182, 183, 184, 185, 186, 187, 191, 194, 198, 201, 205, 222, 225, 226, 232, 238, 239, 241, 245, 249, 254, 255, 257, 258, 260, 261, 263, 264, 267, 268, 269, 271, 273, 274, 276, 280, 290, 293, 294, 295, 302, 303, 305, 306, 308, 309, 310, 311, 312, 314], "change_color": [47, 53], "change_icon_callback": [43, 54], "change_in_valu": 52, "change_opac": 24, "change_slice_anisotropi": 37, "change_slice_anisotropy_direction_i": 37, "change_slice_anisotropy_direction_x": 37, "change_slice_anisotropy_direction_z": 37, "change_slice_anisotropy_rot": 37, "change_slice_base_ior": 37, "change_slice_coat_ior": 37, "change_slice_coat_rough": 37, "change_slice_coat_strength": 37, "change_slice_i": [24, 30], "change_slice_metal": 37, "change_slice_rough": 37, "change_slice_x": [24, 30], "change_slice_z": [24, 30], "change_spher": 30, "change_text_callback": [43, 54], "change_vertices_ord": 296, "changeconstraint": 81, "changedynam": [79, 80, 82, 83, 93], "changer": 226, "channel": [96, 223, 225, 273, 276, 277, 281, 295], "channel_nam": 281, "chapter": 258, "char": [234, 237, 258], "charact": [121, 135, 173, 175, 180, 263, 293, 309, 310, 314], "characterist": 151, "charg": [22, 23, 89, 267, 313], "charge_actor": 33, "charl": [138, 309], "chat": 97, "chaudhari": [166, 310], "cheap": [173, 269], "cheapest": 142, "check": [41, 42, 52, 53, 89, 96, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 123, 124, 125, 126, 127, 128, 129, 130, 131, 133, 134, 135, 136, 144, 147, 148, 150, 153, 154, 155, 156, 159, 162, 165, 168, 170, 171, 172, 173, 178, 179, 180, 206, 209, 215, 218, 231, 235, 237, 238, 240, 241, 242, 249, 255, 263, 266, 267, 270, 273, 275, 278, 286, 291, 293, 294, 295, 297, 309, 312, 313, 314], "check_box": 46, "check_overflow": 296, "check_port_is_avail": 296, "check_sha": 296, "checkbox": [46, 124, 129, 135, 296, 306, 308, 311], "checked_label": [32, 46, 50, 53, 293], "checkerboard": 295, "checkout": [260, 314], "checksum": 278, "cheer": [108, 136, 264], "chem": 286, "chemic": [150, 172], "chemistri": [172, 286], "chencheng0630": [106, 306], "chigurupati": [229, 312], "child": [32, 63, 93, 152, 161, 171, 227, 239, 275, 281], "child_anim": [275, 296], "child_arm_anim": 65, "children": [149, 155, 161, 171], "china": 5, "choic": [34, 62, 76, 220, 258, 264, 273, 286, 293], "choos": [9, 13, 17, 27, 30, 47, 53, 54, 86, 88, 131, 142, 173, 241, 247, 276, 278, 287, 293], "choose_shap": 32, "chop": 293, "chose": [148, 149, 180], "chosen": [47, 73, 173, 179, 225, 267, 276], "choudhari": [106, 132, 306, 308], "chow": 149, "christoph": 292, "chunk": [167, 171], "ci": [103, 158, 160, 161, 173, 176, 229, 302, 304, 307, 311, 312], "cie": 276, "cinemat": 97, "cingulum": 27, "circl": [4, 34, 43, 48, 51, 54, 182, 225, 293], "circular": [54, 56, 146, 148, 149, 152, 155, 161, 171, 291], "circular_queu": [86, 291], "circularli": 155, "circularqueu": [148, 291], "circumv": [142, 173], "citat": [35, 36, 302], "citi": 5, "clamp": [183, 185, 211, 225, 293], "clamp_mouse_posit": [293, 296], "clamp_posit": [293, 296], "clarifi": 247, "clariti": [97, 239, 245], "class": [4, 15, 17, 24, 28, 38, 110, 140, 143, 144, 146, 149, 150, 152, 155, 158, 169, 171, 172, 179, 181, 182, 190, 192, 194, 198, 199, 201, 225, 226, 227, 234, 236, 239, 246, 255, 258, 264, 267, 268, 273, 274, 275, 276, 280, 281, 283, 284, 286, 287, 290, 291, 293, 295, 302, 306, 310, 312], "classic": 32, "classifi": [39, 246], "classvtkobject": 290, "claud": 165, "clean": [71, 74, 96, 123, 161, 217, 223, 249, 255, 258, 261, 314], "cleaner": [183, 277], "cleanest": 226, "cleanpolydata": 296, "cleanup": [86, 87, 148, 171, 291, 296], "clear": [14, 27, 28, 71, 72, 74, 111, 180, 233, 241, 271, 273, 285, 295, 296, 311], "clear_select": [293, 296], "clearcoat": [73, 285], "clearcoat_gloss": [73, 285], "clearcoattest": 193, "clearer": [120, 260], "clearli": [97, 180, 243], "click": [11, 14, 43, 53, 54, 108, 122, 135, 148, 171, 180, 182, 185, 187, 194, 197, 200, 225, 255, 293, 302, 307], "click_posit": 293, "client": [79, 80, 82, 86, 87, 93, 142, 148, 173, 296], "cline_actor": 59, "clip": [135, 185, 186, 211, 290, 293, 295, 307, 309], "clip_overflow": 296, "clip_overflow_text": 309, "clippingoverflow": 135, "clockwis": [30, 274, 285, 292, 294], "clockwise_rotation_i": [293, 296], "clockwise_rotation_x": [293, 296], "clone": [96, 180, 314], "close": [27, 86, 107, 108, 145, 148, 210, 232, 248, 271, 276, 286, 295, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 314], "closur": [62, 198, 226], "cloud": [126, 230, 267, 273], "cluster": 302, "cmap": [35, 36, 87, 276, 304], "cmap_nam": 25, "cmp_pkg_version": 296, "cnt": [4, 5, 14, 15, 17, 20, 21, 25, 29, 31, 33, 40, 79, 80, 81, 82, 83, 93, 281], "co": [5, 15, 25, 32, 33, 40, 65, 68, 76, 81, 118, 258, 275, 292, 314], "coat": [37, 72, 285, 311], "coat_ior": [37, 72, 285], "coat_rough": [37, 72, 285], "coat_strength": [37, 72, 285], "codaci": 303, "code": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 71, 72, 73, 74, 75, 76, 79, 80, 81, 82, 83, 86, 87, 88, 89, 93, 101, 103, 104, 106, 111, 113, 114, 117, 118, 120, 121, 122, 123, 127, 132, 133, 136, 139, 140, 142, 151, 158, 160, 167, 169, 175, 179, 180, 181, 183, 184, 192, 193, 208, 211, 216, 218, 220, 221, 223, 224, 231, 232, 234, 237, 238, 242, 243, 249, 250, 253, 255, 258, 260, 273, 276, 290, 291, 292, 293, 295, 302, 303, 304, 305, 306, 307, 308, 309, 310, 312, 314, 315], "codebas": [123, 125, 147, 149, 215, 242], "codecov": [100, 301, 312], "codespel": 312, "coeff": 93, "coeffici": [30, 79, 134, 265, 269, 270, 273, 274, 285], "coher": 107, "coil": 172, "col": [14, 46, 61, 76], "collabor": [97, 139, 173, 236], "collaps": [53, 124, 149, 152, 293, 312], "collapse_tab_ui": [293, 296], "collect": [4, 168, 178, 225, 230, 291], "colleg": [141, 179, 180, 193, 200], "collid": [21, 180, 273, 283, 308], "collis": [22, 23, 77, 78, 80, 89, 97, 130, 135, 313], "collisionframeposit": [81, 83], "color": [2, 3, 4, 5, 8, 10, 11, 12, 14, 15, 16, 17, 18, 20, 21, 24, 25, 26, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43, 47, 49, 51, 52, 54, 56, 57, 58, 59, 60, 63, 65, 67, 69, 70, 71, 72, 73, 74, 75, 79, 80, 81, 82, 83, 86, 87, 88, 89, 93, 94, 100, 114, 121, 124, 129, 132, 172, 175, 181, 184, 188, 189, 191, 192, 198, 210, 216, 218, 223, 226, 227, 234, 235, 237, 240, 243, 246, 265, 269, 270, 273, 274, 275, 276, 281, 285, 286, 289, 290, 293, 294, 295, 296, 301, 303, 304, 305, 306, 307, 308, 312, 313], "color_1": 275, "color_2": 275, "color_add": 11, "color_arrai": [46, 294], "color_array_nam": 282, "color_arrow": 33, "color_bgr2rgb": 38, "color_chang": 12, "color_check": 296, "color_combobox": [47, 53], "color_ev": 68, "color_fa": 273, "color_interpol": 296, "color_is_scalar": 294, "color_keyfram": 275, "color_particl": 33, "color_textur": [234, 237], "color_toggl": [46, 50], "colorbar": 273, "colori": 273, "colormap": [25, 30, 35, 36, 39, 61, 87, 98, 172, 192, 198, 252, 255, 267, 269, 270, 273, 274, 294, 296, 298, 303, 307, 310], "colormap_lookup_t": [14, 27, 273, 274, 296], "colormap_nam": 25, "colormap_to_textur": [252, 267], "colormod": 286, "colorpickerui": 271, "colors2": 29, "colors_found": 295, "colors_from_actor": [11, 12, 21, 29, 33, 46, 50, 296], "colorspac": 276, "colorx": 273, "colorz": 273, "colour": [273, 294], "cols2": [2, 3, 16], "column": [14, 276, 282, 292], "com": [38, 44, 45, 73, 96, 135, 148, 169, 276, 291, 292, 314], "combin": [0, 22, 23, 30, 71, 89, 113, 121, 124, 130, 135, 209, 212, 227, 236, 281, 295, 313], "combo": [30, 121, 135, 293], "combobox": [30, 41, 42, 89, 110, 112, 114, 122, 124, 135, 233, 236, 271, 293, 307, 313], "combobox2d": [30, 47, 53, 108, 110, 114, 116, 119, 135, 239, 257, 271, 296, 302, 307, 312], "combobox_ui": 47, "come": [71, 142, 178, 234, 237, 243, 258, 293], "comeback": 242, "comfort": 180, "command": [14, 71, 93, 96, 98, 99, 100, 101, 103, 104, 106, 122, 132, 138, 166, 176, 180, 229, 290, 291, 296, 312, 314], "command_str": [148, 291, 296], "comment": [158, 161, 247, 256, 259, 279, 306, 309, 310, 312], "commit": [92, 135, 139, 142, 145, 148, 151, 154, 157, 255, 288, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 314], "commit_hash": 288, "common": [221, 235, 269, 281], "commondatastorag": 38, "commonli": 135, "commun": [44, 45, 97, 98, 99, 100, 101, 103, 104, 105, 106, 122, 132, 137, 138, 139, 140, 154, 166, 173, 174, 175, 176, 177, 178, 180, 228, 229, 249, 267, 269, 271, 312], "comp_typ": 281, "compact": 205, "compar": [75, 121, 148, 178, 180, 235, 247, 278, 280], "comparison": [4, 74, 233, 250, 259, 267, 269, 303], "compat": [24, 97, 106, 122, 138, 173, 174, 175, 206, 236, 245, 257, 266, 271, 302, 303, 306, 307, 309], "compens": [71, 269], "compet": 179, "competit": 178, "compil": [279, 280, 312], "complet": [39, 98, 99, 100, 101, 103, 104, 106, 108, 114, 117, 121, 122, 123, 125, 127, 129, 132, 138, 143, 149, 166, 176, 179, 183, 194, 203, 229, 233, 234, 236, 239, 242, 245, 248, 249, 251, 254, 256, 257, 258, 270, 273, 278, 314], "complex": [35, 36, 64, 116, 146, 180, 185, 198, 221, 230, 234, 263, 266, 269, 271], "compli": 140, "complic": [115, 117, 135, 158, 161, 171, 191, 243, 246, 255, 258, 261, 294], "compon": [47, 65, 71, 74, 108, 110, 112, 114, 119, 121, 127, 129, 130, 133, 135, 140, 189, 225, 226, 230, 233, 239, 248, 254, 260, 263, 266, 271, 281, 292, 293, 294, 302, 312], "compos": [37, 54, 189, 198, 226, 267, 269, 286, 289, 293], "compose_shad": [71, 74, 296], "composit": [31, 225, 255], "compositetimelin": [189, 192], "comprehens": [24, 267, 271], "compress": [28, 282], "compression_qu": [45, 282], "compression_typ": 282, "compris": 171, "compromis": [28, 71, 97, 171, 235, 269], "comput": [32, 37, 39, 71, 72, 74, 97, 108, 113, 134, 139, 142, 154, 173, 178, 179, 180, 185, 189, 226, 230, 232, 237, 269, 273, 283, 285, 294, 306], "computation": [27, 134, 269], "compute_bond": 296, "compute_bound": [36, 296], "compute_posit": [283, 296], "compute_s": [283, 296], "con": [141, 184], "concept": [107, 116, 135, 179, 180, 243, 267], "concern": [263, 271], "conclud": [240, 248], "conclus": 178, "concurr": [173, 175], "conda": [98, 99, 100, 101, 103, 104, 106, 122, 132, 138, 166, 176, 229], "condit": [227, 246, 266, 275, 291, 312, 315], "conduct": [72, 139, 140, 302], "cone": [0, 1, 17, 46, 52, 63, 65, 89, 103, 227, 238, 241, 244, 269, 274, 289, 296, 304, 307, 312, 313], "cone_actor": 273, "cone_actor1": 3, "cone_actor2": 3, "conesourc": 296, "confer": [107, 108, 269], "confid": [116, 271], "config": [86, 88], "configur": [25, 26, 29, 30, 33, 40, 71, 154, 312], "confirm": [79, 130], "conflict": [152, 169, 257, 271, 310, 314], "confound": 150, "confus": [111, 112, 115, 130, 215, 218, 239, 267], "congratul": [96, 102, 180], "connect": [17, 24, 35, 40, 59, 74, 77, 79, 80, 81, 82, 83, 86, 88, 89, 116, 172, 178, 252, 262, 267, 271, 294, 312], "connect_point": 40, "connelli": 269, "consecut": [275, 291], "consequ": [37, 154, 173, 257, 258, 266], "consequenti": 315, "consid": [32, 146, 180, 182, 198, 209, 248, 266, 269, 273, 274, 275, 276, 286, 292, 294], "consider": [180, 242, 263, 271], "consist": [59, 64, 83, 194, 200, 220, 225, 232, 250, 253, 270, 271, 276, 293], "consol": 10, "consolid": 271, "const": 71, "constant": [15, 71, 116, 148, 182, 296], "constrain": [72, 269, 271], "constraint": [81, 83, 116], "construct": [63, 142, 144, 173, 209, 226, 271, 274, 276, 291, 294], "constructor": [114, 146, 158, 171, 276], "consum": [154, 168, 171, 178, 197, 280, 291], "consumpt": 173, "contact": 79, "contain": [7, 12, 14, 15, 21, 24, 26, 28, 30, 32, 40, 54, 60, 62, 65, 66, 71, 93, 96, 97, 98, 105, 124, 135, 137, 140, 141, 149, 152, 177, 184, 190, 192, 193, 219, 225, 227, 228, 257, 271, 272, 275, 276, 280, 281, 282, 285, 286, 288, 290, 291, 292, 294, 295, 296, 298, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312], "container_actor": 26, "content": [53, 152, 171, 248, 251, 271, 273, 283, 293, 294, 295], "content_panel": [293, 296], "context": [31, 142, 148, 173, 175, 230, 237, 243, 272, 291, 295], "contigu": 276, "continu": [4, 21, 36, 62, 71, 116, 119, 121, 124, 129, 134, 146, 152, 155, 169, 171, 176, 179, 181, 197, 216, 218, 226, 229, 236, 238, 244, 251, 253, 256, 257, 260, 265, 270, 271, 311, 312], "contour": [146, 303], "contour_assembli": 273, "contour_from_label": [106, 296, 306], "contour_from_roi": [39, 296], "contour_from_roi_tutori": 39, "contourfilt": 296, "contract": 315, "contrari": 294, "contrast": [28, 234], "contribut": [133, 136, 139, 178, 179, 180, 181, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312], "contributor": [101, 103, 104, 106, 122, 129, 132, 135, 138, 166, 176, 179, 180, 181, 184, 229, 231, 232, 245, 249, 252, 255, 256, 264, 265, 268, 314, 315], "control": [15, 31, 34, 41, 42, 54, 59, 60, 61, 66, 67, 71, 74, 81, 83, 89, 124, 135, 151, 173, 178, 180, 181, 187, 189, 192, 195, 198, 210, 226, 234, 235, 258, 261, 267, 268, 273, 275, 289, 293, 312, 313], "control_mod": [81, 83], "control_panel": 37, "conveni": 127, "convent": [69, 89, 93, 134, 255, 286, 292], "converg": 269, "convers": [0, 1, 89, 93, 184, 197, 276, 313], "convert": [5, 45, 116, 142, 149, 152, 171, 184, 187, 193, 197, 198, 201, 225, 227, 263, 275, 276, 281, 293, 294, 296, 311], "convertcolor": 276, "convinc": [142, 151], "cool": [170, 276], "coor": 33, "coor_1": 33, "coor_2": 33, "coord": [286, 287, 289, 293], "coord_to_ratio": [293, 296], "coordin": [0, 1, 11, 24, 25, 26, 27, 29, 33, 40, 75, 89, 93, 112, 113, 116, 141, 147, 152, 171, 172, 178, 184, 249, 264, 269, 270, 273, 274, 276, 281, 283, 286, 287, 289, 292, 293, 294, 307, 312, 313], "copi": [14, 21, 24, 25, 26, 29, 33, 40, 139, 142, 180, 191, 216, 273, 280, 286, 290, 294], "copyfileobj_withprogress": 296, "copyright": [280, 307, 314, 315], "coral": 273, "core": [108, 141, 148, 152, 155, 162, 226, 257, 258, 271, 291, 296, 310], "corei": 286, "corner": [32, 143, 149, 152, 161, 171, 184, 206, 225, 239, 293, 294], "coron": 30, "corpu": 39, "correct": [28, 32, 54, 64, 152, 175, 188, 215, 217, 221, 235, 238, 241, 250, 251, 252, 259, 262, 265, 266, 267, 270, 271, 281, 294, 295, 304, 306, 312], "corrected_triangl": 294, "correctli": [4, 5, 83, 93, 121, 130, 152, 184, 217, 236, 239, 244, 270, 306, 314], "correspond": [11, 15, 27, 28, 35, 36, 37, 46, 54, 74, 80, 82, 93, 118, 124, 135, 172, 235, 246, 253, 262, 265, 269, 270, 274, 276, 286, 294], "corrupt": [148, 175], "corset": 193, "cosin": [258, 267], "cost": [71, 234, 258, 267, 273], "could": [32, 64, 68, 73, 112, 128, 131, 133, 145, 148, 151, 152, 159, 161, 163, 164, 173, 175, 178, 179, 180, 182, 183, 194, 200, 209, 217, 221, 225, 234, 237, 240, 243, 246, 252, 255, 256, 258, 261, 264, 267, 268, 270, 289, 294, 314], "couldn": [114, 140, 149, 152, 161, 178, 189, 214, 270], "count": [4, 5, 10, 15, 17, 20, 21, 25, 29, 31, 33, 40, 79, 80, 81, 82, 83, 93, 158, 189, 226, 281, 294, 312], "counter": [4, 5, 10, 15, 17, 20, 21, 25, 29, 31, 32, 33, 36, 40, 79, 80, 81, 82, 83, 93, 192, 263, 266, 285, 292, 294], "counter_step": 26, "countless": 112, "countri": [108, 142], "coupl": [81, 116, 121, 129, 140, 143, 244], "cours": [35, 73, 107, 173, 178, 179, 246], "courtesi": [141, 156], "cousin": 180, "coval": 286, "covari": [269, 274], "cover": [37, 163, 187, 198, 211, 267], "coverag": [101, 103, 104, 106, 122, 132, 160, 166, 303, 304, 305, 306, 307, 308, 310], "covid": 141, "cp": 59, "cpk": [153, 286], "cps_actor": 59, "cpu": [142, 226, 258], "cpython": [145, 148], "cqueue": 291, "cqueue_event_id": 291, "cqueue_index_info": 291, "crash": [261, 263, 267, 303], "creat": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 15, 17, 18, 19, 20, 21, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 35, 36, 37, 38, 39, 40, 41, 43, 44, 45, 46, 47, 48, 49, 50, 52, 53, 54, 55, 56, 59, 61, 62, 63, 64, 65, 66, 68, 69, 71, 74, 75, 76, 80, 81, 82, 83, 84, 88, 89, 94, 97, 102, 107, 108, 109, 110, 113, 114, 116, 118, 121, 124, 125, 126, 127, 130, 131, 134, 135, 136, 144, 145, 146, 147, 148, 149, 151, 152, 153, 154, 155, 158, 159, 161, 163, 165, 167, 168, 169, 170, 171, 172, 173, 175, 179, 180, 182, 183, 184, 185, 186, 188, 190, 191, 193, 194, 199, 200, 202, 203, 204, 206, 208, 211, 214, 215, 216, 217, 218, 221, 223, 225, 226, 227, 230, 235, 237, 238, 239, 245, 246, 247, 248, 250, 251, 256, 263, 264, 265, 267, 269, 270, 273, 276, 278, 281, 284, 286, 290, 291, 293, 294, 295, 302, 307, 308, 310, 312, 314], "create2d": 234, "create2dfromraw": 234, "create_colormap": [25, 296, 309], "create_mem_resourc": [148, 291, 296], "create_surfac": 25, "createcollisionshap": [79, 80, 81, 82, 83, 93], "createconstraint": [81, 83], "createfbo": 240, "createmultibodi": [79, 80, 81, 82, 83, 93], "creation": [35, 36, 74, 185, 191, 194, 225, 226, 232, 235, 261, 269, 271, 290, 312], "creativ": 180, "credit": [246, 314], "cresolut": 273, "criterion": 93, "critic": 263, "cross": [34, 116, 295], "cross_sect": [274, 296], "crosscap": 276, "crucial": 147, "cryengin": 178, "crystaley": 295, "cs50": 178, "csa": 39, "csa_model": 39, "csa_peak": 39, "csaodfmodel": 39, "css": [143, 146], "cst": [24, 27], "ctrl": [148, 194, 225, 291], "ctype": [276, 296], "ctypeslib": 142, "cube": [8, 11, 12, 17, 18, 26, 32, 37, 40, 41, 42, 46, 61, 65, 68, 89, 111, 113, 120, 124, 129, 134, 178, 193, 270, 278, 282, 296, 302, 307, 313], "cube_actor": [12, 18, 273], "cube_i": [53, 54], "cube_polydata": 18, "cube_vertic": 18, "cube_x": [53, 54], "cubemap": [37, 270], "cubes_po": 61, "cubic": [60, 83, 186, 208, 226, 273, 275], "cubic_bezier_interpol": [59, 296], "cubic_spline_interpol": [60, 296], "cubicsplin": [62, 202], "cuda": [154, 173], "cue": 273, "cugraph": [154, 157, 173], "cull": 294, "culmin": [267, 271], "curiou": 178, "current": [11, 12, 24, 37, 38, 62, 76, 93, 94, 96, 107, 108, 109, 112, 113, 114, 117, 118, 121, 125, 126, 127, 129, 130, 131, 134, 135, 139, 140, 142, 146, 149, 152, 155, 158, 168, 170, 171, 172, 179, 180, 182, 183, 189, 196, 197, 199, 200, 206, 215, 216, 225, 227, 235, 237, 240, 242, 245, 246, 249, 252, 254, 256, 258, 259, 262, 266, 267, 269, 270, 271, 275, 276, 278, 280, 281, 291, 293, 295, 314], "current_ax": 10, "current_directori": 293, "current_mod": [48, 293, 296], "current_posit": [48, 293], "current_s": [43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 54, 55, 56, 75, 76], "current_sprite_idx": 45, "current_tim": [275, 293, 296], "current_time_str": [293, 296], "current_timestamp": [275, 296], "current_video_fram": 38, "currentbonetransform": 219, "cursor": 293, "curv": [17, 33, 172, 186, 202, 273, 275, 294], "curvatur": [265, 269], "curvier": 273, "custom": [57, 58, 68, 76, 83, 89, 134, 149, 161, 167, 169, 178, 198, 199, 201, 208, 214, 226, 234, 249, 255, 257, 260, 273, 275, 279, 290, 293, 294, 295, 312, 313], "custom_field": 62, "custominteractorstyl": [293, 295], "custominterpol": 198, "customiz": [143, 146, 236], "cut": 273, "cv2": 38, "cvtcolor": 38, "cyan": 33, "cycl": [293, 297], "cylind": [63, 65, 69, 70, 81, 83, 89, 93, 94, 124, 130, 138, 289, 296, 309, 312, 313], "cylinder_actor": 273, "cylinders_16": 74, "cylinders_32": 74, "cylinders_8": 74, "cylindersourc": 296, "cylindr": [83, 312], "cylindrical_i": 273, "cylindrical_x": 273, "c\u00f4t\u00e9": [101, 106, 122, 176, 303, 306, 307, 311], "d": [10, 29, 34, 40, 135, 139, 168, 173, 269, 273, 274, 292, 293], "d50": 276, "d55": 276, "d65": 276, "d75": 276, "d_type": 281, "dad": 179, "dai": [15, 109, 115, 136, 143, 180, 239, 246, 249, 252], "damag": 315, "damagedhelmet": 193, "damp": 93, "dan": 310, "danger": 310, "daniel": [166, 310], "dara": [229, 312], "dark": 286, "darker": 184, "dashboard": 178, "data": [0, 4, 5, 6, 7, 8, 9, 13, 14, 15, 18, 19, 24, 27, 30, 35, 36, 37, 39, 43, 44, 45, 46, 47, 48, 50, 51, 52, 53, 54, 55, 56, 59, 64, 74, 76, 87, 88, 89, 94, 105, 134, 137, 141, 149, 150, 153, 154, 159, 171, 172, 173, 177, 178, 179, 180, 184, 185, 188, 192, 193, 196, 204, 205, 207, 219, 225, 226, 227, 228, 230, 235, 241, 243, 244, 246, 250, 253, 256, 259, 265, 269, 270, 271, 273, 275, 276, 281, 282, 284, 286, 290, 291, 294, 296, 306, 312, 315], "data_dir": 296, "data_s": 278, "data_shap": 28, "databas": 73, "dataclass": 184, "dataobject": 296, "dataset": [14, 24, 27, 30, 35, 36, 39, 151, 247, 267], "datasetattribut": 296, "datasetmapp": 296, "datatyp": [234, 237], "date": [108, 134, 135, 171, 172, 173, 225, 226, 227, 249, 269, 271], "david": [101, 102, 269, 303], "deadlin": 108, "deal": [62, 142, 148, 154, 225, 237, 249, 255, 258, 264, 265, 266, 267], "debat": 255, "debug": [112, 156, 197, 211, 215, 257, 290, 311], "dec": [273, 276], "decemb": [96, 179], "decid": [24, 25, 29, 33, 107, 108, 113, 116, 121, 124, 126, 127, 128, 129, 130, 134, 135, 140, 143, 146, 147, 149, 152, 153, 155, 161, 165, 171, 178, 182, 184, 187, 188, 190, 199, 214, 236, 243, 247, 254, 258, 261, 266, 267, 271, 294, 295], "decim": [39, 72, 73, 293], "decis": [242, 248], "decl_cod": [74, 76, 290], "declar": [71, 234, 237, 255, 267, 273, 290], "decod": [278, 284, 290], "decomposit": 28, "deconvolut": 269, "decor": [280, 296, 306], "decreas": [71, 184, 294, 295, 308], "decrement": [52, 293, 296], "decrement_callback": [293, 296], "dedic": [236, 245, 249, 254, 258, 289], "deep": [246, 286, 290, 294], "deep_copy_molecul": 296, "deeper": [253, 254, 262, 265, 270], "def": [4, 5, 7, 9, 10, 11, 12, 13, 14, 15, 17, 20, 21, 24, 25, 26, 28, 29, 30, 31, 32, 33, 36, 37, 38, 40, 43, 45, 46, 47, 50, 52, 53, 54, 55, 56, 62, 65, 68, 76, 79, 80, 81, 82, 83, 88, 93, 118, 127, 148, 267, 268, 275, 280, 290, 291], "default": [14, 24, 25, 26, 28, 29, 33, 40, 53, 56, 60, 61, 62, 66, 74, 76, 88, 93, 96, 108, 110, 129, 135, 158, 169, 227, 230, 257, 273, 274, 275, 276, 277, 278, 280, 281, 282, 283, 284, 285, 286, 287, 289, 290, 291, 293, 294, 295, 306, 312], "default_color": [293, 296], "default_spher": 39, "defer": 271, "defin": [5, 7, 9, 12, 13, 15, 17, 20, 21, 26, 28, 30, 32, 33, 35, 36, 37, 40, 45, 46, 53, 64, 71, 72, 73, 74, 75, 76, 80, 81, 82, 83, 87, 93, 118, 142, 148, 149, 171, 173, 176, 218, 225, 235, 245, 249, 252, 253, 255, 267, 269, 270, 273, 278, 281, 284, 290, 293, 294, 309, 310, 311], "definit": [71, 79, 81, 83, 93, 110, 235, 238, 241, 244, 253, 265, 267, 269, 270], "deflat": 282, "deform": [111, 113, 227, 269], "degre": [5, 66, 79, 80, 81, 93, 108, 115, 184, 186, 201, 232, 262, 275, 276, 293], "degrees_to_radian": 5, "del": [24, 30], "delai": [45, 167, 267, 314], "delet": [154, 173, 182, 183, 225, 253, 278, 307, 314], "deliber": 292, "delic": 249, "deliv": 71, "dell": [267, 302], "delta": [26, 269, 274], "deltat": 36, "delv": [254, 271], "demiralp": 276, "demo": [10, 21, 23, 32, 36, 38, 64, 73, 77, 126, 128, 131, 134, 136, 138, 166, 171, 172, 176, 209, 227, 251, 255, 269, 271, 306, 309, 310, 311, 312, 313], "demonstr": [21, 25, 27, 30, 37, 43, 46, 47, 48, 50, 51, 52, 53, 54, 56, 59, 76, 93, 124, 126, 128, 133, 135, 146, 147, 152, 167, 171, 172, 226], "demvessia": 173, "demvessiass": 173, "demystifi": 142, "denot": 276, "densiti": [39, 230, 246, 258, 267, 269], "dep": 302, "depart": 59, "departur": 59, "depend": [32, 33, 65, 68, 71, 72, 99, 104, 142, 148, 155, 161, 163, 167, 173, 180, 185, 194, 225, 226, 247, 251, 256, 266, 267, 269, 270, 273, 275, 286, 294, 300, 302, 303, 305], "dependabot": 302, "depict": 225, "deploi": 97, "deprec": [273, 276, 290, 296, 302, 303, 306, 307, 308, 309, 310, 311, 312], "deprecate_with_vers": 296, "deprecated_param": 296, "deprecationwarn": [280, 303], "depth": [32, 71, 171, 234, 273, 275, 295], "depth_cu": [27, 273, 303], "dequeu": [291, 296], "der": [170, 172, 286], "deriv": [71, 264, 269, 274, 292, 315], "descoteaux": 265, "descoteaux07": [265, 269], "describ": [27, 28, 37, 93, 96, 140, 146, 149, 154, 173, 225, 237, 240, 246, 249, 265, 267, 268, 269, 272, 274, 275, 276, 278, 293, 295, 307], "descript": [26, 29, 33, 39, 40, 93, 134, 135, 158, 161, 171, 172, 173, 225, 226, 227, 244, 249, 269, 271, 288, 290, 314], "deselect": [183, 194, 225, 293, 296], "design": [24, 71, 73, 93, 107, 119, 121, 133, 135, 149, 155, 169, 178, 186, 241, 243, 264, 271, 273, 274, 292], "design_matrix": [244, 269], "desir": [83, 93, 114, 173, 211, 236, 246, 266, 267, 273, 276, 282, 283, 295], "desired_fp": 295, "desktop": 161, "despit": [125, 131, 181, 266], "destin": [59, 230], "destroi": [20, 83], "destroy_tim": [15, 20, 295, 296], "detail": [5, 28, 71, 74, 89, 94, 108, 116, 119, 134, 135, 141, 146, 149, 152, 154, 155, 158, 161, 171, 172, 173, 210, 232, 238, 244, 252, 253, 255, 256, 258, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 273, 276, 291, 314], "detect": [60, 93, 116, 135, 147, 172, 255], "determin": [4, 15, 17, 26, 40, 46, 71, 93, 114, 119, 155, 239, 242, 266, 269, 281, 294, 295, 312], "dev": [86, 88, 96, 180, 314], "dev27": 280, "devanshu": [106, 306], "develop": [97, 98, 99, 100, 101, 103, 104, 106, 112, 122, 132, 133, 138, 139, 140, 142, 154, 166, 173, 174, 175, 176, 225, 226, 229, 232, 240, 242, 255, 260, 263, 267, 269, 271, 307, 314], "deviat": [273, 274], "devic": 230, "devis": [233, 271], "devmessia": [145, 148, 154, 311], "devot": 134, "dfx": 314, "di": [154, 173], "diagon": [49, 269, 273, 283, 292], "diagonal_grid": 49, "diagram": [141, 144, 172], "dialog": [24, 127, 135, 293, 302, 306], "diamond": 34, "dict": [15, 50, 62, 66, 272, 275, 276, 281, 282, 285, 292, 293, 295, 306], "dictionari": [15, 24, 46, 47, 60, 94, 148, 196, 223, 276, 278, 281, 285, 292, 293], "did": [2, 3, 178, 179, 292], "didn": [112, 140, 143, 152, 158, 159, 161, 170, 171, 178, 179, 180, 185, 195, 198, 199, 208, 209, 210, 211, 212, 213, 214, 215, 216, 218, 219, 220, 223, 224, 233, 237, 240, 242, 245, 246, 249, 257, 258, 261, 267, 270], "diego": 173, "dielectr": [72, 285], "differ": [10, 11, 12, 14, 20, 24, 28, 32, 37, 41, 42, 46, 47, 53, 57, 61, 64, 71, 72, 73, 74, 80, 82, 86, 89, 93, 112, 114, 115, 116, 118, 121, 124, 131, 133, 134, 140, 141, 146, 148, 150, 152, 154, 161, 171, 173, 175, 181, 182, 185, 187, 189, 192, 196, 200, 202, 203, 205, 216, 218, 220, 221, 225, 227, 237, 246, 247, 248, 249, 252, 255, 258, 262, 264, 265, 267, 269, 270, 273, 274, 277, 278, 292, 294, 295, 313], "difficult": [161, 194, 197, 218, 253, 268], "difficulti": [250, 251], "diffus": [24, 28, 244, 247, 250, 269, 273, 274, 285, 302], "diffuse_color": 285, "diffuse_level": 285, "diffusecolor": [71, 74], "dig": [186, 234], "dim": [25, 28, 193, 273, 283, 289, 293, 294], "dimens": [14, 170, 273, 276, 282, 283, 289, 291, 294, 295], "dimension": [32, 40, 172, 274, 312], "dipi": [14, 18, 24, 27, 28, 30, 39, 96, 98, 102, 244, 253, 265, 269, 273, 276, 278, 298, 303], "dir": [2, 3, 74, 75, 273], "dir2": [2, 3], "direct": [2, 3, 11, 12, 17, 29, 33, 36, 37, 39, 46, 52, 53, 54, 56, 63, 71, 74, 75, 79, 80, 81, 82, 83, 93, 94, 123, 145, 146, 154, 167, 171, 173, 210, 226, 235, 265, 269, 270, 271, 273, 274, 275, 276, 283, 285, 289, 292, 294, 295, 304, 305, 306, 312, 315], "directionvsoutput": 74, "directli": [71, 127, 169, 171, 178, 198, 205, 207, 218, 222, 226, 227, 230, 252, 255, 265, 269, 271, 274, 275, 277, 312], "directori": [94, 96, 165, 278, 288, 290, 293, 295, 314], "directory_click_callback": [293, 296], "directory_nam": 293, "directory_path": 293, "directx": 109, "disabl": [14, 28, 93, 204, 272, 295, 308], "disable_warn": 296, "disappear": [186, 258, 267], "disappoint": [178, 180], "discard": [71, 74, 215, 314], "disclaim": 315, "discontinu": 127, "discord": [97, 98, 99, 100, 101, 103, 104, 105, 106, 122, 132, 137, 138, 166, 176, 177, 179, 180, 228, 229, 309], "discours": [159, 218], "discov": [139, 142, 145, 163, 180, 184, 201, 210, 233, 236, 254], "discret": [26, 71, 255, 269, 286], "discuss": [108, 117, 126, 127, 129, 130, 139, 141, 142, 144, 145, 148, 152, 154, 155, 160, 163, 170, 172, 174, 181, 184, 185, 187, 198, 200, 201, 202, 204, 213, 218, 225, 226, 231, 236, 237, 239, 241, 242, 244, 245, 247, 248, 250, 256, 258, 267, 271, 292], "diseas": [154, 173], "disengag": 180, "disk": [24, 51, 54, 178, 276, 277, 293, 296, 311], "disk2d": [51, 54, 187, 197, 225, 296, 306], "disk_actor": 273, "disk_numb": 293, "disksourc": 296, "disp_xi": 287, "displac": [36, 118, 197, 227], "displai": [6, 7, 11, 14, 18, 22, 23, 24, 26, 27, 29, 30, 33, 39, 40, 54, 71, 74, 79, 80, 81, 82, 89, 96, 152, 159, 161, 167, 168, 172, 191, 192, 225, 227, 230, 235, 241, 247, 250, 256, 259, 269, 271, 273, 274, 287, 291, 293, 296, 311, 313], "display_cross_sect": [274, 296], "display_el": [54, 55], "display_ext": [24, 28, 30, 273, 274, 296], "dissipationless": 29, "dist": [32, 71, 314], "distanc": [21, 27, 32, 36, 40, 71, 74, 75, 97, 122, 147, 172, 173, 174, 178, 182, 197, 229, 269, 273, 275, 286, 293, 295, 307, 312], "distinct": [271, 276], "distinguish": [61, 189, 276, 292], "distinguishable_colormap": [35, 36, 61, 87, 296], "distort": [134, 151, 154, 173, 249, 267], "distribut": [17, 26, 30, 73, 97, 171, 176, 230, 234, 267, 268, 269, 273, 280, 283, 311, 315], "div": 291, "dive": [242, 243, 249], "divid": [12, 32, 71, 72, 171, 225, 267, 295], "divis": [32, 197, 264, 267], "dix": 27, "dmri": [269, 278], "do": [4, 21, 28, 32, 63, 74, 80, 93, 97, 142, 179, 180, 225, 226, 227, 234, 237, 246, 249, 252, 258, 264, 267, 268, 273, 276, 293, 311, 312], "doa": 37, "doc": [86, 93, 96, 114, 135, 142, 154, 172, 178, 179, 182, 196, 199, 227, 249, 273, 290, 292, 295, 303, 304, 305, 306, 309, 312, 314], "docstr": [141, 163, 188, 190, 279, 302, 306, 311, 312, 314], "doctest": [279, 280, 314], "doctest_skip_pars": 296, "document": [32, 37, 97, 103, 104, 106, 107, 111, 116, 122, 129, 130, 132, 133, 134, 135, 136, 138, 140, 141, 142, 143, 144, 145, 150, 154, 160, 163, 166, 170, 173, 174, 176, 179, 180, 181, 184, 201, 222, 226, 229, 234, 241, 246, 258, 263, 266, 267, 271, 299, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 315], "doe": [68, 135, 148, 149, 155, 181, 189, 193, 205, 212, 214, 220, 221, 234, 235, 267, 269, 270, 275, 276, 278, 286, 306, 308, 311], "doesn": [110, 140, 146, 148, 151, 178, 211, 212, 243, 246, 286, 294, 303, 309, 310, 314], "doi": [173, 310], "dolli": [295, 296], "domain": [168, 251, 302, 312], "domino": [77, 78, 89, 309, 313], "domino1_orn": 82, "domino1_po": 82, "domino_actor": 82, "domino_cent": 82, "domino_col": 82, "domino_color": 82, "domino_direct": 82, "domino_mass": 82, "domino_orn": 82, "domino_s": 82, "don": [14, 24, 71, 74, 86, 88, 139, 142, 171, 181, 192, 219, 225, 243, 265, 267, 314], "donald": 269, "done": [60, 63, 67, 68, 93, 108, 112, 114, 119, 120, 121, 123, 133, 134, 135, 146, 148, 149, 152, 158, 161, 168, 170, 171, 172, 173, 201, 202, 206, 215, 218, 220, 226, 234, 249, 255, 257, 258, 261, 264, 265, 267, 268, 269, 270, 295, 302, 312, 314], "dong": 172, "donohu": [106, 122, 306, 307], "doodl": 225, "door": 267, "dot": [40, 66, 74, 196, 214, 277, 282, 294, 295, 296, 312], "dot_actor": 273, "dot_siz": 273, "doubl": [108, 122, 135, 147, 234, 238, 269, 270, 274, 286, 293, 294, 302, 305, 307, 312], "double_con": [238, 273, 296], "doublearrai": 296, "doubt": [111, 180], "dove": 267, "down": [14, 25, 29, 32, 43, 54, 80, 81, 82, 83, 93, 135, 178, 238, 271, 273, 293], "down_button_callback": [293, 296], "download": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 71, 72, 73, 74, 75, 76, 79, 80, 81, 82, 83, 86, 87, 88, 89, 94, 180, 184, 188, 190, 193, 227, 276, 278, 312], "dpi": [277, 282, 295, 312], "draco": 278, "draft": [201, 226, 238, 249, 258, 264, 267, 269, 271], "drag": [14, 149, 164, 171, 185, 194, 200, 225, 293], "draggabl": [53, 293], "draggbl": 293, "dragonattenu": 193, "draw": [10, 32, 51, 54, 146, 150, 169, 171, 173, 174, 175, 179, 182, 185, 200, 203, 205, 206, 211, 225, 234, 237, 273, 293, 310, 312], "draw_shap": [48, 293, 296], "drawback": [209, 256, 270], "drawing_canva": 48, "drawn": [27, 71, 146, 169, 182, 237, 273, 274, 293, 294], "drawpanel": [41, 42, 89, 187, 215, 221, 225, 278, 296, 312, 313], "drawshap": [211, 216, 221, 225, 296, 312], "drill": 65, "drill_anim": 65, "driven": [93, 97, 314], "drop": [105, 135, 137, 177, 180, 228, 293], "drop_down_button": [293, 296, 312], "drop_down_menu": [293, 296, 302], "dropdown": 302, "drown": 180, "drupal": 277, "dry": 148, "dt": [21, 25, 62], "dtheta": 40, "dti": [22, 23, 89, 232, 250, 256, 273, 274, 302, 313], "dti_uncertainti": 238, "dtype": [11, 12, 18, 26, 35, 36, 80, 82, 83, 87, 273, 276, 296, 304, 312], "duck": [6, 193], "due": [33, 107, 108, 116, 129, 134, 149, 152, 154, 172, 173, 180, 187, 188, 197, 215, 216, 217, 245, 251, 258, 263, 271, 312], "dug": 246, "duplic": [142, 148, 289, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 314], "duplicaci": 216, "dur": 38, "durat": [4, 15, 17, 38, 79, 80, 81, 82, 83, 93, 226, 275, 295, 296], "dure": [30, 68, 93, 102, 112, 116, 133, 134, 136, 139, 140, 146, 155, 161, 171, 172, 178, 179, 193, 213, 230, 231, 232, 236, 242, 247, 251, 254, 256, 266, 271, 295, 306, 310], "dwi": [269, 274], "dwij": [229, 302, 312], "dx_link": [81, 83], "dynam": [30, 80, 109, 116, 134, 154, 171, 173, 226, 232, 254, 255, 257, 271, 274, 293, 306], "dynamic_bbox": [260, 293, 296], "e": [5, 24, 25, 29, 33, 49, 67, 71, 93, 94, 96, 98, 99, 100, 101, 103, 104, 106, 122, 132, 138, 152, 166, 167, 171, 172, 176, 218, 219, 225, 226, 227, 229, 246, 258, 267, 269, 270, 273, 274, 275, 276, 278, 283, 286, 293, 294, 295, 307, 314], "e2": 193, "e_color": 40, "each": [4, 5, 11, 12, 13, 15, 17, 21, 24, 26, 28, 29, 30, 31, 32, 33, 34, 35, 36, 38, 40, 43, 54, 60, 61, 62, 63, 64, 66, 72, 73, 74, 80, 82, 83, 93, 107, 108, 116, 118, 119, 121, 127, 141, 142, 146, 148, 149, 154, 161, 169, 171, 175, 178, 180, 183, 184, 185, 189, 192, 197, 205, 212, 217, 219, 221, 225, 227, 233, 234, 249, 252, 255, 265, 266, 267, 269, 270, 271, 273, 274, 275, 276, 278, 281, 283, 286, 290, 291, 293, 294, 303], "eager": 119, "eagerli": 242, "earli": [107, 108, 141, 179, 226, 244], "earlier": [67, 149, 152, 159, 218, 221, 237, 280], "earliest": 170, "earth": [0, 1, 4, 19, 89, 180, 307, 312, 313], "earth_actor": [4, 5, 15], "earth_dai": 15, "earth_fil": 5, "earth_filenam": 4, "earth_imag": [4, 5], "earthactor": 273, "easi": [14, 24, 27, 32, 64, 71, 73, 97, 139, 142, 152, 173, 175, 181, 183, 185, 194, 221, 238, 258, 267, 275], "easier": [80, 82, 97, 118, 133, 148, 152, 171, 175, 201, 226, 234, 237, 260, 263, 276, 314], "easili": [37, 114, 134, 135, 142, 149, 152, 171, 173, 225, 226, 269], "east": 292, "econom": 142, "econometr": 246, "economi": 142, "ecosystem": 97, "edg": [21, 34, 35, 36, 40, 74, 87, 154, 173, 216, 276], "edge1": 21, "edge2": 21, "edge3": 21, "edge4": 21, "edge5": 21, "edge_color": [34, 273], "edge_opac": 273, "edge_width": [34, 273], "edges_color": 36, "edges_fil": [35, 36, 87], "edges_list": 36, "edges_posit": 36, "edgescolor": [35, 87], "edgesposit": [35, 87], "edit": [135, 178, 222, 263, 293, 314], "edit_mod": [293, 296], "editor": 314, "edu": [276, 292], "educ": 286, "effect": [31, 72, 73, 82, 102, 121, 131, 134, 151, 154, 169, 171, 173, 178, 252, 255, 258, 264, 267, 273, 290], "effectmanag": [255, 264, 267], "effici": [14, 71, 118, 134, 139, 152, 173, 181, 185, 209, 225, 265, 269, 271, 273, 276], "effort": [173, 271], "eg": 286, "egypt": 178, "eigenvalu": [28, 269, 273, 274], "eigenvector": [28, 269, 273, 274, 276], "eight": 40, "eighth": 162, "either": [71, 93, 97, 110, 149, 155, 169, 220, 225, 227, 230, 258, 266, 269, 278, 286], "electr": [22, 23, 29, 89, 313], "electromagnet": [22, 23, 89, 309, 313], "eleftherio": [101, 103, 104, 106, 122, 132, 138, 166, 176, 229, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312], "elem": 28, "element": [10, 14, 37, 42, 43, 44, 45, 46, 50, 51, 52, 54, 55, 56, 71, 75, 76, 93, 108, 110, 112, 114, 116, 124, 135, 140, 143, 146, 149, 152, 154, 155, 161, 164, 171, 182, 183, 197, 200, 206, 218, 225, 226, 236, 239, 242, 248, 257, 267, 269, 271, 273, 276, 281, 283, 286, 291, 292, 295, 296, 302, 307, 310, 313], "element_nam": [286, 296], "elementwis": 303, "elev": [25, 32, 295, 296], "eleventh": 170, "elif": [46, 53], "elimin": 217, "ellipsoid": [22, 23, 75, 89, 125, 134, 232, 241, 244, 245, 249, 253, 274, 296, 302, 309, 313], "els": [10, 11, 13, 15, 24, 25, 30, 32, 36, 38, 40, 46, 48, 53, 71, 74, 86, 88, 93, 114, 226, 273, 274, 276, 279, 293], "elsewher": 273, "em": [264, 267], "email": [169, 178, 179], "emanuel": 246, "embed": [151, 154, 173, 278], "emerg": [263, 266, 271], "emissivestrengthtest": 193, "emploi": [173, 242, 271], "empti": [18, 276, 281, 291, 292, 312, 314], "emwav": 172, "en": [73, 173, 292], "enabl": [27, 28, 64, 83, 97, 104, 134, 141, 153, 248, 260, 267, 271, 272, 275, 295, 303, 305, 312], "enable_stereo": 296, "enable_warn": 296, "enablecol": 93, "enc": 267, "encapsul": [234, 267, 271], "enclos": 267, "encod": [64, 86, 88, 227, 268, 269, 270, 278, 280, 284, 290, 291, 292], "encompass": 271, "encount": [205, 233, 236, 239, 242, 245, 247, 251, 256, 257, 266], "end": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 71, 72, 73, 74, 75, 76, 79, 80, 81, 82, 83, 86, 87, 88, 96, 118, 127, 131, 135, 136, 141, 161, 169, 170, 178, 179, 180, 184, 187, 193, 225, 242, 243, 245, 247, 252, 258, 267, 275, 289, 290], "endeavor": [150, 271], "endeavour": 144, "endors": 315, "endpoint": 36, "energi": 180, "enforc": 303, "engag": 180, "engin": [71, 72, 77, 89, 97, 108, 114, 116, 124, 132, 135, 143, 178, 179, 180, 181, 269, 295, 308, 309], "english": 178, "enh": [303, 309, 311], "enhanc": [187, 191, 209, 226, 236, 254, 271, 312], "enjoi": [96, 105, 133, 137, 143, 177, 228], "enjoy": 179, "enough": [142, 148, 173, 178, 179, 246, 258, 267], "enqueu": [291, 296], "enquir": 180, "ensur": [4, 9, 30, 32, 233, 236, 239, 242, 251, 254, 257, 260, 263, 271, 273, 283, 286, 295], "entail": 260, "enter": [31, 180, 293, 314], "enthusiasm": 180, "enthusiast": 179, "entir": [107, 108, 116, 142, 238, 271], "entiti": [171, 178], "entri": [32, 276, 280], "enumer": [35, 36, 40, 45, 72, 80, 82, 83, 87], "environ": [88, 119, 142, 161, 173, 267], "environmenttest": 193, "epanechnikov": [258, 267], "epidem": [154, 173], "epsilon_1": 274, "eq1": 25, "eq2": 25, "eq3": 25, "eq4": 25, "equal": [21, 26, 64, 93, 121, 172, 270, 273, 274, 280, 294], "equat": [25, 62, 269, 274], "equip": 226, "equit": 270, "equival": [292, 294], "eras": 225, "errat": 286, "error": [143, 180, 184, 185, 188, 193, 211, 215, 218, 234, 237, 251, 258, 266, 269, 274, 278, 280, 284, 290, 299, 306, 309, 312], "error_class": 280, "escal": 267, "especi": [133, 271], "essenti": [71, 144, 173, 227, 237, 243, 263, 271, 278, 286, 293], "establish": [269, 286], "estim": [227, 230, 244, 246, 267, 269, 274], "estimate_sigma": [244, 269], "eta": 269, "etc": [9, 13, 24, 35, 93, 114, 135, 169, 178, 180, 185, 227, 252, 276, 278, 286, 293, 307], "ethan": 147, "ethen": 147, "ethyn": 147, "etienn": [104, 106, 305, 306], "euclidean": [172, 275], "euclidean_dist": 296, "euler": [201, 275, 292], "euler_matrix": 296, "eurograph": 269, "eval": [25, 28, 269, 273, 274], "evalu": [65, 68, 71, 118, 127, 130, 134, 135, 171, 172, 173, 198, 242, 275, 279, 291, 294, 309], "evec": [28, 269, 273, 274], "even": [71, 133, 134, 148, 154, 155, 158, 178, 204, 226, 238, 255, 256, 258, 260, 264, 267, 269, 270, 275, 314, 315], "evenli": [17, 273, 283], "event": [4, 11, 15, 24, 31, 37, 76, 87, 108, 140, 148, 149, 152, 155, 158, 180, 182, 183, 185, 191, 194, 197, 200, 225, 226, 255, 275, 287, 290, 291, 293, 295, 306, 307, 315], "event_id": [148, 291], "event_po": [11, 12, 14], "event_posit": [11, 12, 287, 296], "event_typ": 293, "events_count": 306, "eventu": [113, 115, 123, 178, 249], "ever": 178, "everi": [12, 15, 17, 20, 24, 25, 26, 29, 30, 32, 33, 36, 37, 38, 40, 59, 76, 79, 107, 108, 131, 133, 158, 194, 224, 225, 227, 234, 249, 267, 273, 274, 276, 283, 291, 294, 295, 314], "everybodi": 237, "everydai": 97, "everyon": [107, 108, 109, 120, 123, 125, 136, 139, 140, 183, 230, 232, 240, 246, 249, 252, 255, 258, 261, 264, 267, 268], "everyth": [12, 24, 30, 63, 64, 66, 93, 108, 114, 120, 125, 133, 154, 161, 169, 175, 178, 183, 184, 187, 203, 217, 221, 222, 225, 232, 243, 244, 247, 260, 293, 314], "evid": 71, "evolut": 157, "ex": 312, "exact": [28, 180, 295], "exactli": [32, 71, 146, 178, 180, 234, 238, 246, 249, 258, 261, 269, 270], "exam": [187, 245, 271], "examin": [179, 271, 276], "exampl": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 70, 71, 72, 73, 74, 75, 76, 78, 79, 80, 81, 82, 83, 85, 86, 87, 88, 89, 90, 96, 103, 104, 106, 107, 109, 116, 121, 122, 128, 129, 132, 134, 135, 136, 139, 142, 144, 146, 147, 148, 149, 151, 152, 154, 161, 167, 170, 172, 173, 175, 184, 190, 196, 201, 202, 208, 210, 218, 249, 251, 255, 261, 264, 267, 269, 271, 273, 275, 276, 278, 279, 280, 287, 289, 290, 291, 292, 294, 295, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314], "examples_revamp": 313, "exce": [225, 275, 286], "exceed": [155, 188, 206], "excel": [231, 292], "except": [39, 76, 118, 142, 212, 265, 280], "exchang": [73, 231], "excit": [111, 118, 180, 231, 255], "exclud": [165, 172, 276], "execut": [1, 23, 30, 42, 58, 70, 78, 80, 82, 83, 85, 90, 93, 142, 148, 154, 173, 180, 211, 218, 224, 243, 266, 267, 275, 288, 290, 291, 312, 313], "exemplari": 315, "exemplifi": 71, "exercis": 303, "exhaust": 135, "exhibit": [26, 266], "exist": [4, 19, 32, 59, 109, 111, 117, 124, 127, 140, 155, 158, 180, 182, 191, 198, 201, 225, 249, 255, 256, 259, 267, 271, 275, 278, 293, 312], "exit": [4, 5, 10, 15, 17, 20, 21, 25, 26, 29, 31, 33, 36, 38, 40, 79, 80, 81, 82, 83, 93, 295, 296, 307], "exp_bundles_and_map": 14, "expand": [141, 149, 152, 289, 312], "expandus": 14, "expans": 306, "expect": [117, 119, 121, 125, 134, 161, 178, 179, 181, 202, 205, 241, 252, 259, 265, 269, 270, 273, 275, 278, 282, 295], "expend": 234, "expens": [27, 134, 142, 173], "experi": [102, 109, 111, 118, 133, 141, 168, 170, 180, 181, 184, 185, 206, 231, 243, 249, 255, 256, 258, 265, 269, 273], "experienc": [93, 178, 230, 243], "experiment": [6, 96, 262, 267, 305], "expir": 280, "expireddeprecationerror": [273, 290, 296], "explain": [60, 61, 64, 97, 135, 136, 139, 140, 165, 180, 195, 201, 210, 213, 224, 226, 230, 234, 247, 253, 264, 267, 269, 280, 314], "explan": [142, 243, 250], "explicit": 267, "explicitli": [93, 129, 197, 294, 303], "explor": [71, 128, 134, 151, 242, 245, 248, 253, 265, 269, 270, 271], "exponenti": [258, 267], "export": [0, 1, 89, 96, 184, 190, 193, 312, 313], "export_scen": [8, 296], "expos": [114, 243, 276, 278, 284, 290], "express": [28, 30, 93, 179, 269, 273, 274, 279, 280, 315], "ext": [278, 303, 314], "extend": [24, 32, 180, 233, 257, 271], "extens": [32, 104, 278, 282, 290, 293, 296, 305, 306], "extension1": 293, "extension2": 293, "extent": 147, "extern": [93, 135, 139, 267, 281, 311], "extra": [68, 93, 141, 165, 180, 203, 248, 295], "extract": [37, 141, 144, 155, 158, 184, 204, 227, 270, 275, 281, 291, 308, 310], "extran": 314, "extrem": 121, "extrud": 226, "extrus": [213, 273], "ey": [24, 295], "f": [25, 45, 148, 165, 265, 276, 290], "fa": [24, 27, 28], "fa_1x1x1": 14, "fa_actor": 14, "face": [11, 12, 17, 28, 30, 32, 71, 108, 110, 112, 114, 116, 118, 119, 121, 124, 126, 127, 128, 129, 130, 133, 146, 154, 178, 180, 182, 193, 194, 202, 207, 237, 239, 245, 249, 251, 266, 270, 273, 274, 287, 289, 294, 311], "face_index": [11, 12], "faces_from_sphere_vertic": 296, "facet": 273, "facilit": [28, 263, 271, 276], "fact": [28, 179, 237], "factor": [71, 226, 249, 269, 273, 274, 283, 286, 293, 295, 312], "fail": [97, 102, 158, 161, 197, 227, 237, 251, 257, 270, 288, 303, 304, 312, 314], "failur": [249, 251, 257], "fairli": [266, 269], "fake": 173, "fake_tub": [27, 36, 40, 273, 303], "fall": 151, "fals": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 24, 25, 27, 28, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 71, 72, 73, 74, 75, 76, 79, 80, 81, 82, 83, 86, 87, 88, 93, 94, 145, 148, 158, 237, 243, 272, 273, 274, 275, 277, 279, 280, 281, 282, 286, 289, 290, 291, 293, 294, 295, 312], "famili": 293, "familiar": [134, 136, 178], "famou": 246, "far": [110, 112, 114, 149, 153, 168, 249, 258], "farther": [36, 267], "farthest": 276, "fasciculu": 24, "fascin": 180, "fashion": [49, 155, 171, 283, 285], "fast": [165, 166, 197, 267, 269, 310], "faster": [20, 74, 75, 109, 121, 134, 168, 178, 205, 226], "fatal": 143, "fault": [217, 302, 310, 312], "faulthandl": 143, "faveli": [103, 304], "fbo": [230, 237, 240, 243, 246, 267], "fdata": 312, "fdst": 278, "fear": 314, "feat": 302, "featur": [86, 104, 112, 114, 120, 122, 123, 124, 125, 131, 135, 139, 140, 152, 162, 164, 167, 169, 171, 172, 173, 174, 175, 178, 180, 194, 197, 201, 203, 209, 210, 215, 216, 221, 225, 226, 236, 237, 248, 251, 253, 254, 260, 261, 263, 267, 269, 271, 273, 274, 297, 302, 305, 307, 311, 312], "feb": 276, "feed": 180, "feedback": [158, 162, 170, 232, 235, 238, 241, 244, 247, 253, 266], "feel": [93, 178, 180], "fellow": [129, 135, 181, 231, 247, 249, 252, 255, 265], "felt": [178, 179, 180], "fernando": 269, "fetch": [24, 28, 30, 37, 43, 44, 45, 46, 47, 48, 50, 51, 52, 53, 54, 55, 56, 161, 171, 225, 227, 247, 278, 303, 312, 314], "fetch_bundles_2_subject": [14, 24, 27], "fetch_data": 296, "fetch_gltf": [6, 7, 8, 9, 13, 188, 296], "fetch_viz_cubemap": [37, 296], "fetch_viz_dmri": [28, 30, 296], "fetch_viz_icon": [30, 43, 44, 45, 46, 47, 50, 51, 52, 53, 54, 55, 56, 296], "fetch_viz_model": [4, 76, 94, 296], "fetch_viz_new_icon": [48, 225, 296, 312], "fetch_viz_textur": [4, 5, 15, 19, 296], "fetch_viz_wiki_nw": [35, 36, 87, 296], "fetcher": [24, 36, 76, 87, 184, 225, 296, 306, 309, 312], "fetchererror": 278, "fetech": 278, "feval": 28, "fevec": 28, "few": [11, 12, 93, 111, 121, 123, 135, 147, 149, 155, 169, 179, 180, 184, 205, 206, 209, 214, 242, 245, 257, 271, 276, 302], "ffffff": 276, "ffmpeg": [86, 88], "fi": [108, 140], "fib": [76, 94, 282], "fiber": [22, 23, 89, 269, 274, 303, 313], "fidel": 258, "field": [22, 23, 29, 89, 122, 173, 246, 269, 273, 274, 276, 293, 294, 307, 313], "field_data": 294, "field_nam": 294, "fifth": 153, "fig": 277, "figur": [41, 42, 53, 89, 114, 118, 119, 121, 127, 129, 131, 140, 152, 156, 161, 178, 181, 190, 202, 204, 205, 212, 214, 217, 219, 234, 246, 249, 252, 258, 264, 265, 267, 270, 271, 277, 296, 313], "figure_dict": [46, 53], "fil": 28, "file": [0, 1, 11, 12, 15, 23, 35, 36, 42, 58, 70, 78, 85, 87, 89, 90, 93, 96, 97, 127, 133, 135, 141, 144, 148, 179, 180, 184, 188, 190, 193, 199, 200, 216, 257, 271, 272, 273, 275, 278, 280, 281, 282, 288, 289, 290, 293, 295, 302, 306, 309, 310, 312, 313, 314], "file_nam": [18, 282, 293], "filedialog": [260, 263, 271], "filedialog2d": 146, "filedialogui": 271, "fileexchang": 276, "filemenu": [133, 266], "filemenu2d": [135, 271, 296, 302], "filenam": [6, 7, 8, 9, 13, 15, 19, 273, 278, 281, 282, 290, 293, 295], "filesystem": 135, "filip": 181, "filipi": [106, 142, 173, 181, 186, 189, 201, 205, 229, 230, 246, 249, 267, 268, 306, 312], "fill": [54, 141, 144, 153, 170, 172, 226, 231, 271, 276, 286, 288, 310], "filter": [172, 255, 267, 273], "filterwarn": 303, "final": [24, 30, 31, 32, 35, 36, 37, 54, 60, 64, 71, 72, 73, 74, 93, 109, 121, 127, 130, 133, 136, 140, 148, 149, 152, 156, 164, 175, 178, 195, 201, 210, 234, 241, 243, 246, 248, 249, 252, 256, 258, 260, 261, 262, 264, 265, 266, 268, 270, 273, 275, 276, 293, 294, 302, 309, 312], "final_tim": [293, 296], "finalis": 196, "find": [11, 24, 74, 94, 109, 131, 144, 148, 155, 168, 175, 178, 180, 182, 194, 210, 213, 215, 217, 224, 226, 239, 240, 243, 245, 246, 248, 249, 258, 261, 264, 265, 266, 267, 269, 271, 293, 295, 314], "find_object": 295, "fine": [22, 23, 89, 139, 142, 145, 165, 173, 182, 184, 187, 212, 221, 234, 237, 258, 268, 311, 313], "finer": 173, "finish": [10, 119, 121, 124, 133, 139, 152, 164, 167, 171, 173, 181, 189, 190, 210, 232, 244, 249, 252, 253, 258, 264, 295], "finit": 246, "fire": 178, "first": [2, 3, 10, 14, 15, 16, 20, 24, 25, 27, 28, 30, 31, 32, 35, 36, 39, 40, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 61, 62, 63, 64, 65, 66, 71, 74, 76, 79, 80, 81, 82, 83, 87, 93, 96, 114, 116, 118, 119, 129, 134, 135, 139, 141, 142, 145, 148, 152, 155, 169, 170, 171, 172, 173, 175, 179, 180, 181, 182, 190, 191, 197, 201, 205, 206, 218, 219, 226, 227, 231, 232, 234, 235, 237, 238, 243, 246, 247, 249, 252, 253, 255, 257, 258, 262, 264, 265, 267, 268, 269, 270, 273, 274, 275, 276, 280, 286, 290, 293, 294, 312, 314], "firstli": [93, 121, 169, 180, 221, 239], "fit": [9, 25, 97, 142, 161, 238, 249, 252, 269, 270, 293, 295, 315], "five": [56, 138, 180, 309], "fix": [30, 83, 93, 109, 110, 112, 114, 116, 119, 120, 122, 127, 129, 130, 141, 145, 146, 148, 149, 158, 161, 163, 168, 171, 173, 174, 175, 178, 179, 180, 183, 184, 185, 186, 188, 192, 193, 197, 201, 205, 210, 213, 214, 219, 220, 221, 224, 225, 226, 227, 233, 239, 249, 251, 257, 258, 264, 265, 266, 269, 271, 275, 276, 299, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312], "fix_winding_ord": [30, 274, 296], "flag": [79, 80, 82, 83, 86, 93, 143, 158, 161, 171, 211, 257, 276, 293, 296, 311, 312, 314], "flake8": 314, "flash": 271, "flat": [276, 285, 296], "flatit": 276, "flatten": [252, 276], "flaw": [155, 197, 233, 249, 271, 302], "flawless": 145, "flexibl": [134, 290], "flicker": [154, 173], "flighthelmet": [193, 278], "flip": [5, 110, 184, 281, 306, 311, 312], "flip_up_down": 277, "float": [25, 26, 43, 54, 71, 74, 76, 171, 197, 258, 264, 267, 268, 273, 274, 275, 276, 281, 282, 283, 285, 286, 289, 290, 291, 293, 294, 295], "float_pow": 15, "float_to_rgba": 267, "floatarrai": 296, "flock": 311, "flood": 180, "floor": [11, 197], "floriano": 267, "flow": 180, "fluid": 152, "fly": [5, 161], "fname": [15, 43, 54, 275, 277, 278, 282, 295], "fname_fa": 14, "fname_t1": 14, "focal": [27, 60, 192, 275, 295], "focal_1": 275, "focal_po": 275, "focal_point": [4, 8, 18, 25, 26, 27, 28, 29, 33, 40, 79, 80, 82, 87, 295], "focu": [4, 15, 110, 113, 114, 125, 126, 139, 148, 151, 154, 195, 233, 236, 245, 248, 254, 260, 261, 263, 265, 269, 271, 293], "focus": [108, 118, 130, 154, 173, 224, 235, 236, 239, 245, 251, 258, 264, 266, 267, 268], "fodf": 30, "fodf_img": 30, "fog": 178, "folder": [35, 36, 87, 251, 271, 278, 291, 293, 306, 314], "follow": [14, 24, 25, 26, 28, 30, 32, 33, 37, 39, 60, 61, 62, 64, 67, 71, 81, 83, 86, 87, 93, 96, 98, 99, 100, 101, 103, 104, 106, 118, 119, 122, 124, 127, 129, 130, 132, 133, 135, 138, 142, 145, 148, 166, 173, 175, 176, 186, 189, 190, 192, 195, 196, 199, 225, 226, 227, 229, 232, 236, 246, 252, 258, 266, 267, 270, 273, 275, 278, 280, 282, 294, 296, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 314, 315], "font": [97, 114, 161, 167, 169, 173, 175, 239, 248, 254, 271, 293], "font_famili": [24, 30, 46, 50, 273, 293, 296], "font_siz": [24, 30, 32, 37, 40, 46, 47, 50, 53, 54, 55, 79, 80, 81, 82, 83, 94, 273, 293, 296], "footer": 312, "forc": [21, 36, 79, 80, 81, 82, 83, 129, 135, 145, 149, 154, 171, 173, 222, 275, 309, 312], "force_rend": [43, 45, 54], "forceatla": [154, 173], "forceatlas2": [154, 157, 173], "forceobj": [79, 80, 82, 83, 93], "forese": 253, "forg": [96, 98, 99, 100, 101, 103, 104, 106, 122, 132, 138, 166, 176, 229], "forget": 314, "forgot": [179, 237], "fork": [92, 142, 145, 180, 314], "form": [25, 62, 71, 80, 161, 178, 204, 219, 234, 246, 273, 274, 275, 283, 288, 289, 293, 294, 315], "formal": [130, 262], "format": [14, 72, 76, 94, 97, 164, 169, 172, 179, 180, 184, 185, 193, 227, 234, 237, 274, 275, 276, 278, 282, 293, 312], "format_text": [293, 296], "former": [232, 264], "formula": [32, 117, 253, 269, 292], "fortran": 276, "fortun": [119, 139, 140, 145, 146, 148, 149, 151, 158, 175, 233, 242, 245, 252, 256, 261], "fortunalt": 161, "fortunelli": 175, "forum": [129, 159, 178, 218], "forward": [234, 237, 242, 309], "found": [32, 93, 114, 116, 118, 119, 121, 124, 127, 129, 130, 133, 134, 135, 151, 167, 171, 172, 173, 174, 175, 180, 181, 187, 189, 190, 200, 202, 206, 218, 222, 225, 226, 227, 239, 244, 246, 250, 253, 255, 258, 259, 266, 267, 269, 271, 276, 277, 278, 280, 288, 292, 294, 295], "foundat": [105, 107, 108, 134, 135, 137, 171, 172, 177, 178, 180, 225, 226, 227, 228, 267, 269, 271], "four": [40, 59], "fourth": [150, 294], "fox": [193, 223, 227], "fp": [38, 71, 80, 81, 82, 83, 125, 178, 201, 226, 275, 312], "fpss": [80, 81, 82, 83], "fr": 277, "frac": [32, 258, 267], "fract": 267, "fractal": [22, 23, 89, 312, 313], "fraction": [27, 28, 270, 273, 293], "frag": [71, 74], "frag_output": 71, "fragment": [71, 74, 76, 134, 226, 249, 252, 258, 264, 265, 267, 269, 273, 285, 290], "fragment_shader_code_decl": 76, "fragment_shader_code_impl": 76, "fragoutput0": [71, 74, 76, 270], "frame": [38, 64, 71, 86, 93, 104, 117, 167, 230, 269, 273, 275, 291, 295, 305], "frame_dur": 38, "frame_r": [80, 81, 82, 83, 295, 296], "frame_tim": 45, "framebuff": [11, 12, 139, 230, 234, 237, 243, 246, 249, 258, 267, 291], "framebufferobject": 237, "framework": [24, 107, 126, 134, 234, 271], "franc": 5, "francoi": [229, 312], "frank": [229, 312], "free": [44, 45, 93, 97, 98, 99, 100, 101, 103, 104, 105, 106, 122, 132, 137, 138, 140, 142, 166, 173, 176, 177, 179, 180, 227, 228, 229, 315], "freedom": 93, "freehand": [200, 203, 206, 211, 225], "freetyp": [161, 164, 167, 169, 175], "freq": 81, "freq_sim": 81, "frequenc": [29, 33], "frequent": 227, "friction": [80, 81, 83, 93, 129], "friction_vec": [81, 83], "friend": [142, 178, 179], "friendli": [112, 135, 260, 312], "from": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 15, 16, 17, 18, 19, 20, 21, 23, 24, 25, 26, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 58, 59, 60, 61, 63, 64, 65, 66, 67, 68, 70, 71, 72, 73, 74, 75, 76, 78, 79, 80, 81, 82, 83, 85, 86, 87, 88, 90, 93, 94, 96, 97, 98, 106, 107, 108, 110, 112, 116, 118, 119, 121, 124, 127, 129, 130, 133, 135, 136, 138, 140, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 154, 155, 158, 161, 167, 169, 171, 173, 175, 178, 179, 180, 181, 183, 184, 185, 187, 188, 190, 196, 197, 199, 201, 202, 204, 206, 213, 214, 217, 221, 223, 224, 225, 226, 229, 230, 236, 239, 243, 244, 246, 248, 249, 251, 252, 254, 255, 256, 257, 258, 259, 262, 264, 265, 266, 267, 268, 269, 270, 271, 273, 274, 275, 276, 277, 278, 280, 281, 282, 283, 284, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 298, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315], "front": 258, "frontend": 116, "frontfacecul": 159, "fruit": 170, "frustum": [224, 289, 296, 307], "frustum_actor": 273, "fs_dec": [71, 74, 273], "fs_impl": [71, 273], "fs_vars_dec": 74, "fsrc": 278, "fulfil": 93, "full": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 71, 72, 73, 74, 75, 76, 79, 80, 81, 82, 83, 86, 87, 88, 152, 185, 227, 242, 266, 273, 290, 297, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 314], "fulli": [27, 93, 97, 249, 271, 273, 274, 276], "fun": [17, 178, 179], "func": [279, 280, 289], "func_arg": 289, "func_call1": 290, "func_call2": 290, "function": [4, 5, 10, 14, 15, 18, 22, 23, 24, 26, 28, 29, 30, 31, 32, 33, 35, 36, 37, 38, 40, 45, 54, 55, 62, 65, 68, 71, 73, 74, 75, 81, 83, 89, 93, 94, 96, 97, 110, 117, 124, 129, 131, 140, 141, 146, 150, 156, 158, 162, 167, 169, 171, 172, 174, 176, 181, 182, 184, 188, 189, 190, 191, 193, 194, 195, 196, 197, 198, 201, 202, 204, 211, 213, 215, 216, 217, 220, 225, 226, 229, 234, 236, 237, 238, 239, 240, 241, 242, 244, 246, 249, 252, 253, 255, 256, 257, 258, 259, 262, 264, 265, 267, 268, 269, 270, 271, 273, 275, 276, 279, 280, 283, 286, 289, 290, 291, 292, 293, 294, 295, 302, 303, 304, 306, 307, 309, 310, 311, 312, 313, 314], "functool": [140, 264], "fundament": 246, "funtction": 15, "fur": [109, 134], "furi": [0, 1, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 35, 36, 37, 38, 39, 40, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 54, 55, 56, 57, 59, 61, 62, 63, 65, 66, 67, 68, 69, 71, 72, 73, 74, 75, 76, 77, 79, 80, 81, 82, 83, 84, 85, 89, 94, 96, 97, 105, 107, 108, 109, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 123, 124, 125, 126, 127, 128, 129, 131, 133, 134, 135, 136, 137, 139, 140, 141, 142, 145, 146, 154, 157, 160, 161, 164, 165, 168, 170, 171, 172, 173, 178, 179, 180, 181, 182, 183, 184, 186, 190, 200, 201, 206, 207, 217, 224, 225, 226, 227, 230, 232, 234, 240, 242, 245, 247, 249, 252, 253, 255, 256, 258, 265, 267, 269, 271, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 298, 302, 303, 304, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315], "further": [93, 118, 129, 133, 149, 234, 250, 254, 256, 263, 264, 269, 271, 276, 314], "furthermor": 236, "fury_actor": 11, "fury_sprit": 45, "fury_text": [55, 60], "furystreamcli": [86, 87, 148, 296], "furystreaminteract": [86, 148, 296], "futur": [127, 146, 148, 149, 152, 155, 158, 171, 183, 242, 255, 267, 269, 271, 276, 314], "fvtk": [24, 303], "fx": 36, "fxaa": 178, "fxaa_off": [295, 296], "fxaa_on": [295, 296], "fy": 36, "fz": 36, "g": [15, 24, 39, 93, 94, 227, 269, 271, 273, 274, 276, 278, 285, 286, 289, 294, 295, 314], "g14851c6a": 280, "g58ad5f7": 314, "g_constant": 15, "g_expon": 15, "gadian": 269, "gain": 264, "galaxi": 140, "galleri": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 71, 72, 73, 74, 75, 76, 79, 80, 81, 82, 83, 86, 87, 88, 89, 152, 173, 304, 313], "game": [71, 97, 179, 181], "gameplai": 180, "gamma": [118, 295], "gamma_correct": 295, "ganimtron": [138, 225, 309], "gap": [159, 197], "garbag": 276, "garyfallidi": [101, 103, 104, 106, 122, 132, 138, 166, 176, 229, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312], "gaussian": [178, 255, 258, 267], "gautam": [106, 229, 306, 312], "gave": [173, 178, 179, 180, 269], "gdscript": 180, "gearboxassi": 193, "gem": [258, 267], "gen_cent": 32, "gen_fac": [17, 289], "gener": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 71, 72, 73, 74, 75, 76, 79, 80, 81, 82, 83, 86, 87, 88, 89, 93, 96, 97, 117, 134, 141, 142, 144, 147, 148, 161, 165, 168, 170, 171, 172, 173, 175, 180, 182, 186, 190, 192, 195, 221, 226, 240, 243, 244, 247, 249, 253, 258, 259, 267, 269, 270, 271, 273, 275, 276, 278, 280, 281, 286, 289, 291, 294, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 314], "generalis": [156, 208], "generate_tmatrix": [281, 296], "genericcircularqueu": 296, "genericimagebuffermanag": [148, 296], "genericmultidimensionalbuff": 296, "genesi": 172, "geograph": [5, 36, 292], "geom_box": [80, 81, 82, 83], "geom_cylind": [81, 83], "geom_spher": [79, 80, 83, 93], "geometr": [17, 32, 51, 55, 71, 74, 225], "geometri": [27, 32, 63, 74, 75, 107, 109, 134, 195, 201, 222, 224, 226, 227, 269, 273, 289, 290, 312], "geometry_length": 36, "get": [6, 7, 8, 9, 11, 13, 14, 18, 21, 24, 25, 28, 31, 32, 37, 38, 40, 46, 53, 59, 71, 74, 79, 80, 82, 93, 96, 107, 108, 134, 142, 154, 173, 179, 180, 225, 226, 227, 230, 240, 246, 249, 252, 255, 258, 261, 264, 267, 268, 269, 273, 275, 276, 277, 280, 281, 283, 286, 288, 289, 291, 293, 294, 295, 306, 312], "get_acc_data": [281, 296], "get_accessor_data": 184, "get_actor_from_polydata": [4, 18, 296], "get_actor_from_polymapp": [76, 94, 296], "get_actor_from_primit": [17, 32, 296], "get_all_atomic_numb": 296, "get_all_atomic_posit": 296, "get_all_bond_ord": 296, "get_all_file_nam": [293, 296], "get_anim": [281, 296], "get_app": 296, "get_atomic_numb": 296, "get_atomic_posit": 296, "get_bond_ord": 296, "get_bound": 296, "get_bounding_box_s": 296, "get_buff_arrai": [281, 296], "get_camera": [295, 296], "get_cells_shap": [283, 296], "get_cmap": 296, "get_color": [275, 296], "get_current_fram": [148, 291, 296], "get_current_valu": [275, 296], "get_data": 312, "get_directory_nam": [293, 296], "get_event_loop": 88, "get_fdata": [14, 30, 39, 312], "get_file_nam": [293, 296], "get_foc": [275, 296], "get_fram": 38, "get_grid_cells_posit": 296, "get_info": [96, 296, 303], "get_joint_actor": [281, 296], "get_jpeg": [148, 291, 296], "get_keyfram": [275, 296], "get_lock": 148, "get_materi": [281, 296], "get_matrix_from_sampl": [281, 296], "get_morph_data": [281, 296], "get_next_timestamp": [62, 296], "get_opac": [275, 296], "get_orbit_period": 15, "get_orbital_posit": 15, "get_param": 28, "get_polydata_color": [18, 296], "get_polydata_field": 296, "get_polydata_lin": 296, "get_polydata_norm": 296, "get_polydata_primitives_count": 296, "get_polydata_tang": 296, "get_polydata_tcoord": 296, "get_polydata_triangl": [188, 296], "get_polydata_vertic": [18, 296], "get_polymapper_from_polydata": [76, 94, 296], "get_posit": [275, 296], "get_previous_timestamp": [62, 296], "get_prim": 296, "get_r": 118, "get_rot": [275, 296], "get_sampler_data": [281, 296], "get_scal": [275, 296], "get_skin_data": [281, 296], "get_skin_timelin": [217, 223], "get_spher": 30, "get_start_end": [291, 296], "get_textur": [281, 296], "get_time_tau": [62, 296], "get_timestamps_from_keyfram": [62, 296], "get_valu": [217, 275, 296], "get_values_from_keyfram": 296, "get_view_up": [275, 296], "get_xyz_coord": 296, "getbasepositionandorient": [79, 80, 81, 82, 83, 93, 127], "getbound": [273, 296], "getcent": [273, 296], "getconsum": 224, "getcontactpoint": 79, "getcontext": 240, "getdefaultencod": [278, 284, 290], "getdifferencefromquarternion": 93, "getdifferencequaternion": [80, 81, 82, 83, 93, 127], "geteulerfromquaternion": [79, 80, 81, 93], "geteventposit": 14, "getfboindex": [240, 243], "getinteractor": 45, "getinteractorstyl": 45, "getlength": [273, 296], "getlinkst": [81, 83, 93], "getmapp": [76, 290], "getmatrixfromquaternion": [80, 81, 82, 83, 93, 127], "getnumberofcolorattach": 243, "getnumjoint": [81, 83, 93], "getoutputport": 246, "getpointijk": 14, "getposit": [273, 296], "getposition2": 114, "getproperti": [17, 20, 74, 94], "getquaternionfromeul": 81, "getrenderwindow": [45, 246], "getsiz": [24, 30, 37], "getter": [143, 260, 263, 271, 302], "getvis": [273, 296], "gfa": [39, 270], "gha": 312, "gif": [112, 113, 115, 173, 213, 220, 226, 275, 312], "gigabyt": 180, "gil": [142, 154, 173], "gimbal": 93, "gimp": 184, "girlscript": 180, "gist": 169, "git": [96, 179, 288, 314], "github": [4, 19, 62, 96, 97, 98, 99, 100, 101, 103, 104, 105, 106, 122, 132, 137, 138, 148, 160, 166, 169, 176, 177, 178, 179, 184, 188, 227, 228, 229, 278, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 314], "github_stat": [302, 304, 305, 306, 307, 308, 309, 310, 311, 312], "github_tool": [303, 314], "githubusercont": [44, 45], "give": [73, 96, 142, 154, 157, 173, 175, 180, 206, 211, 218, 226, 227, 246, 250, 255, 268, 269, 270, 274, 276, 280, 292, 295, 306], "given": [14, 31, 38, 109, 126, 127, 136, 171, 178, 227, 238, 258, 267, 269, 273, 274, 275, 276, 277, 278, 280, 281, 284, 286, 290, 291, 292, 293, 294, 295, 312, 314], "gk": 267, "gk_": 267, "gl": [44, 45, 96, 97, 98, 99, 100, 101, 103, 104, 106, 122, 132, 134, 135, 138, 139, 145, 148, 154, 157, 160, 163, 166, 167, 169, 171, 172, 173, 174, 175, 176, 178, 179, 182, 183, 225, 226, 227, 229, 267, 269, 271, 295, 306, 309, 314], "gl_disable_blend": [31, 296], "gl_disable_depth": [31, 296], "gl_enable_blend": 296, "gl_enable_depth": [31, 296], "gl_fragcoord": 264, "gl_function": 31, "gl_get_current_st": 296, "gl_reset_blend": [31, 296], "gl_set_additive_blend": [31, 296], "gl_set_additive_blending_white_background": 296, "gl_set_multiplicative_blend": [31, 296], "gl_set_normal_blend": [31, 296], "gl_set_subtractive_blend": [31, 296], "gl_state": 295, "glamvelvetsofa": 193, "glanc": [178, 235, 257], "glass": 295, "glb": [193, 227], "glb2gltf": 193, "glgenframebuff": 240, "glimps": [129, 231], "glitch": 175, "global": [4, 15, 17, 20, 21, 24, 25, 26, 29, 30, 32, 33, 37, 40, 45, 52, 53, 54, 76, 79, 80, 81, 82, 83, 93, 146, 155, 187, 214, 227, 272, 276, 279], "global_cm": [30, 273, 274], "global_opac": [274, 294, 296], "globaltransformmatric": 204, "gloss": [73, 285], "glossi": 285, "glsl": [74, 111, 117, 178, 186, 189, 205, 226, 290], "glsl_code": 290, "glslang": 290, "gltf": [0, 1, 89, 97, 179, 181, 190, 198, 199, 201, 202, 204, 229, 275, 278, 296, 312, 313], "gltf2": 281, "gltf_obj": [6, 7, 8, 9, 13], "gltflib": 281, "gltfreader": 179, "gltftutori": 62, "gltftutorial_007_anim": 62, "glu": 276, "glyp": [175, 270], "glyph": [71, 104, 169, 232, 253, 256, 259, 265, 269, 270, 273, 289, 294, 304, 305, 312], "glyph3d": 296, "go": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 71, 72, 73, 74, 75, 76, 79, 80, 81, 82, 83, 86, 87, 88, 89, 94, 96, 97, 98, 99, 100, 101, 103, 104, 106, 107, 109, 111, 114, 121, 122, 132, 138, 141, 152, 161, 166, 169, 170, 176, 178, 180, 181, 185, 211, 229, 232, 238, 243, 244, 246, 250, 265, 267, 293, 295, 314], "goal": [10, 35, 36, 38, 64, 96, 140, 141, 144, 146, 150, 153, 165, 171, 172, 173, 225, 226, 227, 231, 234, 235, 242, 267, 271], "godot": [178, 180], "goe": [253, 293], "gohlk": 292, "gone": 152, "gonna": 240, "gooch": [128, 134], "good": [97, 119, 139, 142, 148, 149, 165, 168, 170, 173, 178, 180, 181, 211, 212, 218, 230, 235, 249, 252, 253, 255, 256, 258, 261, 264, 267, 315], "googl": [136, 142, 161, 180, 231, 310], "googleapi": 38, "gor": 302, "gordon": [179, 269], "gorro\u00f1o": [101, 106, 303, 306], "got": [111, 115, 140, 141, 152, 169, 179, 181, 186, 197, 201, 212, 214, 215, 219, 222, 231, 232, 240, 255, 256, 258, 267, 270, 288], "gottipati": [106, 306], "gouraud": 285, "gpu": [97, 134, 142, 146, 173, 178, 186, 205, 226, 258, 267, 273, 310], "grab": [180, 206, 293], "gradient": 71, "graduat": 249, "grai": 270, "grammat": 312, "grant": 175, "graph": [105, 137, 139, 151, 154, 173, 177, 228, 267, 310], "graphic": [72, 97, 135, 173, 178, 179, 230, 232, 237, 240, 267, 269, 274], "grate": [156, 231], "gravit": 15, "graviti": [15, 80, 81, 82, 83, 135, 178], "gravity_i": 93, "gravity_x": 93, "gravity_z": 93, "grayscal": [255, 267, 273], "grdevic": 276, "great": [147, 180, 182, 185, 218, 230, 232], "greater": [88, 246, 251, 270, 280, 291, 295], "greatli": 314, "greedi": 276, "green": [17, 39, 46, 47, 50, 53, 173, 273, 293], "greener": 246, "greet": 180, "grei": [218, 286], "grid": [14, 25, 27, 28, 30, 38, 49, 146, 155, 161, 170, 172, 269, 270, 274, 283, 293, 294, 296, 303, 304], "grid_shap": 30, "grid_ui": [25, 28], "gridlayout": [49, 140, 143, 149, 152, 155, 169, 171, 296, 312], "gridui": [25, 28, 101, 159, 259, 296, 303, 312], "ground": 32, "group": [151, 179, 184, 194, 211, 216, 218, 225, 226, 273, 275, 278, 290, 302], "grow": [97, 136, 226], "grown": 133, "gs_prog": 273, "gsoc": [125, 126, 130, 131, 133, 134, 135, 136, 139, 163, 164, 165, 170, 171, 172, 173, 178, 184, 226, 230, 240, 247, 249, 252, 253, 255, 262, 264, 265, 268, 302, 308, 309, 310, 311, 312], "gsoc22": [180, 226], "gssoc": 180, "gtab": 39, "gtv": 38, "guaj": [104, 106, 132, 138, 166, 176, 229, 305, 306, 308, 309, 310, 311, 312], "guarante": [258, 267], "guardian": 140, "guess": [152, 178, 249], "gui": [80, 82, 93, 140, 143, 146, 149, 152, 155, 158, 161, 164, 167, 169, 180, 275], "guid": [72, 73, 254], "guidanc": [180, 243, 266], "guidelin": [230, 232], "guillaum": [103, 304], "gupta": [166, 310], "gurdit": [166, 310], "gz": [14, 28, 30, 295], "h": [34, 148, 269, 273, 282, 286, 291], "ha": [12, 14, 17, 20, 26, 31, 36, 44, 45, 54, 60, 62, 67, 74, 93, 94, 96, 109, 117, 119, 133, 140, 142, 144, 148, 149, 150, 151, 152, 153, 154, 155, 161, 170, 171, 175, 178, 180, 184, 193, 202, 212, 220, 221, 224, 225, 226, 227, 230, 234, 246, 255, 258, 259, 263, 264, 269, 271, 273, 275, 276, 279, 280, 289, 290, 293, 294, 295, 303, 312], "hackathon": 179, "hacktoberfest": 180, "hactoberfest": 179, "had": [107, 108, 109, 110, 114, 116, 118, 121, 127, 129, 130, 133, 135, 140, 141, 142, 143, 146, 147, 148, 149, 152, 155, 158, 161, 165, 169, 170, 178, 179, 180, 181, 182, 183, 184, 187, 193, 194, 196, 197, 200, 202, 204, 205, 207, 208, 209, 211, 212, 214, 215, 218, 221, 230, 231, 232, 243, 244, 245, 249, 252, 253, 255, 257, 258, 261, 265, 266, 267, 270, 271], "hadn": 179, "hair": 134, "haitz": [101, 106, 303, 306], "half": [80, 82, 178, 180], "halfext": [80, 81, 82, 83], "halv": 32, "hamza": [229, 312], "hand": [134, 140, 169, 171, 179, 247, 255], "handi": 83, "handl": [37, 54, 60, 61, 67, 74, 93, 114, 116, 118, 169, 180, 181, 184, 191, 193, 194, 203, 206, 222, 225, 226, 259, 263, 264, 266, 267, 269, 270, 271, 275, 293, 296, 305, 312], "handle_charact": [293, 296], "handle_ev": [293, 296], "handle_inner_radiu": 293, "handle_mouse_click": [293, 296], "handle_mouse_drag": [293, 296], "handle_move_callback": [293, 296], "handle_outer_radiu": 293, "handle_release_callback": [293, 296], "handle_sid": [54, 293], "handler": [37, 278, 284, 290], "hang": 307, "hangout": 142, "happen": [4, 15, 21, 27, 39, 148, 154, 173, 197, 200, 206, 215, 217, 225, 234, 237, 243, 246, 252, 270, 295, 314], "happi": [98, 99, 100, 101, 103, 104, 106, 122, 132, 138, 166, 176, 178, 179, 180, 229, 255], "har": 97, "haran2001": [138, 309], "hard": [135, 149, 151, 175, 178, 197, 210, 212, 213], "hardcod": 32, "harder": [215, 237], "hardest": 142, "hardi": [232, 269], "hardi_img": 39, "hardwar": 134, "hardwareselector": 296, "hari": [229, 302, 312], "hariharan": [166, 310], "harmon": [30, 113, 125, 134, 253, 256, 259, 262, 269, 273], "hart": [71, 74], "hart1996": [71, 74], "harvard": 178, "has_bord": [158, 293], "has_playback_panel": [275, 296], "hash": [276, 288, 314], "hash_from": 288, "hash_str": 288, "hashtag": [154, 173], "hasn": 180, "hatch": [229, 312], "have": [2, 3, 14, 16, 24, 27, 28, 30, 32, 37, 40, 43, 46, 50, 51, 52, 54, 55, 56, 62, 63, 71, 72, 74, 75, 76, 86, 88, 93, 96, 97, 107, 108, 110, 112, 113, 114, 115, 116, 119, 121, 123, 124, 125, 129, 130, 133, 135, 136, 139, 140, 141, 142, 143, 144, 148, 149, 152, 157, 161, 164, 165, 167, 169, 171, 173, 175, 178, 180, 181, 183, 189, 192, 193, 205, 213, 215, 217, 218, 220, 221, 222, 225, 226, 227, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 246, 249, 250, 252, 253, 255, 256, 258, 259, 261, 262, 264, 265, 267, 268, 269, 270, 271, 273, 274, 275, 276, 279, 280, 283, 286, 288, 290, 292, 293, 294, 304, 306, 314], "have_amodul": 279, "have_bmodul": 279, "have_tiled_vert": 289, "haven": [118, 152, 258, 261, 267], "hd": 173, "he": [130, 179, 180, 181, 225, 246], "head": [107, 108, 148, 291, 296, 309], "head_tail_buff": [86, 291], "head_tail_buffer_nam": [86, 291], "header": 309, "headless": 96, "headquart": 4, "heard": [178, 179, 180], "heavi": [171, 205, 258, 273, 290], "hei": [107, 109, 111, 113, 115, 117, 120, 123, 125, 126, 128, 131, 136], "height": [3, 17, 29, 33, 46, 52, 63, 65, 74, 81, 83, 93, 94, 110, 114, 121, 135, 148, 155, 172, 178, 234, 237, 243, 255, 266, 273, 275, 283, 289, 291, 293, 294, 295, 296], "heightvsoutput": 74, "helic": [33, 159, 172, 286], "helica": 312, "helio": [145, 154, 157, 160, 173], "heliosnetwork": 173, "heliospr": 151, "helix": 286, "hello": [76, 94, 108, 110, 112, 114, 116, 118, 119, 121, 124, 127, 129, 130, 133, 179, 180, 230, 231, 232, 237, 240, 246, 249, 252, 255, 258, 261, 264, 268, 273, 295], "help": [12, 15, 31, 37, 53, 62, 74, 81, 93, 108, 112, 118, 119, 124, 130, 131, 134, 135, 136, 139, 140, 147, 156, 163, 164, 167, 170, 174, 180, 181, 197, 201, 206, 225, 226, 240, 242, 254, 267, 269, 271, 287, 292, 293, 314], "helper": [28, 37, 62, 83, 152, 201, 216, 225, 252, 257, 296, 312], "henc": [74, 93, 116, 119, 129, 135, 198, 275], "heptagon": 34, "here": [3, 9, 10, 11, 12, 13, 14, 15, 17, 18, 21, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 39, 43, 49, 54, 60, 62, 64, 74, 75, 80, 82, 93, 94, 98, 99, 100, 101, 103, 104, 106, 109, 112, 114, 116, 118, 119, 121, 122, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 138, 142, 146, 148, 154, 166, 167, 171, 172, 173, 176, 180, 184, 185, 190, 193, 206, 208, 209, 212, 217, 218, 219, 225, 227, 229, 231, 233, 234, 235, 237, 243, 244, 246, 248, 253, 255, 256, 258, 260, 262, 264, 265, 269, 271, 276, 277, 292, 314], "heteroatom": 286, "heurist": 36, "hex_to_rgb": 296, "hexadecim": [276, 306, 307], "hexagon": [34, 129], "hexcod": 276, "hh": 293, "hi": [67, 133, 139, 140, 141, 142, 154, 179], "hid": 267, "hidden": 255, "hide": [54, 55, 149, 220, 227, 275, 293, 295, 296, 303], "hide_actor": 53, "hide_all_exampl": [54, 55], "hierarch": [57, 58, 65, 89, 171, 207, 213, 219, 226, 227, 275, 312, 313], "hierarchi": [93, 219, 227], "high": [25, 29, 30, 71, 97, 142, 201, 269, 273, 280, 282, 283, 295], "high_rang": [274, 296], "higher": [14, 21, 25, 29, 125, 258, 269, 273, 275, 280, 290, 293], "highli": [113, 116, 118, 149], "highlight": [98, 99, 100, 101, 103, 104, 106, 122, 132, 138, 166, 176, 215, 216, 225, 229, 242, 311, 314], "hihgli": 161, "him": [179, 181], "hinder": [140, 245], "hing": 83, "hint": [255, 261, 264, 268], "histori": 314, "hit": 178, "hold": [14, 24, 63, 71, 148, 149, 192, 194, 205, 207, 225, 255, 293, 295], "holder": 315, "holi": 276, "home": [4, 97, 245, 278, 312], "home3": 54, "homeomorph": 276, "homogen": [29, 276, 292, 294], "honor": 303, "honour": 230, "hood": [115, 117], "hook": [52, 149, 198, 226, 312], "hope": [97, 243, 244, 249, 253, 258, 265], "hopefulli": [110, 112, 149, 152, 155, 158, 161, 167, 169, 171, 253, 262], "hor_line_slider_text_bottom": 56, "hor_line_slider_text_top": 56, "horizon": 302, "horizont": [53, 54, 56, 135, 164, 167, 169, 171, 176, 273, 283, 293, 295, 311], "horizontallayout": 296, "hors": 178, "host": [173, 291], "hot": 25, "hour": [145, 180, 246], "hous": [139, 178], "hover": 12, "hover_callback": 12, "how": [0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 24, 25, 27, 30, 31, 32, 34, 36, 37, 38, 41, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 61, 64, 67, 69, 71, 72, 73, 74, 75, 76, 77, 79, 80, 81, 82, 83, 84, 86, 89, 93, 96, 107, 118, 127, 131, 135, 140, 141, 144, 146, 147, 148, 150, 151, 152, 157, 163, 165, 169, 170, 173, 175, 178, 179, 180, 181, 183, 184, 185, 186, 190, 192, 194, 195, 198, 201, 202, 205, 206, 207, 209, 213, 217, 218, 221, 225, 226, 227, 230, 232, 234, 235, 238, 239, 240, 243, 247, 249, 250, 252, 253, 259, 262, 265, 267, 269, 270, 271, 276, 285, 295, 303, 310, 311, 312, 314], "howev": [14, 17, 24, 27, 28, 30, 71, 86, 88, 111, 113, 117, 134, 142, 145, 154, 175, 184, 188, 193, 212, 214, 227, 234, 239, 245, 251, 257, 258, 261, 263, 264, 265, 266, 267, 269, 270, 271, 277, 295, 312, 315], "hsv": [14, 61, 186, 192, 226, 275, 276], "hsv2rgb": 296, "hsv_color_interpol": [61, 296], "hsv_text": 61, "htc": 312, "html": [62, 86, 96, 142, 148, 180, 290, 292, 314], "http": [38, 44, 45, 62, 73, 86, 96, 98, 99, 100, 101, 103, 104, 106, 122, 132, 135, 138, 142, 145, 148, 160, 166, 169, 173, 176, 229, 276, 277, 290, 291, 292, 295, 305, 314], "htttp": 86, "hue": 27, "hue_rang": [14, 27, 276], "huge": [106, 122, 142, 180, 306, 307], "human": [178, 276], "hundr": [154, 173, 174, 175, 226], "hybrid": 286, "hypercub": [22, 23, 89, 313], "hypotenus": 292, "i": [2, 3, 4, 5, 10, 11, 12, 14, 15, 16, 17, 18, 21, 22, 24, 25, 26, 27, 28, 29, 30, 32, 33, 34, 35, 36, 37, 38, 39, 40, 46, 47, 49, 53, 54, 56, 59, 60, 61, 62, 66, 68, 71, 72, 73, 74, 75, 76, 80, 82, 83, 86, 87, 88, 89, 93, 94, 96, 97, 98, 99, 100, 101, 103, 104, 105, 106, 122, 132, 134, 135, 137, 138, 142, 148, 166, 171, 172, 173, 176, 177, 179, 180, 225, 226, 227, 228, 229, 230, 231, 234, 237, 240, 246, 252, 255, 261, 267, 269, 271, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 288, 289, 290, 291, 292, 293, 294, 295, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 314, 315], "i8": 18, "i_ren": [15, 43, 45, 54, 293], "ibrahimani": [106, 306], "icar": 277, "icomoon": 278, "icon": [43, 44, 45, 46, 47, 48, 50, 51, 52, 53, 54, 55, 56, 164, 171, 183, 200, 225, 233, 271, 278, 293, 302, 306, 309, 312], "icon_fil": [43, 54], "icon_fnam": [15, 43, 54, 293], "icon_nam": 293, "iconnam": 293, "icosahedron": [289, 306], "icosahedron_mesh": 289, "icosahedron_vertic": 289, "id": [11, 93, 226, 273, 293, 294, 312], "id_mean": 290, "id_observ": [31, 290], "idea": [18, 97, 105, 109, 113, 117, 126, 129, 130, 134, 135, 137, 148, 154, 170, 177, 178, 179, 180, 181, 183, 185, 221, 228, 231, 235, 241, 246, 247, 250, 252, 256, 261, 264, 265, 268, 269, 274, 307], "ideal": [32, 109, 146, 249, 252, 255, 258, 267], "ident": [2, 3, 217, 273, 281], "identifi": [24, 118, 148, 218, 225, 233, 239, 241, 245, 257, 263, 266, 271], "idtypearrai": 296, "idx": [32, 45, 80, 82, 83, 291], "ie": [180, 182, 214, 281, 294], "iec": 276, "ieee": 269, "ifram": 291, "ignor": [161, 273, 283, 303], "iit": 179, "illumin": [71, 74, 269, 276], "illustr": [72, 250, 276], "im": 295, "imag": [4, 5, 14, 19, 24, 27, 28, 32, 37, 38, 45, 105, 109, 137, 142, 143, 148, 151, 152, 157, 167, 169, 171, 173, 177, 184, 193, 227, 228, 230, 244, 246, 255, 259, 267, 269, 270, 271, 273, 276, 278, 281, 282, 291, 293, 294, 295, 296, 302, 303, 306, 310, 312], "image_actor": [24, 273], "image_actor_i": 24, "image_actor_x": 24, "image_actor_z": 24, "image_buff": [86, 87, 291], "image_buffer_manag": 291, "image_buffer_nam": [86, 291], "image_buffer_repr": 148, "image_buffers_nam": 291, "image_encod": 148, "image_path": [44, 45, 293], "image_scal": [44, 45, 293], "imageactor": [273, 296], "imagebuffermanag": [148, 291], "imagebuffermang": 148, "imagecontainer2d": [54, 296, 302, 310], "imagedata": [293, 296], "imageflip": 296, "imageio": 282, "imagemanag": 291, "imagemaptocolor": 296, "imagereader2factori": 296, "imagereslic": 296, "imageri": 97, "imagesourc": 206, "imagin": 292, "imaginari": [40, 276], "img": [14, 54, 293, 296], "img_manag": [86, 87], "img_path": [54, 293], "img_url": [44, 45], "imit": 209, "immedi": [111, 237, 242], "immens": [133, 136, 254], "immers": [126, 134, 180, 276], "impact": [71, 248], "impl": 270, "impl_cod": [74, 76, 290], "implement": [28, 32, 71, 73, 74, 93, 107, 108, 109, 110, 111, 113, 114, 115, 116, 117, 118, 119, 120, 121, 124, 128, 130, 131, 133, 134, 135, 136, 140, 141, 142, 144, 145, 146, 147, 148, 149, 150, 155, 156, 158, 159, 161, 168, 170, 172, 173, 175, 178, 179, 180, 182, 192, 194, 197, 198, 200, 202, 203, 205, 206, 210, 213, 214, 216, 218, 219, 221, 222, 223, 226, 227, 230, 232, 233, 234, 236, 237, 238, 242, 243, 244, 246, 248, 249, 252, 253, 255, 256, 258, 259, 261, 266, 267, 271, 273, 276, 290, 291, 292, 297, 302, 307, 310, 312], "impli": [276, 315], "implicit": [71, 74, 234], "import": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 71, 72, 73, 74, 75, 76, 79, 80, 81, 82, 83, 86, 87, 88, 94, 96, 142, 146, 148, 149, 152, 155, 171, 181, 193, 196, 217, 232, 243, 249, 252, 255, 258, 261, 267, 268, 273, 276, 280, 289, 290, 292, 294, 295, 311, 312, 314], "import_fury_shad": [71, 74, 296], "importerror": 39, "imposs": [175, 226], "impostor": [69, 70, 89, 145, 173, 201, 313], "impress": 217, "improp": [251, 266], "improv": [35, 71, 97, 106, 107, 117, 122, 125, 127, 134, 135, 138, 139, 142, 144, 145, 147, 148, 151, 154, 157, 158, 163, 173, 174, 176, 179, 180, 194, 198, 205, 207, 210, 225, 226, 227, 229, 230, 232, 233, 235, 242, 245, 246, 248, 256, 260, 267, 269, 295, 304, 306, 307, 309, 311, 312, 314], "in_control_point": 59, "in_cp": [59, 275], "in_progress": [215, 225, 312], "in_tan": 62, "in_tang": [62, 275], "inabl": 147, "inaccur": 80, "inact": 293, "inactive_color": 293, "inbuilt": 131, "inch": [277, 282, 295], "incident": [314, 315], "inclin": 292, "includ": [15, 43, 44, 45, 46, 47, 50, 51, 52, 53, 54, 55, 56, 71, 73, 76, 94, 97, 105, 107, 108, 115, 125, 134, 137, 140, 141, 143, 144, 158, 164, 167, 176, 177, 189, 226, 228, 236, 239, 242, 245, 249, 257, 267, 269, 271, 280, 295, 309, 311, 314, 315], "include_first": 275, "include_last": 275, "inclus": 274, "incomplet": [62, 119, 129, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312], "inconsist": [114, 239, 248], "incorpor": [262, 269], "incorrect": 269, "incre_tim": [29, 33], "increas": [10, 11, 12, 26, 27, 36, 40, 71, 74, 80, 81, 82, 83, 93, 101, 103, 104, 106, 116, 122, 132, 142, 166, 221, 294, 295, 303, 304, 305, 306, 307, 308, 309, 310], "increment": [25, 29, 33, 266, 293, 296], "increment_callback": [293, 296], "inde": 234, "indent": 158, "independ": [151, 225, 226, 239, 242, 246, 248, 271, 303], "index": [11, 37, 54, 55, 72, 81, 83, 93, 96, 148, 176, 193, 227, 243, 281, 285, 286, 293, 311], "index2categori": [35, 36, 87], "index_info": 291, "india": [107, 108], "indian": [141, 179, 180], "indiana": 4, "indic": [5, 28, 35, 36, 81, 83, 93, 131, 188, 190, 274, 275, 278, 281, 286, 287, 289, 293, 294], "indigo": [47, 53], "indirect": 315, "indirectli": [155, 248, 257], "individu": [25, 28, 74, 80, 82, 83, 93, 118, 124, 127, 143, 146, 152, 171, 178, 181, 183, 189, 215, 221, 225, 267, 269, 270, 271, 273, 274, 293, 312], "industri": 179, "inerti": 93, "inertia": 93, "inertial_orn": 93, "inertial_po": 93, "inevit": 226, "infer": 246, "inferno": [255, 267, 273, 274, 276], "infin": 278, "infinit": [32, 171], "influenc": 33, "info": [11, 12, 105, 137, 144, 150, 154, 177, 224, 228, 314], "info_buff": [86, 87, 154, 291], "info_buffer_nam": [86, 291], "info_buffer_repr": 148, "info_buffer_s": 148, "inform": [12, 15, 37, 79, 81, 83, 93, 94, 96, 127, 148, 150, 154, 173, 180, 223, 225, 227, 235, 242, 253, 256, 258, 265, 269, 270, 271, 275, 276, 278, 286, 290, 291, 294, 295, 309], "informationinterdisciplinari": 278, "inher": [269, 271], "inherit": [119, 144, 167, 169, 239], "init": [272, 293, 296], "init_planet": 15, "initi": [5, 6, 7, 9, 10, 13, 15, 24, 25, 26, 29, 31, 33, 38, 39, 40, 45, 54, 59, 61, 62, 63, 64, 65, 67, 68, 80, 82, 83, 94, 98, 109, 113, 114, 115, 140, 152, 158, 171, 172, 178, 194, 205, 226, 233, 243, 254, 255, 257, 258, 260, 263, 264, 266, 267, 269, 271, 276, 283, 287, 291, 292, 293, 295, 296, 298, 306, 312], "initial_lin": 40, "initial_v": [52, 293], "initial_valu": [24, 30, 37, 53, 54, 56, 293], "initial_veloc": 33, "initial_vert": 40, "initial_vertic": [21, 25, 26, 29, 33], "initial_vertices2": 29, "initialis": [9, 13, 26, 43, 44, 45, 46, 50, 51, 52, 54, 55, 56, 75, 76, 281, 306], "initialise_skin": 13, "initialize_scen": 38, "initialize_skin": [13, 281, 296], "inject": 81, "inner": [51, 54, 273, 293], "inner_radiu": [51, 54, 293, 296], "inp": 294, "input": [24, 27, 37, 62, 68, 71, 74, 198, 202, 263, 273, 274, 276, 280, 293, 294, 295], "input_arrai": 294, "inr": 180, "insensit": 286, "insert": [27, 40, 290, 293], "insid": [20, 21, 26, 30, 74, 86, 139, 146, 148, 149, 152, 154, 163, 169, 171, 173, 175, 189, 192, 199, 201, 206, 220, 227, 230, 234, 240, 243, 249, 252, 253, 255, 264, 267, 269, 270, 275, 291, 295, 312], "insight": [154, 173, 271], "inspect_scen": [281, 296], "inspir": [161, 178, 179, 180], "instal": [86, 88, 97, 98, 99, 100, 101, 103, 104, 106, 122, 132, 138, 154, 166, 176, 197, 229, 276, 303, 304, 306, 307, 310, 311, 312, 314], "instanc": [31, 64, 93, 134, 142, 149, 154, 155, 173, 175, 203, 266, 271, 291, 293, 295], "instanti": 276, "instead": [17, 19, 32, 60, 64, 86, 114, 127, 145, 149, 152, 167, 178, 184, 185, 192, 197, 198, 201, 202, 205, 207, 209, 210, 213, 214, 218, 220, 221, 222, 226, 256, 270, 271, 275, 280, 291, 295], "institut": [108, 141, 179], "instruct": [71, 181, 234, 255, 267, 304, 307, 312], "instrument": 286, "int": [11, 12, 21, 24, 25, 30, 35, 36, 38, 45, 80, 81, 82, 83, 87, 93, 148, 184, 193, 197, 267, 273, 275, 276, 277, 278, 280, 281, 282, 283, 286, 287, 289, 290, 291, 293, 294, 295], "int16": [83, 276], "int64": 18, "int8": [80, 82], "int_": 276, "intact": 135, "integ": [43, 54, 197, 267, 273, 276, 286, 293], "integr": [97, 108, 114, 116, 124, 134, 135, 136, 145, 151, 173, 176, 179, 184, 201, 205, 206, 211, 218, 227, 229, 240, 257, 260, 263, 267, 271, 299, 309, 311, 312], "intel": 173, "intemporarydirectori": 45, "intend": [9, 13, 28, 74, 169, 191, 202, 204, 206, 212, 215, 235, 269, 271, 273, 310], "intens": [178, 258, 261, 264, 267, 268, 285], "inter": [154, 175], "interact": [2, 3, 6, 7, 8, 9, 10, 11, 12, 13, 14, 16, 19, 21, 22, 23, 25, 27, 28, 29, 30, 31, 32, 34, 35, 39, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 71, 72, 73, 74, 75, 76, 79, 80, 81, 82, 83, 84, 85, 87, 88, 89, 97, 107, 108, 112, 142, 148, 154, 159, 173, 182, 191, 198, 225, 255, 276, 291, 293, 295, 302, 303, 313], "interaction_callback": 296, "interactivi": 35, "interactor": [4, 5, 15, 17, 98, 152, 155, 243, 252, 255, 287, 295, 298], "interactor_styl": 295, "interactoreventrecord": 296, "interactorstyl": 296, "interactorstyleimag": 296, "interactorstyletrackballactor": 296, "interactorstyletrackballcamera": 296, "interactorstyleus": 296, "interatom": [147, 286], "interconnect": 71, "interdisciplinari": [22, 23, 89, 313], "interest": [28, 32, 72, 73, 105, 126, 137, 143, 149, 150, 167, 177, 179, 226, 228, 234, 246, 249, 258, 272], "interestingli": 146, "interfac": [4, 5, 15, 17, 24, 42, 97, 108, 135, 171, 194, 225, 230, 233, 237, 271, 276, 295, 313], "interior": 178, "interlac": 295, "intern": [69, 89, 129, 169, 180, 191, 212, 220, 225, 269, 274], "internet": [139, 148, 154, 173, 178], "interp": 273, "interpol": [14, 35, 36, 57, 58, 60, 64, 68, 72, 89, 172, 178, 181, 195, 198, 199, 202, 205, 208, 212, 214, 224, 226, 273, 276, 281, 285, 294, 296, 312, 313], "interpolat": 275, "interpolate_on": 282, "interpolated_valu": 62, "interpolateon": 200, "interpolationtest": [7, 193], "interpolationvalu": 62, "interpret": [72, 73, 133, 154, 173, 276], "interrupt": 315, "intersect": 74, "interv": [38, 93, 148, 242, 255, 291], "interval_tim": 291, "intervaltim": 296, "intervaltimerthread": 296, "intervent": 312, "interview": 180, "intimid": 168, "intric": [243, 266], "intrigu": 147, "introduc": [73, 179, 236, 242, 248, 260, 263, 271, 290], "introduct": [57, 58, 89, 179, 226, 313], "introductori": [140, 213, 224], "intuit": 73, "inv": [24, 27], "inv_bind_matrix": 281, "invalid": 263, "invas": 269, "invers": [24, 178, 212, 281], "inversebindmatrix": 212, "inversebindpos": 219, "invert": [214, 306, 311, 312], "invertbindmatric": 204, "invest": [258, 261], "investig": [194, 197, 200, 204, 222, 230, 233, 234, 236, 239, 251, 267, 271, 277, 312], "invis": [46, 53], "invok": [140, 149, 152, 175, 191, 222, 273, 291], "involv": [97, 107, 115, 117, 125, 128, 134, 147, 171, 178, 230, 233, 239, 240, 243, 246, 260, 266, 267, 271], "io": [4, 5, 15, 18, 19, 28, 37, 45, 76, 94, 160, 171, 173, 193, 296, 306, 310], "ior": [37, 72], "ior_param": 72, "iorp": 72, "ipc": [157, 173, 174, 175], "ipclayout": [157, 174], "ipynb": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 71, 72, 73, 74, 75, 76, 79, 80, 81, 82, 83, 86, 87, 88, 154], "iren": [11, 12, 14, 175, 287, 291, 293, 295, 296], "iren_callback": 295, "iresolut": 76, "iridescencedielectricspher": 193, "iridescencelamp": 193, "iridescencemetallicspher": 193, "iridescencesuzann": 193, "iridescentdishwithol": 193, "irrad": 214, "irrespect": 114, "is_bad_vers": 296, "is_coord": 294, "is_don": [10, 295, 296], "is_dragg": 293, "is_evalu": [65, 68, 275], "is_hetatm": 286, "is_inside_scene_at": [275, 296], "is_interpolat": [275, 296], "is_joint": 281, "is_rang": [274, 296], "is_select": [293, 296], "is_ui": [161, 296], "is_unlock": [291, 296], "isfram": 38, "isinst": 38, "ismrm": [269, 274], "isn": [48, 116, 179, 191, 221, 249, 267], "isotrop": [29, 285], "issu": [24, 30, 96, 97, 108, 110, 112, 113, 114, 116, 118, 119, 120, 121, 123, 124, 126, 127, 128, 129, 130, 133, 134, 135, 139, 142, 143, 149, 152, 154, 161, 173, 175, 179, 180, 181, 182, 184, 185, 186, 188, 193, 194, 197, 201, 202, 204, 205, 207, 209, 210, 213, 215, 218, 219, 220, 222, 225, 226, 233, 234, 237, 239, 242, 243, 245, 248, 249, 251, 252, 254, 256, 257, 258, 259, 262, 263, 264, 266, 267, 268, 269, 270, 271, 280, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 314], "issue38119": [145, 291], "istyl": 293, "ital": [24, 30, 273, 293, 296], "italicis": 293, "item": [30, 46, 47, 53, 59, 112, 263, 266, 271, 273, 275, 276, 293, 296], "items": [276, 296], "iter": [25, 36, 38, 40, 80, 81, 82, 93, 171, 252, 276, 291, 292], "iterationcount": 36, "itertool": [4, 5, 15, 17, 20, 21, 25, 28, 29, 31, 33, 40, 79, 80, 81, 82, 83, 93], "its": [5, 10, 14, 15, 21, 24, 27, 30, 46, 47, 50, 60, 63, 68, 74, 80, 82, 93, 96, 110, 114, 118, 121, 124, 129, 130, 140, 141, 147, 149, 152, 155, 161, 179, 180, 182, 194, 197, 210, 212, 219, 221, 226, 234, 235, 236, 237, 239, 241, 242, 243, 244, 246, 247, 248, 249, 250, 252, 255, 258, 261, 266, 267, 269, 270, 271, 273, 274, 275, 276, 280, 290, 293, 295, 315], "itself": [15, 59, 63, 71, 146, 149, 152, 171, 222, 225, 234, 237, 239, 264], "itsopen": 135, "j": [14, 21, 72, 73, 80, 81, 83, 165, 166, 180, 269, 271, 274, 286, 291, 310], "jain": [106, 306], "javascript": 180, "javier": [104, 106, 132, 138, 166, 176, 189, 201, 229, 305, 306, 308, 309, 310, 311, 312], "jean": 165, "jet": 276, "jhalak": [166, 310], "joao": 302, "joaodellagli": 249, "job": [146, 246, 267], "john": [71, 74], "johni": [229, 312], "join": [10, 14, 35, 36, 45, 71, 74, 87, 94, 98, 99, 100, 101, 103, 104, 105, 106, 122, 132, 137, 138, 166, 176, 177, 179, 225, 228, 229], "join_matric": 281, "joint": [65, 81, 83, 129, 135, 214, 269, 281], "joint_1": 65, "joint_2": 65, "joint_fix": [81, 83], "joint_frict": [81, 83], "joint_matric": 281, "joint_nod": 281, "joint_spher": [81, 83], "jointchildframeorient": 81, "jointtyp": [81, 83, 93], "jon": [101, 106, 303, 306], "joss": 310, "journal": [22, 23, 89, 269, 274, 278, 310, 313], "journal_network": 35, "journei": [135, 225, 226, 227, 230, 231, 255, 271, 312], "jo\u00e3o": 267, "jpeg": [19, 278, 282, 291, 293], "jpegread": 296, "jpegwrit": 296, "jpg": [4, 5, 15, 19, 278, 282, 293], "json": [184, 188, 190, 227, 306], "juli": [267, 308], "jump": [118, 178, 276], "jun": 148, "jupit": 15, "jupiter_actor": 15, "jupyt": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 71, 72, 73, 74, 75, 76, 79, 80, 81, 82, 83, 86, 87, 88, 89, 97, 145, 154, 173, 291], "just": [27, 31, 32, 40, 54, 74, 97, 142, 143, 146, 148, 155, 158, 173, 178, 180, 184, 187, 191, 208, 211, 218, 221, 222, 225, 234, 235, 237, 243, 258, 262, 265, 267, 275, 279, 290, 291, 293, 294, 314], "justif": [24, 30, 47, 53, 248, 271, 273, 293, 296, 302, 311], "justifi": [248, 269], "justificaiton": 271, "k": [14, 29, 32, 67, 80, 83, 96, 98, 99, 100, 101, 103, 104, 105, 106, 122, 132, 137, 138, 166, 176, 177, 228, 229, 258, 273, 274, 292, 294], "katz": [166, 310], "kde": [230, 246, 249, 252, 255, 258, 261, 264, 267, 302], "kde_actor": [255, 264], "kde_effect": [264, 267], "keep": [12, 25, 26, 29, 54, 82, 83, 93, 96, 119, 127, 129, 135, 156, 178, 180, 182, 200, 202, 205, 215, 221, 227, 232, 235, 238, 240, 244, 247, 255, 262, 273, 290, 295, 312, 314], "keep_default": 290, "kei": [12, 15, 24, 32, 35, 36, 46, 47, 53, 64, 66, 72, 73, 87, 148, 183, 194, 225, 233, 267, 273, 275, 281, 292, 293], "kept": [129, 179, 221, 226], "kernel": [230, 234, 246, 255, 258, 267], "kevin": [103, 304], "key_char": 293, "key_frames_bezi": 275, "key_frames_simpl": 275, "key_press": [293, 296], "key_press_callback": [293, 296], "keyboard": [183, 293], "keyfram": [57, 58, 89, 178, 184, 189, 192, 195, 199, 201, 202, 205, 207, 224, 226, 275, 312, 313], "keyframe_1": 59, "keyframe_2": 59, "keyframe_data": 62, "keyword": [276, 280, 292, 306, 312], "kharsan": [229, 312], "khrono": [62, 179, 184, 188, 196, 230, 278, 290], "khronoo": 9, "khronoosgroup": 193, "khronosgroup": [227, 278, 290], "kill": [86, 145, 148], "kind": [142, 154, 172, 173, 180, 206, 211, 230, 249, 267, 269, 293], "kindli": [25, 29], "kindlmann": 269, "knew": [27, 178, 179], "know": [71, 93, 97, 140, 142, 179, 180, 181, 183, 227, 230, 232, 238, 255, 265, 267], "known": [71, 172, 180, 225, 232, 267], "koai": [269, 274], "koch": 32, "kolkata": 108, "kotlin": 179, "koudoro": [101, 103, 104, 106, 122, 132, 138, 142, 166, 176, 184, 229, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312], "kuramoto": [154, 173], "kwarg": [273, 275, 280, 291, 292], "l": [72, 262, 269, 273, 274, 286, 294, 295], "l1": [46, 53], "l101": 142, "l112": 148, "l180": 154, "l2": [46, 53], "l20": 148, "l296": 148, "l43": 154, "l491": 148, "l776": 148, "l94": 169, "l_m": 265, "l_particl": 26, "lab": [61, 180, 186, 192, 226, 275, 276], "lab2rgb": 296, "lab2xyz": 296, "lab_color_interpol": [61, 296], "lab_text": 61, "label": [24, 28, 30, 37, 39, 43, 47, 53, 54, 61, 72, 73, 121, 124, 164, 173, 174, 175, 265, 269, 293, 295, 296, 303, 311, 314], "label_actor": 11, "label_posit": 14, "label_valu": 14, "labels_img": 39, "lack": [129, 134, 135, 152, 155, 158, 172, 180, 227, 235, 237, 267, 271], "lag": [32, 139, 198, 226], "lai": [171, 225, 266, 273, 283], "lambda": [269, 275], "lambertian": 113, "languag": [178, 179, 180], "lantern": 193, "laplac": 255, "laplacian": [255, 267], "laptop": 180, "larg": [27, 28, 36, 106, 122, 132, 138, 139, 142, 147, 152, 166, 186, 193, 229, 230, 235, 269, 276, 306, 307, 308, 309, 310, 312], "larger": [66, 254, 263, 271, 295], "largest": 294, "last": [14, 37, 113, 116, 117, 118, 126, 155, 161, 167, 169, 178, 180, 181, 182, 185, 187, 204, 206, 213, 214, 221, 225, 234, 238, 239, 248, 262, 267, 270, 275, 280, 292, 293, 294, 295, 312, 314], "last_render_tim": [295, 296], "lastli": [5, 19, 93, 180, 239, 270], "lat": 5, "latenc": [86, 88, 142], "later": [8, 40, 60, 61, 63, 121, 127, 141, 148, 179, 187, 188, 232, 235, 238, 240, 241, 243, 252, 264, 266, 267, 269, 270, 280, 290], "lateral_frict": 93, "lateralfrict": [80, 82, 83, 93], "latest": [96, 249, 258, 308, 312], "latex": [97, 169, 312], "latitud": [5, 273, 289, 292], "latlong_coordin": 5, "latter": [173, 201], "layer": [73, 109, 285], "layout": [36, 41, 42, 89, 139, 140, 143, 145, 146, 155, 157, 161, 167, 169, 171, 173, 175, 176, 273, 296, 305, 306, 310, 311, 312, 313], "ld": 74, "lead": [93, 155, 249, 258, 266, 267, 271, 286, 309, 310, 314], "leaf": 32, "learn": [67, 111, 142, 168, 170, 178, 179, 180, 183, 209, 230, 232, 249, 255, 258, 264, 267, 276], "learnt": 141, "least": [37, 62, 151, 174, 178, 179, 234, 244], "leav": [161, 255, 258, 261, 267, 276, 312, 314], "lectur": 179, "led": [149, 178, 180, 207, 244, 251, 257, 266, 271], "left": [11, 14, 24, 27, 30, 43, 54, 56, 119, 147, 152, 184, 185, 187, 225, 239, 255, 273, 293, 294, 295, 309], "left_btn_press": 291, "left_btn_releas": 291, "left_button_click": [293, 296], "left_button_click_callback": [293, 296], "left_button_drag": [293, 296], "left_button_press": [293, 296], "left_button_releas": [293, 296], "left_button_release_callback": [293, 296], "left_click_callback": [11, 14, 293, 296], "left_click_callback2": [293, 296], "left_click_callback_mosa": 14, "left_disk_ratio": [293, 296], "left_disk_valu": [293, 296], "left_mouse_click": [191, 225], "left_move_left": [293, 296], "left_move_right": [293, 296], "left_release_callback": [293, 296], "left_release_callback2": [293, 296], "left_x_posit": [293, 296], "leftbuttonpressev": [11, 14, 291], "leftbuttonreleaseev": 291, "legarreta": [101, 106, 303, 306], "len": [21, 25, 26, 28, 29, 33, 35, 36, 40, 45, 79, 87, 273, 291], "len_vert": 40, "length": [13, 24, 27, 28, 30, 37, 49, 54, 59, 65, 68, 114, 226, 235, 273, 274, 275, 278, 281, 289, 292, 293, 294, 296], "lenix": [107, 122, 132, 134, 138, 307, 308, 309], "lenixlobo": [106, 134, 306], "lepi": 292, "lerp": 296, "less": [4, 21, 40, 148, 149, 151, 154, 178, 197, 206, 243, 246, 269, 270, 286, 295], "lesson": 180, "let": [4, 5, 10, 11, 12, 14, 15, 17, 20, 21, 24, 26, 27, 28, 31, 32, 33, 35, 36, 37, 40, 43, 44, 45, 51, 52, 54, 64, 71, 72, 73, 75, 76, 94, 96, 97, 145, 148, 154, 230, 240, 242, 243, 246, 252, 258, 264, 290, 307], "letter": [271, 314], "level": [20, 32, 178, 180, 234, 238, 269, 270, 273, 276, 285], "leverag": 134, "lfd": 292, "li": [185, 273], "liabil": 315, "liabl": 315, "liam": [106, 122, 306, 307], "lib": [18, 142, 154, 169, 173, 175, 176, 296, 311], "libavdevic": [86, 88], "libavfilt": [86, 88], "libopu": [86, 88], "librari": [44, 45, 73, 77, 86, 88, 89, 96, 97, 98, 99, 100, 101, 103, 104, 105, 106, 122, 132, 137, 138, 140, 141, 142, 154, 166, 167, 176, 177, 179, 180, 184, 228, 229, 230, 234, 271, 282, 306, 310, 311], "libvpx": [86, 88], "licens": [280, 314], "lie": 283, "life": [96, 133, 142, 178, 179, 237], "light": [17, 37, 71, 72, 74, 76, 111, 113, 115, 178, 184, 205, 213, 224, 227, 265, 269, 285, 290], "light_attenu": 71, "lightattenu": [71, 74], "lightcolor0": [71, 74, 205, 210, 213], "lightspunctuallamp": 193, "lightweight": 180, "like": [11, 12, 14, 19, 24, 40, 71, 93, 101, 103, 104, 106, 108, 121, 122, 127, 132, 133, 135, 136, 138, 140, 141, 143, 146, 152, 154, 158, 166, 169, 170, 173, 176, 179, 184, 201, 207, 208, 216, 217, 218, 222, 226, 227, 229, 230, 235, 237, 243, 246, 249, 257, 262, 264, 267, 269, 270, 271, 280, 293, 294, 295, 314], "lille1": 277, "limit": [73, 86, 134, 135, 147, 158, 188, 190, 197, 198, 227, 245, 249, 252, 293, 304, 312, 315], "linalg": [21, 24, 27], "line": [14, 15, 21, 24, 26, 27, 29, 33, 35, 36, 39, 40, 54, 56, 59, 86, 87, 96, 105, 135, 137, 142, 154, 159, 172, 177, 179, 180, 182, 185, 191, 194, 196, 197, 206, 209, 216, 225, 228, 234, 237, 238, 239, 243, 253, 255, 257, 264, 267, 269, 274, 275, 276, 293, 294, 295, 296, 303, 306, 311], "line_actor": [21, 33], "line_color": [39, 296], "line_polydata": 294, "line_slider_i": [24, 30, 53, 54], "line_slider_label_i": [24, 30], "line_slider_label_x": [24, 30], "line_slider_label_z": [24, 30], "line_slider_x": [24, 30, 53, 54], "line_slider_z": [24, 30], "line_spac": 293, "line_width": [54, 293, 296], "linear": [54, 56, 60, 61, 66, 121, 189, 195, 205, 226, 234, 237, 258, 267, 269, 273, 275], "linear_anim": 66, "linear_interpol": [66, 296], "linear_text": 61, "linearextrusionfilt": 296, "linearinterpol": 202, "linearli": [29, 66, 275], "linedoubleslider2d": [296, 306], "lines_actor": [35, 36, 87], "lines_to_vtk_polydata": 296, "lines_vert": 40, "lineslider2d": [24, 30, 37, 49, 53, 54, 56, 124, 189, 239, 296, 306], "linewidth": [15, 21, 26, 27, 29, 33, 36, 40, 273, 274, 286, 296, 303], "link": [74, 83, 93, 134, 135, 146, 150, 154, 171, 172, 173, 188, 225, 226, 227, 251, 269, 271, 290, 292, 302, 303, 304, 312], "link_height": [81, 83, 93], "link_mass": [81, 83, 93], "link_radii": [81, 83], "link_shap": [81, 83], "linkcollisionshapeindic": [81, 83, 93], "linkdirect": [81, 83, 93], "linkheight": 93, "linkindex": 93, "linkinertialframeorient": [81, 83, 93], "linkinertialframeorn": [81, 83, 93], "linkinertialframeposit": [81, 83, 93], "linkjointaxi": [81, 83, 93], "linkjointtyp": [81, 83, 93], "linkmass": [81, 83, 93], "linkorient": [81, 83, 93], "linkparentindic": [81, 83, 93], "linkposit": [81, 83, 93], "linkradii": 93, "linkvisualshapeindic": [81, 83, 93], "linspac": [25, 29, 72], "linux": [86, 88, 96, 97, 142, 307], "list": [6, 8, 15, 25, 26, 27, 28, 30, 31, 39, 45, 46, 47, 50, 53, 54, 55, 59, 60, 66, 72, 73, 81, 83, 93, 105, 112, 135, 137, 141, 148, 151, 154, 155, 177, 178, 179, 180, 184, 202, 228, 265, 269, 272, 273, 275, 276, 278, 280, 281, 282, 283, 285, 290, 291, 292, 293, 294, 295, 297, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 314, 315], "list_box": 293, "list_gltf_sample_model": 296, "list_of_actor": 61, "list_particl": 26, "listbox": [41, 42, 49, 54, 89, 293, 296, 305, 310, 313], "listbox2d": [49, 54, 55, 121, 127, 135, 242, 266, 271, 296, 306, 307, 312], "listbox_1": 49, "listbox_2": 49, "listbox_exampl": 55, "listboxitem": 293, "listboxitem2d": [135, 296, 306], "literatur": 265, "littl": [32, 36, 142, 143, 210, 226, 258, 261, 314], "live": [86, 88, 97, 273], "ll": [14, 15, 24, 31, 32, 40, 43, 54, 56, 87, 139, 141, 142, 144, 147, 148, 150, 151, 153, 154, 155, 156, 157, 159, 160, 162, 163, 165, 168, 170, 174, 179, 188, 190, 196, 202, 214, 231], "load": [4, 5, 14, 15, 18, 19, 24, 28, 30, 37, 71, 76, 148, 171, 176, 178, 180, 184, 193, 196, 199, 223, 247, 273, 281, 282, 289, 293, 296, 306, 311, 312], "load_camera": [281, 296], "load_cubemap_textur": [37, 296], "load_imag": [4, 5, 15, 19, 45, 143, 296, 306], "load_io": 193, "load_mem_resourc": [148, 291, 296], "load_mesh": [281, 296], "load_nifti": 28, "load_polydata": [4, 18, 76, 94, 296], "load_shad": 296, "load_sprite_sheet": [45, 296], "load_text": 296, "loader": [179, 184, 227], "loadtxt": [35, 36, 87], "lobo": [107, 122, 132, 134, 138, 307, 308, 309], "local": [39, 88, 180, 206, 273, 288, 293, 309, 314], "local_track": 39, "localhost": [86, 291], "localtrack": 39, "locat": [5, 37, 83, 142, 148, 169], "locationon": 5, "locationthre": 5, "locationtwo": 5, "lock": [93, 148, 291, 295, 296], "lock_curr": [10, 295, 296], "lockdown": 108, "lod": [36, 40, 273], "lod_point": 273, "lod_points_s": 273, "lodactor": [273, 296], "log": [278, 295], "logic": [80, 83, 111, 149], "logo": [44, 45, 173, 312], "lon": 5, "long": [113, 121, 149, 152, 193, 294], "longer": 28, "longitud": [5, 273, 289, 292], "look": [9, 27, 32, 71, 109, 110, 114, 117, 121, 125, 126, 127, 129, 130, 131, 142, 146, 148, 151, 152, 154, 169, 170, 179, 180, 184, 188, 193, 200, 201, 206, 209, 216, 218, 219, 233, 235, 242, 246, 252, 253, 255, 258, 260, 262, 263, 264, 267, 269, 270, 273, 314], "lookup": [14, 273, 274, 276], "lookup_colormap": [14, 27, 273, 274], "lookup_t": [273, 276], "lookupt": [276, 296], "loop": [10, 14, 32, 60, 68, 88, 93, 172, 198, 225, 226, 255, 267, 273, 275, 281, 293, 296, 312], "loopsubdivisionfilt": 296, "loopthrough": [166, 310], "loss": 315, "lost": 179, "lot": [107, 115, 117, 125, 134, 139, 142, 146, 148, 151, 154, 158, 161, 178, 179, 180, 181, 189, 200, 205, 206, 224, 234], "love": [133, 178, 180], "low": [28, 30, 86, 88, 142, 173, 178, 234, 258, 263, 267, 273, 276, 282, 309], "low_rang": [274, 296], "lower": [21, 25, 71, 117, 225, 239, 275, 280, 293], "lower_xbound": 25, "lower_ybound": 25, "luck": [234, 243, 249, 255, 261, 268], "lucki": 178, "luckili": 71, "lumin": 178, "lut": [14, 294, 309], "lut_cmap": 27, "lzw": 282, "m": [86, 87, 139, 141, 142, 145, 148, 154, 156, 168, 171, 178, 179, 231, 232, 235, 238, 244, 250, 259, 262, 265, 269, 271, 273, 275, 286, 289, 291, 314], "m1": 33, "m2": 33, "m_constant": 15, "m_expon": 15, "m_l": 262, "m_v": 25, "mac": [97, 303], "machin": [32, 142, 180, 277, 304, 314], "maco": [86, 87, 88, 96, 103, 142, 151, 157, 173, 197, 304], "macro": 230, "macromolecular": 172, "made": [11, 17, 28, 36, 72, 74, 83, 125, 129, 139, 140, 141, 142, 143, 145, 147, 148, 150, 151, 153, 159, 163, 168, 173, 178, 179, 180, 181, 184, 189, 194, 201, 205, 207, 225, 235, 236, 237, 238, 239, 241, 243, 244, 246, 247, 248, 249, 250, 257, 260, 262, 264, 267, 269, 270, 271, 273, 305], "magfilt": [234, 237], "magnet": [22, 23, 29, 89, 269, 274, 313], "magnif": [28, 173, 295, 312], "magnifi": 295, "magnitud": 273, "maharshi": 302, "maharshigor": [229, 302, 312], "mai": [27, 40, 60, 64, 67, 74, 93, 135, 158, 173, 179, 211, 225, 227, 237, 249, 255, 256, 267, 273, 280, 288, 294, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 314, 315], "mail": [98, 99, 100, 101, 103, 104, 105, 106, 122, 132, 137, 138, 148, 166, 176, 177, 178, 180, 228, 229, 314], "mailmap": 314, "main": [10, 24, 44, 45, 61, 65, 72, 86, 87, 88, 110, 112, 113, 114, 115, 119, 123, 126, 130, 142, 146, 148, 149, 152, 154, 171, 173, 192, 199, 202, 205, 225, 226, 234, 236, 237, 247, 254, 256, 258, 269, 270, 271, 273, 274, 275, 281, 293, 296, 314], "main_anim": [7, 281, 296], "main_arm": 65, "main_arm_anim": 65, "main_dir_uncertainti": [269, 296], "main_timelin": [7, 192], "mainli": [114, 118, 121, 129, 130, 132, 138, 166, 176, 225, 229, 255, 256, 264, 266], "maint": 314, "maintain": [114, 167, 186, 189, 192, 201, 205, 293], "maintain_aspect": 293, "mainten": [99, 100, 132, 138, 166, 176, 229, 253, 299, 300, 301, 314], "major": [80, 82, 98, 99, 100, 101, 103, 104, 106, 109, 112, 116, 118, 119, 121, 122, 123, 124, 127, 129, 130, 132, 133, 138, 141, 144, 161, 166, 176, 229, 242, 245, 250, 260, 263, 267, 276, 280, 294], "make": [5, 11, 12, 13, 15, 17, 24, 27, 32, 43, 51, 54, 57, 58, 59, 63, 65, 66, 68, 69, 70, 89, 96, 97, 108, 111, 112, 113, 114, 115, 117, 118, 120, 123, 125, 126, 128, 131, 135, 136, 140, 141, 144, 148, 150, 152, 153, 154, 155, 164, 165, 167, 170, 171, 172, 173, 174, 178, 179, 180, 183, 184, 191, 192, 195, 197, 198, 200, 201, 205, 206, 218, 220, 221, 226, 232, 234, 235, 237, 239, 240, 241, 242, 243, 244, 247, 249, 250, 252, 253, 254, 255, 256, 257, 259, 260, 262, 263, 264, 265, 266, 267, 269, 270, 271, 275, 276, 277, 290, 293, 294, 306, 312, 313, 314], "makefil": 96, "maker": 145, "malfunct": [239, 271], "manag": [9, 10, 11, 12, 13, 14, 28, 37, 38, 43, 44, 45, 51, 52, 53, 55, 61, 62, 63, 66, 68, 75, 76, 80, 81, 82, 106, 107, 108, 132, 140, 145, 148, 149, 154, 155, 157, 163, 173, 174, 179, 182, 185, 186, 188, 191, 192, 193, 194, 197, 206, 215, 221, 223, 225, 232, 237, 240, 242, 243, 245, 249, 252, 253, 255, 257, 261, 266, 267, 270, 287, 291, 293, 295, 304, 305, 306, 308, 312, 314], "mandatori": [96, 148, 163, 178, 291], "mani": [11, 12, 20, 24, 27, 28, 32, 54, 105, 108, 137, 142, 149, 152, 170, 177, 179, 180, 197, 225, 228, 230, 255, 273, 274, 276, 287, 292, 302, 314], "manifest_pbr": [37, 72, 296], "manifest_principl": [73, 296], "manifest_standard": [296, 311], "manipul": [15, 19, 33, 74, 114, 152, 159, 185, 186, 194, 205, 286], "manner": [112, 273, 283], "manual": [6, 64, 93, 135, 155, 185, 188, 194, 200, 203, 213, 215, 265, 269, 270, 314], "map": [15, 22, 23, 24, 27, 28, 37, 50, 71, 74, 89, 172, 174, 175, 178, 227, 265, 269, 270, 273, 274, 276, 278, 282, 292, 313], "map_coordinates_3d_4d": 296, "mapper": [76, 150], "maptlotlib": 276, "marc": [101, 106, 122, 176, 303, 306, 307, 311], "march": [74, 107, 109, 111, 113, 134, 269], "margin": [246, 295], "margin_factor": 295, "mark": [133, 136, 263, 314], "markdown": 306, "marker": [22, 23, 31, 64, 89, 139, 145, 146, 166, 173, 174, 296, 310, 313, 314], "marker_opac": [31, 273], "marker_symbol": 34, "markup": 279, "marreddi": [138, 309], "mars_actor": 15, "marssi": [106, 306], "mask": [39, 273], "mass": [15, 82, 93], "massiv": 226, "master": [45, 270, 303, 306, 309, 314], "mat4": 74, "mat_id": 281, "match": [178, 198, 235, 260, 264, 269, 270, 271, 276, 278], "materi": [6, 37, 72, 73, 138, 176, 179, 188, 223, 281, 296, 309, 311, 312, 315], "material_param": [72, 73], "materialsvariantssho": 193, "math": [5, 32, 36, 115, 117, 147, 168, 170, 178, 238, 269, 292], "mathemat": [71, 74, 117, 269], "mathwork": 276, "mathworld": 292, "matlab": [276, 292], "matlabcentr": 276, "matlplotlib": 277, "matplotlib": [96, 169, 252, 267, 270, 272, 273, 274, 276, 277, 304], "matplotlib_figure_to_numpi": 296, "matric": [186, 204, 207, 208, 210, 212, 281], "matrix": [14, 27, 30, 40, 74, 80, 82, 93, 118, 119, 182, 202, 204, 212, 214, 217, 219, 235, 241, 244, 252, 256, 269, 273, 274, 276, 281, 292, 294, 312], "matrix3x3": 296, "matrix4x4": 296, "matter": [63, 269, 271, 276], "max": [14, 25, 27, 28, 32, 86, 178, 180, 203, 269, 273, 276, 281, 293], "max_cent": [274, 296], "max_column": 293, "max_iter": 36, "max_iteract": 36, "max_lin": 293, "max_peel": [275, 295], "max_queue_s": [86, 291], "max_siz": [151, 291], "max_val": [52, 293], "max_valu": [24, 30, 37, 53, 54, 56, 293], "max_window_s": [86, 148, 291], "maxforc": 81, "maxim": 276, "maximum": [5, 71, 86, 149, 206, 251, 258, 269, 273, 274, 275, 276, 281, 291, 293, 295], "mayb": [148, 179, 255, 258, 265, 270, 294], "mb": [1, 23, 42, 58, 70, 78, 85, 90, 278, 313], "mcvcmatrix": 74, "md": [96, 314], "md5": [106, 306], "mde": [154, 173], "me": [43, 54, 107, 108, 109, 114, 116, 118, 125, 126, 127, 130, 133, 136, 139, 140, 147, 148, 150, 156, 161, 170, 178, 179, 180, 181, 184, 187, 197, 206, 209, 234, 237, 239, 243, 244, 249, 252, 254, 255, 258, 261, 264, 265, 267, 268], "mean": [14, 24, 26, 32, 36, 64, 80, 81, 82, 83, 86, 93, 135, 140, 146, 149, 152, 167, 169, 171, 178, 230, 240, 243, 269, 273, 275, 283, 285, 294, 314], "meant": [146, 152, 280], "meantim": 149, "meanwhil": [145, 148, 151, 250, 263], "measur": [269, 274], "medicin": [269, 274], "medium": [26, 29, 142, 148], "meet": [107, 108, 111, 130, 139, 140, 141, 143, 146, 147, 149, 152, 153, 155, 156, 158, 161, 162, 165, 167, 169, 170, 172, 173, 181, 182, 190, 198, 199, 200, 201, 202, 204, 213, 214, 217, 230, 231, 232, 236, 237, 238, 239, 241, 245, 247, 250, 252, 255, 256, 261, 269, 274, 314], "megabyt": 180, "meha": [176, 311], "mehabhalodiya": 163, "melina": [122, 132, 307, 308], "melpomen": 102, "mem": [1, 23, 42, 58, 70, 78, 85, 90, 313], "member": [136, 141, 156, 162, 164, 293], "memori": [11, 12, 86, 142, 145, 148, 151, 154, 157, 163, 173, 174, 175, 197, 205, 234, 269, 276, 291, 295], "memoryview": 142, "memview": 142, "menger": 32, "mention": [18, 60, 119, 146, 178, 180, 185, 205, 209, 210, 220, 221, 222, 225, 226, 234, 238, 255, 265, 270, 306], "mentor": [107, 108, 109, 111, 112, 114, 116, 117, 118, 119, 126, 129, 130, 133, 135, 136, 139, 140, 141, 142, 144, 146, 147, 148, 150, 153, 156, 160, 161, 162, 163, 165, 170, 172, 174, 179, 181, 184, 185, 187, 200, 206, 209, 218, 221, 230, 232, 235, 237, 240, 243, 244, 245, 246, 247, 249, 250, 252, 254, 255, 258, 261, 264, 265, 266, 267, 268, 270, 271], "mentorship": 133, "menu": 293, "menu_opac": 293, "menu_text_color": 293, "menu_toggle_callback": [293, 296], "merchant": 315, "mercury_actor": 15, "merg": [120, 123, 126, 130, 134, 145, 146, 149, 152, 155, 157, 160, 161, 162, 164, 167, 168, 169, 170, 171, 175, 179, 184, 188, 190, 192, 193, 195, 196, 197, 210, 211, 215, 216, 217, 223, 225, 226, 227, 238, 241, 242, 250, 251, 256, 262, 263, 264, 267, 268, 269, 271, 290, 306, 309, 312, 314], "mergeabl": [189, 190], "merl": 73, "mesa": [311, 312], "mesh": [6, 71, 74, 180, 184, 204, 212, 227, 269, 281, 292], "mesh_id": 281, "meshgrid": 25, "mess": [148, 180], "messag": [10, 11, 14, 20, 21, 24, 25, 26, 29, 30, 33, 43, 54, 76, 79, 80, 81, 82, 83, 94, 148, 234, 280, 293, 296, 312], "messia": [139, 166, 176, 229, 310, 311, 312], "met": [184, 315], "metal": [37, 72, 73, 227, 285], "metalroughspher": 193, "metalroughspheresnotextur": 193, "method": [6, 7, 9, 12, 13, 14, 24, 27, 30, 32, 40, 46, 47, 53, 57, 59, 61, 67, 71, 74, 79, 80, 81, 82, 83, 89, 93, 110, 112, 114, 116, 119, 121, 130, 131, 134, 135, 142, 143, 145, 146, 148, 149, 150, 152, 154, 155, 157, 158, 161, 171, 173, 175, 178, 181, 182, 184, 187, 188, 193, 200, 205, 209, 210, 211, 220, 223, 226, 227, 234, 237, 239, 240, 243, 246, 264, 267, 269, 271, 273, 274, 275, 276, 280, 284, 286, 291, 294, 295, 306, 310, 311, 312], "methodolog": 269, "methodologi": 266, "meticul": 233, "metric": [22, 23, 71, 74, 89, 270, 313], "meval": 28, "mevec": 28, "michel": 165, "mid": 153, "mid_ptr": 293, "mid_track_radiu": [293, 296], "middl": [14, 30, 273, 293, 304], "middle_btn_press": 291, "middle_btn_releas": 291, "middle_button_click_callback": [293, 296], "middle_button_release_callback": [293, 296], "middlebuttonpressev": 291, "middlebuttonreleaseev": 291, "might": [9, 13, 59, 62, 64, 71, 198, 225, 247, 262, 266, 269, 270, 271, 276, 314], "migrat": [138, 229, 309, 312], "mihir": [166, 310], "milesecond": [87, 291], "mileston": [115, 263], "million": [146, 173], "millisecond": [17, 20, 25, 26, 29, 33, 36, 40, 76, 86, 291], "min": [14, 27, 32, 203, 269, 273, 276, 281, 293], "min_cent": [274, 296], "min_separation_angl": 39, "min_val": [52, 293], "min_valu": [24, 30, 37, 53, 54, 56, 293], "mind": [129, 180, 182, 232, 258, 261, 264], "minfilt": [234, 237], "mini": 180, "miniconda": [303, 305], "minim": 195, "minimalist": [97, 180, 218], "minimum": [151, 154, 173, 176, 206, 226, 258, 275, 276, 281, 293, 311], "minor": [109, 120, 139, 143, 152, 158, 161, 174, 238, 244, 267, 268, 269, 280, 309, 312], "minut": 180, "mipmap": 270, "mipmap_on": 282, "mipmapon": 200, "misalign": [239, 264, 271], "misc": 172, "miscellan": 172, "mislead": 276, "mismatch": [124, 311], "misplac": 112, "misposit": [266, 271], "misri": [140, 166, 171, 176, 229, 302, 310, 311, 312], "miss": [62, 134, 181, 211, 212, 242, 243, 264, 265, 267, 302, 303, 306, 310, 311, 312], "mission": 178, "mistak": 161, "misus": 264, "mit": 140, "mitig": [148, 258, 267], "miu": 15, "mjpeg": [84, 85, 86, 89, 173, 291, 313], "mm": 293, "mniobjectread": 296, "mniobjectwrit": 296, "mobil": [164, 312], "mobiu": 276, "mode": [32, 36, 80, 81, 82, 83, 86, 114, 133, 182, 183, 193, 196, 197, 216, 225, 227, 248, 271, 275, 276, 278, 281, 286, 293, 295], "mode_panel": [216, 225, 312], "mode_text": [216, 225, 312], "model": [4, 6, 7, 9, 13, 71, 72, 73, 74, 75, 76, 94, 108, 110, 111, 113, 115, 131, 134, 141, 144, 147, 150, 153, 154, 156, 162, 170, 172, 173, 178, 181, 184, 188, 190, 193, 196, 201, 204, 208, 212, 214, 217, 219, 223, 267, 269, 278, 281, 285, 286, 309, 310, 312], "model_nam": 278, "modelsuzann": 309, "modi": [106, 306], "modif": [135, 139, 142, 173, 205, 233, 236, 280, 315], "modifi": [11, 25, 118, 140, 146, 148, 182, 184, 188, 190, 191, 193, 194, 200, 201, 221, 222, 225, 236, 262, 276, 281, 292, 293, 302, 312], "modul": [24, 25, 26, 28, 29, 30, 32, 33, 37, 64, 71, 72, 73, 74, 89, 93, 138, 140, 142, 144, 146, 148, 152, 153, 154, 155, 156, 159, 162, 163, 164, 165, 167, 168, 169, 171, 172, 173, 175, 176, 222, 226, 227, 229, 264, 268, 273, 276, 279, 286, 289, 296, 302, 303, 309, 310, 311, 312, 314], "modular": [249, 267], "moham": [178, 196, 197, 199, 202, 206, 214, 226, 229, 312], "molecul": [147, 150, 159, 168, 172, 269, 296], "molecular": [141, 150, 153, 156, 159, 162, 165, 168, 172, 176, 296, 311], "molecular_viz_vtk": 150, "molecule1": 286, "molecule2": 286, "molecule_actor": 286, "moment": [179, 248, 269], "mondai": 258, "monitor": [143, 149, 154, 171, 173], "monkei": [145, 173, 291], "month": [121, 134, 180, 240, 258, 267], "moon": [4, 180], "moon_actor": 4, "moon_filenam": 4, "moon_imag": 4, "more": [12, 14, 24, 27, 28, 31, 36, 37, 39, 71, 74, 86, 88, 93, 94, 111, 113, 116, 117, 118, 121, 134, 135, 141, 142, 148, 152, 154, 157, 158, 159, 161, 162, 163, 165, 167, 171, 172, 173, 180, 181, 185, 194, 195, 197, 201, 204, 205, 206, 208, 209, 210, 214, 220, 222, 224, 226, 232, 234, 238, 241, 243, 247, 248, 249, 250, 252, 253, 255, 256, 258, 260, 263, 265, 267, 268, 269, 270, 271, 273, 275, 276, 277, 286, 290, 291, 293, 294, 295, 306, 310, 314], "moreov": [73, 134, 276], "morn": 179, "morph": [0, 1, 89, 196, 199, 219, 226, 281, 312, 313], "morph_anim": [9, 281, 296], "morph_timelin": 9, "morphprimitivestest": 193, "morphstresstest": [9, 193], "moselei": 32, "mosquitoinamb": 193, "most": [71, 107, 113, 121, 130, 155, 156, 173, 180, 182, 197, 206, 215, 225, 227, 232, 235, 250, 253, 259, 261, 265, 297], "mostli": [158, 213], "motion": [15, 22, 23, 59, 68, 81, 89, 159, 172, 198, 206, 226, 275, 309, 313], "motion_path_r": [62, 68, 275, 296], "motiv": [179, 180, 249], "mous": [12, 14, 108, 130, 135, 148, 182, 185, 187, 197, 200, 209, 225, 255, 293, 312], "mouse_id": 291, "mouse_mov": [148, 291], "mouse_move_callback": [293, 296], "mouse_move_callback2": [293, 296], "mouse_posit": 293, "mouse_weel": [148, 291], "mousemoveev": [200, 295], "mousewheelbackwardev": 175, "mousewheelforwardev": 175, "movabl": 182, "move": [9, 12, 14, 21, 24, 26, 32, 33, 36, 63, 64, 81, 93, 114, 118, 119, 124, 127, 175, 178, 180, 197, 206, 211, 214, 216, 221, 225, 234, 237, 242, 252, 276, 293, 305, 309, 312, 314], "move_caret_left": [293, 296], "move_caret_right": [293, 296], "move_handl": [293, 296], "move_left": [293, 296], "move_right": [293, 296], "movement": [32, 74, 200, 254, 267, 293], "movi": 140, "mp": 72, "mp4": [38, 220, 226, 275, 312], "mpa": 269, "mr": [269, 274], "mri": 269, "ms_interact": [86, 291], "ms_jpeg": 291, "ms_stream": [86, 291], "msg22935": 148, "msg388287": 148, "msm": 165, "much": [27, 28, 71, 109, 119, 134, 180, 184, 185, 226, 238, 240, 253, 265, 273, 295], "multi": [80, 81, 93, 202, 223, 227, 269, 293], "multi_sampl": [36, 226, 275, 295, 312], "multi_select": 293, "multibodi": [79, 80, 81, 82, 83, 93, 127], "multidimension": [276, 291], "multidimensionalbuff": [151, 291], "multipl": [0, 1, 7, 10, 14, 60, 67, 73, 89, 97, 104, 106, 111, 113, 118, 121, 122, 124, 129, 131, 134, 135, 147, 152, 155, 159, 161, 166, 172, 175, 184, 190, 191, 192, 199, 212, 217, 219, 223, 226, 227, 229, 267, 273, 274, 275, 280, 286, 287, 293, 295, 302, 305, 306, 307, 310, 312, 313], "multiplatform": 97, "multiple_bond": 286, "multipli": [15, 118, 182, 269, 292, 294], "multiprocess": [86, 87, 145, 148, 154, 173, 291], "multisdf": 134, "multiselect": [54, 55, 161, 293], "multithread": [0, 1, 89, 97, 175, 295, 312, 313], "multiuvtest": 193, "mummyisland": 178, "murrai": 246, "must": [28, 31, 60, 62, 63, 64, 67, 93, 124, 142, 148, 154, 171, 173, 175, 226, 237, 270, 273, 275, 278, 284, 285, 286, 290, 293, 315], "mx3": 294, "my": [32, 110, 112, 113, 114, 116, 118, 119, 121, 124, 127, 129, 130, 133, 134, 135, 136, 139, 142, 144, 145, 146, 147, 148, 150, 151, 152, 153, 154, 155, 156, 159, 160, 161, 162, 163, 164, 165, 167, 168, 169, 170, 171, 172, 173, 174, 175, 180, 181, 182, 183, 184, 187, 189, 193, 200, 206, 209, 218, 221, 225, 226, 227, 230, 231, 232, 233, 235, 236, 237, 238, 239, 240, 242, 243, 244, 245, 246, 247, 249, 250, 252, 254, 255, 256, 257, 258, 259, 260, 261, 262, 264, 265, 266, 267, 268, 269, 270, 271, 312], "my_cub": 18, "my_polydata": 18, "my_triangl": 18, "my_vertic": 18, "myriad": 142, "myself": [144, 249, 250, 258, 267], "myvertexvc": 76, "n": [5, 11, 28, 32, 34, 81, 88, 90, 148, 171, 173, 186, 258, 267, 273, 274, 275, 276, 286, 289, 291, 292, 293, 294, 314], "n39": 5, "n40": 5, "n48": 5, "n_coeff": [273, 274], "n_frame": 295, "n_link": [81, 83, 93], "n_vertic": [273, 274], "na": 276, "naiv": [246, 269], "naman": [106, 122, 306, 307], "namanb009": 306, "name": [9, 13, 15, 17, 24, 25, 26, 33, 40, 46, 62, 67, 74, 134, 135, 139, 148, 171, 172, 173, 178, 180, 188, 192, 193, 205, 213, 225, 226, 227, 232, 247, 255, 267, 269, 271, 272, 273, 274, 275, 276, 278, 280, 281, 286, 289, 290, 291, 292, 293, 294, 295, 306, 308, 312, 314, 315], "nan": 276, "nanohub": 310, "narrow": [271, 314], "nascimento": [106, 142, 173, 229, 230, 306, 312], "nasim": [106, 132, 229, 306, 308, 312], "nativ": [24, 27, 127, 135, 168, 273, 274, 306], "natur": [32, 33, 97, 152, 167, 254], "navig": [135, 142], "nb_brick": [80, 83, 93], "nb_col": [273, 282, 283, 294], "nb_color": [35, 36, 61, 87, 276], "nb_link": 93, "nb_object": 93, "nb_row": [273, 282, 283, 294], "nb_tab": [53, 293], "nbyte": [276, 296], "nc": 278, "nd": 276, "ndarrai": [28, 38, 62, 227, 268, 273, 274, 275, 276, 277, 281, 282, 286, 289, 290, 292, 293, 294, 295], "ndim": [276, 296], "ndindex": 21, "nearer": 211, "nearest": 273, "nearli": [266, 312], "necess": [97, 242], "necessari": [25, 26, 28, 29, 32, 33, 37, 71, 72, 73, 74, 81, 83, 119, 121, 127, 142, 148, 173, 236, 238, 248, 250, 253, 267, 269, 291, 293, 295, 311, 312, 314], "necessarili": [273, 275, 276, 295], "need": [7, 9, 13, 14, 15, 18, 24, 27, 28, 31, 32, 35, 36, 37, 39, 43, 44, 45, 46, 47, 48, 50, 51, 52, 53, 54, 55, 56, 59, 60, 62, 64, 66, 68, 71, 73, 74, 86, 88, 93, 94, 96, 109, 112, 117, 121, 129, 131, 133, 135, 139, 142, 143, 144, 146, 148, 149, 151, 152, 154, 155, 158, 161, 169, 171, 173, 190, 193, 198, 202, 204, 205, 212, 214, 217, 219, 222, 225, 226, 227, 230, 234, 235, 237, 238, 240, 241, 243, 244, 246, 247, 248, 249, 250, 252, 253, 255, 256, 258, 261, 262, 265, 266, 267, 268, 269, 270, 271, 275, 276, 277, 289, 293, 294, 295, 306, 309, 312], "neg": [71, 283, 295], "negc": 278, "neglig": 315, "neighbor": [273, 283], "neither": 315, "neptune_actor": 15, "nest": [14, 310], "network": [22, 23, 89, 139, 143, 145, 157, 173, 175, 267, 306, 309, 313], "networkdraw": 154, "networklayoutipcrend": 154, "networklayoutipcservercalc": 154, "networkx": 36, "neuroimag": 269, "neuroscientist": 269, "never": [168, 178, 225, 230, 237], "nevertheless": 116, "new": [4, 5, 14, 15, 18, 19, 28, 32, 62, 69, 71, 72, 73, 74, 86, 89, 93, 108, 112, 118, 119, 122, 125, 131, 132, 134, 135, 136, 138, 139, 141, 145, 148, 154, 161, 162, 166, 171, 173, 175, 176, 178, 179, 180, 182, 185, 189, 190, 194, 197, 198, 200, 201, 203, 205, 210, 214, 215, 216, 217, 218, 222, 225, 226, 227, 229, 235, 236, 238, 239, 241, 245, 247, 248, 250, 253, 255, 258, 260, 263, 264, 266, 267, 269, 271, 273, 278, 280, 281, 284, 290, 291, 292, 293, 294, 295, 302, 304, 306, 307, 308, 309, 310, 311, 312, 314], "new_cent": 293, "new_data": 142, "new_data_uint8": 142, "new_layout_tim": 36, "new_nam": 280, "new_po": 118, "new_triangl": 294, "newbi": 180, "newer": 186, "newinst": [273, 296], "newli": [4, 8, 15, 152, 181, 198, 227], "newlin": 293, "next": [4, 5, 15, 17, 19, 20, 21, 25, 28, 29, 31, 32, 33, 38, 39, 40, 53, 74, 79, 80, 81, 82, 83, 93, 96, 142, 158, 178, 179, 180, 237, 249, 252, 275, 276, 293, 312, 314], "next_buffer_index": [148, 291, 296], "next_icon": [43, 54, 293, 296], "next_icon_id": [293, 296], "nextnode_id": 281, "nextpoint": 62, "nexttang": 62, "nf": [303, 306, 307], "ngrok": [86, 142, 173], "nib": [14, 30], "nibabel": [14, 30, 280, 294], "nice": [32, 184], "night": 179, "nightli": 290, "nii": [14, 28, 30], "nine": 34, "ninth": 165, "nipi": 280, "no_depth_test": 31, "no_vertic": 40, "no_vertices_per_point": [25, 26, 29, 33], "no_vertices_per_point2": 29, "no_vertices_per_spher": 21, "node": [12, 32, 35, 36, 149, 152, 154, 155, 161, 171, 173, 175, 184, 199, 204, 217, 227, 254, 277, 281], "node_id": 281, "nodes_3d_actor": [34, 273], "nodes_actor": [34, 273], "nois": [28, 134, 178, 241, 244, 267, 269, 273, 274], "noisi": [258, 267], "nomenclatur": 292, "non": [14, 32, 60, 172, 173, 178, 192, 226, 227, 246, 269, 285, 302], "none": [10, 12, 14, 17, 30, 36, 38, 54, 59, 62, 76, 148, 193, 266, 272, 273, 274, 275, 276, 277, 278, 280, 281, 282, 283, 286, 288, 289, 290, 291, 293, 294, 295, 312], "nonetheless": 12, "nonetyp": 193, "nonloc": 36, "nonzero": 28, "nor": [234, 275, 315], "norm": [21, 26, 30, 273, 274, 292], "norm_arrai": 294, "normal": [0, 9, 13, 17, 26, 30, 34, 37, 71, 72, 74, 88, 89, 152, 171, 181, 184, 197, 207, 225, 227, 255, 264, 267, 269, 270, 273, 274, 276, 281, 285, 290, 293, 294, 295, 306], "normalize_v3": 296, "normalizedvertexmcvsoutput": 264, "normals_from_actor": [37, 72, 296], "normals_from_v_f": [17, 296], "normals_to_actor": 296, "normaltangentmirrortest": 193, "normaltangenttest": 193, "north": 292, "nose": [104, 305, 306], "notabl": [242, 266], "note": [6, 9, 12, 13, 25, 27, 29, 43, 53, 54, 59, 62, 66, 98, 99, 100, 101, 103, 104, 106, 122, 132, 138, 166, 176, 178, 212, 229, 252, 264, 273, 274, 275, 276, 277, 280, 286, 291, 292, 294, 295, 297, 314], "notebook": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 71, 72, 73, 74, 75, 76, 79, 80, 81, 82, 83, 86, 87, 88, 89, 154, 173], "noth": [109, 167, 180, 197, 225, 234], "notic": [14, 37, 71, 121, 154, 157, 170, 178, 190, 193, 217, 221, 251, 271, 291, 309, 315], "now": [5, 10, 14, 24, 28, 30, 31, 32, 35, 36, 37, 40, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 62, 63, 64, 65, 66, 67, 71, 72, 73, 74, 76, 80, 81, 82, 83, 93, 94, 114, 118, 119, 121, 125, 126, 127, 129, 130, 133, 135, 140, 145, 148, 150, 151, 152, 154, 157, 158, 160, 161, 163, 164, 169, 173, 174, 175, 180, 182, 183, 184, 187, 188, 189, 191, 192, 193, 195, 196, 199, 201, 205, 208, 211, 213, 215, 217, 223, 226, 232, 235, 237, 238, 241, 243, 246, 250, 252, 253, 254, 257, 258, 261, 264, 265, 267, 269, 270, 271, 292, 314], "np": [2, 3, 4, 5, 8, 10, 11, 12, 15, 16, 17, 18, 20, 21, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 38, 40, 46, 50, 52, 53, 54, 56, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 71, 72, 73, 74, 75, 79, 80, 81, 82, 83, 86, 87, 88, 93, 94, 118, 127, 142, 214, 268, 273, 275, 276, 281, 289, 292, 294, 295], "np_arr": [148, 291], "npoint": [25, 29], "npt_assert_equ": 305, "nse": 314, "nsim": [80, 81, 82, 83], "nstderr": 148, "nstdout": 148, "nuanc": 271, "null": [96, 243], "nullptr": 237, "num": 72, "num_buff": [148, 291], "num_cub": 12, "num_fac": 12, "num_object": [11, 12, 80, 81, 82, 83, 93], "num_particl": [21, 26], "num_total_step": 26, "num_valu": 72, "num_vertic": [11, 12, 21, 80, 81, 82, 83, 93], "numba": 243, "number": [12, 25, 26, 28, 29, 43, 54, 71, 74, 82, 86, 93, 116, 148, 159, 172, 178, 186, 234, 235, 243, 256, 258, 263, 266, 267, 269, 273, 274, 275, 276, 278, 280, 282, 286, 289, 291, 293, 294, 295, 314], "number_of_domino": 82, "numer": [271, 278, 294], "numfocu": 179, "numpi": [2, 3, 4, 5, 8, 10, 11, 12, 15, 16, 17, 18, 20, 21, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 38, 40, 45, 46, 50, 52, 53, 54, 56, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 71, 72, 73, 74, 75, 79, 80, 81, 82, 83, 86, 87, 88, 93, 94, 96, 97, 142, 159, 170, 178, 268, 273, 276, 277, 281, 289, 290, 292, 294, 295, 306, 311, 312, 314], "numpy_to_vtk_cel": [296, 311], "numpy_to_vtk_color": 296, "numpy_to_vtk_image_data": [239, 242, 296, 311], "numpy_to_vtk_matrix": 296, "numpy_to_vtk_point": 296, "numpy_vtk": 303, "nx": 36, "nx2": 294, "nx3": 294, "nx4": 294, "nxnxn": [83, 130], "ny": 278, "nyc_actor": 5, "o": [14, 34, 35, 36, 45, 71, 74, 86, 87, 88, 94, 158, 175, 267, 273, 312], "oauth": 309, "obelisk": [150, 286], "obj": [4, 11, 14, 24, 30, 31, 37, 76, 94, 97, 178, 277, 282, 291, 293, 312], "objecomp_typ": 281, "object": [0, 1, 5, 6, 7, 9, 11, 13, 14, 15, 17, 24, 25, 26, 27, 28, 29, 33, 37, 38, 39, 40, 46, 48, 62, 66, 71, 72, 74, 79, 80, 81, 82, 83, 84, 85, 86, 89, 94, 101, 110, 112, 114, 116, 118, 119, 120, 123, 124, 127, 129, 140, 142, 146, 148, 150, 151, 154, 161, 166, 175, 184, 186, 192, 193, 194, 197, 230, 234, 235, 237, 243, 246, 252, 256, 258, 262, 265, 273, 275, 276, 277, 278, 279, 280, 281, 283, 284, 286, 287, 290, 291, 292, 293, 294, 295, 303, 309, 310, 312, 313], "object_cent": 93, "object_collis": 93, "object_color": 93, "object_direct": 93, "object_index": [11, 12, 80, 82, 83, 93, 118, 127], "object_orient": 93, "objread": 296, "obliqu": 295, "observ": [65, 68, 93, 133, 134, 171, 271, 276, 284, 290, 294], "obstacl": [242, 247], "obtain": [25, 28, 244, 253, 259, 265, 269, 276, 286, 310], "obviou": [148, 161, 247], "obvious": 171, "occasion": [239, 263], "occlus": [115, 295], "occlusion_ratio": 295, "occupi": [74, 135, 161, 271, 276], "occur": [266, 306], "ocean": [25, 180], "oct_actor": 273, "octagon": [273, 289, 307], "octagonalpr": 296, "octob": 179, "odf": [22, 23, 89, 103, 138, 232, 253, 256, 259, 262, 273, 274, 304, 309, 313], "odf_actor_i": 30, "odf_actor_x": 30, "odf_actor_z": 30, "odf_slic": [30, 259, 262, 269, 270, 296, 303, 309], "odf_slicer_3d": 30, "odfsliceractor": [273, 296], "off": [187, 197, 221, 266, 273, 295], "off_focu": 312, "offer": [81, 83, 142, 145, 254, 271, 273], "offici": [93, 112, 114, 116, 118, 119, 121, 124, 127, 129, 130, 133, 136, 142, 145, 178, 179, 180, 269, 274, 314], "offscreen": [237, 252, 255, 264, 267, 295, 312], "offset": [32, 93, 116, 146, 152, 251, 254, 271, 276, 281, 283, 293, 294, 302, 312], "often": [276, 314], "ohbm": 102, "ok": [62, 154, 249], "old": [180, 198, 224, 226, 258, 267, 280, 312], "old_nam": 280, "older": [142, 181, 260, 266, 271], "olson": 165, "omit": 148, "on_chang": [24, 30, 32, 37, 46, 47, 50, 52, 53, 54, 55, 56, 198, 293, 296, 312], "on_collaps": 53, "on_key_press": [293, 296], "on_left_mouse_button_click": [15, 43, 54, 293, 296], "on_left_mouse_button_drag": [293, 296], "on_left_mouse_button_press": [43, 54, 293, 296], "on_left_mouse_button_releas": [293, 296], "on_left_mouse_double_click": [293, 296], "on_middle_mouse_button_click": [293, 296], "on_middle_mouse_button_drag": [293, 296], "on_middle_mouse_button_press": [293, 296], "on_middle_mouse_button_releas": [293, 296], "on_middle_mouse_double_click": [293, 296], "on_moving_slid": 198, "on_right_mouse_button_click": [293, 296], "on_right_mouse_button_drag": [293, 296], "on_right_mouse_button_press": [293, 296], "on_right_mouse_button_releas": [293, 296], "on_right_mouse_double_click": [293, 296], "on_value_chang": 198, "onc": [9, 27, 32, 54, 60, 67, 93, 118, 119, 120, 121, 130, 154, 167, 179, 180, 183, 194, 205, 207, 208, 211, 225, 226, 242, 265, 268, 271, 275, 293, 295, 306, 314], "one": [4, 10, 12, 15, 25, 28, 31, 32, 35, 36, 37, 39, 54, 60, 61, 66, 68, 73, 74, 93, 112, 113, 114, 116, 124, 133, 142, 146, 147, 150, 154, 169, 171, 178, 179, 180, 185, 186, 201, 205, 219, 224, 226, 230, 234, 235, 237, 238, 243, 247, 249, 252, 255, 258, 262, 264, 265, 266, 267, 268, 269, 270, 271, 273, 274, 275, 276, 286, 289, 290, 291, 292, 293, 294, 295, 303, 306, 309, 312, 314], "ones": [12, 15, 64, 67, 68, 71, 81, 83, 142, 168, 255, 264, 276], "ones_lik": 34, "ong": [104, 106, 305, 306], "ongo": [239, 245, 260, 267, 271], "onli": [25, 27, 32, 37, 59, 60, 62, 64, 67, 71, 114, 127, 129, 136, 146, 147, 149, 152, 154, 155, 159, 167, 171, 173, 175, 178, 186, 188, 196, 198, 200, 205, 208, 225, 226, 242, 252, 255, 256, 258, 264, 265, 266, 267, 269, 270, 271, 273, 274, 275, 276, 291, 293, 294, 295, 311], "onlin": [160, 173, 276], "onscreen": [252, 255, 264], "onscreen_manag": 255, "onto": [30, 234, 269, 292], "opac": [14, 20, 24, 30, 35, 37, 39, 57, 58, 67, 71, 74, 86, 87, 88, 89, 94, 226, 235, 273, 274, 275, 289, 293, 294, 296, 303, 309, 313], "opacity_1": 275, "opacity_2": 275, "opacity_slid": 24, "opacity_slider_label": 24, "opaqu": [273, 274, 295], "open": [24, 88, 96, 97, 98, 99, 100, 101, 103, 104, 105, 106, 122, 132, 135, 137, 138, 139, 140, 145, 148, 152, 154, 166, 171, 173, 176, 177, 180, 181, 226, 228, 229, 236, 262, 267, 271, 289, 293, 302, 310, 312, 314], "opencv": [38, 220], "opengl": [22, 23, 89, 96, 109, 139, 142, 145, 173, 175, 178, 179, 230, 234, 243, 246, 252, 267, 290, 291, 295, 311, 312, 313], "openglmoleculemapp": 296, "openglrender": 296, "oper": [24, 71, 93, 118, 135, 175, 184, 234, 237, 240, 255, 312], "opportun": [136, 230, 231, 232, 242, 251, 314], "opposit": [275, 294, 295], "opt": [173, 270], "optim": [4, 109, 116, 118, 162, 172, 178, 189, 205, 226, 240, 269, 286], "optimis": 165, "option": [9, 10, 13, 27, 32, 46, 47, 50, 67, 71, 86, 88, 93, 96, 110, 114, 121, 125, 131, 135, 155, 163, 178, 184, 192, 195, 210, 220, 225, 226, 236, 249, 254, 255, 256, 257, 264, 265, 273, 274, 275, 276, 277, 278, 280, 281, 282, 283, 285, 286, 287, 289, 290, 291, 294, 295, 296, 306, 307, 309, 312, 314], "opu": [86, 88], "opunion": 269, "orang": [27, 47, 53], "orbit": [15, 180], "orbit_actor": 15, "orbit_period": 15, "orcid": 310, "order": [14, 17, 28, 30, 59, 62, 63, 65, 67, 74, 93, 108, 114, 115, 127, 135, 140, 146, 155, 163, 167, 171, 201, 210, 213, 214, 227, 250, 253, 256, 262, 265, 269, 270, 273, 274, 276, 286, 288, 294, 295, 304, 306, 307, 312], "order_transpar": [4, 5, 7, 9, 10, 11, 12, 13, 15, 17, 20, 21, 26, 28, 29, 31, 33, 36, 37, 38, 40, 59, 60, 61, 62, 63, 65, 66, 68, 79, 80, 81, 82, 83, 87, 93, 275, 295, 307], "org": [62, 73, 86, 98, 99, 100, 101, 103, 104, 106, 108, 112, 114, 116, 118, 119, 121, 122, 124, 127, 129, 130, 132, 133, 138, 142, 145, 148, 166, 173, 176, 229, 276, 290, 291, 292], "organ": [108, 139, 142, 148, 173, 178, 179, 180, 250, 286], "organis": [134, 135, 141, 171, 172, 225, 226, 227, 267, 269, 271, 293], "orient": [5, 11, 30, 53, 54, 56, 71, 80, 81, 82, 83, 93, 116, 118, 127, 129, 135, 235, 269, 273, 274, 275, 276, 289, 292, 293, 294], "orient2rgb": 296, "orientationtest": 193, "origin": [24, 26, 32, 59, 60, 64, 74, 93, 118, 130, 184, 197, 202, 206, 221, 227, 230, 243, 249, 258, 264, 272, 273, 276, 277, 281, 294, 312, 314], "orn": [79, 80, 81, 82, 83, 93, 127], "orn_deg": [79, 80, 81, 93], "orthogon": [29, 235], "oscil": [29, 81], "osx": [96, 303, 304], "other": [17, 18, 21, 24, 28, 62, 65, 66, 71, 74, 86, 88, 108, 112, 116, 118, 131, 133, 140, 141, 142, 143, 146, 148, 149, 150, 152, 153, 154, 155, 158, 161, 164, 165, 169, 173, 176, 178, 180, 181, 182, 183, 184, 185, 186, 189, 190, 198, 201, 202, 205, 208, 210, 220, 222, 235, 236, 239, 241, 242, 243, 247, 248, 249, 253, 256, 257, 258, 263, 264, 269, 273, 276, 286, 290, 294, 295, 311, 315], "otherwis": [14, 32, 71, 234, 249, 263, 273, 275, 276, 278, 280, 282, 284, 289, 290, 293, 294, 295, 315], "our": [2, 3, 16, 24, 30, 32, 35, 36, 37, 40, 60, 64, 67, 71, 72, 73, 74, 76, 83, 93, 97, 98, 99, 100, 101, 103, 104, 105, 106, 108, 122, 127, 132, 137, 138, 142, 145, 166, 173, 176, 177, 180, 182, 199, 202, 214, 217, 219, 228, 229, 231, 239, 242, 258, 266, 267, 280, 286, 289, 311, 314], "ourselv": [108, 169], "out": [14, 59, 62, 74, 76, 108, 111, 112, 113, 114, 115, 117, 118, 119, 120, 121, 123, 125, 126, 127, 128, 129, 130, 131, 136, 140, 142, 149, 152, 156, 158, 161, 167, 171, 178, 180, 181, 182, 185, 187, 190, 193, 200, 202, 204, 205, 209, 212, 213, 214, 215, 218, 219, 224, 231, 234, 237, 239, 243, 246, 248, 249, 252, 258, 262, 264, 265, 267, 268, 270, 271, 273, 275, 276, 280, 283, 293, 295, 297, 309, 315], "out_arr": 281, "out_control_point": 59, "out_cp": [59, 275], "out_path": [2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 71, 72, 73, 74, 75, 76, 79, 80, 81, 82, 83, 86, 87, 88, 295], "out_tan": 62, "out_tang": [62, 275], "outbreak": [107, 108], "outcom": 266, "outer": [273, 293], "outer_radiu": [51, 54, 293, 296], "outlin": [134, 169], "outlinefilt": 296, "output": [24, 71, 76, 111, 117, 120, 123, 126, 128, 131, 134, 136, 172, 180, 211, 218, 243, 251, 255, 258, 267, 282, 288, 294, 295], "outsid": [71, 155, 311], "outstand": 314, "over": [5, 74, 86, 107, 123, 125, 133, 179, 235, 242, 247, 267, 270, 281, 293, 314], "overal": [266, 293], "overcom": [209, 236, 271], "overflow": [135, 149, 155, 164, 257, 263, 266, 271, 293, 306, 307, 309, 310], "overflow_postfix": 293, "overhead": 32, "overlai": 293, "overlap": [28, 216], "overlapp": 211, "overload": 302, "overrid": 290, "overshoot": 112, "overview": [35, 121, 256], "overwhelm": [134, 179], "own": [118, 147, 149, 179, 180, 249, 252, 290, 293, 295], "owndata": 276, "p": [26, 34, 71, 79, 80, 81, 82, 83, 86, 87, 93, 127, 148, 173, 179, 193, 267, 269, 270, 273, 274, 278, 292], "p0": 62, "p1": 62, "p5": 180, "p_": 267, "p_actor": 15, "p_color": 40, "p_data": 15, "pack": [175, 258, 267], "packag": [36, 96, 97, 100, 165, 173, 180, 272, 276, 280, 288, 301, 314], "pad": [32, 46, 50, 236, 273, 283, 293, 296], "pad_i": [273, 283], "pad_x": [273, 283], "pad_x_neg": 273, "pad_x_po": 273, "pad_y_neg": 273, "pad_y_po": 273, "pad_z_neg": 273, "pad_z_po": 273, "page": [96, 97, 179, 180, 230, 245, 246, 255, 267, 269, 292, 312, 314], "pain": 154, "pair": [93, 243, 246, 254, 267, 271, 292], "palat": 234, "pallet": 193, "panda3d": 184, "pandem": [107, 108], "panel": [11, 14, 15, 24, 30, 37, 43, 49, 60, 66, 67, 124, 135, 140, 149, 152, 155, 164, 171, 182, 185, 189, 191, 195, 211, 215, 216, 225, 226, 242, 275, 293], "panel2d": [11, 14, 15, 24, 30, 37, 43, 49, 54, 112, 140, 143, 146, 149, 152, 155, 158, 171, 182, 191, 225, 266, 271, 296, 302, 310], "panel2d_object": 293, "panel_1": 49, "panel_2": 49, "panel_color": 293, "panel_pick": 14, "panle2d": 149, "paper": [150, 165, 166, 168, 170, 172, 265, 310], "paragraph": 139, "parallel": [14, 33, 82, 142, 173, 269, 295], "parallelli": 187, "param": [72, 283], "paramet": [8, 15, 28, 30, 36, 37, 40, 55, 64, 71, 72, 73, 79, 80, 81, 82, 83, 88, 93, 94, 114, 119, 151, 157, 199, 215, 225, 227, 241, 244, 253, 256, 262, 264, 266, 267, 268, 269, 272, 273, 274, 275, 276, 277, 278, 280, 281, 282, 283, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 303, 306, 307, 308, 309, 311, 312], "parametr": [246, 259, 310, 311], "parent": [65, 93, 152, 155, 179, 189, 192, 219, 225, 227, 233, 275, 281], "parent_anim": [275, 281, 296], "parent_bone_deform": 281, "parent_bone_transform": 281, "parentbonetransform": 219, "parenthesi": 310, "pari": 5, "paris_actor": 5, "pars": [141, 144], "part": [11, 12, 32, 64, 71, 73, 93, 105, 116, 125, 135, 137, 139, 141, 142, 171, 177, 179, 180, 198, 205, 215, 225, 226, 227, 228, 230, 231, 232, 238, 240, 243, 249, 250, 253, 255, 257, 258, 261, 262, 265, 267, 271, 273, 276, 288, 293, 311, 314], "parti": 220, "partial": [140, 189, 211, 264, 270, 311, 314], "partialactor": [207, 210], "particip": [105, 137, 140, 177, 179, 180, 228, 231, 240, 253], "particl": [22, 23, 26, 89, 159, 172, 308, 313], "particular": [10, 93, 110, 118, 127, 129, 149, 155, 171, 186, 315], "particularli": 269, "parzen": 246, "pass": [10, 28, 40, 74, 75, 76, 88, 93, 114, 115, 117, 123, 146, 148, 150, 152, 157, 158, 159, 171, 179, 180, 215, 225, 242, 243, 246, 249, 252, 253, 255, 256, 257, 258, 259, 264, 265, 267, 268, 269, 270, 273, 280, 291, 293, 294, 309, 312, 314], "pass_shader_uniforms_to_f": 267, "past": [123, 139, 147, 148, 151, 154, 237, 295, 314], "patch": [145, 173, 291, 309, 311], "path": [14, 15, 26, 33, 35, 36, 37, 38, 45, 59, 68, 71, 74, 87, 94, 198, 226, 227, 246, 249, 251, 267, 271, 272, 275, 278, 281, 282, 290, 293, 295, 312], "path_actor": 26, "path_numb": 295, "path_suzann": 94, "path_thick": 26, "patheffectrender": 169, "pattern": [171, 288], "paul": 286, "paus": [15, 66, 67, 198, 226, 275, 293, 296, 312], "pause2": 15, "pause_anim": 15, "pause_button": 15, "pbr": [22, 23, 69, 70, 89, 176, 309, 311, 313], "pbr_param": 37, "pc": [178, 296], "pdb": [141, 144], "pdbx": [141, 144], "pdf": 269, "peak": [180, 270, 296, 303, 309, 311, 312], "peak_actor": 273, "peak_dir": 273, "peak_slic": [296, 303, 312], "peak_valu": 270, "peakactor": [273, 296], "peaks_dir": [273, 274], "peaks_from_model": [39, 273], "peaks_slic": [303, 309], "peaks_valu": 273, "peaksliceractor": 303, "peculiar": [148, 257], "pedesi": 26, "peel": [275, 295], "pend": [108, 119, 129, 242, 250], "pent_actor": 273, "pentagon": [34, 176, 273, 289, 311], "pentagonalpr": 296, "peopl": [178, 230], "pep": [310, 314], "pep8": 314, "peptid": 286, "per": [27, 59, 71, 113, 187, 206, 265, 269, 273, 274, 275, 277, 282, 294, 295], "percent": 275, "percentag": [43, 54, 275, 293], "percept": 276, "perceptu": 276, "perfect": [151, 178, 225], "perfectli": [9, 74, 161, 187, 212, 258, 264, 269], "perform": [15, 28, 37, 40, 43, 46, 53, 54, 71, 74, 80, 82, 86, 88, 93, 97, 117, 125, 134, 138, 139, 140, 142, 146, 148, 151, 154, 171, 173, 186, 205, 207, 225, 235, 269, 286, 291, 309], "perimet": 273, "period": [118, 127, 133, 134, 136, 139, 140, 168, 170, 180, 269, 271, 275, 280, 291], "periodict": 296, "permiss": 315, "permit": [196, 277, 315], "perpendicular": [17, 295], "person": [133, 154, 173], "perspect": [14, 133, 295], "perturb": [269, 274], "ph": 139, "phase": [29, 33, 267, 271], "phase_angl": [29, 33], "phd": 142, "phenomena": 309, "phew": 187, "phi": [5, 35, 36, 37, 46, 50, 71, 72, 73, 262, 265, 270, 273, 289, 292], "phong": [71, 74, 178, 269, 285], "physic": [37, 69, 70, 73, 78, 79, 80, 81, 83, 93, 97, 108, 114, 116, 118, 119, 124, 129, 132, 135, 176, 178, 227, 285, 292, 302, 308, 309, 311, 313], "physicsclientid": 82, "pi": [5, 15, 25, 29, 65, 68, 81, 118, 258, 285, 292], "pic": 273, "pick": [0, 1, 12, 14, 35, 89, 122, 131, 134, 179, 270, 271, 293, 296, 307, 313], "pickable_off": [287, 296], "pickable_on": [287, 296], "picked_info": 11, "picker": 14, "picking_tol": 273, "pickingmanag": [11, 273, 296], "pickl": 306, "pickm": 11, "piec": [74, 154, 261, 267], "pierpaoli": [269, 274], "pietro": [138, 309], "pil": 193, "pil_imag": 193, "pilephimathrm": 292, "pillow": [282, 312], "pinkal": 276, "pip": [86, 88, 96, 97, 98, 99, 100, 101, 103, 104, 106, 122, 132, 138, 166, 176, 229, 305, 314], "pipe": [141, 148, 172], "pipelin": [14, 24, 104, 109, 173, 178, 246, 269, 295, 305, 307, 310], "pitch": [5, 28, 292, 295, 296], "pivot": [81, 194], "pixel": [43, 54, 74, 178, 197, 277, 293, 294, 295], "pjoin": [35, 36, 87], "pkg": [86, 88], "pkg_commit_hash": 296, "pkg_info": 296, "pkg_path": [272, 288], "pkg_version_str": 280, "place": [4, 5, 37, 43, 49, 54, 63, 65, 71, 107, 108, 112, 146, 149, 152, 155, 164, 171, 217, 258, 273, 280, 283, 293, 306, 312], "placehold": [47, 53, 149, 171, 288, 293], "plai": [9, 13, 22, 23, 35, 66, 67, 71, 89, 167, 169, 171, 185, 189, 198, 218, 225, 226, 271, 275, 293, 295, 296, 312, 313], "plain": 273, "plan": [114, 118, 120, 127, 145, 186, 188, 230, 232, 233, 234, 236, 237, 239, 240, 241, 242, 243, 246, 247, 249, 250, 252, 255, 258, 260, 266, 268, 271], "plane": [14, 19, 24, 38, 40, 80, 82, 83, 273, 276, 283, 292], "plane_actor": 38, "planet": 15, "planet_actor": 15, "planet_actor_list": 15, "planet_data": 15, "planet_fil": 15, "planet_imag": 15, "planet_track": 15, "planets_data": 15, "plank": [141, 172], "plasma": [25, 276], "platform": [88, 176, 229, 311, 312], "plausibl": [37, 72], "play3": 15, "play_ev": [295, 296], "play_events_from_fil": [295, 296], "play_onc": [293, 296], "playback": [59, 60, 66, 67, 181, 189, 195, 222, 226, 275, 293], "playback_panel": [59, 60, 61, 65, 66, 67, 192, 275, 296], "playbackpanel": [67, 189, 192, 198, 220, 226, 296, 312], "player": [178, 226], "playlist": 180, "pleas": [24, 30, 35, 39, 97, 314], "plot": [25, 26, 29, 33, 246, 252, 267, 276, 302], "plu": [34, 286], "ply": [76, 94, 282], "plyread": 296, "plywrit": 296, "pm": [178, 179, 180], "png": [2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 71, 72, 73, 74, 75, 76, 79, 80, 81, 82, 83, 86, 87, 88, 97, 193, 277, 278, 282, 293, 295, 302], "png_magnifi": 295, "pngreader": 296, "pngwriter": 296, "po": [11, 25, 32, 36, 59, 60, 62, 72, 73, 74, 79, 80, 81, 82, 83, 93, 127, 273, 278], "point": [17, 25, 29, 32, 33, 37, 40, 59, 62, 71, 74, 75, 93, 129, 142, 149, 154, 158, 161, 167, 169, 173, 180, 182, 185, 186, 187, 189, 194, 196, 197, 203, 205, 206, 209, 218, 221, 225, 230, 243, 245, 246, 249, 252, 255, 258, 264, 265, 267, 268, 270, 271, 274, 275, 276, 289, 292, 294, 295, 296, 309], "point_actor": [17, 273], "point_radiu": [17, 33, 273], "point_vert": 40, "pointpick": 296, "poirier": [138, 309], "polar": [29, 292], "poli": [178, 191, 201], "polici": 294, "polish": [249, 255, 261, 262, 269], "poly_data": 294, "poly_mapp": 294, "polydata": [6, 18, 76, 131, 184, 188, 189, 202, 226, 282, 294, 296, 306, 312], "polydatamapp": [294, 296], "polydatamapper2d": 296, "polydatanorm": 296, "polydataread": 296, "polydatawrit": 296, "polygon": [28, 69, 70, 71, 75, 89, 125, 131, 134, 210, 269, 273, 294, 296, 312, 313], "polylin": [185, 191, 194, 197, 203, 206, 218, 221, 225, 273], "polypeptid": 172, "polyvertex": 296, "ponder": 252, "poor": [117, 148], "pop": [39, 61, 63, 161], "popen": [145, 148, 312], "popul": [37, 243, 246, 293], "popular": [71, 276], "populateframebuff": 243, "port": [88, 291], "portion": [236, 271, 288], "pos_dot": 66, "pos_ev": 68, "pos_fun": 275, "pos_keyfram": 275, "pos_planet": 15, "pos_saturn": 15, "pose": [164, 212, 227, 263, 271, 281], "posit": [4, 5, 8, 11, 14, 15, 18, 21, 24, 25, 26, 27, 28, 29, 30, 32, 33, 35, 36, 37, 40, 43, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 60, 61, 63, 64, 65, 66, 67, 68, 71, 74, 79, 80, 81, 82, 83, 87, 93, 94, 110, 112, 116, 118, 142, 146, 148, 154, 157, 169, 172, 173, 175, 182, 183, 185, 187, 191, 192, 194, 197, 198, 203, 209, 210, 211, 214, 222, 225, 226, 233, 239, 251, 252, 254, 264, 266, 269, 271, 273, 274, 275, 277, 278, 280, 283, 286, 287, 289, 290, 291, 292, 293, 294, 295, 296, 305, 306, 311, 312], "position1": 239, "position2": [114, 239], "position_1": 275, "position_2": 275, "position_control": [81, 83], "position_keyfram": 66, "position_offset": [49, 283], "positiongain": [81, 83], "positions_fil": [35, 36, 87], "posobj": [79, 80, 82, 83, 93], "possibl": [14, 27, 28, 31, 32, 37, 50, 71, 74, 93, 109, 114, 116, 117, 135, 146, 148, 149, 151, 157, 175, 180, 182, 226, 244, 250, 255, 256, 257, 258, 269, 270, 273, 276, 280, 290, 292, 314, 315], "possibli": [113, 146], "post": [113, 129, 142, 148, 153, 154, 164, 173, 180, 218, 225, 226, 227, 252, 255, 258, 264, 267, 269, 271, 310, 311, 312, 314], "posterior": 292, "postfix": 293, "postpon": [178, 181], "pot": 76, "potenti": [150, 255, 271], "power": [15, 22, 32, 71, 89, 97, 180, 226], "pr": [108, 109, 112, 118, 120, 127, 129, 131, 135, 136, 139, 140, 141, 142, 143, 144, 145, 146, 148, 149, 153, 155, 156, 157, 159, 160, 162, 163, 164, 165, 167, 168, 169, 170, 171, 173, 174, 175, 179, 180, 181, 184, 186, 188, 189, 190, 192, 193, 194, 195, 200, 201, 203, 205, 206, 207, 209, 210, 211, 213, 215, 216, 217, 219, 220, 221, 222, 223, 225, 226, 227, 232, 233, 235, 236, 238, 239, 240, 242, 243, 244, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 266, 267, 268, 269, 270, 271, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312], "practic": [97, 154, 173, 178, 180, 232, 267], "pranckevi\u010diu": [258, 267], "praneeth": [166, 176, 180, 181, 184, 225, 229, 271, 302, 310, 311, 312], "prashil": [103, 304], "prayasj": [176, 311], "pre": [31, 140, 175, 225, 265, 269, 293, 312], "precalcul": 270, "preced": [194, 275], "precis": [97, 258, 267, 269], "precommit": 312, "precomput": 273, "predefin": 294, "predict": [147, 246, 273, 274], "prefer": [14, 60, 71, 288], "prefix": 255, "premis": 269, "prepar": [10, 35, 36, 53, 178, 180, 233, 252, 253, 263, 269, 271, 295, 302, 306], "preprocess": 253, "presenc": 147, "present": [11, 14, 33, 93, 146, 148, 149, 155, 173, 175, 225, 237, 249, 255, 258, 264, 265, 267, 269, 271, 286], "preserv": 118, "press": [148, 173, 180, 194, 293, 295], "pretti": [32, 180, 238, 252, 255, 267], "prevent": [32, 129, 148, 155, 264, 312], "preview": [144, 147, 152, 208, 212, 217, 219, 223], "previou": [52, 74, 108, 119, 121, 135, 141, 146, 149, 154, 179, 180, 189, 192, 209, 226, 231, 242, 253, 257, 262, 263, 266, 275, 276, 281, 293], "previous": [15, 37, 71, 124, 127, 133, 152, 158, 169, 171, 182, 191, 209, 211, 225, 255, 264, 266, 271, 276], "previous_angl": [53, 54, 56], "previous_valu": [52, 53, 54, 56, 293, 296], "previouspoint": 62, "previoustang": 62, "prfuri": 175, "price": [142, 258, 309], "prim": [281, 306], "prim_arrow": 296, "prim_box": [32, 296], "prim_con": 296, "prim_count": 294, "prim_cylind": 296, "prim_frustum": 296, "prim_icosahedron": 296, "prim_id": 290, "prim_octagonalpr": 296, "prim_pentagonalpr": 296, "prim_rhombicuboctahedron": 296, "prim_spher": [17, 28, 296], "prim_sphere_actor": 16, "prim_squar": 296, "prim_star": 296, "prim_superquadr": 296, "prim_tetrahedron": [32, 296, 312], "prim_triangularpr": 296, "primari": [140, 146, 171, 178, 271], "primarili": [149, 155, 171, 188], "primit": [2, 3, 16, 17, 24, 28, 32, 40, 74, 75, 87, 106, 109, 113, 122, 134, 138, 166, 179, 184, 186, 188, 189, 196, 205, 223, 226, 227, 273, 281, 294, 296, 306, 307, 308, 309, 310, 311, 312], "primitive_actor": 17, "primitive_color": 17, "primitives_count": 294, "primitives_count_from_actor": 296, "primitives_count_to_actor": 296, "princip": [93, 269, 274, 276], "principl": [69, 70, 89, 97, 148, 176, 225, 285, 311, 312, 313], "principled_param": 285, "print": [10, 18, 24, 25, 27, 94, 96, 148, 179, 182, 243, 295], "print_count": 10, "prior": [109, 126, 180, 200, 206, 246, 252, 267, 315], "priorit": 134, "prioriti": [112, 152, 257, 263, 290, 293, 310], "prism": [129, 166, 176, 273, 289, 307, 310, 311], "pro": [141, 184], "probabilist": 39, "probabl": [130, 143, 146, 151, 152, 154, 155, 157, 181, 232, 246, 252, 258, 269], "problem": [110, 114, 116, 118, 119, 121, 124, 127, 129, 135, 140, 142, 146, 147, 152, 155, 161, 173, 205, 214, 224, 225, 226, 232, 236, 239, 244, 253, 254, 255, 257, 258, 259, 261, 264, 265, 266, 267, 270, 271, 273, 304, 306], "problemat": [148, 161], "proce": [31, 93, 238, 265], "procedur": [93, 116], "proceed": [111, 269], "process": [13, 24, 29, 37, 64, 74, 86, 87, 88, 93, 97, 114, 116, 135, 145, 148, 149, 154, 167, 171, 173, 175, 180, 197, 233, 246, 252, 255, 256, 257, 258, 260, 264, 265, 266, 267, 271, 282, 290, 293, 311], "procur": 315, "produc": [72, 73, 148, 175, 269, 278, 286], "product": [179, 245, 295, 315], "profession": 230, "professor": 178, "profil": 179, "profit": 315, "program": [25, 74, 76, 134, 178, 179, 205, 211, 218, 231, 232, 234, 237, 243, 252, 254, 255, 261, 262, 263, 267, 271, 273, 290, 307], "programm": 136, "progress": [108, 110, 116, 118, 119, 121, 124, 127, 129, 130, 133, 134, 144, 147, 150, 153, 156, 159, 162, 165, 168, 170, 173, 231, 239, 240, 245, 249, 251, 255, 260, 263, 266, 270, 278, 293, 312], "progressbar": 278, "proj": 40, "proj_mat4d": 40, "proj_typ": 295, "projeced_mat3d": 40, "project": [14, 30, 40, 98, 99, 100, 101, 103, 104, 105, 106, 107, 108, 111, 112, 113, 115, 116, 117, 120, 122, 123, 125, 126, 128, 131, 132, 134, 135, 136, 137, 138, 139, 142, 166, 171, 172, 173, 176, 177, 178, 179, 180, 184, 198, 225, 226, 227, 228, 229, 231, 232, 233, 234, 237, 238, 240, 243, 246, 249, 250, 252, 258, 267, 268, 269, 271, 273, 274, 276, 292, 295, 296, 306, 309, 314], "projected_marix": 40, "promis": 209, "promot": [178, 315], "proof": 243, "prop": [200, 275, 281, 293, 294], "propag": [22, 23, 89, 140, 152, 155, 197, 236, 239, 309, 313], "proper": [110, 129, 130, 148, 158, 180, 181, 206, 233, 254, 265, 271], "properli": [24, 30, 108, 112, 129, 149, 181, 184, 211, 221, 246, 259, 264, 267, 270, 271], "properti": [15, 37, 53, 60, 64, 67, 72, 74, 75, 114, 118, 142, 148, 152, 173, 176, 185, 186, 191, 192, 198, 210, 222, 225, 226, 227, 236, 239, 248, 266, 267, 269, 271, 273, 274, 275, 276, 281, 285, 286, 291, 293, 295, 302, 303, 311], "property2d": 296, "proport": [172, 178], "propos": [139, 140, 142, 145, 178, 179, 180, 247, 264, 265, 312, 314], "proppick": 296, "protein": [141, 144, 153, 156, 172, 286], "proteinribbonfilt": [153, 296], "protocol": [142, 148, 173], "prototyp": [185, 191, 209, 227, 312], "prove": [141, 144, 170, 180, 254], "provid": [17, 24, 27, 28, 32, 37, 39, 59, 61, 64, 71, 97, 108, 114, 134, 135, 140, 143, 146, 152, 158, 171, 179, 198, 230, 233, 236, 245, 248, 271, 273, 275, 276, 280, 283, 286, 287, 289, 290, 291, 292, 293, 294, 295, 306, 315], "provides_mjpeg": 291, "provides_webrtc": 291, "psf": [107, 180], "pt": [29, 33, 273, 293, 294], "ptabl": 296, "pts2": 29, "pts_actor": 59, "pts_len": 294, "public": [73, 178, 314], "publicli": 178, "pull": [108, 129, 130, 134, 135, 139, 145, 148, 151, 171, 172, 173, 179, 225, 226, 233, 236, 239, 248, 260, 267, 269, 271, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312], "pune": 140, "pure": [206, 218], "purpos": [28, 71, 72, 73, 97, 143, 149, 150, 171, 241, 247, 253, 315], "pursu": [108, 178, 179, 180], "push": [237, 314], "put": [43, 54, 71, 74, 232, 276, 312, 314], "px": 278, "py": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 70, 71, 72, 73, 74, 75, 76, 78, 79, 80, 81, 82, 83, 85, 86, 87, 88, 96, 99, 142, 148, 151, 154, 161, 169, 175, 190, 198, 201, 216, 257, 272, 273, 292, 300, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314], "pybullet": [79, 80, 81, 82, 83, 114, 116, 118, 124, 127, 129, 135, 308, 309], "pydata": 312, "pygam": 178, "pyglm": 178, "pygltflib": [96, 184, 193, 281], "pymd": [151, 154, 173], "pyopengl": 178, "pypi": 314, "pyplot": 276, "pyproject": 312, "pyramid": [178, 273, 307], "pyramid_vert": 289, "pyrend": 184, "pytest": [96, 143, 173, 311, 314], "python": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 71, 72, 73, 74, 75, 76, 79, 80, 81, 82, 83, 86, 87, 88, 89, 96, 97, 98, 99, 100, 101, 103, 104, 105, 106, 107, 108, 122, 132, 134, 135, 137, 138, 139, 142, 144, 150, 151, 159, 161, 165, 166, 167, 169, 171, 172, 173, 176, 177, 178, 179, 180, 184, 189, 192, 193, 225, 226, 227, 228, 229, 234, 256, 259, 267, 269, 271, 276, 282, 286, 291, 295, 299, 303, 306, 307, 308, 309, 314, 315], "python2": 306, "python3": [311, 314], "python35": 309, "q": 292, "quad": [12, 201, 211, 225, 293], "quadrant": 185, "quadrilater": [71, 269], "quadrup": 118, "qualiti": [25, 29, 71, 101, 103, 104, 106, 122, 132, 235, 247, 250, 258, 259, 269, 282, 295, 303, 304, 305, 306, 307, 308], "quantifi": [269, 274], "quantiti": 269, "quat": 292, "quaternion": [59, 80, 82, 93, 119, 189, 192, 201, 226, 275, 292], "queri": [93, 159, 180, 309], "quest": 271, "question": [98, 99, 100, 101, 103, 104, 106, 122, 132, 138, 166, 176, 178, 179, 180, 183, 185, 229, 291], "queue": [86, 148, 291], "queue_buff": 291, "queue_buffer_nam": 291, "queue_head_tail_buff": 291, "queue_head_tail_buffer_nam": 291, "queue_siz": 291, "quick": [64, 161, 171, 191, 203, 208, 217], "quickli": [118, 225], "quit": [32, 111, 116, 117, 119, 129, 134, 142, 147, 170, 175, 217, 260, 265, 269], "quota": 71, "r": [39, 96, 118, 149, 171, 173, 264, 269, 270, 273, 274, 276, 285, 286, 289, 292, 294, 295, 314], "r_planet": 15, "r_time": 15, "ra": [24, 273], "rad": [81, 293], "radar": 63, "radar_anim": 63, "radar_shaft": 63, "radar_shaft_anim": 63, "radial": 273, "radial_scal": [30, 273, 274], "radian": [5, 93, 293], "radii": [5, 10, 11, 12, 15, 16, 20, 21, 35, 36, 37, 46, 50, 59, 62, 65, 71, 72, 73, 79, 80, 81, 83, 86, 87, 88, 93, 172, 273, 286], "radio": [32, 41, 42, 89, 135, 293, 308, 311, 313], "radiobutton": [32, 50, 129, 296, 308], "radiu": [4, 15, 17, 21, 33, 51, 53, 54, 60, 63, 65, 71, 74, 79, 80, 81, 83, 93, 172, 273, 286, 289, 292, 293], "radius_particl": 33, "radius_typ": 286, "radiusvsoutput": 74, "raglin": [122, 132, 307, 308], "rai": [71, 74, 97, 107, 109, 111, 113, 134, 269], "rais": [180, 185, 188, 203, 273, 278, 280, 290, 311], "raj": [229, 302, 312], "ram": 178, "ran": [178, 181], "rand": [2, 3, 5, 12, 20, 21, 26, 27, 35, 36, 52, 75, 80, 81, 82, 83, 87, 93, 94, 273, 294, 295], "random": [2, 3, 5, 10, 12, 20, 21, 26, 27, 34, 35, 36, 52, 60, 75, 80, 81, 82, 83, 87, 88, 93, 94, 246, 252, 258, 269, 270, 273, 276, 292, 294, 295], "random_geometric_graph": 36, "randomli": [21, 36, 60, 267, 309], "rang": [10, 15, 25, 26, 29, 32, 34, 36, 37, 38, 40, 60, 61, 63, 72, 73, 80, 81, 82, 83, 93, 206, 260, 267, 271, 273, 274, 276, 285, 286, 289, 294], "range_precis": [54, 293], "range_select": 293, "range_slid": [293, 296], "range_slider_cent": [54, 293, 296], "range_slider_handle_move_callback": [293, 296], "range_slider_i": 54, "range_slider_x": 54, "rangeslid": [54, 106, 296, 306], "rank": 303, "ransform": 281, "raster": [169, 179], "rate": [75, 104, 117, 167, 269, 273, 305], "rather": [113, 117, 147, 168, 170, 258, 271, 273, 292], "ratio": [171, 273, 283, 293, 294, 295, 296], "ratio_to_coord": [293, 296], "ratio_to_valu": [293, 296], "ration": 295, "raw": [44, 45, 142], "raw_arr_buff": 142, "rawarrai": [86, 139, 145, 148, 291], "rawarrayimagebuffermanag": [148, 296], "rawarraymultidimensionalbuff": 296, "ray_march": 74, "raymarch": [28, 75, 125, 134, 232, 235, 238, 245, 253, 256], "rbg": 276, "rce": [309, 310], "rcoh_actor": 273, "rcounter": 10, "rd": 74, "re": [3, 9, 13, 16, 24, 31, 86, 87, 121, 148, 158, 180, 219, 264, 293, 294, 303, 306, 307, 312, 314], "re_align": [24, 30, 37, 293, 296], "reach": [173, 178, 190, 246, 255, 263, 312], "read": [8, 14, 32, 35, 36, 38, 110, 112, 113, 114, 116, 118, 119, 121, 124, 127, 129, 130, 133, 135, 142, 145, 148, 150, 154, 159, 168, 170, 178, 179, 180, 182, 184, 193, 199, 227, 234, 277, 278, 281, 291, 295], "read_bundles_2_subject": [24, 27], "read_stanford_label": 39, "read_viz_cubemap": [37, 296], "read_viz_dmri": [28, 30, 296], "read_viz_gltf": [6, 7, 8, 9, 13, 296], "read_viz_icon": [15, 43, 54, 296, 306], "read_viz_model": [4, 76, 296], "read_viz_textur": [4, 5, 15, 19, 296], "readabl": [148, 220, 224, 238], "reader": 309, "readi": [28, 35, 36, 37, 71, 93, 118, 123, 130, 169, 175, 208, 210, 226, 238, 240, 241, 252, 253, 255, 257, 258, 260, 264, 267, 270, 271, 314], "readjust": 244, "readm": [96, 100, 301, 302, 303, 304, 306, 307, 309, 310, 312, 314], "reagan": [101, 303], "real": [71, 88, 120, 149, 171, 173, 178, 180, 186, 201, 230, 258, 262, 267, 269, 276, 296], "realis": [237, 240, 258, 264], "realism": 27, "realist": [111, 113, 227], "realiti": 258, "realiz": [113, 129, 180, 267, 271], "realli": [102, 112, 142, 143, 149, 230, 243, 255, 258, 267, 314], "realpython": 148, "rearrang": 28, "reason": [112, 142, 161, 171, 175, 180, 184, 197, 198, 226, 234, 235, 237, 239, 240, 243, 261, 267, 269, 270, 286], "rebas": [171, 223, 233, 236, 242, 251, 266, 271], "recal": [243, 258], "recap": 252, "receiv": [178, 179, 180, 232, 238, 244, 247, 253, 256, 262, 293], "recent": [71, 142, 165, 168, 260, 266, 297], "reciprocatingsaw": 193, "reckon": 168, "recogn": [178, 271, 314], "recommend": [14, 24, 62, 96, 142, 150, 170, 275, 314], "recomput": [154, 173], "reconst": [30, 39], "reconstruct": 269, "record": [2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 71, 72, 73, 74, 75, 76, 79, 80, 81, 82, 83, 86, 87, 88, 152, 155, 157, 158, 161, 173, 213, 220, 226, 270, 275, 280, 296, 304, 312], "record_ev": [295, 296], "record_events_to_fil": [295, 296], "record_posit": 157, "recreat": 71, "rect": [51, 54, 273, 283, 293], "rect_actor": 273, "rect_grid": 49, "rect_obj": 293, "rectangl": [38, 51, 54, 171, 182, 218, 225, 248, 293, 296, 307], "rectangle2d": [51, 54, 114, 143, 146, 158, 171, 182, 211, 218, 225, 296], "rectangular": 12, "rectifi": [233, 266, 271], "recurs": [32, 152], "recursiveskeleton": 193, "recv": [291, 296], "red": [27, 29, 33, 46, 47, 50, 53, 79, 273, 295], "red_bal": 79, "red_ball_actor": 79, "red_ball_col": 79, "red_orn": 79, "red_po": 79, "red_radiu": 79, "redefin": [28, 295], "redesign": [146, 226], "redirect": [251, 310], "redistribut": 315, "redon": 161, "reduc": [11, 12, 154, 178, 224, 273], "redund": [215, 221, 271], "refactor": [121, 135, 151, 158, 166, 169, 173, 183, 249, 252, 253, 261, 266, 267, 268, 271, 302, 309, 310, 312], "refer": [39, 60, 80, 81, 82, 83, 93, 147, 167, 171, 179, 183, 185, 187, 194, 209, 214, 225, 230, 265, 271, 274, 276, 286, 291, 293, 295, 310], "refin": [244, 263], "reflect": [66, 73, 128, 176, 184, 275, 285, 311], "refract": [37, 72, 176, 285, 311], "refrain": 266, "refresh": [179, 180, 293, 312], "regard": [110, 112, 114, 116, 119, 121, 124, 127, 129, 130, 133, 158, 161, 180, 239, 248, 258, 261, 270], "regardless": 27, "region": [12, 28, 267, 269], "regist": [24, 30, 32, 37, 155, 314], "regul": 231, "regular": [93, 182, 273, 279, 280, 289, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312], "regularpolygonsourc": 296, "reimplement": 290, "reiniti": 275, "reject": [179, 180], "rel": [15, 65, 93, 155, 158, 161, 187, 226, 267, 273, 295, 314], "relat": [63, 108, 114, 129, 145, 148, 149, 151, 152, 154, 155, 158, 168, 173, 180, 184, 205, 230, 233, 234, 235, 236, 241, 248, 253, 255, 257, 258, 259, 262, 264, 266, 267, 268, 269, 270, 271, 276, 290, 293, 295, 310], "relationship": [265, 269], "relative_peak_threshold": 39, "relax": 280, "releas": [38, 86, 125, 157, 194, 280, 291, 293, 295, 296], "release0": 314, "release_context": 296, "release_curr": [10, 295, 296], "release_lock": [295, 296], "release_not": 314, "relev": [15, 121, 154, 171, 236, 253], "reli": [196, 234, 240, 247, 248, 249, 253, 255, 257, 266, 267], "remain": [108, 119, 123, 125, 146, 152, 161, 164, 167, 171, 173, 225, 236, 242, 257, 263, 264, 311], "remark": [179, 180, 231], "rememb": [154, 178, 314], "remind": [180, 181], "remot": [302, 314], "remov": [10, 28, 31, 32, 81, 99, 104, 106, 121, 154, 155, 159, 161, 172, 173, 181, 203, 215, 216, 225, 226, 266, 273, 275, 276, 279, 280, 290, 293, 294, 295, 296, 300, 303, 304, 305, 306, 309, 310, 311, 312, 314], "remove_actor": [275, 296], "remove_anim": [275, 295, 296], "remove_charact": [293, 296], "remove_el": [293, 296], "remove_from_scen": [273, 275, 296], "remove_from_scene_at": [275, 296], "remove_observer_from_actor": [31, 296], "remove_shm_from_resource_track": 296, "removeobserv": 290, "renam": [201, 273, 280, 303, 308, 311], "render": [4, 5, 7, 9, 10, 11, 12, 13, 15, 17, 20, 21, 22, 23, 24, 25, 26, 28, 29, 30, 31, 32, 33, 36, 37, 38, 40, 44, 45, 46, 53, 64, 69, 70, 74, 75, 76, 79, 80, 81, 82, 83, 86, 89, 94, 96, 97, 101, 109, 111, 113, 115, 116, 117, 118, 120, 123, 124, 126, 127, 129, 130, 131, 134, 135, 142, 144, 147, 149, 150, 154, 161, 169, 170, 171, 173, 176, 180, 190, 196, 205, 208, 209, 219, 220, 222, 227, 230, 234, 237, 240, 243, 246, 249, 252, 255, 258, 261, 264, 267, 269, 273, 281, 285, 286, 291, 293, 295, 296, 302, 303, 306, 309, 310, 311, 312, 313, 315], "render_aft": 291, "render_text": [293, 296], "render_window": 295, "renderbuff": 230, "renderev": 267, "renderlargeimag": 296, "renderwindow": [290, 295, 296], "renderwindowinteractor": 296, "renorm": 258, "renwin": 295, "reopen": 200, "reorient": 303, "rep_cent": 74, "rep_direct": 74, "rep_height": 74, "rep_radii": 74, "repeat": [2, 3, 16, 21, 25, 26, 29, 33, 36, 40, 60, 74, 158, 216, 227, 289, 293, 295, 312], "repeat_primit": [32, 227, 273, 296, 312], "repeat_primitive_funct": 296, "repeat_sourc": [273, 296], "repetit": [172, 225, 312], "replac": [20, 71, 76, 93, 101, 104, 129, 135, 171, 218, 224, 249, 279, 280, 290, 293, 303, 305, 306, 311, 312], "replace_al": 290, "replace_first": 290, "replace_shader_in_actor": 296, "replace_strip": 273, "replic": [180, 292], "repo": [96, 111, 180, 314], "report": [258, 264, 267, 280, 295, 302, 312], "reportsnapshot": 295, "reposit": [37, 135, 187, 215, 225, 251, 258, 271, 312], "repositori": [37, 112, 114, 116, 118, 119, 121, 124, 127, 129, 130, 133, 142, 173, 184, 188, 193, 196, 278, 286, 288], "repr": [278, 284, 290], "repres": [17, 18, 32, 33, 35, 36, 74, 146, 154, 169, 172, 173, 230, 255, 256, 269, 270, 273, 274, 276, 280, 286, 289, 291, 293, 294, 295], "represent": [32, 40, 71, 74, 134, 141, 142, 147, 151, 153, 159, 168, 171, 172, 173, 227, 269, 273, 286, 311], "represent_actor_as_wirefram": [71, 296], "reproduc": [314, 315], "repulsion100": [28, 30, 289], "repulsion200": [28, 289], "repulsion724": [28, 289], "repulsionn": 28, "repulst": 36, "request": [97, 108, 129, 130, 133, 134, 135, 136, 139, 148, 151, 163, 170, 171, 172, 173, 179, 193, 201, 205, 225, 226, 233, 236, 239, 248, 260, 267, 269, 271, 276, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312], "requir": [14, 24, 27, 28, 32, 36, 71, 80, 82, 93, 96, 99, 108, 110, 112, 142, 146, 147, 149, 152, 161, 172, 178, 180, 181, 185, 194, 200, 206, 211, 214, 218, 220, 225, 227, 234, 236, 240, 247, 253, 255, 256, 260, 261, 263, 264, 265, 269, 270, 271, 276, 291, 293, 300, 303, 306, 312, 314], "res_factor": 264, "resampl": 14, "rescal": 295, "rescu": 142, "research": [73, 97, 116, 150, 151, 165, 167, 168, 179, 185, 243], "resembl": 180, "reserv": 315, "reset": [10, 32, 295], "reset_camera": [4, 5, 7, 9, 10, 11, 12, 13, 14, 15, 17, 18, 19, 20, 21, 24, 26, 27, 28, 29, 30, 31, 32, 33, 36, 37, 38, 46, 50, 54, 56, 59, 60, 61, 62, 63, 65, 66, 68, 76, 79, 80, 81, 82, 83, 87, 93, 94, 295, 296], "reset_camera_tight": [295, 296], "reset_clipping_rang": [21, 24, 36, 39, 46, 50, 54, 56, 295, 296], "resetcamera": 10, "reshap": [25, 40, 80, 81, 82, 83, 93, 127, 184, 193, 294, 306], "resid": [142, 173], "residu": 286, "residue_seq": 286, "resiz": [37, 48, 110, 112, 114, 140, 143, 149, 152, 155, 158, 161, 171, 182, 225, 239, 242, 248, 251, 266, 271, 291, 293, 296, 310, 312], "resize_shap": [293, 296], "resolut": [5, 17, 29, 30, 33, 46, 63, 65, 71, 74, 87, 142, 236, 257, 264, 269, 273, 289, 295, 304], "resolv": [147, 149, 159, 169, 211, 216, 225, 233, 236, 242, 248, 251, 254, 257, 266, 271, 302, 303, 310, 312], "reson": [269, 274], "resourc": [86, 134, 142, 145, 148, 151, 154, 157, 158, 173, 256, 275, 291], "resource_track": [145, 148, 291], "respect": [15, 21, 72, 74, 81, 83, 93, 108, 110, 114, 135, 140, 149, 169, 184, 187, 216, 225, 235, 273, 281, 291, 293, 294, 306], "respons": [67, 80, 82, 127, 129, 140, 148, 154, 173, 195, 226, 243, 267, 271, 275, 291, 295], "rest": [116, 147, 179, 244], "restart": [242, 275, 296], "restitut": [79, 80, 82, 83, 93], "restrict": [117, 178, 185, 293], "restructur": [155, 171, 201, 224, 260], "restructuredtext": 306, "result": [28, 31, 35, 36, 40, 73, 117, 118, 142, 143, 148, 149, 151, 173, 179, 180, 184, 197, 211, 236, 238, 239, 249, 252, 254, 255, 258, 259, 265, 266, 267, 269, 270, 271, 274, 278, 284, 290, 294, 295], "result_posit": 14, "result_valu": 14, "resum": 314, "retain": [149, 171, 315], "rethink": 258, "retriev": [6, 7, 9, 13, 246, 258, 269, 270, 271, 287, 290], "return": [5, 12, 15, 21, 24, 25, 26, 27, 28, 29, 30, 32, 36, 37, 40, 46, 53, 62, 64, 65, 68, 71, 74, 75, 93, 94, 114, 118, 148, 188, 193, 202, 223, 225, 226, 237, 238, 240, 243, 266, 267, 269, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 312], "return_ifram": [291, 296], "return_inv": 30, "reus": [158, 238, 273], "reveal": [152, 264], "revers": 167, "reverse_scrol": 293, "revert": [28, 263], "review": [108, 109, 140, 146, 149, 162, 163, 164, 167, 174, 179, 181, 210, 220, 225, 227, 232, 233, 235, 238, 241, 245, 247, 249, 250, 251, 252, 253, 255, 256, 257, 258, 263, 264, 266, 268, 269, 270, 271, 286, 309, 310, 314], "revis": [253, 267], "revisit": [242, 271], "revoir": [141, 144, 147, 150, 153, 156, 159, 162, 165, 168, 170], "revolv": [146, 149, 266], "rewind": 226, "rewrit": 271, "rewritten": [135, 276], "rgb": [27, 47, 193, 270, 273, 274, 275, 276, 285, 286, 289, 293, 294, 295, 302, 309], "rgb2hsv": 296, "rgb2lab": 296, "rgb2space": 275, "rgb2xyz": 296, "rgb_arrai": 294, "rgb_from_xyz": 296, "rgb_standard": [274, 276], "rgb_to_vtk": 296, "rgba": [12, 234, 237, 267, 273, 277, 289, 294, 295, 306], "rheault": [229, 312], "rhombi": 306, "rhombicuboctahedron": [176, 289, 296, 306, 311], "rhombocuboctahedron": [122, 307], "ribbon": [141, 144, 147, 150, 156, 159, 162, 168, 171, 172, 296], "richardson": [141, 172, 286], "rid": 111, "riggedfigur": [13, 193, 217], "riggedsimpl": [193, 212, 214], "right": [11, 14, 15, 24, 27, 30, 32, 37, 43, 53, 54, 56, 63, 86, 143, 145, 147, 149, 152, 161, 171, 178, 184, 225, 235, 238, 239, 240, 249, 265, 270, 273, 293, 294, 295, 305, 312, 314, 315], "right_btn_press": 291, "right_btn_releas": 291, "right_button_click_callback": [293, 296], "right_button_release_callback": [293, 296], "right_disk_ratio": [293, 296], "right_disk_valu": [293, 296], "right_move_left": [293, 296], "right_move_right": [293, 296], "right_x_posit": [293, 296], "rightbuttonpressev": 291, "rightbuttonreleaseev": 291, "rigid": [116, 169, 269], "rigidbodi": 180, "rigor": 271, "ring": [15, 51, 54, 56, 293], "ring_slid": [53, 54, 56], "ringslider2d": [53, 54, 56, 124, 194, 225, 254, 296], "rinner": 273, "risk": 263, "rm": [4, 10, 32, 295, 296], "rm_all": [295, 296], "ro": 74, "road": [63, 243, 267], "roadblock": [245, 260], "robin": 302, "robot": [57, 58, 89, 93, 118, 210, 226, 313], "robust": [86, 88, 236], "rock": [47, 53], "rohit": [229, 312], "roi": [22, 23, 28, 89, 250, 273, 302, 312, 313], "roi_ev": 28, "roi_evec": 28, "rokem": [103, 304], "role": 271, "roll": [28, 93, 205, 292, 295, 296], "roman": 276, "room": 97, "roorke": [141, 179], "root": [93, 233, 239, 258, 266, 267, 271, 314], "root_anim": 281, "root_robe_c": [81, 83], "rope": [81, 83, 93, 129], "rope_actor": [81, 83, 93], "rosenblatt": 246, "rot": 74, "rot_dril": 65, "rot_main_arm": 65, "rot_mat": [80, 81, 82, 83, 93, 127], "rot_sub_arm": 65, "rotat": [4, 5, 10, 15, 20, 28, 31, 37, 38, 40, 52, 54, 56, 63, 65, 67, 72, 74, 80, 81, 82, 93, 119, 120, 123, 135, 159, 167, 172, 176, 182, 191, 192, 195, 198, 201, 202, 203, 204, 216, 218, 225, 226, 227, 252, 267, 269, 270, 273, 275, 281, 283, 285, 293, 295, 296, 311, 312], "rotate4d": 40, "rotate_2d": 296, "rotate_axi": 15, "rotate_camera": 10, "rotate_con": 52, "rotate_cub": [53, 54, 56], "rotated_3d": 40, "rotatewxyz": 93, "rotatex": [53, 54, 56], "rotation4d_xi": 40, "rotation4d_zw": 40, "rotation_angl": [53, 54, 56], "rotation_axi": [25, 293], "rotation_ev": 68, "rotation_mat": 292, "rotation_slid": [200, 221, 225, 312], "rotation_spe": 293, "rough": [37, 72, 73, 170, 227, 285], "rougier": 173, "round": [11, 24, 30, 72, 73, 80, 81, 82, 83, 197, 258, 273, 289], "router": 273, "routin": 294, "row": [14, 276, 282, 294], "rp2color": 276, "rplanet": 15, "rresolut": 273, "rst": [96, 164, 303, 307, 312, 314], "rtc_server": 291, "rtcserver": 296, "rtmp": 312, "rubbon": 286, "ruin": 249, "rule": [32, 139, 140, 155, 180, 231, 311], "run": [20, 25, 26, 27, 29, 32, 33, 36, 38, 40, 74, 88, 93, 98, 99, 100, 101, 103, 104, 106, 122, 132, 138, 142, 143, 166, 175, 176, 178, 180, 190, 196, 229, 232, 255, 258, 291, 292, 306, 310, 312, 314], "run_app": 291, "run_command": [291, 296], "run_until_complet": 88, "runtim": [112, 133, 135, 151, 171, 175, 181, 227, 280], "runtimeerror": 280, "rv": 26, "rw": 314, "rx": 36, "ry": 36, "rz": 36, "s2012": 73, "s6": [34, 273], "sa": [170, 172], "safe": 275, "safest": 277, "sagitt": [14, 30], "sai": [142, 178, 181, 267, 279, 293, 314], "said": [93, 112, 114, 116, 118, 121, 124, 135, 154, 179, 181, 238, 255, 264, 267], "sail": 260, "sailesh": [229, 312], "sajag": [138, 141, 166, 172, 176, 309, 310, 311], "same": [2, 4, 14, 18, 21, 27, 28, 32, 59, 61, 67, 68, 80, 81, 83, 93, 107, 110, 111, 112, 114, 116, 120, 121, 126, 134, 141, 142, 143, 144, 148, 152, 154, 155, 156, 161, 173, 175, 179, 180, 181, 182, 190, 191, 192, 194, 203, 205, 210, 211, 212, 214, 217, 226, 234, 238, 246, 249, 255, 259, 264, 265, 266, 267, 268, 269, 270, 273, 274, 275, 276, 280, 283, 286, 290, 291, 294], "sampl": [9, 38, 184, 188, 193, 196, 202, 234, 246, 270, 275, 278, 295, 312], "sampler": [270, 281], "sampler_data": 281, "san": 173, "sanjai": [138, 309], "sanner": 165, "sara": [229, 312], "saransh": [106, 306], "satellit": [4, 180], "satellite_actor": 4, "satellite_filenam": 4, "satellite_obj": 4, "satisfi": [180, 242], "satur": 27, "saturation_rang": [14, 27, 276], "saturn": 15, "saturn_actor": 15, "saturn_r": 15, "saturn_rings_actor": 15, "save": [11, 12, 14, 18, 24, 35, 135, 142, 154, 158, 188, 189, 220, 267, 275, 277, 278, 281, 282, 289, 295, 303, 304, 306, 312, 314], "save_imag": [45, 296, 306], "save_polydata": [18, 296], "save_screenshot": [295, 296], "savefig": 277, "saw": [142, 145, 181], "sc": 287, "scalabl": 271, "scalar": [27, 184, 273, 275, 281, 294], "scalar_bar": [27, 296], "scalar_color": 273, "scalarbaractor": 296, "scale": [2, 4, 5, 10, 11, 12, 14, 15, 21, 25, 26, 28, 30, 31, 32, 34, 46, 53, 54, 56, 59, 60, 61, 63, 64, 65, 67, 68, 71, 72, 73, 74, 75, 80, 81, 82, 83, 87, 93, 114, 123, 152, 178, 181, 200, 202, 204, 210, 212, 213, 216, 218, 226, 227, 235, 239, 248, 249, 254, 255, 257, 258, 262, 263, 264, 265, 269, 270, 271, 273, 274, 275, 281, 286, 289, 293, 295, 296, 308, 309], "scale_1": 275, "scale_2": 275, "scale_ev": 68, "scale_keyfram": 275, "scale_mat": 292, "scale_rang": [14, 27, 276], "scalevsoutput": 269, "scan": 182, "scatter": 285, "scenario": [142, 145, 146, 148, 173, 242, 267], "scene": [0, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 60, 61, 62, 63, 64, 65, 66, 67, 68, 71, 72, 73, 74, 75, 76, 79, 80, 81, 82, 83, 86, 87, 88, 89, 94, 101, 119, 131, 134, 143, 146, 149, 171, 184, 188, 192, 198, 211, 213, 224, 226, 246, 255, 259, 264, 266, 267, 269, 271, 273, 275, 281, 283, 287, 293, 296, 303, 311, 312, 313], "scene_id": 281, "scene_idx": 224, "scfactor": 269, "schedul": 107, "schemat": 172, "scheme": [27, 32], "sci": [108, 140], "scienc": [108, 232], "scientif": [44, 45, 97, 98, 99, 100, 101, 103, 104, 105, 106, 122, 132, 137, 138, 166, 172, 173, 176, 177, 181, 228, 229, 230, 251, 269, 271, 274, 286, 302, 312], "scientist": 151, "scifihelmet": 193, "scikit": [258, 267, 276], "scipi": [26, 96, 119, 306], "scope": [279, 314], "scott": [103, 304], "scratch": [178, 180, 236, 248], "screen": [24, 27, 30, 54, 74, 96, 175, 200, 234, 237, 239, 246, 249, 252, 255, 264, 267, 278, 293, 295, 312], "screen_clip": 295, "screenshot": [14, 24, 71, 167, 171, 295, 312], "screentextur": 264, "script": [96, 188, 262, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 314], "scroll": [14, 112, 129, 178, 293, 302], "scroll_bar_active_color": 293, "scroll_bar_inactive_color": 293, "scroll_callback": [293, 296], "scroll_click_callback": [293, 296], "scroll_drag_callback": [293, 296], "scroll_release_callback": [293, 296], "scrollbar": [110, 112, 114, 135, 155, 236, 239, 242, 248, 266, 271, 293, 302], "scrollbarsupd": 135, "scrollbarui": 271, "sd_cylind": 74, "sd_sphere": 71, "sd_sphere_norm": 71, "sdcone": 269, "sdcylind": 74, "sde": 267, "sdf": [28, 69, 70, 87, 89, 111, 113, 126, 134, 138, 173, 229, 232, 238, 241, 245, 253, 256, 296, 302, 307, 309, 312, 313], "sdf_actor": [123, 125], "sdf_cylinder_frag_impl": 74, "sdf_eval": 71, "sdf_map": 74, "sdfactor": 75, "sdist": 314, "sdsphere": [71, 269], "se": 165, "seamlessli": [254, 260], "search": [121, 168, 178, 180, 203, 218, 237, 267, 295], "sec": [11, 12, 21, 80, 81, 82, 83, 93, 118, 127], "second": [9, 20, 28, 49, 53, 54, 60, 62, 64, 66, 71, 79, 93, 96, 110, 114, 116, 118, 127, 134, 135, 139, 144, 154, 169, 171, 172, 173, 175, 179, 185, 205, 218, 234, 244, 249, 252, 255, 258, 264, 267, 270, 275, 276, 286, 291, 295, 314], "second_button_exampl": [43, 54], "secondli": 152, "section": [93, 184, 245, 249, 251, 267, 271, 276, 290, 302, 309, 312], "sector": [273, 289], "secur": [106, 264, 306], "see": [14, 24, 27, 28, 31, 32, 62, 64, 72, 73, 74, 86, 96, 97, 102, 108, 110, 112, 114, 116, 118, 119, 121, 124, 127, 129, 130, 140, 142, 143, 145, 146, 147, 148, 149, 151, 152, 154, 155, 157, 158, 161, 164, 167, 169, 173, 178, 180, 187, 193, 194, 197, 200, 203, 206, 209, 210, 211, 216, 219, 221, 225, 232, 235, 237, 241, 249, 253, 255, 258, 260, 262, 265, 268, 269, 270, 274, 276, 280, 290, 292, 295, 312], "seed": [39, 271], "seed_mask": 39, "seedroi_actor": 39, "seeds_from_mask": 39, "seek": [186, 275, 293, 296], "seek_perc": [275, 296], "seem": [157, 161, 168, 170, 175, 182, 217, 218, 221, 234, 237, 243, 246, 249, 257, 258, 267, 309], "seen": [140, 223, 225, 267, 269, 289, 314], "seg": 312, "segfault": 312, "segment": [81, 83, 130, 217, 259, 275, 302, 310, 312], "segreg": 239, "select": [0, 1, 11, 32, 47, 55, 89, 108, 121, 135, 161, 166, 173, 179, 180, 182, 183, 185, 191, 194, 197, 215, 216, 218, 225, 260, 282, 285, 286, 287, 293, 294, 296, 310, 313], "select_option_callback": [293, 296], "select_tab_callback": [293, 296], "selectable_off": [12, 287, 296], "selectable_on": [287, 296], "selected_color": 293, "selected_shap": 293, "selected_text": [30, 47, 53, 293, 296], "selected_text_index": [293, 296], "selection_bg_color": 293, "selection_box": [293, 296], "selection_chang": [293, 296], "selection_text_color": 293, "selectionmanag": [12, 273, 296], "self": [28, 32, 38, 148, 283, 293, 312], "selfshadow": 73, "selm": 12, "sem": 187, "semest": [133, 179, 242], "semitranspar": 269, "send": [86, 93, 98, 99, 100, 101, 103, 104, 106, 122, 132, 138, 139, 153, 166, 176, 189, 197, 205, 207, 226, 229, 286, 314], "senior": [178, 179], "sens": [178, 234], "sensit": [269, 276], "sent": [86, 165, 178, 196, 205, 207], "sentenc": 246, "sep": 306, "separ": [7, 9, 13, 60, 93, 114, 116, 121, 127, 130, 135, 154, 169, 173, 183, 188, 189, 194, 201, 222, 225, 226, 239, 248, 266, 267, 269, 278, 286, 291, 302, 312], "sequenc": [178, 251, 276, 286, 287, 292, 295], "sequenti": 295, "serg": [98, 99, 100, 101, 103, 104, 105, 106, 122, 132, 133, 137, 138, 142, 166, 176, 177, 184, 193, 210, 220, 228, 229, 271, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312], "seri": [82, 97, 105, 137, 177, 180, 228, 295, 303, 314], "serial": 306, "serv": [86, 273, 286], "server": [84, 86, 87, 88, 89, 93, 96, 142, 148, 173, 296], "servic": 315, "session": [112, 193, 243, 254, 267, 271], "set": [5, 6, 8, 9, 13, 14, 15, 18, 19, 24, 27, 28, 30, 31, 32, 39, 44, 45, 46, 47, 49, 50, 53, 54, 56, 57, 58, 60, 63, 64, 65, 66, 68, 71, 72, 73, 74, 79, 80, 81, 82, 83, 86, 87, 89, 94, 114, 124, 129, 135, 154, 158, 172, 180, 181, 184, 186, 192, 194, 195, 196, 200, 203, 205, 207, 210, 213, 217, 221, 224, 226, 227, 230, 231, 234, 237, 243, 246, 255, 257, 258, 260, 264, 266, 267, 268, 269, 270, 271, 273, 274, 275, 276, 280, 281, 286, 289, 290, 291, 293, 294, 295, 307, 309, 312, 313, 314], "set_": 67, "set_actor_origin": [65, 296], "set_atomic_numb": 296, "set_atomic_posit": 296, "set_bond_ord": 296, "set_camera": [4, 5, 8, 15, 18, 25, 26, 27, 28, 29, 33, 36, 40, 46, 50, 54, 56, 67, 68, 79, 80, 81, 82, 83, 87, 295, 296], "set_camera_foc": 60, "set_camera_focal_keyfram": 60, "set_color": [61, 275, 296], "set_color_interpol": [61, 68, 275, 296], "set_color_keyfram": [275, 296], "set_figure_visibl": [46, 53], "set_foc": [275, 296], "set_focal_interpol": [60, 275, 296], "set_focal_keyfram": [60, 275, 296], "set_head_tail": [291, 296], "set_icon": [293, 296], "set_icon_by_nam": [293, 296], "set_img": [45, 293, 296], "set_input": 296, "set_interpol": [68, 275, 296], "set_keyfram": [275, 296], "set_messag": [293, 296], "set_mous": 296, "set_mouse_click": 296, "set_opac": [60, 274, 275, 296], "set_opacity_interpol": [275, 296], "set_opacity_keyfram": [275, 296], "set_polydata_color": [18, 296], "set_polydata_norm": 296, "set_polydata_primitives_count": 296, "set_polydata_tang": 296, "set_polydata_tcoord": 296, "set_polydata_triangl": [18, 296], "set_polydata_vertic": [18, 296], "set_posit": [59, 60, 62, 63, 64, 65, 67, 275, 293, 296], "set_position_interpol": [59, 60, 62, 66, 68, 275, 296], "set_position_keyfram": [59, 60, 66, 67, 275, 296], "set_rot": [63, 275, 296], "set_rotation_as_vector": [275, 296], "set_rotation_interpol": [65, 68, 275, 296], "set_scal": [60, 275, 296], "set_scale_interpol": [275, 296], "set_scale_keyfram": [275, 296], "set_slot_color": [293, 296], "set_start_method": [86, 87], "set_view_up": [275, 296], "set_view_up_interpol": [275, 296], "set_view_up_keyfram": [275, 296], "set_vis": [53, 54, 55, 56, 236, 239, 271, 293, 296, 302], "set_weel": 296, "setactivecamera": 6, "setbackground": 6, "setcollisionfilterpair": 93, "setcontext": [237, 240, 243], "setdatatyp": [234, 237], "setformat": [234, 237], "setgrav": [80, 81, 82, 83, 93], "setinput": 246, "setinputconnect": 246, "setinternalformat": [234, 237], "setinterpol": 14, "setinterv": 291, "setjointmotorcontrolmultidof": [81, 83], "setmagnificationfilt": [234, 237], "setminificationfilt": [234, 237], "setoffscreenrend": 243, "setopac": [17, 20, 94], "setorient": [79, 80, 81, 93], "setposit": [4, 12, 14, 15, 53, 54, 56, 63, 64, 65, 79, 80, 81, 82, 83, 93, 273, 296], "setrepresentationtowirefram": 74, "setscal": [4, 5, 15], "setter": [62, 143, 260, 263, 271, 302], "settextscalemodetonon": 239, "settextscalemodetoprop": 239, "settextur": 246, "settl": 200, "setuniformf": 76, "setup": [37, 81, 99, 155, 240, 243, 246, 251, 255, 258, 264, 267, 271, 300, 314], "setuptool": [229, 312], "setviewup": 295, "setvis": [46, 53, 54, 56, 273, 296], "seventh": 159, "sever": [5, 54, 134, 142, 145, 148, 149, 173, 222, 239, 253, 256, 259, 265, 267, 269, 271, 305], "sf": [30, 273, 274], "sh": [30, 148, 265, 269, 270, 273, 274], "sh_order": 39, "sh_to_sf_matrix": 30, "sha": [278, 306], "sha2": 306, "sha256": [106, 306], "sha3": 306, "shade": [27, 71, 73, 76, 128, 134, 181, 227, 273, 285], "shader": [22, 23, 70, 71, 74, 75, 76, 97, 102, 107, 109, 111, 117, 120, 125, 131, 132, 134, 139, 147, 171, 173, 175, 176, 178, 181, 192, 195, 200, 201, 207, 211, 218, 222, 224, 226, 227, 230, 232, 238, 243, 246, 249, 252, 256, 258, 259, 264, 265, 267, 269, 270, 273, 278, 296, 306, 308, 309, 310, 311, 312, 313], "shader_apply_effect": [31, 296], "shader_callback": [76, 310], "shader_fil": 290, "shader_to_actor": [74, 76, 211, 296], "shader_typ": 290, "shaders_dir": 296, "shaders_in_vtk": 290, "shadertoi": 256, "shadow": [24, 30, 178, 273, 293, 296], "shaft": [63, 65, 273, 289], "shaft_radiu": [29, 33, 273, 289], "shall": [141, 153, 199, 267, 315], "shallow": [273, 290, 294], "shallow_copi": 296, "shallowcopi": [273, 296], "shape": [11, 12, 14, 17, 21, 24, 27, 28, 30, 32, 36, 41, 42, 48, 49, 55, 75, 80, 81, 82, 83, 89, 93, 134, 181, 182, 183, 185, 187, 188, 191, 193, 197, 211, 215, 216, 218, 221, 225, 235, 265, 269, 270, 273, 274, 275, 276, 281, 282, 283, 286, 289, 292, 293, 294, 295, 296, 306, 312, 313], "shape_choos": 32, "shape_list": 48, "shape_typ": [48, 293], "share": [86, 110, 112, 114, 116, 118, 119, 121, 124, 127, 133, 135, 144, 145, 147, 148, 150, 153, 154, 156, 157, 159, 162, 165, 168, 170, 173, 231, 264, 291], "shared_memori": 148, "sharedctyp": 142, "sharedmemcircularqueu": 296, "sharedmemimagebuffermanag": [148, 296], "sharedmemmultidimensionalbuff": 296, "sharedmemori": [86, 145, 148, 151, 154, 291], "sheen": [73, 285], "sheen_tint": [73, 285], "sheenchair": 193, "sheencloth": 193, "sheet": [45, 169, 171, 172, 282, 286, 311], "sheet_path": 282, "shell": [145, 148], "shetti": [166, 176, 180, 225, 229, 271, 302, 310, 311, 312], "shi": [229, 312], "shift": [260, 263, 266, 271, 291], "shivam": [176, 179, 181, 198, 201, 222, 227, 229, 311, 312], "shm": [30, 39], "shm_a": 148, "shm_b": 148, "shmem": 148, "shmmanagermultiarrai": 154, "short": [212, 255, 288], "shortcut": 183, "shorten": 264, "shortest": 75, "shortli": 178, "shortlist": 179, "shortlog": 314, "should": [15, 18, 62, 63, 64, 88, 93, 142, 143, 145, 146, 148, 152, 154, 157, 161, 171, 173, 189, 190, 200, 221, 227, 234, 237, 238, 239, 240, 241, 258, 261, 262, 264, 270, 273, 274, 275, 276, 278, 281, 282, 285, 289, 290, 291, 293, 294, 295, 307, 309, 312, 314], "shouldn": [154, 161, 212, 271], "shout": 179, "show": [0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 24, 28, 29, 31, 32, 33, 34, 35, 36, 38, 39, 40, 41, 43, 44, 45, 49, 51, 52, 53, 55, 57, 60, 61, 62, 63, 64, 66, 68, 69, 71, 72, 73, 74, 75, 76, 77, 79, 80, 81, 82, 83, 84, 86, 89, 98, 99, 100, 101, 103, 104, 106, 111, 122, 132, 138, 139, 142, 144, 146, 150, 151, 154, 159, 161, 166, 169, 173, 175, 176, 179, 180, 181, 182, 201, 207, 216, 220, 227, 229, 237, 243, 247, 249, 250, 255, 258, 264, 267, 268, 269, 273, 275, 278, 291, 293, 294, 296, 303, 305, 306, 310], "show_caret": 293, "show_m": [14, 24, 30, 37], "show_m_mosa": 14, "show_manag": [38, 43, 44, 45, 46, 49, 50, 51, 52, 54, 55, 56, 59, 264], "show_panel": 275, "show_rotation_slid": [293, 296], "showable_text": [293, 296], "showcas": [72, 73, 96, 116, 121, 124, 125, 134, 168, 261], "showm": [4, 5, 7, 9, 10, 11, 12, 13, 15, 17, 20, 21, 25, 26, 28, 29, 31, 33, 36, 40, 47, 48, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 75, 76, 79, 80, 81, 82, 83, 86, 87, 88, 93, 94, 267, 290, 291, 295], "showmanag": [4, 5, 7, 9, 10, 11, 12, 13, 14, 15, 17, 20, 21, 24, 25, 26, 28, 29, 30, 31, 32, 33, 36, 37, 38, 40, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 75, 76, 79, 80, 81, 82, 83, 86, 87, 88, 93, 94, 220, 222, 224, 226, 255, 259, 267, 287, 290, 291, 296, 306, 312], "showmgr": 32, "showmmanag": 291, "shown": [35, 54, 55, 93, 117, 120, 125, 131, 136, 172, 185, 218, 225, 267, 268, 280, 286, 293], "shreya": [106, 306], "shrink": [27, 254, 273], "shutdown": 93, "si": [80, 93], "siddharth": [229, 312], "side": [32, 74, 152, 161, 186, 226, 230, 258, 264, 273, 283, 289, 293, 295, 309], "sideeffect": 143, "sierpinski": 32, "sierra": 303, "sig": 280, "siggraph": [73, 173], "sight": [178, 262], "sigma": [252, 255, 258, 264, 267, 269, 273, 274, 280], "sigma_": [267, 269], "sign": [71, 74, 75, 97, 122, 173, 174, 229, 269, 307, 312], "signal": [244, 246, 269, 273, 274], "signatur": 280, "signific": [233, 236, 237, 263, 264, 271], "silent": 151, "silhouett": 131, "silva": [106, 229, 306, 312], "similar": [32, 46, 93, 109, 118, 119, 149, 178, 181, 183, 206, 216, 221, 225, 252, 262, 267, 273, 276, 314], "similarli": [54, 56, 307], "simpl": [0, 1, 7, 18, 20, 21, 25, 30, 39, 41, 42, 54, 75, 84, 89, 114, 116, 121, 133, 142, 172, 173, 180, 181, 182, 193, 196, 199, 215, 217, 219, 223, 234, 238, 240, 243, 255, 257, 261, 262, 264, 267, 271, 275, 276, 281, 286, 292, 294, 295, 312, 313], "simple_collis": 21, "simplebondperceiv": 296, "simplemesh": 193, "simplemorph": 193, "simpler": [36, 74, 80, 224, 234, 237, 305], "simpleskin": [193, 208, 212], "simplesparseaccessor": 193, "simplest": 246, "simpli": [64, 93, 119, 155, 237, 267, 269], "simplic": [21, 180, 267, 269], "simplifi": [64, 88, 145, 224, 238, 260, 312], "simul": [15, 21, 26, 27, 37, 72, 77, 78, 89, 114, 118, 119, 121, 124, 127, 135, 159, 172, 226, 227, 267, 302, 303, 308, 309, 311, 312, 313], "simultan": [113, 260, 267, 269, 271, 287], "sin": [5, 15, 25, 29, 32, 33, 40, 65, 68, 81, 118, 275, 292], "sinc": [28, 60, 62, 64, 68, 71, 74, 75, 93, 96, 107, 109, 123, 125, 133, 147, 148, 178, 179, 184, 193, 202, 205, 226, 230, 232, 238, 244, 250, 251, 253, 260, 261, 262, 265, 266, 269, 270, 280, 295], "singl": [11, 12, 37, 60, 63, 67, 80, 113, 116, 118, 119, 121, 124, 134, 135, 149, 159, 186, 187, 189, 198, 226, 243, 251, 252, 255, 256, 264, 273, 275, 281, 282, 283, 286, 287, 293, 294, 295, 303, 308], "singular": 276, "sinusoid": 29, "site": 179, "sitek": [103, 304], "situat": [148, 266], "six": [267, 270], "sixth": [156, 269], "siyan": [166, 310], "size": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 71, 72, 73, 74, 75, 76, 79, 80, 81, 82, 83, 86, 87, 88, 93, 94, 110, 112, 114, 116, 121, 129, 135, 140, 142, 148, 149, 151, 152, 161, 171, 180, 182, 185, 193, 233, 249, 251, 254, 257, 263, 264, 265, 266, 269, 270, 271, 273, 274, 275, 276, 278, 281, 283, 289, 291, 293, 294, 295, 296, 305, 308], "size_chang": [24, 30, 37], "size_old": [24, 30, 37], "sk": 310, "skelet": [0, 1, 89, 121, 135, 196, 199, 204, 226, 313], "skeleton": [108, 110, 227], "sketch": [148, 174], "skill": [180, 232], "skim": 314, "skin": [13, 199, 202, 204, 208, 214, 217, 219, 223, 281, 312], "skin_anim": [13, 281, 296], "skin_id": 281, "skin_mat": 214, "skin_timelin": 13, "skinmatrix": 219, "skinnig": 281, "skip": [32, 276, 278, 279, 280], "skip_r": 296, "skybox": [37, 178, 278, 295, 296, 312], "skybox_0": 278, "skybox_1": 278, "skybox_front": 278, "skybox_negi": 278, "skybox_posx": 278, "skybox_right": 278, "sleep": [10, 88, 148, 291], "slerp": [189, 192, 202, 205, 224, 226, 296], "slice": [0, 1, 24, 28, 30, 89, 93, 250, 273, 274, 313], "slice_actor": 14, "slice_actor2": 14, "slice_along_axi": [30, 274, 296], "slice_ev": 28, "slice_evec": 28, "slice_index": 274, "slice_mosa": 14, "slicer": [0, 14, 24, 30, 89, 138, 296, 303, 304, 306, 309], "slicer_opac": 24, "slices_lut": 14, "slide": 293, "slider": [24, 30, 35, 37, 41, 42, 49, 89, 161, 186, 189, 198, 203, 218, 221, 225, 226, 261, 267, 293, 305, 306, 311, 312, 313], "slider_inner_radiu": 293, "slider_label_anisotropi": 37, "slider_label_anisotropy_direction_i": 37, "slider_label_anisotropy_direction_x": 37, "slider_label_anisotropy_direction_z": 37, "slider_label_anisotropy_rot": 37, "slider_label_base_ior": 37, "slider_label_coat_ior": 37, "slider_label_coat_rough": 37, "slider_label_coat_strength": 37, "slider_label_metal": 37, "slider_label_rough": 37, "slider_outer_radiu": 293, "slider_slice_anisotropi": 37, "slider_slice_anisotropy_direction_i": 37, "slider_slice_anisotropy_direction_x": 37, "slider_slice_anisotropy_direction_z": 37, "slider_slice_anisotropy_rot": 37, "slider_slice_base_ior": 37, "slider_slice_coat_ior": 37, "slider_slice_coat_rough": 37, "slider_slice_coat_strength": 37, "slider_slice_metal": 37, "slider_slice_rough": 37, "slight": [113, 201, 237], "slightli": [111, 140], "slot": [266, 293], "slow": [25, 29, 80, 81, 82, 83, 93, 147, 205, 226, 273], "slower": 205, "sm": 53, "small": [17, 64, 141, 142, 144, 161, 168, 180, 209, 247, 265, 267, 269, 270, 290, 305, 310], "smaller": [32, 74, 180, 193, 269, 270], "smash": 130, "smooth": [6, 32, 64, 74, 157, 170, 172, 173, 181, 191, 230, 246, 252, 260, 267, 269, 271, 273], "smoothen": [202, 209], "smoother": [28, 40, 71, 184, 200, 227, 248, 273], "smoothli": [125, 136, 142, 178, 251, 260], "smoothstep": 71, "smothli": 173, "snapshot": [24, 296, 305, 311, 312], "snippet": [93, 118, 127, 140, 150], "snowflak": 32, "so": [4, 14, 15, 17, 24, 27, 28, 32, 35, 36, 37, 40, 47, 54, 60, 66, 71, 73, 80, 82, 93, 94, 97, 110, 112, 113, 114, 115, 116, 117, 118, 121, 126, 127, 128, 129, 130, 131, 133, 135, 140, 143, 149, 152, 153, 155, 158, 161, 167, 168, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 189, 190, 191, 192, 194, 196, 200, 201, 205, 209, 213, 215, 216, 217, 218, 219, 221, 222, 225, 226, 237, 238, 241, 243, 247, 249, 250, 252, 253, 256, 259, 262, 265, 267, 269, 270, 273, 274, 291, 292, 295, 314], "social": [154, 173], "societi": [269, 274], "socket": 148, "softwar": [44, 45, 96, 97, 98, 99, 100, 101, 103, 104, 105, 106, 107, 108, 122, 132, 134, 135, 137, 138, 166, 171, 172, 176, 177, 178, 179, 180, 220, 222, 225, 226, 227, 228, 229, 267, 269, 271, 302, 310, 315], "soham": [106, 108, 122, 132, 135, 136, 138, 229, 266, 271, 306, 307, 308, 309, 312], "solar": [0, 1, 89, 307, 311, 313], "solarsystem": 308, "sole": [266, 271], "solid": [51, 54, 74, 173, 267], "solut": [24, 30, 109, 114, 142, 143, 145, 146, 148, 151, 155, 161, 173, 233, 236, 240, 243, 246, 249, 258, 263, 266, 267, 269, 270, 271, 273, 291], "solv": [113, 114, 121, 134, 139, 140, 142, 145, 148, 154, 179, 180, 185, 186, 203, 205, 207, 211, 214, 222, 258, 267, 269, 270, 309], "solvent": [165, 170, 172], "some": [5, 10, 11, 15, 24, 26, 27, 30, 31, 32, 33, 35, 36, 37, 39, 40, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 61, 62, 64, 72, 73, 74, 75, 79, 80, 81, 82, 83, 89, 93, 94, 109, 110, 111, 112, 118, 119, 121, 127, 129, 131, 139, 142, 143, 145, 146, 148, 149, 150, 151, 152, 154, 155, 157, 158, 161, 163, 164, 167, 169, 171, 173, 175, 178, 179, 180, 181, 182, 183, 184, 186, 187, 189, 191, 192, 193, 195, 197, 200, 201, 202, 204, 205, 206, 207, 209, 210, 211, 213, 215, 216, 217, 218, 220, 221, 224, 225, 226, 230, 232, 234, 237, 238, 239, 240, 241, 243, 244, 245, 246, 248, 249, 252, 253, 255, 256, 257, 258, 259, 261, 262, 264, 265, 266, 267, 268, 269, 270, 271, 273, 283, 306, 308, 309, 310, 312], "somehow": 179, "someon": 243, "someth": [114, 119, 121, 146, 149, 178, 180, 211, 221, 225, 232, 234, 237, 240, 241, 243, 246, 253, 255, 258, 261, 264, 265, 270, 276, 279, 293, 314], "sometim": [31, 135, 148, 173, 216, 218, 291], "soni": [138, 309], "soon": [96, 131, 146, 149, 158, 161, 171, 226, 238, 241, 267], "sophomor": 141, "sort": [35, 36, 87, 149, 171, 179, 271, 275, 295], "sought": 266, "souli": 148, "sound": 178, "sourc": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 71, 72, 73, 74, 75, 76, 79, 80, 81, 82, 83, 86, 87, 88, 89, 97, 98, 99, 100, 101, 103, 104, 105, 106, 122, 130, 132, 134, 135, 137, 138, 142, 150, 154, 166, 173, 176, 177, 178, 180, 181, 228, 229, 264, 269, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 310, 314, 315], "south": 292, "sow": 271, "space": [24, 27, 61, 71, 74, 75, 113, 141, 144, 153, 167, 170, 171, 172, 178, 193, 271, 273, 275, 276, 286, 292, 294, 310], "space2rgb": 275, "space_filling_model": 144, "spam": 178, "span": 271, "sparshg": [229, 312], "spatial": 230, "spawm": [142, 145], "spawn": [86, 87], "speak": 178, "spec": 139, "specglossvsmetalrough": 193, "special": [31, 37, 110, 118, 172, 173, 264, 267, 309, 310, 315], "specif": [5, 12, 24, 28, 31, 62, 71, 80, 81, 82, 83, 96, 114, 118, 121, 127, 129, 133, 135, 139, 140, 142, 148, 149, 151, 157, 161, 171, 173, 180, 197, 224, 225, 226, 233, 234, 244, 246, 255, 259, 263, 265, 267, 269, 270, 271, 275, 276, 278, 289, 290, 293, 295, 314, 315], "specifi": [2, 3, 4, 8, 16, 17, 43, 54, 64, 76, 112, 135, 237, 273, 275, 278, 280, 283, 284, 285, 286, 290, 293, 294, 295], "specular": [73, 205, 285], "specular_color": 285, "specular_level": 285, "specular_pow": 285, "specular_tint": [73, 285], "specularcolor": [71, 74], "specularpow": [71, 74], "speculartest": 193, "speed": [11, 12, 26, 40, 97, 147, 176, 178, 195, 198, 226, 240, 275, 293, 295, 296, 311], "spehner": 165, "spell": 306, "spend": [180, 185, 213, 258], "spent": [107, 109, 115, 119, 145, 148, 151, 163, 180, 239, 258, 261, 264, 267], "sph2cart": 292, "sphere": [0, 1, 5, 8, 10, 15, 20, 21, 28, 30, 34, 35, 36, 37, 41, 42, 46, 59, 62, 65, 66, 67, 68, 69, 70, 74, 75, 79, 80, 83, 86, 87, 88, 89, 93, 116, 124, 125, 130, 134, 141, 145, 172, 173, 179, 181, 205, 226, 227, 250, 269, 270, 274, 286, 289, 292, 296, 306, 309, 311, 312, 313], "sphere100": 28, "sphere200": 28, "sphere2cart": 296, "sphere724": 28, "sphere_actor": [4, 5, 10, 20, 21, 35, 36, 87, 273], "sphere_cpk": 296, "sphere_dict": 30, "sphere_dist": 71, "sphere_geometri": 36, "sphere_high": 30, "sphere_linear": 66, "sphere_low": 30, "sphere_nam": 289, "sphere_radiu": 71, "sphere_splin": 66, "sphere_valu": 273, "spheremap": 134, "spheres_actor": 71, "spheres_posit": 36, "spheresourc": 296, "spheric": [5, 30, 93, 113, 125, 134, 195, 226, 253, 256, 259, 262, 269, 270, 273, 275, 292], "spherical_coordinate_system": 292, "sphericalcoordin": 292, "sphinx": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 71, 72, 73, 74, 75, 76, 79, 80, 81, 82, 83, 86, 87, 88, 89, 173, 304, 312, 314], "sphinx_galleri": 303, "spike": 17, "spiki": [0, 1, 89, 306, 313], "spin": [93, 124, 127, 271, 295], "spinbox": [41, 42, 89, 248, 271, 296, 313], "spinbox2d": [164, 171], "spinboxui": [233, 257, 260, 263, 271, 293, 302], "spline": [57, 58, 60, 89, 186, 198, 208, 226, 273, 275, 313], "spline_anim": 66, "spline_degre": 275, "spline_interpol": [62, 66, 296], "spline_subdiv": 273, "splinefilt": 296, "split": [98, 298], "spoiler": 252, "spong": 32, "sponsor": 302, "sponza": 193, "spot": 237, "spq_actor": 273, "spread": [154, 173, 234], "sprite": [45, 169, 171, 282, 302, 311], "sprite_path": 45, "sprite_sheet": 45, "sprite_to_vtk": 45, "spuriou": 314, "sq_actor": 273, "sqrt": [11, 15, 25, 32, 36], "squar": [15, 34, 40, 43, 49, 54, 178, 270, 283, 289, 293, 296, 305, 307], "square_grid": 49, "sreekar": [229, 312], "srgb": 276, "ss": [293, 296], "ssl": 307, "st": [104, 106, 305, 306], "stabl": 277, "stack": [109, 164, 167, 171, 218, 283], "stackoverflow": 291, "stadia": 173, "stage": [142, 226, 232, 244, 250, 260, 264, 267], "stai": 231, "stainedglasslamp": 193, "stakehold": 236, "stall": 171, "stand": [176, 311, 314], "standalon": [127, 129, 135, 302], "standard": [14, 28, 76, 132, 179, 180, 255, 267, 269, 271, 273, 274, 276, 285, 290, 292, 294, 308, 311], "star": [92, 98, 99, 100, 101, 103, 104, 106, 122, 132, 138, 166, 176, 229, 289, 306, 307], "star2d": 306, "start": [4, 5, 7, 9, 10, 11, 12, 13, 14, 15, 17, 19, 20, 21, 24, 25, 26, 28, 29, 30, 31, 32, 33, 35, 36, 37, 38, 40, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 71, 72, 73, 74, 75, 76, 79, 80, 81, 82, 83, 86, 87, 88, 93, 96, 107, 108, 113, 114, 121, 125, 130, 131, 133, 134, 139, 140, 151, 157, 161, 162, 164, 175, 178, 179, 180, 182, 183, 184, 185, 187, 189, 191, 192, 193, 194, 200, 202, 203, 204, 205, 206, 209, 211, 212, 217, 218, 221, 223, 225, 232, 233, 235, 236, 237, 238, 239, 240, 241, 247, 248, 250, 253, 255, 256, 264, 266, 267, 269, 276, 290, 291, 295, 296, 305, 306, 312], "start_anim": 15, "start_button": 15, "startup": 293, "startup_tab_id": 293, "stat": [26, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312], "state": [22, 23, 64, 89, 139, 145, 146, 152, 154, 173, 180, 198, 226, 234, 275, 290, 293, 295, 306, 311, 313], "statement": [4, 71], "static": [61, 65, 140, 167, 171, 198, 254, 255, 257, 259, 271, 275, 293, 312], "static_actor": [275, 296], "statist": [246, 267, 269], "statu": [93, 193, 245, 252, 293, 314], "std": [14, 180], "stderr": 148, "stdout": 148, "stealth": 295, "steam": 148, "steiner": 276, "stem": 254, "stencil": 234, "step": [21, 26, 31, 35, 36, 39, 52, 61, 62, 71, 74, 79, 80, 81, 82, 83, 93, 96, 109, 111, 116, 125, 126, 127, 139, 159, 172, 178, 205, 226, 240, 243, 246, 247, 252, 253, 255, 267, 271, 275, 276, 293, 307, 312, 314], "step_interpol": [61, 296], "step_siz": 39, "step_text": 61, "stepsimul": [79, 80, 81, 82, 83, 93], "stereo": [101, 295, 303], "stereo_typ": 295, "stick": [141, 147, 153, 172, 296], "stiff": [81, 129], "still": [24, 71, 96, 118, 121, 129, 131, 135, 148, 152, 155, 158, 173, 178, 180, 190, 194, 202, 204, 211, 212, 214, 222, 235, 244, 249, 250, 251, 255, 258, 259, 261, 265, 267, 269, 270, 271, 280], "stl": [76, 94, 282], "stlreader": 296, "stlwriter": 296, "stochast": 310, "stop": [67, 86, 87, 88, 96, 172, 226, 234, 237, 275, 291, 293, 296], "stop2": [43, 54], "stopping_criterion": 39, "storag": 267, "store": [9, 13, 25, 26, 27, 32, 39, 46, 47, 64, 74, 80, 82, 86, 93, 94, 148, 150, 154, 157, 184, 193, 197, 199, 205, 220, 225, 227, 230, 267, 270, 276, 278, 286, 291, 293], "stored_sha256": 278, "stori": 178, "str": [10, 11, 14, 20, 21, 25, 35, 36, 72, 73, 80, 81, 82, 83, 87, 272, 273, 274, 275, 276, 277, 278, 280, 281, 282, 283, 284, 288, 289, 290, 291, 293, 294, 295, 304], "straight": 179, "straighter": 273, "straightforward": [181, 255, 267], "strand": 172, "strang": [175, 193], "strategi": 314, "stream": [85, 139, 142, 145, 154, 173, 174, 175, 229, 296, 312, 313], "stream_actor": [24, 27], "stream_actor10": 27, "stream_actor2": 27, "stream_actor3": 27, "stream_actor4": 27, "stream_actor5": 27, "stream_actor6": 27, "stream_actor7": 27, "stream_actor8": 27, "stream_actor9": 27, "stream_client": 291, "stream_interact": 86, "streamclient": 291, "streamer": [87, 139, 145], "streaminteract": 291, "streamlin": [22, 23, 24, 89, 102, 233, 273, 274, 276, 294, 306, 313], "streamlines_actor": 39, "streamtub": [21, 24, 27, 296, 306], "strel": 295, "strength": [37, 72, 285], "stress": 312, "stretch": [140, 141, 171, 172, 173, 225, 227, 267, 271], "strict": [234, 278, 284, 290, 315], "strictli": [73, 170], "stride": [276, 281, 296], "string": [169, 205, 227, 273, 274, 276, 278, 280, 281, 282, 284, 285, 286, 290, 291, 292, 293, 295], "stringarrai": 296, "strip": [172, 273, 276, 312], "strongli": 314, "structur": [15, 18, 24, 32, 35, 146, 149, 154, 172, 173, 179, 184, 186, 238, 243, 247, 250, 266, 267, 269, 270, 271, 283, 286, 295, 306], "struggl": [180, 227, 237, 243], "stuck": 240, "student": [107, 108, 139, 140, 180], "studi": [146, 163, 192, 243], "stuff": [149, 156, 167, 173, 175, 178, 180], "stun": 134, "stupend": 142, "style": [268, 276, 278, 295, 296, 306, 314], "sub": [32, 65, 108, 110, 112, 114, 116, 118, 119, 121, 124, 127, 129, 130, 133, 134, 135, 149, 152, 167, 171, 172, 178, 180, 225, 226, 227, 267, 269, 271, 275, 293, 302], "sub_arm": 65, "sub_timelin": 192, "subdivis": 273, "subj_1": [14, 24, 27], "subj_id": 27, "subject": [24, 180, 226], "submiss": [133, 241], "submit": [169, 232, 238, 240, 245, 250], "submodul": 152, "subprocess": [145, 148], "subscript": 184, "subset": [72, 186, 189], "substanc": 172, "substanti": [271, 314], "substitut": [288, 290, 315], "subsurfac": [73, 285], "subtract": [93, 118, 295], "success": [242, 243, 252, 295], "successfulli": [108, 110, 112, 135, 179, 180, 187, 206, 211, 218, 223, 242, 257, 258, 263, 271, 295], "sudden": 255, "suffer": [243, 249, 255], "suffic": 271, "suffix": 278, "suffix_typ": 278, "suggest": [98, 99, 100, 101, 103, 104, 106, 111, 116, 118, 122, 132, 138, 153, 156, 163, 166, 176, 184, 189, 197, 199, 200, 202, 206, 214, 218, 221, 222, 229, 232, 240, 253, 259, 264, 266, 270, 273, 276], "suit": [71, 180, 266, 311], "suitabl": [71, 173, 213, 265, 271], "sum": [21, 121, 180, 249, 252, 267, 286, 292], "sum_": [258, 267], "summar": [112, 230], "summari": [12, 27, 246, 253], "summer": [107, 133, 136, 139, 140, 141, 178, 180, 193, 230, 231, 310], "sun": [15, 308], "sun_actor": 15, "sun_data": 15, "super": [97, 226], "superactor": 173, "superquadr": [269, 289, 296, 306, 307, 309], "suppli": 273, "support": [67, 76, 80, 82, 94, 96, 98, 99, 100, 101, 103, 104, 106, 111, 112, 113, 115, 117, 120, 122, 123, 125, 132, 133, 134, 135, 136, 138, 143, 146, 149, 155, 157, 159, 161, 164, 166, 169, 171, 173, 176, 181, 188, 190, 192, 193, 196, 202, 203, 204, 208, 213, 223, 225, 226, 227, 229, 267, 269, 273, 274, 276, 282, 290, 293, 295, 303, 306, 309, 310, 311, 312, 314], "suppos": [93, 110, 129, 154, 173, 249, 270], "supposedli": [240, 243], "suppress": 143, "sure": [5, 13, 24, 63, 108, 111, 112, 113, 115, 117, 120, 123, 125, 126, 128, 131, 136, 221, 225, 238, 260, 262, 265, 270, 275, 276, 314], "surf": 25, "surfac": [0, 1, 4, 5, 17, 19, 22, 23, 25, 71, 74, 75, 89, 134, 141, 150, 156, 159, 162, 165, 168, 170, 172, 180, 184, 227, 267, 269, 276, 294, 296, 303, 304, 310, 311, 313], "surface_actor": 273, "surface_color": 39, "surface_opac": 39, "surpris": 180, "surround": [62, 146], "suscept": 269, "suspect": 113, "suspend": 26, "suzann": [94, 193, 309, 312], "svv": [96, 314], "swami": [138, 141, 166, 172, 176, 309, 310, 311], "switch": [32, 35, 135, 140, 171, 180, 185, 225, 239, 281, 293], "sxyz": 292, "sy": [86, 148, 278, 284, 290], "sym_diff": [46, 53], "symbol": [263, 286], "symmetr": [46, 273, 274, 312], "symmetric362": [17, 30, 289], "symmetric642": 289, "symmetric724": 289, "symmetric_differ": [46, 53], "sync": [79, 81, 83, 114, 116, 127, 242], "sync_actor": [79, 80, 81], "sync_brick": [80, 83, 93, 127], "sync_chain": 83, "sync_domino": 82, "sync_joint": [81, 93], "synchron": 243, "syntax": [141, 198], "system": [0, 1, 17, 24, 64, 86, 88, 89, 93, 112, 116, 122, 128, 133, 134, 136, 139, 145, 154, 157, 158, 171, 173, 174, 175, 178, 180, 182, 184, 202, 206, 219, 226, 229, 242, 248, 273, 291, 307, 308, 309, 311, 312, 313], "systemat": 266, "syxz": 292, "t": [13, 14, 24, 25, 28, 29, 48, 59, 60, 61, 62, 65, 67, 68, 71, 74, 81, 86, 88, 93, 110, 112, 113, 114, 116, 118, 121, 133, 135, 139, 140, 142, 143, 146, 148, 149, 151, 154, 158, 159, 161, 167, 170, 171, 173, 175, 178, 179, 180, 181, 182, 184, 185, 188, 189, 191, 192, 194, 195, 196, 197, 198, 199, 202, 205, 206, 208, 209, 210, 211, 212, 213, 214, 215, 216, 218, 219, 220, 221, 223, 224, 225, 233, 237, 240, 242, 243, 245, 246, 249, 252, 257, 258, 261, 264, 265, 267, 269, 270, 271, 273, 275, 276, 286, 291, 294, 296, 302, 303, 309, 310, 314], "t0": [62, 275], "t1": [24, 62, 275], "t1_warp": 14, "t2": 62, "t3": 62, "t_actor": 25, "tab": [41, 42, 89, 114, 121, 132, 135, 180, 293, 296, 302, 308, 312, 313], "tab_bar_po": [53, 293], "tab_idx": 293, "tab_ui": 53, "tabl": [14, 193, 273, 274, 276], "tabpanel2d": [135, 296], "tabui": [53, 124, 239, 271, 296, 312], "tackl": [135, 239, 257, 268, 271], "tad": 168, "tag": [290, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 314], "tail": [148, 291, 296], "tailor": 24, "take": [4, 5, 15, 26, 37, 40, 62, 64, 71, 74, 97, 136, 142, 148, 149, 154, 158, 161, 164, 171, 178, 180, 185, 188, 198, 202, 219, 224, 227, 232, 236, 246, 252, 253, 255, 258, 262, 264, 265, 267, 269, 270, 273, 274, 275, 278, 290, 293, 294, 295, 314], "taken": [15, 26, 267, 269, 293], "talk": [105, 137, 142, 177, 179, 180, 181, 228, 235, 240, 243, 246, 249, 252, 258, 261, 267, 268], "tan": [269, 274], "tan_0": 62, "tan_1": 62, "tan_cubic_spline_interpol": [62, 296], "tangent": [37, 62, 72, 202, 208, 275, 294], "tangents_from_actor": 296, "tangents_from_direction_of_anisotropi": [37, 72, 296], "tangents_to_actor": [37, 72, 296], "tania": [229, 232, 249, 269, 302, 312], "tanta": 178, "target": [10, 35, 36, 86, 87, 227, 275, 281], "target_fp": 45, "targetposit": [81, 83], "targetveloc": [81, 83], "task": [53, 71, 107, 108, 109, 111, 113, 115, 117, 118, 120, 123, 125, 128, 130, 131, 134, 135, 136, 140, 143, 146, 149, 151, 152, 154, 155, 158, 164, 167, 169, 171, 172, 173, 182, 190, 225, 233, 239, 242, 245, 252, 255, 257, 259, 261, 264, 266, 271], "tau": 275, "taught": 178, "tax": 146, "taxonomi": 286, "tb": [10, 20, 21, 25, 26, 29, 33, 40, 76, 79, 80, 81, 82, 83, 94], "tbd": 173, "tcoord": [281, 290, 294], "tcvg": 269, "tdir": 45, "te": 306, "teach": 179, "team": [97, 108, 136, 141, 145, 148, 156, 162, 169, 230, 242, 276], "teapot": 76, "tech": 108, "technic": [142, 182], "techniqu": [27, 28, 64, 71, 74, 115, 128, 131, 161, 197, 230, 232, 245, 267, 269, 291], "technologi": [141, 179, 180], "tediou": 187, "tell": [11, 12, 17, 86, 157, 255, 267, 273, 280], "temperatur": [64, 275], "tempfil": 45, "templat": [74, 163, 256, 290, 293, 304], "tempor": 270, "temporari": 295, "temporarydirectori": 45, "tend": [33, 246], "tensor": [22, 23, 89, 232, 235, 241, 244, 247, 250, 256, 259, 269, 273, 276, 296, 302, 313], "tensor_100": 28, "tensor_200": 28, "tensor_724": 28, "tensor_actor": 273, "tensor_comparison": 28, "tensor_ellipsoid": [273, 296], "tensor_predict": [244, 269], "tensor_roi": 28, "tensor_roi_100": 28, "tensor_roi_sdf": 28, "tensor_sdf": 28, "tensor_slic": [22, 23, 89, 235, 247, 250, 269, 296, 312, 313], "tensor_slice_100": 28, "tensor_slice_100_zoom": 28, "tensor_slice_sdf": 28, "tensor_slice_sdf_zoom": 28, "tensor_whole_brain_sdf": 28, "tensormatrix": 269, "tensorsliceractor": 303, "tenth": 168, "term": [135, 143, 179, 180, 246, 280], "termin": [96, 98, 99, 100, 101, 103, 104, 106, 122, 132, 138, 166, 176, 179, 229, 295, 312], "terminologi": [116, 170], "terrain": 178, "tesseract": [22, 23, 89, 227, 312, 313], "test": [11, 30, 95, 101, 103, 104, 106, 110, 112, 113, 121, 122, 123, 125, 131, 132, 133, 135, 139, 140, 141, 142, 143, 144, 146, 149, 151, 154, 155, 156, 158, 159, 160, 161, 162, 163, 166, 171, 172, 173, 174, 181, 182, 183, 184, 187, 188, 189, 191, 192, 193, 196, 197, 198, 200, 201, 202, 205, 206, 209, 212, 217, 219, 220, 222, 225, 226, 227, 232, 234, 235, 242, 251, 253, 254, 257, 259, 261, 263, 264, 265, 267, 271, 278, 279, 280, 291, 295, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 314], "test_actor": [96, 305, 310], "test_el": 257, "test_materi": 312, "test_mde_layout": 154, "test_my_function_nam": 96, "test_order_transpar": 304, "test_stream": 148, "test_util": 310, "test_valu": 290, "tests_primit": 306, "tetrahedron": [32, 289, 306], "tetrix": 32, "tex_coord": 264, "tex_id": 281, "texa": 12, "texel": 270, "text": [4, 5, 10, 11, 14, 24, 25, 26, 28, 29, 30, 33, 37, 40, 41, 42, 47, 53, 55, 79, 80, 81, 82, 83, 89, 94, 114, 121, 135, 161, 164, 169, 171, 173, 180, 206, 225, 226, 233, 239, 248, 251, 254, 257, 263, 266, 271, 273, 282, 293, 295, 296, 302, 306, 307, 309, 310, 311, 312, 313, 314], "text2": [43, 54], "text3d": [273, 311], "text_3d": [4, 5, 296], "text_actor": 4, "text_align": [53, 56, 293], "text_anim": 60, "text_block": [11, 293, 296], "text_color": 293, "text_scale_mode_non": 114, "text_scale_mode_prop": 114, "text_scale_mode_viewport": 114, "text_templ": [24, 30, 37, 53, 54, 56, 293], "textactor": 296, "textactor3d": 296, "textbf": 267, "textblock": [76, 80, 81, 82, 159, 260, 263, 293], "textblock2d": [10, 11, 14, 20, 21, 24, 25, 26, 29, 30, 33, 37, 40, 43, 47, 53, 54, 55, 76, 79, 80, 81, 82, 83, 94, 110, 112, 119, 135, 182, 225, 239, 251, 254, 260, 266, 271, 296, 302, 307], "textblockui": 271, "textbox": [135, 257, 263, 271, 293, 310], "textbox2d": [257, 296, 309, 310, 312], "textbox_update_valu": [293, 296], "textboxself": 293, "textur": [0, 1, 5, 6, 12, 15, 37, 38, 89, 106, 109, 128, 134, 161, 167, 171, 173, 174, 175, 178, 184, 188, 193, 227, 230, 234, 237, 240, 243, 246, 249, 252, 256, 258, 264, 267, 269, 270, 278, 281, 282, 294, 296, 306, 307, 312, 313], "texture_2d": [12, 296], "texture_actor": 273, "texture_on_spher": [4, 5, 15, 19, 296], "texture_to_actor": [252, 267], "texture_upd": [38, 296], "texturecoordinatetest": 193, "texturedactor2d": 296, "texturedspheresourc": 296, "textureencodingtest": 193, "texturelinearinterpolationtest": 193, "texturemaptoplan": 296, "textureobject": 237, "texturesettingstest": 193, "texturetransformmultitest": 193, "texturetransformtest": 193, "th": [186, 275], "than": [4, 12, 14, 27, 28, 113, 117, 125, 134, 142, 151, 152, 154, 155, 158, 161, 171, 173, 180, 193, 197, 202, 205, 206, 208, 220, 237, 243, 251, 252, 254, 256, 258, 268, 269, 273, 276, 280, 286, 291, 292, 294, 295, 306], "thank": [101, 103, 104, 106, 110, 112, 114, 116, 118, 119, 121, 122, 124, 127, 129, 130, 132, 133, 136, 138, 166, 176, 229, 230, 243, 265, 276], "thankfulli": [108, 127, 129, 260, 268], "thei": [11, 24, 28, 35, 36, 54, 71, 72, 74, 93, 130, 135, 141, 143, 152, 155, 158, 161, 167, 169, 173, 179, 180, 181, 184, 199, 201, 205, 206, 211, 215, 221, 225, 226, 227, 230, 234, 249, 252, 255, 258, 261, 267, 269, 270, 271, 273, 293, 294, 314], "them": [17, 24, 28, 30, 32, 35, 36, 37, 39, 43, 46, 48, 49, 50, 51, 52, 54, 55, 56, 61, 63, 71, 74, 75, 76, 81, 109, 110, 112, 117, 118, 119, 124, 135, 136, 141, 149, 154, 155, 161, 168, 172, 173, 178, 179, 181, 182, 187, 188, 189, 192, 194, 198, 202, 205, 209, 216, 218, 221, 225, 227, 230, 232, 233, 234, 242, 256, 257, 258, 267, 269, 270, 275, 277, 286, 293, 303, 314], "theme": 312, "themselv": [171, 267], "theoret": 107, "theori": [107, 159, 170, 173, 315], "therefor": [14, 24, 27, 72, 93, 108, 112, 114, 116, 119, 135, 139, 142, 148, 154, 173, 248, 269, 273, 294], "thereof": 280, "theta": [5, 35, 36, 37, 46, 50, 71, 72, 73, 262, 265, 269, 270, 273, 274, 289, 292], "thevtk": 111, "thewav": 9, "thi": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 19, 20, 21, 24, 25, 26, 27, 28, 30, 31, 32, 33, 34, 35, 36, 37, 38, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 59, 60, 61, 62, 64, 66, 67, 68, 71, 72, 73, 74, 75, 76, 79, 80, 81, 82, 83, 86, 87, 88, 93, 96, 97, 98, 99, 100, 101, 103, 104, 106, 107, 108, 122, 132, 134, 135, 138, 141, 142, 148, 154, 166, 171, 172, 173, 176, 178, 179, 180, 225, 226, 227, 229, 231, 267, 268, 269, 271, 272, 273, 275, 276, 277, 278, 279, 280, 286, 288, 289, 290, 291, 292, 293, 294, 295, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 314, 315], "thick": [26, 273, 274, 286], "thin": [24, 172], "thing": [2, 3, 16, 71, 93, 121, 129, 142, 148, 152, 155, 158, 161, 167, 180, 182, 185, 191, 200, 206, 215, 221, 225, 232, 234, 235, 237, 238, 246, 255, 260, 265, 267, 311], "think": [32, 71, 142, 152, 170, 180, 182, 211, 221, 230, 232, 258, 259], "third": [49, 53, 112, 114, 134, 135, 142, 147, 148, 173, 220, 234, 258, 267, 270, 309], "thorough": [257, 263, 271], "those": [14, 37, 59, 64, 71, 130, 145, 148, 154, 173, 180, 214, 233, 245, 249, 252, 255, 262, 267, 270, 276, 291, 293], "though": [227, 258, 264, 267, 269, 270], "thought": [119, 142, 179, 180, 182, 185, 218, 221, 237, 250, 255, 258, 264, 267], "thousand": [12, 173, 174, 175, 226], "thread": [10, 142, 148, 173, 175, 291, 295], "thread_a": 10, "thread_b": 10, "thread_c": 10, "three": [30, 32, 54, 60, 80, 82, 108, 114, 135, 150, 153, 154, 167, 172, 173, 175, 178, 225, 252, 254, 255, 258, 267, 271, 276, 294, 312], "thresholdstoppingcriterion": 39, "thresholdtissueclassifi": 39, "thrill": 231, "through": [29, 64, 72, 73, 74, 86, 93, 97, 107, 109, 111, 114, 133, 134, 135, 145, 172, 173, 178, 179, 180, 181, 221, 230, 233, 234, 237, 254, 257, 260, 267, 269, 270, 291, 293, 309, 312, 314], "throughout": [136, 243], "throw": [211, 280, 312], "thrown": [80, 116, 225, 312], "thu": [28, 112, 116, 154, 175, 247, 292], "thursdai": [162, 243, 246], "tif": 282, "tiff": 282, "tiffread": 296, "tiffwrit": 296, "tightest": [273, 283], "tightli": 295, "tile": 26, "till": [155, 179, 180, 226], "tim": 276, "time": [2, 3, 10, 11, 15, 16, 17, 20, 24, 25, 26, 28, 29, 30, 33, 35, 36, 37, 38, 59, 60, 62, 64, 65, 67, 68, 71, 74, 76, 80, 86, 88, 93, 109, 119, 120, 127, 136, 141, 142, 148, 149, 150, 151, 152, 154, 155, 158, 163, 168, 170, 171, 173, 174, 178, 179, 180, 181, 184, 185, 186, 189, 192, 193, 194, 196, 197, 198, 200, 205, 206, 212, 213, 215, 218, 221, 224, 225, 226, 230, 234, 236, 238, 239, 240, 242, 243, 245, 246, 248, 249, 252, 254, 255, 259, 261, 262, 264, 265, 267, 268, 269, 270, 271, 273, 275, 276, 277, 291, 293, 295, 312, 314], "time_delta": 62, "time_incr": 29, "time_sleep": 88, "time_step": 26, "timeinterv": 175, "timelin": [7, 9, 13, 57, 58, 59, 61, 65, 66, 68, 89, 139, 181, 184, 186, 189, 196, 199, 201, 202, 207, 217, 219, 220, 222, 223, 224, 295, 296, 312, 313], "timer": [0, 1, 17, 36, 38, 45, 76, 79, 80, 81, 82, 83, 87, 89, 116, 148, 167, 212, 226, 227, 255, 291, 307, 312, 313], "timer_callback": [4, 5, 7, 9, 13, 15, 17, 20, 21, 25, 26, 29, 31, 32, 33, 36, 38, 40, 45, 76, 79, 80, 81, 82, 83, 93, 295], "timer_id": [20, 295], "timestamp": [9, 59, 60, 62, 64, 66, 154, 212, 214, 217, 227, 275, 281], "timestamp_1": 275, "timestamp_2": 275, "timezon": 178, "timlelin": 227, "tint": [73, 285], "tip": [273, 289], "tip_length": [29, 33, 273, 289], "tip_radiu": [29, 33, 273, 289], "tissu": 269, "titl": [25, 29, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 75, 108, 152, 171, 180, 273, 293, 295, 296, 306], "title_bold": [293, 296], "title_box": [293, 296], "title_color": [293, 296], "title_font_s": [293, 296], "title_ital": [293, 296], "title_text": [44, 45, 293], "tobyt": 148, "todai": [127, 133, 136, 198, 201, 243, 246, 249, 255, 258, 264, 268], "todo": [276, 293], "togeth": [15, 24, 71, 73, 93, 203, 218, 225, 236, 249, 252, 260], "toggl": [46, 54, 183, 225, 226, 266, 293, 296], "toggle_color": [46, 50], "token": 309, "told": [179, 184, 249, 252, 253, 255, 262, 265, 267], "toler": [273, 286], "toml": [271, 312], "tomorrow": [160, 163, 174], "too": [12, 43, 54, 113, 141, 146, 161, 179, 180, 184, 185, 191, 193, 225, 253, 269, 280, 309, 310], "took": [116, 127, 129, 180, 183, 200, 206, 215, 239, 242, 244, 248, 251, 265, 271], "tool": [83, 105, 127, 137, 139, 148, 151, 154, 177, 180, 228, 246, 258, 260, 264, 267, 270, 286, 296, 302, 304, 305, 306, 307, 308, 309, 310, 311, 312, 314], "toolkit": [24, 230], "toon": [134, 136], "top": [47, 53, 56, 63, 112, 134, 152, 167, 178, 184, 200, 263, 271, 273, 293, 294], "top_disk_ratio": [293, 296], "top_disk_valu": [293, 296], "top_y_posit": [293, 296], "tophat": [258, 267], "topic": [31, 107, 129, 159, 224, 270, 271], "topologi": 281, "torment": 243, "tort": 315, "toru": [75, 111, 125, 134, 273], "tostring_argb": 277, "total": [1, 12, 23, 26, 42, 58, 70, 78, 85, 90, 93, 152, 217, 266, 267, 276, 286, 291, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313], "total_length": 278, "total_num_atom": [286, 296], "total_num_bond": [286, 296], "total_tim": 26, "touch": [178, 263, 271], "tournier": 269, "toward": [115, 245, 266, 292, 293, 295], "towardsdatasci": 148, "toycar": 193, "tprism_actor": 273, "tput": 312, "tr": [204, 281], "trace": [71, 74, 96, 97, 206], "tracer": 200, "track": [12, 24, 26, 27, 39, 52, 54, 80, 81, 82, 83, 93, 119, 127, 148, 200, 227, 273, 291, 293, 296, 310, 314], "track_click_callback": [293, 296], "trackbal": 295, "tracker": 148, "tractographi": 302, "tradeoff": 255, "tradit": [75, 125, 269], "tradition": 135, "train": 178, "traj": 81, "trajectori": 81, "tran": 292, "transf": 281, "transfer": 173, "transform": [13, 14, 24, 27, 48, 71, 74, 113, 167, 172, 180, 185, 186, 187, 190, 194, 197, 199, 202, 204, 207, 208, 212, 219, 225, 226, 227, 252, 255, 269, 271, 273, 274, 275, 281, 294, 296, 306, 312], "transform_from_matrix": 296, "transform_mat": 281, "transform_streamlin": [24, 27], "transform_typ": 281, "transformed_act": 294, "transformed_pt": 294, "transformpolydatafilt": 296, "transit": [226, 260], "translat": [54, 56, 60, 62, 65, 66, 74, 93, 135, 148, 181, 183, 185, 187, 202, 203, 204, 205, 212, 215, 216, 221, 225, 226, 227, 237, 246, 281, 296, 309], "translate_cube_hor": 56, "translate_cube_i": [53, 54], "translate_cube_v": 56, "translate_cube_x": [53, 54], "transln_vector": 118, "transmissionroughnesstest": 193, "transmissiontest": 193, "transpar": [12, 39, 273, 274, 275, 277, 295, 303, 304, 307], "transpos": 276, "transverse_anim": [281, 296], "transverse_bon": [281, 296], "transverse_channel": [281, 296], "transverse_nod": [281, 296], "travel": 193, "travi": [100, 138, 299, 301, 303, 304, 305, 309, 314], "tree": [32, 152, 171, 242, 254, 255], "tree2d": [164, 167, 171, 302], "treenode2d": [149, 152, 158, 164], "treeui": [254, 266, 271], "trembl": 314, "tremend": [125, 226], "tri": [114, 116, 131, 133, 144, 147, 150, 155, 159, 178, 179, 180, 182, 184, 185, 187, 189, 191, 194, 197, 205, 206, 207, 209, 211, 214, 216, 221, 222, 225, 227, 244, 255, 258, 261, 265, 267, 270, 312], "triangl": [12, 17, 18, 25, 28, 32, 34, 71, 74, 165, 178, 184, 188, 193, 196, 226, 227, 269, 273, 274, 281, 289, 294, 312], "triangle_ord": 296, "trianglefilt": 296, "trianglewithoutindic": 193, "triangul": [172, 273, 289], "triangular": [166, 273, 289, 294, 310], "triangularpr": 296, "trick": [142, 181, 249], "tricki": 175, "trickier": 258, "trigger": [149, 171, 182, 185, 255, 290], "trilinear": [273, 294], "trinkl": [103, 304], "tripl": [147, 286], "trivial": [256, 292], "troubl": [164, 261], "troubleshoot": 314, "troublesom": 151, "true": [4, 5, 6, 7, 9, 10, 11, 12, 13, 15, 17, 19, 20, 21, 24, 25, 26, 27, 28, 29, 30, 32, 33, 35, 36, 37, 38, 40, 44, 45, 46, 47, 49, 53, 54, 55, 56, 59, 60, 61, 62, 63, 65, 66, 67, 68, 71, 74, 76, 79, 80, 81, 82, 83, 86, 87, 93, 114, 148, 192, 239, 243, 273, 274, 275, 276, 277, 279, 280, 281, 282, 286, 287, 289, 290, 291, 292, 293, 294, 295], "truncat": 288, "trunk": 314, "try": [28, 39, 76, 97, 108, 116, 121, 129, 131, 133, 134, 136, 141, 144, 145, 147, 155, 159, 168, 170, 178, 180, 185, 186, 191, 196, 200, 201, 207, 210, 213, 214, 218, 222, 225, 226, 234, 238, 246, 248, 249, 252, 258, 259, 264, 267, 271, 314], "tube": [172, 273, 286, 303], "tube_sid": 273, "tubefilt": 296, "tuesdai": 258, "tun": 173, "tune": [22, 23, 89, 139, 145, 165, 231, 311, 313], "tunion": 268, "tupl": [93, 273, 274, 275, 276, 278, 280, 283, 285, 286, 287, 288, 289, 291, 292, 293, 294, 295], "turn": [84, 89, 113, 155, 193, 237, 252, 258, 263, 264, 266, 267, 271, 273, 293], "turner": 286, "tushar": [122, 138, 307, 309], "tutori": [0, 4, 5, 6, 7, 8, 9, 11, 12, 13, 15, 17, 18, 19, 24, 28, 39, 41, 57, 60, 61, 62, 64, 65, 66, 67, 68, 69, 71, 72, 74, 75, 84, 86, 96, 103, 104, 106, 121, 122, 125, 132, 133, 134, 135, 140, 141, 142, 144, 148, 158, 161, 165, 168, 169, 171, 172, 179, 180, 181, 182, 183, 189, 190, 195, 196, 198, 199, 206, 207, 210, 222, 226, 227, 229, 253, 267, 269, 278, 302, 304, 305, 306, 307, 308, 309, 310, 311, 312, 314], "tvcastillod": 269, "tweak": [80, 82, 121, 143, 147, 152, 171, 236, 254, 255, 257, 264, 271], "twice": [180, 217, 303], "twine": 314, "two": [14, 15, 21, 28, 35, 36, 43, 46, 49, 53, 54, 60, 62, 64, 66, 71, 74, 86, 93, 96, 116, 131, 133, 141, 144, 148, 152, 154, 155, 169, 171, 172, 173, 175, 180, 181, 189, 192, 198, 201, 205, 207, 208, 214, 215, 218, 223, 225, 226, 227, 230, 242, 249, 255, 256, 264, 271, 276, 286, 289, 292, 293, 310, 314], "twosidedplan": 193, "txt": [96, 99, 300, 306, 312, 314], "type": [18, 34, 93, 97, 135, 141, 148, 152, 153, 154, 171, 172, 173, 180, 184, 193, 227, 236, 237, 247, 255, 268, 272, 273, 274, 275, 276, 277, 278, 280, 281, 282, 283, 285, 286, 287, 289, 290, 291, 292, 293, 294, 295, 306], "typedhint": 268, "typeerror": [184, 280], "typic": [172, 271], "typo": [97, 148, 163, 224, 304, 310, 312], "u": [5, 15, 28, 32, 37, 40, 71, 72, 73, 74, 80, 81, 82, 96, 97, 105, 119, 134, 135, 137, 157, 161, 177, 178, 179, 181, 211, 227, 228, 242, 258, 263, 266, 269], "ubuntu": [197, 303, 307, 312], "uci": 292, "ucsc": 179, "udk": 178, "ui": [10, 11, 14, 15, 20, 21, 24, 25, 26, 28, 29, 30, 32, 33, 37, 40, 41, 42, 43, 44, 45, 46, 47, 48, 50, 51, 54, 55, 56, 76, 79, 80, 81, 82, 83, 89, 94, 98, 106, 108, 110, 112, 114, 116, 121, 122, 127, 129, 130, 131, 132, 133, 134, 135, 136, 140, 161, 164, 166, 171, 176, 179, 180, 181, 187, 200, 203, 206, 218, 225, 226, 233, 236, 239, 242, 248, 257, 258, 261, 266, 267, 268, 271, 283, 294, 296, 298, 302, 304, 306, 307, 308, 309, 310, 311, 312, 313], "ui_layout": 49, "uint8": [11, 12, 142, 273, 294], "umbrella": [105, 107, 108, 137, 177, 180, 228, 293], "un": [116, 118], "unabl": [108, 180, 270, 308, 309], "unbind": 205, "unbound": 192, "uncertainti": [238, 250, 273, 274, 302], "uncertainty_con": 296, "unchang": 276, "uncheck": [46, 53, 293], "unclear": 172, "uncollaps": 293, "uncom": [14, 39, 86, 87, 295], "uncommit": 314, "uncontrol": [124, 127], "uncoupl": [142, 173], "under": [33, 82, 96, 97, 105, 107, 108, 137, 140, 177, 180, 225, 226, 227, 228, 233, 256, 267, 269, 271, 276, 309, 312], "underflow": 267, "undergo": 271, "undergradu": 107, "underli": [97, 149, 170], "understand": [71, 73, 107, 109, 111, 115, 116, 117, 119, 120, 127, 134, 141, 144, 146, 147, 150, 152, 170, 172, 179, 180, 184, 225, 230, 233, 238, 243, 246, 249, 256, 261, 262, 265, 267, 270], "understood": [170, 249], "underw": 271, "undirect": 276, "undo": 212, "unexpect": [236, 271, 307], "unfeas": 154, "unfold": 40, "unfortun": [112, 133, 134, 152, 154, 173, 258, 266], "unicod": 193, "unifi": [44, 45, 97, 180, 271, 315], "uniform": [34, 74, 76, 88, 117, 181, 189, 192, 205, 207, 213, 224, 252, 258, 265, 269], "uniformli": 270, "uniformtool": 151, "unintention": 182, "union": [268, 269], "uniqu": [35, 36, 87, 175, 176, 291, 311, 312], "unit": [80, 93, 97, 141, 144, 198, 201, 222, 226, 242, 276, 289, 294, 304, 309], "uniti": [143, 178, 180], "unittest": [45, 314], "univ": 277, "univers": [107, 108, 178], "unknown": [180, 197], "unless": [93, 135, 276, 293, 294, 295], "unlik": 256, "unlink": [145, 148], "unlittest": 193, "unlock": [291, 296], "unmonitor": 149, "unnecessari": [142, 154, 172], "unneed": 312, "unord": 291, "unpress": 293, "unreal": [143, 180], "unrel": 145, "unsatisfactori": 134, "unselect": 293, "unselected_color": 293, "unsign": [234, 237, 258, 267, 290], "unsigned_char": 294, "unsignedchararrai": 296, "unstructuredgrid": 296, "unsuccess": [144, 150, 153, 159, 180], "unsuccessfulli": 267, "until": [154, 174, 178, 246, 252, 271, 280], "unus": 310, "unusu": 292, "unwant": [93, 309], "up": [10, 14, 20, 21, 26, 27, 28, 32, 39, 43, 54, 60, 71, 72, 73, 74, 83, 93, 142, 171, 178, 179, 180, 226, 237, 240, 243, 246, 252, 264, 267, 271, 275, 280, 293, 294, 295, 303, 308, 309, 314], "up_button_callback": [293, 296], "upcom": [191, 231, 233, 236, 242, 245, 250], "updat": [7, 9, 10, 11, 12, 13, 15, 18, 24, 25, 26, 29, 30, 32, 38, 40, 45, 60, 64, 76, 80, 82, 83, 93, 99, 100, 103, 104, 106, 108, 116, 118, 122, 127, 132, 135, 138, 142, 148, 149, 151, 152, 154, 155, 156, 158, 159, 161, 162, 164, 165, 166, 167, 168, 169, 171, 172, 173, 175, 176, 185, 191, 194, 198, 200, 203, 209, 215, 220, 222, 225, 226, 227, 229, 231, 234, 237, 239, 242, 246, 251, 252, 254, 256, 257, 258, 260, 263, 264, 266, 267, 271, 273, 275, 276, 281, 287, 291, 293, 294, 295, 296, 300, 301, 302, 304, 305, 306, 307, 308, 309, 310, 311, 312, 314], "update_actor": [11, 12, 21, 25, 26, 29, 33, 36, 40, 46, 50, 80, 81, 82, 83, 296, 309], "update_align": [293, 296], "update_anim": [7, 275, 296], "update_border_coord": [293, 296], "update_bounding_box": [293, 296], "update_button_icon": [293, 296], "update_color": 46, "update_coordin": [29, 33], "update_dur": [275, 296], "update_el": [293, 296], "update_interpol": 275, "update_morph": [9, 281, 296], "update_motion_path": [275, 296], "update_path": 26, "update_planet_posit": 15, "update_polydata_norm": 296, "update_progressbar": [296, 312], "update_scrollbar": [293, 296], "update_selection_typ": [287, 296], "update_shape_posit": [293, 296], "update_shape_select": [293, 296], "update_skin": [13, 281, 296], "update_spher": [30, 274, 296], "update_surfac": 25, "update_surface_actor_color": [25, 296], "update_tab": [293, 296], "update_user_matrix": 311, "updateshaderev": 290, "upfront": 32, "upgrad": [98, 99, 100, 101, 103, 104, 106, 122, 132, 138, 166, 176, 195, 229, 314], "upload": 314, "upload_to_gh": 96, "upon": [141, 162, 263, 271], "upper": [25, 239], "upper_xbound": 25, "upper_ybound": 25, "upsidedown": 312, "upstream": 314, "upward": 271, "uranus_actor": 15, "urdf": 93, "uri": [193, 281], "url": [86, 143, 171, 173, 190, 227, 278, 291, 293, 296, 309, 310], "us": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 29, 30, 32, 33, 34, 35, 36, 37, 40, 41, 42, 43, 45, 47, 48, 51, 52, 53, 54, 55, 56, 57, 60, 61, 62, 63, 64, 66, 67, 68, 69, 70, 71, 72, 73, 75, 76, 79, 80, 81, 82, 83, 84, 85, 86, 87, 93, 94, 96, 97, 107, 109, 112, 114, 115, 116, 117, 118, 124, 125, 126, 128, 129, 131, 134, 135, 139, 140, 141, 142, 143, 144, 145, 146, 147, 149, 150, 151, 152, 155, 157, 158, 159, 161, 163, 165, 167, 169, 170, 171, 172, 173, 174, 175, 178, 179, 180, 181, 182, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 202, 204, 205, 206, 207, 209, 210, 211, 213, 215, 216, 217, 218, 219, 220, 223, 224, 225, 226, 227, 230, 232, 234, 235, 237, 239, 242, 243, 244, 246, 247, 248, 249, 250, 251, 252, 253, 255, 256, 258, 259, 262, 264, 265, 267, 268, 269, 270, 271, 273, 274, 275, 276, 277, 278, 280, 281, 282, 284, 285, 286, 287, 290, 291, 292, 293, 294, 295, 302, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315], "usabl": [73, 234], "usag": [25, 93, 97, 150, 180, 240, 242, 247, 261, 264, 267, 269], "use_asyncio": 291, "use_pillow": 282, "use_primit": [3, 10, 16, 71, 273, 312], "use_raw_arrai": [86, 87, 291], "use_shared_mem": [148, 291], "usefulli": 151, "user": [17, 20, 42, 64, 69, 76, 84, 85, 88, 93, 97, 108, 112, 114, 115, 120, 123, 125, 131, 133, 134, 135, 136, 141, 142, 144, 148, 149, 152, 154, 171, 173, 175, 183, 185, 191, 198, 215, 218, 220, 224, 225, 230, 233, 234, 247, 255, 257, 260, 261, 263, 264, 267, 268, 271, 276, 280, 291, 293, 312, 313, 314], "user_timestamp": 291, "usp": [135, 139], "usual": [10, 14, 17, 28, 31, 67, 72, 187, 225, 230, 246, 255, 273, 276, 295], "utah": [76, 218], "util": [4, 5, 11, 12, 15, 17, 18, 21, 25, 26, 29, 30, 31, 32, 33, 36, 37, 39, 40, 46, 50, 52, 65, 71, 72, 74, 76, 80, 81, 82, 83, 93, 94, 98, 100, 146, 169, 172, 182, 188, 227, 239, 242, 266, 271, 274, 296, 298, 301, 302, 303, 306, 311, 312], "utilis": 147, "utiltii": 307, "uv": [76, 227], "ux": [81, 154, 173], "v": [22, 23, 25, 32, 40, 69, 70, 89, 142, 201, 217, 273, 276, 292, 313, 314], "v0": [275, 297, 314], "v1": [178, 275, 276], "vacat": [180, 193], "vacuum": 29, "valenc": 286, "valid": [34, 215, 263, 271, 275, 286, 293], "valid_mask": 28, "validate_valu": [293, 296], "valu": [15, 24, 25, 28, 29, 30, 32, 33, 37, 40, 45, 47, 49, 50, 52, 53, 54, 55, 56, 59, 60, 62, 64, 66, 71, 72, 73, 80, 81, 82, 83, 93, 94, 114, 115, 118, 135, 148, 154, 171, 172, 181, 193, 197, 198, 203, 205, 206, 207, 217, 223, 240, 243, 249, 254, 255, 256, 258, 260, 263, 264, 265, 266, 267, 269, 270, 271, 273, 274, 275, 276, 277, 278, 281, 282, 283, 285, 286, 288, 290, 292, 293, 294, 295, 296, 306, 309, 312, 314], "value_precis": [54, 293], "value_rang": [14, 203, 225, 273, 276, 312], "value_slid": [293, 296], "value_slider_cent": [54, 293, 296], "value_to_ratio": [293, 296], "valueerror": 76, "valuepass": 290, "van": [170, 172, 286], "var": 184, "varepsilon_1": 269, "vari": [69, 70, 89, 200, 251, 256, 309, 313], "variabl": [4, 15, 17, 20, 21, 24, 25, 26, 29, 30, 33, 35, 40, 54, 71, 74, 75, 76, 80, 82, 93, 94, 114, 117, 184, 205, 246, 253, 267, 268, 269, 273, 288, 293], "varianc": [26, 241, 244, 269, 273, 274], "varieti": 267, "variou": [25, 30, 48, 79, 81, 83, 93, 116, 118, 135, 141, 161, 180, 182, 183, 184, 185, 200, 211, 221, 227, 242, 266, 271], "vc": 193, "vcolor": [11, 12, 21, 29, 33, 46, 50], "vcolors2": 29, "vdw": [172, 286], "ve": [68, 139, 142, 145, 148, 151, 154, 160, 163, 168, 173, 174, 175, 178, 199, 232, 271], "vec2": [76, 264, 267, 281], "vec2vecrotmat": [74, 270], "vec3": [71, 74, 76, 270, 281], "vec4": [71, 74, 76, 267, 281], "vec_to_vec_rot_mat": 74, "vector": [17, 27, 62, 74, 93, 118, 173, 205, 206, 235, 256, 270, 273, 275, 276, 289, 292, 294, 295], "vector_text": [11, 25, 28, 60, 61, 72, 73, 210, 213, 226, 296, 311, 312], "vectortext": 296, "vel": 21, "vel_mag_i": 21, "vel_mag_j": 21, "veloc": [21, 33, 36, 159, 172, 178, 312], "velocitygain": [81, 83], "venus_actor": 15, "ver_line_slider_text_left": 56, "ver_line_slider_text_right": 56, "verbos": [272, 295, 314], "veri": [27, 67, 71, 116, 117, 118, 119, 142, 149, 151, 158, 167, 169, 171, 178, 179, 180, 193, 197, 205, 226, 269, 270], "veric": 294, "verifi": [181, 182, 278, 314], "version": [22, 23, 88, 89, 142, 145, 148, 151, 171, 173, 176, 178, 180, 181, 183, 192, 201, 206, 226, 227, 229, 246, 258, 260, 266, 267, 269, 273, 276, 280, 286, 288, 290, 291, 293, 295, 303, 306, 308, 311, 312, 313, 314], "version_cmp": 280, "version_compar": 280, "version_info": 86, "version_str": 280, "vert": [40, 289, 294], "vertex": [11, 17, 40, 74, 76, 134, 178, 192, 194, 204, 205, 214, 219, 222, 226, 227, 269, 273, 281, 285, 287, 290, 294, 312], "vertex1": 36, "vertex2": 36, "vertex_index": 11, "vertex_initial_posit": 36, "vertex_shader_code_decl": 76, "vertex_shader_code_impl": 76, "vertexcolortest": 193, "vertexmc": [74, 76], "vertexmcvsoutput": 74, "vertic": [11, 12, 17, 18, 21, 25, 26, 28, 29, 30, 32, 33, 40, 53, 54, 56, 74, 80, 81, 82, 83, 93, 118, 127, 161, 164, 165, 167, 169, 171, 176, 184, 189, 201, 204, 226, 227, 250, 269, 273, 274, 281, 283, 287, 289, 290, 292, 293, 294, 295, 306, 311], "vertical_justif": [47, 53, 236, 273, 293, 296], "verticallayout": 296, "vertices2": 29, "vertices_count": 36, "vertices_from_actor": [11, 12, 21, 25, 26, 29, 33, 36, 40, 80, 81, 82, 83, 93, 296], "verts3d": 40, "verts4d": 40, "vfrom": 36, "via": [26, 76, 97, 112, 118, 141, 150, 153, 165, 267, 269, 274, 292, 295, 309], "viabl": 266, "victor": [179, 267, 302], "video": [22, 23, 89, 107, 108, 148, 173, 180, 192, 213, 226, 275, 291, 295, 310, 313], "video_gener": 38, "video_url": 38, "videocaptur": 38, "videofram": 291, "videoplay": 38, "videostream": 291, "view": [27, 60, 88, 178, 180, 198, 275, 276, 292, 295], "view_siz": 36, "view_up": [4, 8, 25, 26, 27, 29, 33, 40, 79, 80, 82, 87, 275, 295], "view_up_1": 275, "view_up_2": 275, "viewer": [30, 227], "viewplanenorm": 295, "vinay0410": 148, "violat": 148, "violet": [47, 53], "viridi": [25, 252, 267, 276], "virtual": 231, "virtualenv": 314, "vis_cp": 59, "vis_point": 59, "viscos": 36, "visibl": [46, 53, 56, 191, 221, 230, 237, 266, 271, 273, 274, 281, 293, 295, 312], "vision": 141, "visit": 276, "visual": [0, 1, 4, 9, 13, 14, 15, 17, 19, 22, 23, 30, 31, 37, 38, 44, 45, 46, 50, 56, 59, 60, 66, 69, 70, 71, 72, 73, 74, 80, 82, 83, 86, 88, 89, 93, 97, 98, 99, 100, 101, 103, 104, 105, 106, 115, 122, 125, 126, 132, 134, 137, 138, 139, 144, 150, 151, 154, 155, 157, 166, 171, 172, 173, 175, 176, 177, 180, 181, 186, 187, 198, 217, 221, 225, 226, 228, 229, 230, 232, 233, 235, 238, 241, 247, 250, 256, 259, 262, 267, 272, 273, 274, 275, 286, 295, 302, 303, 306, 309, 310, 313], "visualis": [22, 23, 89, 141, 313], "visualshapeid": [81, 83, 93], "vital": 267, "vive": 312, "vivek": [106, 132, 306, 308], "viz": [53, 98, 180, 276, 298, 303, 306], "viz_advanc": [23, 24, 313], "viz_animated_network": 36, "viz_animated_surfac": [23, 25, 313], "viz_arrow": [1, 2, 313], "viz_ball_collid": [78, 79, 313], "viz_bezier_interpol": [58, 59, 313], "viz_billboad_label": 175, "viz_billboard_sdf_spher": [70, 71, 313], "viz_billboards_circl": 71, "viz_billboards_spher": 71, "viz_billboards_wirefram": 71, "viz_brick_wal": [78, 80, 313], "viz_brownian_mot": [23, 26, 313], "viz_bundl": [23, 27, 313], "viz_button": [42, 43, 313], "viz_camera": [58, 60, 313], "viz_card": [42, 44, 313], "viz_card_sprite_sheet": [42, 45, 313], "viz_chain": [78, 81, 313], "viz_check_box": [42, 46, 313], "viz_checkbox": 46, "viz_color_interpol": [58, 61, 313], "viz_combobox": [42, 47, 313], "viz_con": [1, 3, 313], "viz_custom_interpol": [58, 62, 313], "viz_domino": [78, 82, 313], "viz_drawpanel": [42, 48, 313], "viz_dt_ellipsoid": [23, 28, 313], "viz_earth_anim": [1, 4, 313], "viz_earth_coordin": [1, 5, 313], "viz_emwav": 29, "viz_emwave_anim": [23, 29, 313], "viz_fiber_odf": [23, 30, 313], "viz_fine_tuning_gl_context": [23, 31, 313], "viz_fract": [23, 32, 313], "viz_gltf": [1, 6, 313], "viz_gltf_anim": [1, 7, 313], "viz_gltf_export": [1, 8, 313], "viz_helical_mot": [23, 33, 313], "viz_helios_md": 154, "viz_hi_res_wirefram": 71, "viz_hierarchical_anim": [58, 63, 313], "viz_huge_amount_of_label": 175, "viz_interact": [85, 86, 313], "viz_interpol": 64, "viz_introduct": [58, 64, 313], "viz_keyframe_animation_bezier_1": 59, "viz_keyframe_animation_bezier_2": 59, "viz_keyframe_animation_camera": 60, "viz_keyframe_animation_color": 61, "viz_keyframe_animation_evalu": 68, "viz_keyframe_animation_introduct": 64, "viz_keyframe_animation_splin": 66, "viz_keyframe_animation_timelin": 67, "viz_keyframe_custom_interpol": 62, "viz_keyframe_hierarchical_anim": 63, "viz_layout": [42, 49, 313], "viz_listbox": 55, "viz_low_res_wirefram": 71, "viz_mark": [23, 34, 313], "viz_morph": [1, 9, 313], "viz_multithread": [1, 10, 313], "viz_network": [23, 35, 313], "viz_network_anim": [23, 36, 227, 312, 313], "viz_no_interact": [85, 87, 313], "viz_pbr_interact": [23, 37, 312, 313], "viz_pbr_spher": [70, 72, 313], "viz_pick": [1, 11, 313], "viz_play_video": [23, 38, 313], "viz_poly_cylind": 74, "viz_poly_cylinder_geom": 74, "viz_principled_spher": [70, 73, 313], "viz_radio_button": [42, 50, 313], "viz_regular_spher": 71, "viz_robot_arm": 65, "viz_robot_arm_anim": [58, 65, 313], "viz_roi_contour": [23, 39, 312, 313], "viz_sdf_cylind": [70, 74, 313], "viz_sdfactor": [70, 75, 313], "viz_select": [1, 12, 313], "viz_shad": [70, 76, 313], "viz_shap": [42, 51, 313], "viz_skin": [1, 13, 313], "viz_slic": [1, 14, 313], "viz_slid": 56, "viz_solar_system": [1, 15, 308, 313], "viz_solar_system_anim": 15, "viz_spher": [1, 16, 313], "viz_spiki": [1, 17, 313], "viz_spinbox": [42, 52, 313], "viz_spline_interpol": [58, 66, 313], "viz_surfac": [1, 18, 303, 313], "viz_tab": [42, 53, 313], "viz_tesseract": [23, 40, 313], "viz_textur": [1, 19, 313], "viz_tim": [1, 20, 313], "viz_timelin": [58, 67, 313], "viz_ui": [42, 54, 304, 306, 313], "viz_ui_listbox": [42, 55, 313], "viz_ui_slid": [42, 56, 313], "viz_using_time_equ": [58, 68, 313], "viz_video_on_plan": 273, "viz_widget": [85, 88, 313], "viz_wrecking_bal": [78, 83, 313], "vol": [269, 274], "volum": [0, 1, 30, 89, 170, 273, 274, 295, 296, 313], "volumetr": [109, 126], "volunt": 314, "voxel": [14, 24, 28, 269, 273, 274, 294], "voxsz": 303, "vp": 38, "vs_dec": [74, 273], "vs_impl": [74, 273], "vstack": [25, 27], "vtk": [18, 24, 45, 76, 93, 94, 96, 100, 107, 108, 111, 114, 130, 131, 134, 135, 138, 139, 142, 144, 145, 146, 148, 150, 154, 159, 170, 171, 172, 173, 175, 176, 178, 179, 181, 200, 201, 205, 206, 207, 218, 227, 230, 234, 237, 243, 246, 258, 267, 272, 273, 274, 277, 281, 282, 285, 290, 291, 294, 295, 301, 303, 304, 306, 307, 308, 309, 311, 312], "vtk6": 303, "vtk9": [122, 307], "vtk_9_plu": 311, "vtk_cell": 294, "vtk_color": 294, "vtk_imag": 294, "vtk_matrix_to_numpi": 296, "vtk_object": 294, "vtk_point": 294, "vtk_rgb": 237, "vtk_rgba": [234, 237], "vtk_sphere_actor": 16, "vtk_sprite": 45, "vtk_unsigned_char": [234, 237, 243], "vtk_version": 296, "vtkactor": [274, 275, 281, 286, 290, 293, 294, 311], "vtkactor2d": [171, 293], "vtkalgorithmoutput": 294, "vtkarraytyp": 294, "vtkassembli": 273, "vtkbillboardtextactor": 312, "vtkcamera": [275, 281], "vtkcellarrai": 294, "vtkcellpick": 273, "vtkcommand": 290, "vtkconesourc": 3, "vtkdataarrai": 294, "vtkerrormacro": 237, "vtkeventid": 310, "vtkimageactor": 273, "vtkimagedata": [45, 171, 273, 282, 294, 311], "vtkimagetrac": [206, 209], "vtkinteractor": 291, "vtkinteractorstyl": 295, "vtkinteractorstyleimag": 295, "vtkinteractorstyletrackballcamera": 295, "vtklookupt": [273, 274], "vtkmarchingcub": 170, "vtkmolecul": [147, 150, 286], "vtkmoleculemapp": [147, 150], "vtkmoleculereaderbas": 144, "vtkobject": 294, "vtkopenglframebufferobject": 243, "vtkopenglmoleculemapp": 172, "vtkopenglrender": 295, "vtkopenglst": 295, "vtkpdbreader": 150, "vtkperiodict": [147, 150, 286], "vtkpoint": 294, "vtkpolydata": [150, 153, 172, 282, 294], "vtkpolydatamapp": 294, "vtkprop": 293, "vtkprop3d": [273, 283, 294], "vtkproperti": 159, "vtkproteinribbonfilt": [141, 144, 147, 150, 156, 172], "vtkrender": 295, "vtkrenderwindow": 295, "vtkrenderwindowinteractor": [267, 295], "vtkscalarbaractor": 273, "vtkshader": 76, "vtksimplebondperceiv": [147, 150, 172, 286], "vtksourc": [16, 188, 190, 294], "vtkspheresourc": 16, "vtktextactor": [114, 116, 239, 293], "vtktextactor3d": 311, "vtktextur": [184, 200, 246, 273, 282], "vtktexturedactor": 273, "vtktexturedactor2d": 293, "vtktextureobject": [234, 237], "vtkviewport": [114, 119], "vtkwindowtoimagefilt": [246, 258], "vto": 36, "vtp": [282, 309], "vulner": [264, 309, 310], "vx": 314, "w": [5, 29, 40, 93, 148, 149, 171, 173, 273, 276, 282, 291, 294], "wa": [24, 73, 97, 108, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 123, 124, 125, 126, 127, 128, 129, 130, 131, 133, 134, 135, 136, 140, 142, 143, 144, 146, 147, 148, 149, 150, 151, 152, 154, 155, 156, 157, 158, 159, 161, 165, 167, 170, 172, 173, 175, 178, 179, 180, 181, 182, 183, 184, 185, 187, 188, 190, 191, 193, 194, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 211, 214, 215, 217, 218, 221, 225, 226, 230, 231, 233, 234, 235, 236, 238, 239, 241, 242, 245, 247, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 275, 276, 277, 280, 291, 294, 295, 312, 314], "waal": [170, 172, 286], "wai": [14, 24, 27, 28, 37, 63, 67, 71, 72, 74, 96, 97, 110, 114, 131, 135, 139, 142, 145, 146, 148, 149, 152, 158, 169, 171, 175, 180, 181, 184, 189, 194, 200, 205, 210, 215, 216, 218, 220, 222, 224, 226, 227, 231, 232, 235, 240, 243, 247, 249, 255, 258, 265, 267, 268, 269, 270, 273, 274, 276, 277, 294, 311, 312, 314, 315], "wait": [10, 86, 145, 148, 178, 238, 241, 295, 296], "walk": 178, "wall": [21, 77, 78, 83, 89, 118, 121, 127, 130, 135, 313], "wall_breadth": 83, "wall_height": [80, 83], "wall_length": 83, "wall_width": 80, "want": [9, 13, 14, 17, 24, 27, 32, 35, 63, 64, 71, 74, 88, 131, 142, 154, 157, 173, 178, 179, 180, 182, 184, 185, 225, 238, 246, 249, 250, 255, 258, 259, 281, 289, 290, 291, 292, 295, 311, 314], "ward": 293, "warn": [234, 243, 272, 280, 303, 308, 309, 310, 311], "warn_class": 280, "warning_class": 280, "warnings_origin": 272, "warranti": 315, "wasn": [112, 113, 121, 152, 167, 178, 180, 182, 185, 191, 194, 196, 197, 211, 240, 242, 243, 252, 264, 267, 271], "wast": [158, 181, 218, 221], "watch": [4, 5, 15, 178, 180], "watcher": [143, 146, 149, 171, 302], "water": [28, 269], "waterbottl": 193, "wathcer": 171, "wave": [22, 23, 33, 89, 156, 311, 313], "wave_actor1": 29, "wave_actor2": 29, "wavelength": 29, "wavenumb": 29, "we": [2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 24, 26, 27, 28, 30, 31, 32, 35, 36, 37, 39, 40, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 59, 60, 61, 62, 63, 64, 65, 66, 67, 71, 72, 73, 74, 75, 76, 79, 80, 81, 82, 83, 86, 87, 88, 93, 94, 96, 97, 98, 99, 100, 101, 103, 104, 106, 108, 109, 114, 116, 117, 118, 119, 120, 122, 124, 125, 127, 131, 132, 133, 135, 138, 139, 140, 141, 142, 145, 146, 148, 151, 154, 161, 165, 166, 169, 171, 173, 175, 176, 180, 181, 182, 183, 184, 186, 187, 188, 189, 190, 193, 197, 199, 200, 201, 202, 204, 205, 206, 211, 212, 213, 214, 215, 216, 217, 218, 219, 221, 223, 225, 226, 227, 229, 231, 232, 236, 237, 238, 239, 240, 242, 243, 245, 246, 247, 248, 251, 253, 254, 255, 256, 257, 258, 261, 264, 266, 267, 269, 271, 273, 276, 281, 288, 289, 292, 293, 295, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 314], "web": [86, 88, 173, 314], "web_serv": [86, 296], "web_server_raw_arrai": [86, 87, 296], "webgl": 230, "webrtc": [84, 85, 86, 89, 139, 142, 154, 173, 291, 312, 313], "webrtc_avail": 86, "webrtcserv": 291, "webserv": [142, 291], "websit": [134, 135, 160, 164, 171, 172, 173, 179, 180, 225, 226, 227, 229, 245, 258, 267, 269, 271, 302, 309, 312, 314], "wednesdai": [107, 108, 199, 246], "week": [134, 135, 148, 154, 171, 172, 173, 225, 226, 227, 267, 269, 271, 302, 311, 312], "week0": 302, "week1": [302, 312], "week2": 302, "week3": 302, "weekli": [110, 111, 112, 114, 116, 118, 119, 121, 124, 127, 129, 130, 133, 134, 135, 141, 144, 147, 150, 153, 156, 159, 162, 165, 168, 170, 171, 172, 173, 181, 182, 226, 236, 238, 240, 241, 243, 246, 247, 249, 252, 255, 256, 258, 261, 264, 308], "weel": [148, 291], "weight": [154, 212, 227, 246, 269, 281], "weird": [121, 130, 251], "welcom": [55, 97, 110, 112, 114, 116, 118, 119, 121, 124, 127, 129, 130, 133, 134, 135, 144, 147, 150, 153, 156, 159, 162, 165, 168, 170, 171, 172, 173, 230, 237, 243, 252, 314], "welcome_text": 55, "well": [13, 27, 30, 71, 116, 129, 140, 142, 143, 146, 152, 154, 155, 158, 164, 181, 183, 193, 203, 205, 208, 211, 218, 222, 226, 227, 230, 232, 237, 240, 243, 246, 249, 255, 256, 258, 264, 267, 269, 270, 275, 295], "went": [125, 136, 178, 179, 180, 183, 203, 233, 258, 268], "were": [108, 111, 112, 113, 114, 115, 116, 118, 119, 121, 124, 126, 128, 129, 131, 134, 135, 140, 143, 146, 148, 152, 155, 158, 161, 164, 165, 167, 168, 169, 171, 172, 173, 178, 179, 180, 182, 184, 193, 197, 202, 203, 206, 209, 211, 215, 216, 217, 218, 226, 236, 237, 238, 248, 251, 256, 257, 258, 263, 264, 266, 267, 268, 270, 271, 280, 295], "weren": [184, 188, 202, 206, 211, 237], "west": 292, "what": [2, 3, 11, 14, 15, 24, 32, 71, 94, 142, 148, 172, 173, 179, 180, 225, 237, 240, 243, 246, 255, 258, 261, 267, 277, 295], "whatev": [180, 261, 295], "whatsoev": 178, "wheel": [14, 63, 97], "wheel_anim": 63, "wheel_cent": 63, "wheel_direct": 63, "wheel_posit": 63, "wheels_anim": 63, "when": [4, 11, 12, 21, 25, 27, 29, 31, 33, 37, 53, 54, 55, 59, 62, 63, 71, 72, 75, 114, 129, 131, 142, 143, 148, 149, 152, 157, 158, 161, 171, 173, 175, 178, 180, 181, 185, 186, 188, 192, 193, 197, 198, 203, 211, 215, 222, 224, 225, 226, 232, 236, 237, 239, 240, 242, 246, 248, 251, 252, 254, 255, 256, 258, 263, 264, 266, 267, 269, 270, 271, 273, 275, 276, 278, 280, 286, 293, 295, 303, 304, 305, 306, 309, 310, 311, 312, 314], "whenev": [47, 111, 180, 183, 185, 187, 191, 198, 203, 216, 218, 225, 255, 275], "where": [21, 27, 29, 63, 67, 74, 93, 96, 108, 118, 121, 127, 135, 142, 144, 146, 148, 154, 161, 172, 173, 180, 182, 184, 187, 203, 214, 219, 222, 231, 232, 233, 234, 242, 262, 263, 269, 270, 271, 273, 274, 276, 277, 278, 285, 286, 288, 292, 293, 294, 295, 314], "wherea": 180, "wherein": [143, 161, 171], "whether": [17, 71, 161, 180, 206, 211, 215, 221, 230, 266, 273, 275, 276, 286, 289, 293, 295, 314, 315], "which": [5, 7, 11, 12, 14, 15, 24, 25, 26, 27, 28, 29, 31, 32, 33, 35, 36, 37, 38, 39, 40, 50, 54, 62, 64, 67, 71, 74, 80, 82, 83, 86, 87, 88, 93, 96, 109, 113, 114, 116, 118, 119, 121, 124, 126, 128, 129, 130, 131, 133, 134, 135, 136, 139, 140, 141, 142, 143, 144, 145, 146, 148, 149, 150, 151, 152, 153, 154, 155, 158, 161, 164, 165, 167, 168, 169, 170, 171, 172, 173, 178, 180, 181, 182, 183, 184, 185, 186, 187, 190, 191, 192, 194, 197, 198, 200, 201, 202, 205, 206, 207, 209, 211, 215, 216, 218, 220, 221, 225, 226, 230, 232, 233, 234, 236, 238, 239, 241, 244, 246, 247, 248, 249, 251, 252, 253, 254, 255, 256, 257, 258, 264, 265, 266, 267, 269, 270, 271, 273, 274, 275, 276, 280, 283, 286, 287, 289, 290, 291, 292, 293, 294, 295, 314], "while": [4, 10, 28, 53, 108, 110, 112, 113, 115, 116, 117, 118, 119, 121, 127, 129, 136, 143, 178, 180, 184, 185, 187, 188, 189, 190, 193, 197, 201, 209, 211, 215, 217, 218, 219, 220, 221, 225, 226, 227, 232, 236, 237, 239, 244, 251, 253, 263, 266, 267, 271, 275, 276, 293, 294, 302, 312], "white": [4, 5, 27, 269, 273, 295, 302], "white_matt": 39, "whithout_iren_start": 291, "who": [97, 102, 136, 142, 154, 173, 246, 276], "whoever": 314, "whole": [28, 149, 161, 171, 178, 180, 250, 254, 261, 264, 267], "whole_brain_ev": 28, "whole_brain_evec": 28, "whom": 286, "whose": [26, 33, 71, 172, 273, 278, 283, 286, 293], "why": [60, 71, 112, 148, 149, 180, 182, 197, 226, 234, 237, 243, 247, 258, 267, 270], "wide": [59, 108, 273, 283], "widget": [24, 30, 84, 85, 89, 98, 108, 135, 171, 175, 200, 206, 271, 296, 298, 302, 303, 313], "width": [27, 34, 94, 110, 114, 121, 135, 148, 182, 226, 234, 237, 243, 255, 273, 275, 283, 293, 294, 295, 296, 312], "width_set_text": [293, 296], "wiki": [73, 105, 137, 177, 179, 228, 230, 278, 290, 292, 312], "wikipedia": [73, 246, 255, 267, 292], "win": 295, "win_callback": [24, 30, 37, 295], "wind": [30, 294, 306], "window": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 71, 72, 73, 74, 75, 76, 79, 80, 81, 82, 83, 86, 87, 88, 89, 93, 94, 96, 97, 98, 100, 101, 104, 111, 135, 140, 143, 149, 152, 154, 155, 158, 171, 173, 174, 175, 178, 229, 230, 237, 243, 246, 252, 255, 264, 267, 273, 275, 290, 291, 293, 296, 298, 301, 303, 304, 305, 306, 307, 310, 311, 312], "window_callback": 37, "window_left": [293, 296], "window_right": [293, 296], "window_s": [86, 87, 88], "window_size_chang": 293, "window_to_textur": [252, 267], "windowresizeev": [140, 149, 158, 171], "windowsresizeev": 161, "windowtitlefix": 306, "windowtoimagefilt": [246, 267, 296], "wip": [241, 247, 302, 306, 310, 311, 312], "wire": [141, 172], "wirefram": [40, 71, 294], "wise": [86, 142], "wish": [234, 243, 246, 249, 255, 261, 268], "with_transform": 281, "within": [28, 37, 71, 72, 93, 111, 113, 117, 120, 124, 133, 134, 135, 152, 180, 233, 267, 271, 293, 295], "without": [28, 32, 80, 82, 88, 96, 97, 118, 145, 148, 150, 154, 158, 173, 175, 194, 198, 200, 218, 227, 235, 237, 238, 239, 243, 246, 258, 260, 267, 270, 273, 275, 276, 277, 283, 295, 302, 309, 311, 312, 314, 315], "woke": [175, 179], "wolfram": 292, "won": [13, 93, 102, 133, 179, 198, 205, 291, 303], "wonder": [27, 112], "word": [71, 116, 118], "work": [9, 12, 13, 27, 32, 71, 86, 87, 96, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 118, 119, 121, 123, 124, 125, 126, 127, 128, 129, 130, 131, 133, 136, 139, 140, 141, 143, 145, 148, 149, 152, 154, 156, 157, 158, 160, 162, 164, 167, 169, 170, 173, 175, 178, 179, 180, 181, 182, 183, 184, 185, 187, 188, 189, 192, 193, 196, 198, 202, 203, 205, 206, 209, 211, 212, 214, 215, 216, 218, 230, 232, 234, 235, 236, 237, 238, 239, 240, 242, 243, 244, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 258, 260, 261, 262, 263, 264, 265, 266, 268, 270, 273, 291, 292, 305, 307, 308, 309, 310, 312, 314], "workaround": [121, 144, 155, 234, 246, 258, 267], "world": [11, 12, 22, 23, 24, 27, 74, 80, 82, 89, 93, 116, 127, 178, 179, 230, 267, 273, 274, 287, 313], "world_coord": [24, 287], "world_fram": [79, 80, 82, 83, 93], "worldpointpick": 296, "wors": 234, "worth": [252, 264], "would": [14, 19, 24, 54, 62, 67, 73, 101, 103, 104, 106, 109, 114, 119, 121, 122, 128, 130, 132, 133, 135, 136, 138, 140, 143, 146, 149, 152, 155, 158, 166, 176, 178, 180, 182, 183, 185, 197, 211, 218, 221, 225, 226, 229, 230, 234, 235, 237, 239, 240, 243, 247, 252, 255, 258, 259, 264, 266, 267, 268, 270, 271, 275, 293, 314], "wouldn": 161, "wrap": [38, 71, 161, 164, 233, 260, 264, 293, 310], "wrap_overflow": [161, 296], "wrap_width": 293, "wrapper": [154, 173], "wreck": [77, 78, 89, 118, 129, 135, 309, 313], "write": [24, 30, 97, 133, 135, 142, 147, 148, 151, 154, 169, 179, 181, 212, 224, 261, 264, 281, 291], "write_accessor": 296, "write_buff": 296, "write_bufferview": 296, "write_camera": 296, "write_into": [148, 291, 296], "write_materi": 296, "write_mesh": 296, "write_nod": 296, "write_scen": 296, "writeabl": 276, "written": [97, 116, 154, 173, 180, 230, 315], "wrong": [129, 139, 142, 151, 152, 180, 246], "wrote": [112, 121, 178, 190, 208], "wsl": 88, "www": [73, 148, 173, 276, 277, 292], "wysiwyg": 225, "x": [2, 5, 14, 15, 24, 25, 26, 29, 30, 33, 34, 37, 86, 88, 93, 96, 118, 145, 148, 167, 169, 171, 172, 178, 184, 201, 258, 264, 267, 270, 273, 274, 275, 276, 278, 283, 285, 286, 287, 291, 292, 293, 294, 295, 312, 314], "x1": [36, 274], "x2": [36, 274], "x64": 304, "x_coord": 286, "x_indic": 274, "x_midpoint": 24, "xaxi": [30, 274], "xlayout": 296, "xml": [76, 94, 282], "xmlpolydataread": 296, "xmlpolydatawrit": 296, "xp": 178, "xquartz": 96, "xtanion": [222, 227], "xu": 172, "xvfb": 96, "xx": 29, "xxxy": 267, "xy": [40, 71, 76, 264, 273, 283, 292, 294], "xyx": 76, "xyz": [10, 11, 20, 21, 25, 61, 74, 93, 192, 226, 275, 276, 287, 289, 294], "xyz2lab": 296, "xyz2rgb": 296, "xyz_color_interpol": [61, 296], "xyz_from_rgb": 296, "xyz_text": 61, "xyzcolor": 276, "y": [2, 5, 14, 15, 24, 25, 26, 29, 30, 33, 37, 63, 93, 118, 152, 167, 169, 171, 172, 178, 201, 258, 262, 264, 270, 271, 273, 274, 275, 278, 283, 285, 286, 287, 291, 292, 293, 294, 295, 312, 314], "y1": [36, 274], "y2": [36, 274], "y_coord": 286, "y_indic": 274, "y_midpoint": 24, "yang": 172, "yaw": [292, 295, 296], "yaxi": [30, 274], "ye": 193, "year": [108, 140, 142, 178, 179, 180, 231, 307, 314], "yellow": [29, 47, 53, 216, 218], "yet": [27, 118, 121, 164, 168, 171, 179, 189, 198, 202, 231, 235, 243, 258, 267], "yield": [38, 266, 276], "ylayout": 296, "york": 5, "you": [2, 3, 6, 9, 13, 14, 16, 17, 19, 21, 24, 27, 30, 31, 32, 34, 35, 36, 39, 54, 59, 60, 64, 67, 71, 74, 86, 87, 88, 94, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 122, 132, 135, 137, 138, 140, 142, 143, 146, 148, 149, 152, 154, 155, 158, 161, 164, 166, 167, 169, 173, 176, 177, 180, 225, 228, 229, 237, 240, 243, 249, 255, 258, 264, 270, 271, 273, 276, 277, 278, 290, 291, 294, 295, 314], "your": [0, 4, 15, 19, 71, 86, 88, 89, 96, 98, 99, 100, 101, 103, 104, 105, 106, 122, 132, 133, 137, 138, 154, 166, 173, 176, 177, 180, 212, 228, 229, 243, 246, 276, 286, 290, 291, 295, 314], "your_name_her": 314, "youtub": 180, "yy": 29, "yzww": 267, "z": [2, 5, 14, 24, 25, 26, 29, 30, 33, 37, 40, 71, 93, 118, 167, 169, 171, 172, 178, 201, 213, 270, 273, 274, 275, 278, 283, 285, 286, 292, 294, 312, 314], "z1": [36, 274], "z2": [36, 274], "z_coord": 286, "z_indic": 274, "zaxi": 274, "zenith": 292, "zero": [2, 3, 8, 11, 12, 16, 17, 28, 32, 36, 39, 40, 62, 64, 67, 80, 81, 82, 83, 203, 225, 258, 266, 267, 276, 291, 312], "zerodivisionerror": [225, 266, 271, 312], "zerodivsionerror": 203, "zeros_lik": 62, "zhang": 172, "zhiwen": [229, 312], "zip": [15, 29, 89, 276], "zlayout": 296, "zoom": [4, 5, 12, 14, 18, 21, 24, 26, 28, 33, 39, 259, 295, 296], "zw": 40, "zz": 29, "\u00e5": 286, "\u00e8ffectmanag": 267, "\u03b1": 172, "\u03b2": 172}, "titles": ["Introductory", "Computation times", "Fury Arrow Actor", "Fury Cone Actor", "Texture Sphere Animation", "Earth Coordinate Conversion", "Visualizing a glTF file", "Visualizing a glTF file", "Exporting scene as a glTF file", "Morphing Animation in a glTF", "Multithreading Example", "Simple picking", "Selecting multiple objects", "Skeletal Animation in a glTF file", "Simple volume slicing", "Solar System Animation", "FURY sphere Actor", "Spiky Sphere", "Visualize surfaces", "Sphere Texture", "Using a timer", "Collisions of particles in a box", "Demos", "Computation times", "Advanced interactive visualization", "Animated 2D functions", "Brownian motion", "Visualize bundles and metrics on bundles", "Display Tensor Ellipsoids for DTI using tensor_slicer vs ellipsoid actor", "Electromagnetic Wave Propagation Animation", "Brain Fiber ODF Visualisation", "Fine-tuning the OpenGL state using shader callbacks", "Fractals", "Motion of a charged particle in a combined magnetic and electric field", "Fury Markers", "Visualize Interdisciplinary map of the journals network", "Visualize Networks (Animated version)", "Interactive PBR demo", "Play a video in the 3D world", "Visualization of ROI Surface Rendered with Streamlines", "Tesseract (Hypercube)", "User Interface Elements", "Computation times", "Buttons & Text", "Card", "Card", "Figure and Color Control using Check boxes and Radio Buttons", "ComboBox", "DrawPanel", "Using Layouts with different UI elements", "Sphere Color Control using Radio Buttons", "Simple Shapes", "SpinBox UI", "Tab UI", "User Interfaces", "ListBox", "Cube & Slider Control", "Animation", "Computation times", "Bezier Interpolator", "Keyframe animation: Camera and opacity", "Keyframe Color Interpolators", "Making a custom interpolator", "Keyframe hierarchical Animation", "Keyframe animation introduction", "Arm Robot Animation", "Keyframes Spline Interpolator", "Timeline and setting keyframes", "Keyframe animation", "Shaders", "Computation times", "SDF Impostors on Billboards", "Physically-Based Rendering (PBR) on spheres", "Principled BRDF shader on spheres", "Make a Cylinder using polygons vs SDF", "Visualize SDF Actor", "Varying Color", "Integrate Physics using pybullet", "Computation times", "Ball Collision Simulation", "Brick Wall Simulation", "Chain Simulation", "Domino Physics Simulation", "Wrecking Ball Simulation", "Streaming", "Computation times", "Streaming FURY with user interaction", "Streaming FURY with WebRTC/MJPEG", "Streaming FURY with WebRTC/MJPEG using the Widget Object", "Tutorials", "Computation times", "Blog", "Community", "FURY - pyBullet Integration Guide", "Getting Started", "<no title>", "Installation", "About", "FURY 0.1.0 Released", "FURY 0.1.3 Released", "FURY 0.1.4 Released", "FURY 0.2.0 Released", "Success on Brain Art Competition using FURY", "FURY 0.3.0 Released", "FURY 0.4.0 Released", "Google Summer of Code", "FURY 0.5.1 Released", "Weekly Check-in #1", "Welcome to my GSoC Blog!!!", "First week of coding!!", "First week of coding!!", "Raymarching!!", "ComboBox2D Progress!!", "Raymarching continued", "TextBlock2D Progress!!", "Spherical harmonics", "May the Force be with you!!", "Spherical harmonics, Continued.", "Translation, Reposition, Rotation.", "Orientation, Sizing, Tab UI.", "Multiple SDF primitives.", "ComboBox2D, TextBlock2D, Clipping Overflow.", "FURY 0.6.0 Released", "Improvements in SDF primitives.", "Tab UI, TabPanel2D, Tab UI Tutorial.", "Merging SDF primitives.", "More Shaders!!", "Single Actor, Physics, Scrollbars.", "More Shaders!!", "Chain Simulation, Scrollbar Refactor, Tutorial Update.", "Wrecking Ball Simulation, Scrollbars Update, Physics Tutorials.", "Outline Picker", "FURY 0.6.1 Released", "Part of the Journey is the end unless its Open Source!", "Google Summer of Code 2020 Final Work Product", "Google Summer of Code Final Work Product", "Shader Showcase", "Google Summer of Code", "FURY 0.7.0 Released", "Weekly Check-In #1", "Week #1: Welcome to my weekly Blogs!", "Welcome to my GSoC Blog!", "A Stadia-like system for data visualization", "Week #2: Feature additions in UI and IO modules", "First week of coding!", "Weekly Check-In #3", "Week #3: Adapting GridLayout to work with UI", "Second week of coding!", "SOLID, monkey patching a python issue and network visualization through WebRTC", "Week #4: Adding Tree UI to the UI module", "Third week of coding!", "Weekly Check-In #5", "Week #5: Rebasing all PRs w.r.t the UI restructuring, Tree2D, Bug Fixes", "Fourth week of coding!", "Network layout algorithms using IPC", "Week #6: Bug fixes, Working on Tree2D UI", "Fifth week of coding!", "Weekly Check-In #7", "Week #7: Finalizing the stalling PRs, finishing up Tree2D UI.", "Sixth week of coding!", "Weekly Check-In #8", "Week #8: Code Cleanup, Finishing up open PRs, Continuing work on Tree2D", "Seventh week of coding!", "Week #09: Sphinx custom summary", "Week #9: More Layouts!", "Eighth coding week!", "FURY 0.7.0 Released", "Week#10: Accordion UI, Support for sprite sheet animations", "Ninth coding week!", "Week #11: Finalizing open Pull Requests", "Tenth coding week!", "Google Summer of Code Final Work Product", "Google Summer of Code Final Work Product", "Google Summer of Code 2021 - Final Report - Bruno Messias", "Week #10: SDF Fonts", "Week #11: Removing the flickering effect", "FURY 0.8.0 Released", "Contribute to FURY via Google Summer of Code 2022", "My journey till getting accepted into GSoC22", "My Journey to GSoC 2022", "Pre-GSoC Journey", "Week 1: Implementing a basic Keyframe animation API", "Week 1 - Laying the Foundation of DrawPanel UI", "Week 2 - Improving DrawPanel UI", "Week 1 - A Basic glTF Importer", "Week 3 - Dealing with Problems", "Week 2: Implementing non-linear and color interpolators", "Week 4 - Fixing the Clamping Issue", "Week 2 - Improving Fetcher and Exporting glTF", "Week 3: Redesigning the API, Implementing cubic Bezier Interpolator, and making progress on the GPU side!", "Week 3 - Fixing fetcher, adding tests and docs", "Week 5 - Working on new features", "Week 4: Camera animation, interpolation in GLSL, and a single Timeline!", "Week 4 - Finalizing glTF loader", "Week 6 - Supporting Rotation of the Shapes from the Center", "Week 5: Slerp implementation, documenting the Timeline, and adding unit tests", "Week 5 - Creating PR for glTF exporter and fixing the loader", "Week 7 - Working on Rotation PR and Trying Freehand Drawing", "Week 6: Fixing the Timeline issues and equipping it with more features", "Week 6 - Extracting the animation data", "Week 8 - Working on the polyline feature", "Week 7: Billboard spheres and implementing interpolators using closures", "Week 7 - Fixing bugs in animations", "Week 9 - Grouping and Transforming Shapes", "Week 8 - Fixing animation bugs", "Week 8: Back to the shader-based version of the Timeline", "Week 10 - Understanding Codes and Playing with Animation", "Week 9: Animating primitives of the same actor", "Week 9 - First working skeletal animation prototype", "Week 11 - Creating a base for Freehand Drawing", "Week 10: Supporting hierarchical animating", "Week 12 - Fixing translating issues and updating tests", "Week 10 - Multi-node skinning support", "Week 11: Improving tutorials a little", "Week 11 - Multiple transformations support and adding tests", "Week 13 - Separating tests and fixing bugs", "Week 14 - Updating DrawPanel architecture", "Week 12 - Adding skeleton as actors and fix global transformation", "Week 15 - Highlighting DrawShapes", "Week 13 - Multi-bone skeletal animation support", "Week 13: Keyframes animation is now a bit easier in FURY", "Week 16 - Working with Rotations!", "Week 14: Keyframes animation is now a bit easier in FURY", "Week 14 - Morphing is here!", "Week 12: Adding new tutorials", "Google Summer of Code Final Work Product", "Google Summer of Code Final Work Product", "Google Summer of Code Final Work Product", "Contribute to FURY via Google Summer of Code 2023", "FURY 0.9.0 Released", "The Beginning of Everything - Week 0", "Week 0: Community Bounding Period", "Week 0: Community Bounding Period", "Week 1: Working with SpinBox and TextBox Enhancements", "The FBO Saga - Week 1", "Week 1: Ellipsoid actor implemented with SDF", "Week 2: Tackling Text Justification and Icon Flaw Issues", "Week 2: The Importance of (good) Documentation", "Week 2: Making adjustments to the Ellipsoid Actor", "Week 3: Resolving Combobox Icon Flaw and TextBox Justification", "Week 3: Watch Your Expectations", "Week 3: Working on uncertainty and details of the first PR", "Week 4: Exam Preparations and Reviewing", "Week 4: Nothing is Ever Lost", "Week 4: First draft of the DTI uncertainty visualization", "Week 5: Trying out PRs and Planning Ahead", "Week 5: All Roads Lead to Rome", "Week 5: Preparing the data for the Ellipsoid tutorial", "Week 6: BoundingBox for TextBlock2D!", "Week 6: Things are Starting to Build Up", "Week 6: First draft of the Ellipsoid tutorial", "Week 7: Sowing the seeds for TreeUI", "Week 7: Experimentation Done", "Week 7: Adjustments on the Uncertainty Cones visualization", "Week 8: Another week with TextBlockUI", "Week 8: The Birth of a Versatile API", "Week 8: Working on Ellipsoid Tutorial and exploring SH", "Week 9: TextBlock2D is Finally Merged!", "Week 9: It is Polishing Time!", "Week 9: Tutorial done and polishing DTI uncertainty", "Week 10: Its time for a Spin-Box!", "Week 10: Ready for Review!", "Week 10 : Start of SH implementation experiments", "Week 11: Bye Bye SpinBox", "Week 11: A Refactor is Sometimes Needed", "Week 11 : Adjusting ODF implementation and looking for solutions on issues found", "Week 12: FileDialog Quest Begins!", "Google Summer of Code Final Work Product", "Week 12: Now That is (almost) a Wrap!", "Google Summer of Code Final Work Product", "Week 12 : Experimenting with ODFs implementation", "Google Summer of Code Final Work Product", "fury", "actor", "actors", "animation", "colormap", "convert", "data", "decorators", "deprecator", "gltf", "io", "layout", "lib", "material", "molecular", "pick", "pkg_info", "primitive", "shaders", "stream", "transform", "ui", "utils", "window", "API Reference", "Release History", "Release notes v0.1.0 (2018-09-21)", "Release notes v0.1.1 (2018-10-29)", "Release notes v0.1.2 and v0.1.3 (2018-10-31)", "Release notes v0.1.4 (2018-11-26)", "Release notes v0.10.0 (2024/02/28)", "Release notes v0.2.0 (2019-03-08)", "Release notes v0.3.0 (2019-08-02)", "Release notes v0.4.0 (2019-10-29)", "Release notes v0.5.1 (2020-04-01)", "Release notes v0.6.0 (2020-07-20)", "Release notes v0.6.1 (2020-08-20)", "Release notes v0.7.0 (2021/03/13)", "Release notes v0.7.1 (2021/08/03)", "Release notes v0.8.0 (2022/01/31)", "Release notes v0.9.0 (2023/04/15)", "Computation times", "Contributing", "License"], "titleterms": {"": [230, 237, 240, 243, 246, 249, 252, 255, 258, 261, 264, 268], "0": [53, 98, 99, 100, 101, 103, 104, 106, 122, 132, 138, 166, 176, 229, 230, 231, 232, 298, 302, 303, 304, 305, 307, 309, 311, 312], "01": [306, 311], "02": [302, 304], "03": [303, 309, 310], "04": [306, 312], "07": 307, "08": [303, 304, 308, 310], "09": [163, 298], "1": [53, 98, 99, 100, 106, 107, 132, 139, 140, 151, 181, 182, 184, 233, 234, 235, 298, 299, 300, 301, 306, 308, 310], "10": [167, 174, 206, 210, 212, 260, 261, 262, 299, 300, 302, 305], "11": [169, 175, 209, 213, 214, 263, 264, 265, 301], "12": [211, 217, 224, 266, 268, 270], "13": [215, 219, 220, 309], "14": [216, 222, 223], "15": [218, 312], "16": 221, "2": [53, 101, 143, 183, 186, 188, 236, 237, 238, 300, 303], "20": [307, 308], "2018": [298, 299, 300, 301], "2019": [303, 304, 305], "2020": [134, 306, 307, 308], "2021": [173, 309, 310], "2022": [177, 179, 311], "2023": [228, 231, 232, 312], "2024": 302, "21": [180, 298], "22": 180, "26": 301, "28": 302, "29": [299, 305], "2d": 25, "3": [99, 103, 145, 146, 185, 189, 190, 239, 240, 241, 300, 304], "31": [300, 311], "3d": [38, 178], "4": [100, 104, 149, 187, 192, 193, 242, 243, 244, 301, 305], "437": 151, "5": [106, 151, 152, 191, 195, 196, 245, 246, 247, 306], "50": 60, "6": [122, 132, 155, 194, 198, 199, 248, 249, 250, 307, 308], "7": [138, 157, 158, 166, 197, 201, 202, 251, 252, 253, 309, 310], "8": [160, 161, 176, 200, 204, 205, 254, 255, 256, 311], "9": [164, 203, 207, 208, 229, 257, 258, 259, 312], "A": [59, 142, 145, 154, 178, 184, 264], "For": 53, "In": [139, 145, 151, 157, 160], "It": 258, "Its": 260, "That": 268, "The": [60, 154, 178, 179, 180, 230, 234, 237, 255, 268], "_cqueue": 291, "_cqueue_event_id": 291, "_cqueue_index_info": 291, "_leading_whit": 280, "_tuple2ax": 292, "about": [97, 178, 179, 234], "abstract": [148, 173, 267, 269], "accept": 178, "accordion": 167, "actor": [2, 3, 16, 28, 60, 75, 93, 127, 207, 217, 227, 235, 238, 269, 273, 274, 284], "actor2d": 284, "ad": [60, 93, 149, 190, 195, 214, 217, 224], "adapt": 146, "add": 27, "add_atom": 286, "add_bond": 286, "add_polydata_numeric_field": 294, "add_shader_callback": 290, "addit": 143, "adjust": [238, 253, 265], "advanc": 24, "ahead": 245, "algorithm": 154, "algorithmoutput": 284, "all": [152, 246], "almost": 268, "amount": 28, "an": 27, "analyze_scen": 295, "analyze_snapshot": 295, "anim": [4, 9, 13, 15, 25, 29, 36, 57, 60, 63, 64, 65, 66, 68, 89, 167, 180, 181, 192, 199, 202, 204, 206, 207, 208, 210, 219, 220, 222, 227, 275], "anoth": 254, "antialias": 295, "anywher": [109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 123, 124, 125, 126, 127, 128, 129, 130, 131, 133, 136, 139, 140, 143, 144, 145, 146, 147, 149, 150, 151, 152, 153, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 167, 168, 169, 170, 174, 175, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 232, 233, 235, 236, 238, 239, 241, 242, 244, 245, 247, 248, 250, 251, 253, 254, 256, 257, 259, 260, 262, 263, 265, 266, 270], "api": [181, 189, 255, 296], "applic": 93, "apply_affin": 294, "apply_affine_to_actor": 294, "apply_transform": 292, "ar": 249, "architectur": [97, 216], "argsdeprecationwarn": 280, "arm": 65, "array_from_actor": 294, "arraycircularqueu": 291, "arrow": [2, 273], "arrowsourc": 284, "art": 102, "asbyt": 294, "assembli": 284, "async_app": 291, "attribute_to_actor": 290, "avoid": 148, "ax": 273, "b": 154, "back": 205, "ball": [79, 83, 93, 116, 130], "ball_stick": 286, "base": [72, 205, 209, 290], "basic": [181, 184], "befor": 314, "begin": [180, 230, 266], "behavior": 154, "between": 142, "bezier": [59, 189], "billboard": [71, 201, 273], "birth": 255, "bit": [220, 222], "block": 154, "blog": [91, 107, 108, 140, 141, 225, 227, 267, 269, 271], "bmpreader": 284, "bmpwriter": 284, "bodi": 93, "bond": [107, 108, 141, 181, 184, 230, 231, 232], "bone": 219, "bound": [231, 232], "bounding_box": 286, "boundingbox": 248, "box": [21, 46, 260, 273], "boys2rgb": 276, "brain": [30, 102], "brdf": 73, "brick": [80, 93, 116], "brownian": 26, "bruno": 173, "bug": [97, 148, 152, 155, 202, 204, 215, 314], "build": [96, 249], "bundl": 27, "butterflysubdivisionfilt": 284, "button": [43, 46, 50, 54], "button2d": 293, "bye": 263, "cal_bounding_box_2d": 293, "callback": [31, 47, 93], "callback_stream_cli": 291, "camera": [60, 192, 284], "cameraanim": 275, "card": [44, 45], "card2d": 293, "cart2spher": 292, "cc": 276, "cellarrai": 284, "cellpick": 284, "center": 194, "chain": [81, 93, 129], "chang": 93, "change_vertices_ord": 294, "charg": 33, "check": [46, 107, 139, 145, 151, 157, 160], "check_overflow": 293, "check_port_is_avail": 291, "check_sha": 278, "checkbox": [53, 293], "checklist": 314, "clamp": 187, "class": 148, "cleanpolydata": 284, "cleanup": 161, "client": 291, "clip": 121, "clip_overflow": 293, "closur": 201, "cmp_pkg_version": 280, "code": [105, 109, 110, 134, 135, 137, 144, 147, 148, 150, 153, 154, 156, 159, 161, 162, 165, 168, 170, 171, 172, 173, 177, 178, 206, 225, 226, 227, 228, 267, 269, 271], "collis": [21, 79, 93, 116], "color": [27, 46, 50, 53, 61, 76, 186], "color_check": 294, "color_interpol": 275, "colormap": [14, 27, 276], "colormap_lookup_t": 276, "colors_from_actor": 294, "combin": [27, 33], "combobox": [47, 53, 239], "combobox2d": [112, 121, 293], "come": [107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 123, 124, 125, 126, 127, 128, 129, 130, 131, 133, 136, 139, 140, 141, 143, 144, 145, 146, 147, 149, 150, 151, 152, 153, 155, 156, 157, 159, 160, 161, 162, 163, 164, 165, 167, 168, 169, 170, 174, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 232, 233, 235, 236, 238, 239, 241, 242, 244, 245, 247, 248, 250, 251, 253, 254, 256, 257, 259, 260, 262, 263, 265, 266, 270], "command": 284, "commun": [92, 107, 108, 141, 181, 184, 230, 231, 232], "comparison": 28, "competit": 102, "complet": [134, 135, 171, 172, 173, 225, 226, 227, 267, 269, 271], "complex": 59, "compose_shad": 290, "comput": [1, 23, 42, 58, 70, 78, 85, 90, 313], "compute_bond": 286, "compute_bound": 294, "conda": 96, "cone": [3, 253, 273], "conesourc": 284, "connect": 93, "constant": 291, "contain": [273, 293], "continu": [113, 117, 161], "contour_from_label": 273, "contour_from_roi": 273, "contourfilt": 284, "contribut": [177, 228, 314], "contributor": 92, "control": [46, 50, 53, 56], "convers": 5, "convert": 277, "coordin": 5, "copyfileobj_withprogress": 278, "core": [145, 293], "creat": [14, 60, 67, 93, 196, 209], "create_colormap": 276, "creation": 93, "credit": 97, "cube": [53, 54, 56, 273], "cubic": [59, 62, 189], "cubic_bezier_interpol": 275, "cubic_spline_interpol": 275, "cue": 27, "current": 234, "curv": 59, "custom": [62, 163], "cylind": [53, 74, 273], "cylindersourc": 284, "dai": [178, 179], "data": [28, 62, 142, 199, 247, 278], "data_dir": 278, "dataobject": 284, "datasetattribut": 284, "datasetmapp": 284, "deal": 185, "decor": 279, "deep_copy_molecul": 286, "default": 27, "demo": [22, 37, 89], "depend": 96, "deprec": 280, "deprecate_with_vers": 280, "deprecated_param": 280, "depth": 27, "detail": [241, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312], "develop": [178, 180], "dialog": 133, "did": [107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 123, 124, 125, 126, 127, 128, 129, 130, 131, 133, 136, 139, 140, 141, 143, 144, 145, 146, 147, 149, 150, 151, 152, 153, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 167, 168, 169, 170, 174, 175, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 232, 233, 235, 236, 238, 239, 241, 242, 244, 245, 247, 248, 249, 250, 251, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 268, 270], "differ": [27, 49, 142], "disable_warn": 272, "disconnect": 93, "disk": 273, "disk2d": 293, "disksourc": 284, "displai": 28, "distinguishable_colormap": 276, "do": [107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 123, 124, 125, 126, 127, 128, 129, 130, 131, 133, 136, 139, 140, 141, 143, 144, 145, 146, 147, 149, 150, 151, 152, 153, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 167, 168, 169, 170, 174, 175, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 232, 233, 235, 236, 238, 239, 241, 242, 244, 245, 247, 248, 250, 251, 253, 254, 256, 257, 259, 260, 262, 263, 265, 266, 270, 314], "doc": 190, "doctest_skip_pars": 279, "document": [96, 195, 237, 314], "doe": 142, "domino": [82, 93], "done": [252, 259], "dot": 273, "double_con": 274, "doublearrai": 284, "draft": [244, 250], "draw": [197, 209], "drawpanel": [48, 182, 183, 216, 293], "drawshap": [218, 293], "dti": [28, 244, 259, 269], "dure": [107, 108, 141, 181, 184], "dynam": 93, "earth": 5, "easier": [220, 222], "effect": 175, "effort": [237, 240, 243, 246, 252, 255, 258, 261, 264, 268], "eighth": 165, "electr": 33, "electromagnet": 29, "element": [41, 49, 89, 293], "ellipsoid": [28, 235, 238, 247, 250, 256, 269, 273], "emiss": 227, "enabl": 93, "enable_stereo": 295, "enable_warn": 272, "end": 133, "enhanc": 233, "equip": 198, "euclidean_dist": 275, "euler_matrix": 292, "ever": 243, "everi": 27, "everyth": 230, "exactli": 64, "exam": 242, "exampl": [10, 93], "expect": 240, "experi": [178, 262, 270], "experiment": 252, "expireddeprecationerror": 280, "explor": 256, "export": [8, 188, 196, 227], "export_scen": 281, "extract": 199, "fa": 14, "faces_from_sphere_vertic": 289, "fake": 27, "fbo": 234, "featur": [97, 143, 191, 198, 200, 314], "feedback": 314, "fetch_data": 278, "fetch_gltf": 278, "fetch_viz_cubemap": 278, "fetch_viz_dmri": 278, "fetch_viz_icon": 278, "fetch_viz_model": 278, "fetch_viz_new_icon": 278, "fetch_viz_textur": 278, "fetch_viz_wiki_nw": 278, "fetcher": [188, 190, 227, 278], "fiber": 30, "field": 33, "fifth": 156, "figur": [46, 273], "file": [6, 7, 8, 13, 62, 227], "filedialog": 266, "filemenu2d": 293, "final": [134, 135, 158, 169, 171, 172, 173, 193, 225, 226, 227, 257, 267, 269, 271], "fine": 31, "finish": [158, 161], "first": [109, 110, 144, 178, 208, 241, 244, 250], "fix": [152, 155, 187, 190, 196, 198, 202, 204, 211, 215, 217, 314], "fix_winding_ord": 294, "flaw": [236, 239], "flicker": 175, "floatarrai": 284, "folder": 96, "follow": 284, "font": 174, "forc": [93, 116], "found": 265, "foundat": 182, "fourth": 153, "fractal": 32, "freehand": [197, 209], "from": [14, 27, 62, 194, 227], "frustum": 273, "function": [25, 134], "furi": [2, 3, 16, 34, 53, 60, 64, 86, 87, 88, 93, 98, 99, 100, 101, 102, 103, 104, 106, 122, 132, 138, 148, 151, 163, 166, 174, 175, 176, 177, 220, 222, 228, 229, 272], "furystreamcli": 291, "furystreaminteract": 291, "game": [178, 180], "genericcircularqueu": 291, "genericimagebuffermanag": 291, "genericmultidimensionalbuff": 291, "get": [62, 94, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 123, 124, 125, 126, 127, 128, 129, 130, 131, 133, 136, 139, 140, 143, 144, 145, 146, 147, 149, 150, 151, 152, 153, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 167, 168, 169, 170, 174, 175, 178, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 232, 233, 235, 236, 238, 239, 241, 242, 244, 245, 247, 248, 250, 251, 253, 254, 256, 257, 259, 260, 262, 263, 265, 266, 270, 314], "get_actor_from_polydata": 294, "get_actor_from_polymapp": 294, "get_actor_from_primit": 294, "get_all_atomic_numb": 286, "get_all_atomic_posit": 286, "get_all_bond_ord": 286, "get_app": 291, "get_atomic_numb": 286, "get_atomic_posit": 286, "get_bond_ord": 286, "get_bound": 294, "get_bounding_box_s": 294, "get_cmap": 276, "get_grid_cells_posit": 294, "get_info": 272, "get_next_timestamp": 275, "get_polydata_color": 294, "get_polydata_field": 294, "get_polydata_lin": 294, "get_polydata_norm": 294, "get_polydata_primitives_count": 294, "get_polydata_tang": 294, "get_polydata_tcoord": 294, "get_polydata_triangl": 294, "get_polydata_vertic": 294, "get_polymapper_from_polydata": 294, "get_previous_timestamp": 275, "get_prim": 281, "get_time_tau": 275, "get_timestamps_from_keyfram": 275, "get_values_from_keyfram": 275, "get_xyz_coord": 276, "gl": 151, "gl_disable_blend": 295, "gl_disable_depth": 295, "gl_enable_blend": 295, "gl_enable_depth": 295, "gl_get_current_st": 295, "gl_reset_blend": 295, "gl_set_additive_blend": 295, "gl_set_additive_blending_white_background": 295, "gl_set_multiplicative_blend": 295, "gl_set_normal_blend": 295, "gl_set_subtractive_blend": 295, "global": 217, "glsl": 192, "gltf": [6, 7, 8, 9, 13, 62, 184, 188, 193, 196, 227, 281], "glyph3d": 284, "go": [255, 258, 261, 264, 268], "goal": [230, 237, 240, 243, 246, 249, 252, 255, 258, 261, 264], "good": [154, 237], "googl": [105, 134, 135, 137, 171, 172, 173, 177, 225, 226, 227, 228, 267, 269, 271], "got": 178, "gpu": 189, "grant": 148, "graviti": 93, "grid": 273, "gridlayout": [146, 283], "gridui": 293, "group": 203, "gsoc": [107, 108, 141, 179, 180, 225, 227, 231, 232, 267, 269, 271], "gsoc22": 178, "guid": 93, "guidelin": 314, "hard": 252, "hardwareselector": 284, "harmon": [115, 117], "have": 154, "helio": [148, 151, 163, 174, 175], "helper": [275, 293], "here": 223, "hex_to_rgb": 276, "hierarch": [63, 210], "highlight": 218, "histori": 297, "horizontallayout": 283, "how": [142, 154, 255, 258, 261, 264, 268], "hsv2rgb": 276, "hsv_color_interpol": 275, "hypercub": 40, "i": [64, 67, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 123, 124, 125, 126, 127, 128, 129, 130, 131, 133, 136, 139, 140, 141, 143, 144, 145, 146, 147, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 167, 168, 169, 170, 174, 175, 178, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 232, 233, 235, 236, 238, 239, 241, 242, 243, 244, 245, 247, 248, 249, 250, 251, 253, 254, 256, 257, 258, 259, 260, 262, 263, 264, 265, 266, 268, 270], "icon": [236, 239], "idtypearrai": 284, "imag": 54, "imageactor": 284, "imagecontainer2d": 293, "imagedata": 284, "imageflip": 284, "imagemaptocolor": 284, "imagereader2factori": 284, "imagereslic": 284, "immut": 148, "implement": [62, 154, 181, 186, 189, 195, 201, 235, 262, 265, 269, 270, 314], "import": [93, 154, 184, 227, 237], "import_fury_shad": 290, "impostor": 71, "improv": [123, 183, 188, 213], "index": 53, "indic": 227, "initi": 93, "insid": 142, "instal": 96, "integr": [77, 89, 93], "interact": [24, 37, 86], "interaction_callback": 291, "interactoreventrecord": 284, "interactorstyl": 284, "interactorstyleimag": 284, "interactorstyletrackballactor": 284, "interactorstyletrackballcamera": 284, "interactorstyleus": 284, "interdisciplinari": 35, "interest": 180, "interfac": [41, 54, 89], "interpol": [59, 61, 62, 66, 186, 189, 192, 201, 275], "intervaltim": 291, "intervaltimerthread": 291, "intro": [179, 180], "introduct": [64, 134], "introductori": [0, 89], "io": [143, 282], "ipc": 154, "is_bad_vers": 280, "is_ui": 294, "issu": [145, 148, 187, 198, 211, 236, 265], "its": 133, "join": 92, "joint": 93, "journal": 35, "journei": [133, 178, 179, 180], "jpegread": 284, "jpegwrit": 284, "justif": [236, 239], "keyfram": [59, 60, 61, 62, 63, 64, 66, 67, 68, 181, 220, 222], "khrono": 227, "lab2rgb": 276, "lab2xyz": 276, "lab_color_interpol": 275, "label": 273, "lai": 182, "larger": 28, "last": [237, 240, 243, 246, 249, 252, 255, 258, 261, 264, 268], "layout": [49, 148, 151, 154, 164, 283], "lead": 246, "lerp": 275, "lib": 284, "licens": [97, 315], "like": 142, "line": 273, "line_color": 276, "linear": 186, "linear_interpol": 275, "linearextrusionfilt": 284, "linedoubleslider2d": 293, "lines_to_vtk_polydata": 294, "lineslider2d": 293, "list_gltf_sample_model": 278, "listbox": 55, "listbox2d": 293, "listboxitem2d": 293, "littl": [178, 213], "load": [227, 290], "load_cubemap_textur": 282, "load_imag": 282, "load_polydata": 282, "load_shad": 290, "load_sprite_sheet": 282, "load_text": 282, "loader": [193, 196], "lodactor": 284, "look": 265, "lookupt": 284, "loopsubdivisionfilt": 284, "lost": 243, "magnet": 33, "mai": 116, "main": [60, 291], "main_dir_uncertainti": 274, "make": [62, 74, 189, 238], "manag": [46, 47, 48, 50, 54, 56, 93], "manifest_pbr": 285, "manifest_principl": 285, "manifest_standard": 285, "map": 35, "map_coordinates_3d_4d": 294, "marker": [34, 273], "materi": [227, 285], "matplotlib_figure_to_numpi": 277, "matrix3x3": 284, "matrix4x4": 284, "menu": 54, "merg": [125, 257], "messia": 173, "metric": 27, "mission": 97, "mjpeg": [87, 88], "mniobjectread": 284, "mniobjectwrit": 284, "mode": 93, "model": 227, "modifi": [135, 226], "modul": [143, 149, 274, 275, 278, 290, 291, 293], "molecul": [284, 286], "molecular": 286, "monkei": 148, "more": [59, 126, 128, 164, 198], "morph": [9, 223, 227], "mosaic": 14, "most": [148, 154], "motion": [26, 33], "multi": [212, 219], "multipl": [12, 93, 120, 214], "multiprocess": 142, "multithread": 10, "my": [107, 108, 140, 141, 178, 179, 234], "myself": [178, 179], "namedtupl": 148, "necessari": 93, "need": [97, 264, 314], "network": [35, 36, 148, 151, 154], "new": [191, 224], "next": [107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 123, 124, 125, 126, 127, 128, 129, 130, 131, 133, 136, 139, 140, 141, 143, 144, 145, 146, 147, 149, 150, 151, 152, 153, 154, 155, 156, 157, 159, 160, 161, 162, 163, 164, 165, 167, 168, 169, 170, 174, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 232, 233, 234, 235, 236, 238, 239, 241, 242, 244, 245, 247, 248, 250, 251, 253, 254, 256, 257, 259, 260, 262, 263, 265, 266, 268, 270], "ninth": 168, "node": 212, "non": 186, "normalize_v3": 294, "normals_from_actor": 294, "normals_from_v_f": 294, "normals_to_actor": 294, "note": [86, 88, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312], "noth": 243, "now": [220, 222, 268], "numpy_to_vtk_cel": 294, "numpy_to_vtk_color": 294, "numpy_to_vtk_image_data": 294, "numpy_to_vtk_matrix": 294, "numpy_to_vtk_point": 294, "object": [12, 88, 93, 134, 135, 171, 172, 173, 225, 226, 227, 267, 269, 271], "objread": 284, "octagonalpr": 273, "odf": [30, 265, 269, 270], "odf_slic": [273, 274], "odfsliceractor": 274, "offscreen": 96, "one": 62, "opac": 60, "open": [133, 161, 169, 179], "opengl": 31, "openglmoleculemapp": 284, "openglrender": 284, "opensourc": 180, "oper": 142, "option": 293, "orient": [27, 119], "orient2rgb": 276, "other": [134, 135, 171, 172, 225, 226, 227, 267, 271, 314], "our": 96, "out": 245, "outlin": 131, "outlinefilt": 284, "overflow": 121, "overview": [97, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312], "panel": 54, "panel2d": 293, "paramet": 59, "part": 133, "particl": [21, 33], "past": 234, "patch": 148, "pbr": [37, 72, 227], "pc": 291, "peak": [273, 274], "peak_slic": 273, "peakactor": 274, "pentagonalpr": 273, "period": [107, 108, 141, 181, 184, 230, 231, 232], "periodict": 284, "physic": [72, 77, 82, 89, 127, 130], "pick": [11, 287], "picker": 131, "pickingmanag": 287, "pkg_commit_hash": 288, "pkg_info": 288, "plai": [38, 206], "plan": [60, 245], "playbackpanel": 293, "plyread": 284, "plywrit": 284, "pngreader": 284, "pngwriter": 284, "point": [27, 273, 284], "pointpick": 284, "polish": [258, 259], "polydata": 284, "polydatamapp": 284, "polydatamapper2d": 284, "polydatanorm": 284, "polydataread": 284, "polydatawrit": 284, "polygon": [74, 284], "polylin": 200, "polyvertex": 284, "popul": 96, "posit": [59, 62], "pr": [151, 152, 158, 161, 196, 197, 241, 245], "pre": 180, "prepar": [242, 247], "prim_arrow": 289, "prim_box": 289, "prim_con": 289, "prim_cylind": 289, "prim_frustum": 289, "prim_icosahedron": 289, "prim_octagonalpr": 289, "prim_pentagonalpr": 289, "prim_rhombicuboctahedron": 289, "prim_spher": 289, "prim_squar": 289, "prim_star": 289, "prim_superquadr": 289, "prim_tetrahedron": 289, "prim_triangularpr": 289, "primit": [120, 123, 125, 207, 289], "primitives_count_from_actor": 294, "primitives_count_to_actor": 294, "principl": 73, "problem": [154, 185, 234, 237, 240, 243, 246, 249], "process": 142, "product": [134, 135, 171, 172, 225, 226, 227, 267, 269, 271], "program": 180, "progress": [112, 114, 135, 171, 172, 189, 225, 226, 227, 267, 269, 271], "project": 230, "propag": 29, "properti": 93, "property2d": 284, "propos": [134, 135, 171, 172, 173, 225, 226, 227, 267, 269, 271], "proppick": 284, "proteinribbonfilt": 284, "prototyp": 208, "ptabl": 286, "publish": 314, "pull": [154, 169, 227, 314], "pybullet": [77, 89, 93], "pypi": 96, "python": [145, 148, 154], "qualiti": 28, "quest": 266, "quick": [298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312], "r": 152, "radio": [46, 50], "radiobutton": 293, "rang": [14, 54], "rangeslid": 293, "rawarrai": 142, "rawarrayimagebuffermanag": 291, "rawarraymultidimensionalbuff": 291, "raymarch": [111, 113], "read_viz_cubemap": 278, "read_viz_dmri": 278, "read_viz_gltf": 278, "read_viz_icon": 278, "read_viz_model": 278, "read_viz_textur": 278, "readi": 261, "rebas": 152, "record": 295, "rectangl": 273, "rectangle2d": 293, "redesign": 189, "ref": 148, "refactor": [129, 148, 264], "refer": [71, 74, 173, 269, 296], "regularpolygonsourc": 284, "releas": [98, 99, 100, 101, 103, 104, 106, 122, 132, 138, 166, 176, 229, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 314], "release_context": 295, "relev": 148, "remov": 175, "remove_observer_from_actor": 294, "remove_shm_from_resource_track": 291, "render": [14, 27, 39, 71, 72, 93, 284], "renderlargeimag": 284, "renderwindow": 284, "renderwindowinteractor": 284, "repeat_primit": 289, "repeat_primitive_funct": 289, "repeat_sourc": 294, "replace_shader_in_actor": 290, "report": [97, 173, 314], "reposit": 118, "represent_actor_as_wirefram": 294, "request": [154, 169, 227, 314], "resolv": 239, "restructur": 152, "result": 154, "review": [242, 261], "rgb2hsv": 276, "rgb2lab": 276, "rgb2xyz": 276, "rgb_from_xyz": 276, "rgb_to_vtk": 294, "rhombicuboctahedron": 273, "ribbon": 286, "rigid": 93, "ringslider2d": 293, "road": 246, "robot": 65, "roi": 39, "rome": 246, "rotat": [118, 194, 197, 221, 292, 294], "rotate_2d": 293, "rtcserver": 291, "run": 96, "saga": 234, "same": [62, 207], "sampl": 227, "save": 133, "save_imag": 282, "save_polydata": 282, "scalar_bar": 273, "scalarbaractor": 284, "scale": 292, "scene": [8, 59, 93, 227, 295], "scrollbar": [127, 129, 130], "sdf": [71, 74, 75, 120, 123, 125, 174, 235, 269, 273], "second": 147, "seed": 251, "select": [12, 54], "selectionmanag": 287, "separ": 215, "server": 291, "set": [59, 61, 62, 67, 93], "set_actor_origin": 294, "set_atomic_numb": 286, "set_atomic_posit": 286, "set_bond_ord": 286, "set_input": 294, "set_mous": 291, "set_mouse_click": 291, "set_polydata_color": 294, "set_polydata_norm": 294, "set_polydata_primitives_count": 294, "set_polydata_tang": 294, "set_polydata_tcoord": 294, "set_polydata_triangl": 294, "set_polydata_vertic": 294, "set_weel": 291, "seventh": 162, "sh": [256, 262], "shader": [31, 69, 73, 89, 126, 128, 136, 205, 284, 290], "shader_apply_effect": 290, "shader_to_actor": 290, "shaders_dir": 290, "shallow_copi": 294, "shape": [51, 54, 194, 203], "share": 142, "sharedmemcircularqueu": 291, "sharedmemimagebuffermanag": 291, "sharedmemmultidimensionalbuff": 291, "sheet": 167, "show": [27, 46, 47, 48, 50, 54, 56, 93, 295], "showcas": 136, "showmanag": 295, "side": 189, "silent": 148, "simpl": [11, 14, 51, 93, 227], "simplebondperceiv": 284, "simul": [79, 80, 81, 82, 83, 93, 116, 129, 130], "singl": [93, 127, 192], "sixth": 159, "size": 119, "skelet": [13, 208, 219, 227], "skeleton": 217, "skin": [212, 227], "skine": 227, "skip_r": 279, "skybox": 284, "slerp": [195, 275], "slice": 14, "slicer": 273, "slider": [53, 54, 56], "snapshot": 295, "so": [230, 255, 258, 261, 264, 268], "solar": 15, "solid": 148, "solut": [154, 265], "sometim": 264, "sourc": [96, 133, 179], "sow": 251, "specif": [14, 27], "sphere": [4, 16, 17, 19, 50, 53, 60, 64, 71, 72, 73, 201, 273], "sphere2cart": 292, "sphere_cpk": 286, "spheresourc": 284, "spheric": [115, 117], "sphinx": 163, "spiki": 17, "spin": 260, "spinbox": [52, 233, 263, 293], "spline": [62, 66], "spline_interpol": 275, "splinefilt": 284, "sprite": 167, "squar": 273, "ss": 276, "stadia": 142, "stall": 158, "start": [94, 249, 262, 314], "state": 31, "statement": 97, "static": [60, 227], "step": [154, 268], "step_interpol": 275, "stick": 286, "stlreader": 284, "stlwriter": 284, "stream": [84, 86, 87, 88, 89, 148, 151, 291], "streamlin": [27, 39], "streamtub": 273, "stringarrai": 284, "structur": 96, "stuck": [109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 123, 124, 125, 126, 127, 128, 129, 130, 131, 133, 136, 139, 140, 143, 144, 145, 146, 147, 149, 150, 151, 152, 153, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 167, 168, 169, 170, 174, 175, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 232, 233, 235, 236, 238, 239, 241, 242, 244, 245, 247, 248, 250, 251, 253, 254, 256, 257, 259, 260, 262, 263, 265, 266, 270], "stuff": 314, "submit": 314, "success": 102, "summari": [154, 163], "summer": [105, 134, 135, 137, 171, 172, 173, 177, 225, 226, 227, 228, 267, 269, 271], "superactor": 151, "superquadr": 273, "support": [97, 167, 194, 210, 212, 214, 219], "surfac": [18, 39, 273], "sync": [80, 82, 93], "system": [15, 142, 148, 151], "t": 152, "t1": 14, "tab": [53, 119, 124], "tabpanel2d": [124, 293], "tabui": 293, "tackl": 236, "tan_cubic_spline_interpol": 275, "tangents_from_actor": 294, "tangents_from_direction_of_anisotropi": 294, "tangents_to_actor": 294, "tensor": [28, 274], "tensor_ellipsoid": 274, "tensor_slic": [28, 273], "tenth": 170, "tesseract": 40, "test": [96, 148, 190, 195, 211, 214, 215], "text": [43, 54, 60, 236], "text_3d": 273, "textactor": 284, "textactor3d": 284, "textblock2d": [114, 121, 248, 257, 293], "textblockui": 254, "textbox": [233, 239], "textbox2d": 293, "textur": [4, 19, 273, 284], "texture_2d": 273, "texture_on_spher": 273, "texture_upd": 273, "texturedactor2d": 284, "texturedspheresourc": 284, "texturemaptoplan": 284, "thi": [109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 123, 124, 125, 126, 127, 128, 129, 130, 131, 133, 136, 139, 140, 143, 144, 145, 146, 147, 149, 150, 151, 152, 153, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 167, 168, 169, 170, 174, 175, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 230, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 270], "thing": 249, "third": 150, "thread": 154, "through": 148, "tiffread": 284, "tiffwrit": 284, "till": 178, "time": [1, 23, 42, 58, 70, 78, 85, 90, 258, 260, 313], "timelin": [60, 67, 134, 135, 171, 172, 173, 192, 195, 198, 205, 225, 226, 227, 267, 269, 271, 275], "timer": [20, 93], "tool": 291, "torqu": 93, "tradit": 71, "transform": [203, 214, 217, 284, 292], "transform_from_matrix": 292, "transformpolydatafilt": 284, "translat": [64, 118, 211, 292], "tree": 149, "tree2d": [152, 155, 158, 161], "treeui": 251, "triangle_ord": 294, "trianglefilt": 284, "triangularpr": 273, "try": [197, 245], "tube": 27, "tubefilt": 284, "tune": 31, "tutori": [89, 124, 129, 130, 213, 224, 247, 250, 256, 259], "type": 314, "u": 92, "ui": [49, 52, 53, 119, 124, 143, 146, 149, 152, 155, 158, 167, 182, 183, 293], "uncertainti": [241, 244, 253, 259, 269], "uncertainty_con": 273, "understand": 206, "unit": 195, "unless": 133, "unsignedchararrai": 284, "unstructuredgrid": 284, "unsubmit": 134, "up": [66, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 123, 124, 125, 126, 127, 128, 129, 130, 131, 133, 136, 139, 140, 141, 143, 144, 145, 146, 147, 149, 150, 151, 152, 153, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 167, 168, 169, 170, 174, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 232, 233, 235, 236, 238, 239, 241, 242, 244, 245, 247, 248, 249, 250, 251, 253, 254, 256, 257, 259, 260, 262, 263, 265, 266, 270], "updat": [129, 130, 211, 216], "update_actor": 294, "update_polydata_norm": 294, "update_progressbar": 278, "update_surface_actor_color": 294, "us": [20, 28, 31, 46, 49, 50, 59, 74, 77, 88, 89, 102, 148, 154, 201], "user": [41, 54, 86, 89], "util": 294, "v": [28, 74], "v0": [298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312], "valu": [14, 27], "vari": 76, "vector_text": 273, "vectortext": 284, "versatil": 255, "version": [36, 205], "verticallayout": 283, "vertices_from_actor": 294, "via": [96, 177, 228], "video": 38, "visual": [6, 7, 18, 24, 27, 28, 35, 36, 39, 75, 142, 148, 244, 253, 269], "visualis": 30, "volum": [14, 27, 284], "vtk_matrix_to_numpi": 294, "vtk_version": 284, "w": 152, "wa": [237, 240, 243, 246, 249, 252], "wall": [80, 93, 116], "watch": 240, "wave": 29, "web_serv": 291, "web_server_raw_arrai": 291, "webrtc": [87, 88, 148, 151], "week": [107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 123, 124, 125, 126, 127, 128, 129, 130, 131, 133, 136, 139, 140, 141, 143, 144, 145, 146, 147, 149, 150, 151, 152, 153, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 167, 168, 169, 170, 174, 175, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 268, 270], "weekli": [107, 139, 140, 145, 151, 157, 160, 225, 227, 267, 269, 271], "welcom": [107, 108, 140, 141], "what": [64, 67, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 123, 124, 125, 126, 127, 128, 129, 130, 131, 133, 136, 139, 140, 141, 143, 144, 145, 146, 147, 149, 150, 151, 152, 153, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 167, 168, 169, 170, 174, 175, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 232, 233, 234, 235, 236, 238, 239, 241, 242, 244, 245, 247, 248, 249, 250, 251, 253, 254, 256, 257, 259, 260, 262, 263, 265, 266, 270], "where": [237, 240, 243, 246, 249], "why": 154, "widget": [88, 291], "window": 295, "windowtoimagefilt": 284, "work": [134, 135, 142, 146, 155, 161, 171, 172, 191, 197, 200, 208, 221, 225, 226, 227, 233, 241, 256, 267, 269, 271], "world": 38, "worldpointpick": 284, "wrap": [66, 268], "wrap_overflow": 293, "wreck": [83, 93, 130], "write": 314, "write_accessor": 281, "write_buff": 281, "write_bufferview": 281, "write_camera": 281, "write_materi": 281, "write_mesh": 281, "write_nod": 281, "write_scen": 281, "xlayout": 283, "xmlpolydataread": 284, "xmlpolydatawrit": 284, "xyz2lab": 276, "xyz2rgb": 276, "xyz_color_interpol": 275, "xyz_from_rgb": 276, "ylayout": 283, "you": [62, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 123, 124, 125, 126, 127, 128, 129, 130, 131, 133, 136, 141, 144, 145, 147, 150, 151, 153, 156, 159, 162, 165, 168, 170, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 233, 236, 239, 245, 248, 251, 254, 257, 260, 263, 266], "your": [14, 27, 240], "zlayout": 283}}) \ No newline at end of file diff --git a/dev/sg_execution_times.html b/dev/sg_execution_times.html index e4a7fa303..61083b004 100644 --- a/dev/sg_execution_times.html +++ b/dev/sg_execution_times.html @@ -8,7 +8,7 @@ - Computation times — FURY 0.11.0.dev26+g789a448f documentation + Computation times — FURY 0.11.0.dev27+g14851c6a documentation @@ -44,7 +44,7 @@ - + diff --git a/dev/symlink/contributing.html b/dev/symlink/contributing.html index 502e19e3a..aa65db79b 100644 --- a/dev/symlink/contributing.html +++ b/dev/symlink/contributing.html @@ -8,7 +8,7 @@ - Contributing — FURY 0.11.0.dev26+g789a448f documentation + Contributing — FURY 0.11.0.dev27+g14851c6a documentation @@ -44,7 +44,7 @@ - + diff --git a/dev/symlink/license.html b/dev/symlink/license.html index ca3bc5271..f112dcc88 100644 --- a/dev/symlink/license.html +++ b/dev/symlink/license.html @@ -8,7 +8,7 @@ - License — FURY 0.11.0.dev26+g789a448f documentation + License — FURY 0.11.0.dev27+g14851c6a documentation @@ -44,7 +44,7 @@ - +