diff --git a/dev/.buildinfo b/dev/.buildinfo index 97fce4f98..00bd7f43e 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: e808c15eb63a8f76d65538a09cba542e +config: f280d98622060b21af410e9abe6dd7c1 tags: 645f666f9bcd5a90fca523b33c5a78b7 diff --git a/dev/.doctrees/community.doctree b/dev/.doctrees/community.doctree index b2764e485..92c8c02d7 100644 Binary files a/dev/.doctrees/community.doctree and b/dev/.doctrees/community.doctree differ diff --git a/dev/.doctrees/environment.pickle b/dev/.doctrees/environment.pickle index da6b828ee..62d6c65a9 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 15d7de83f..f5730d3d2 100644 Binary files a/dev/.doctrees/reference/fury.deprecator.doctree and b/dev/.doctrees/reference/fury.deprecator.doctree differ diff --git a/dev/.doctrees/reference/fury.ui.doctree b/dev/.doctrees/reference/fury.ui.doctree index 2f76a9397..3ef933e22 100644 Binary files a/dev/.doctrees/reference/fury.ui.doctree and b/dev/.doctrees/reference/fury.ui.doctree differ diff --git a/dev/_downloads/07fcc19ba03226cd3d83d4e40ec44385/auto_examples_python.zip b/dev/_downloads/07fcc19ba03226cd3d83d4e40ec44385/auto_examples_python.zip index 536ad3fe2..2eb61f79b 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 cf258b237..289ff9670 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 62c29b145..9f91e0538 100644 --- a/dev/_modules/fury.html +++ b/dev/_modules/fury.html @@ -4,7 +4,7 @@
-
Adds text shadow.
size : (int, int)
Size (width, height) in pixels of the text bounding box.
+ auto_font_scale : bool
+ Automatically scale font according to the text bounding box.
+ dynamic_bbox : bool
+ Automatically resize the bounding box according to the content.
"""
[docs] def __init__(
@@ -1038,10 +1042,8 @@ Source code for fury.ui.core
self.italic = italic
self.shadow = shadow
self._vertical_justification = vertical_justification
+ self._dynamic_bbox = dynamic_bbox
self.auto_font_scale = auto_font_scale
- if self.auto_font_scale:
- self.actor.SetTextScaleModeToProp()
- self.dynamic_bbox = dynamic_bbox
self.message = text
self.font_size = font_size
if size is not None:
@@ -1336,6 +1338,58 @@ Source code for fury.ui.core
self.background.set_visibility(True)
self.background.color = color
+ @property
+ def auto_font_scale(self):
+ """Return whether text font is automatically scaled.
+
+ Returns
+ -------
+ bool
+ Text is auto_font_scaled if True.
+ """
+ return self._auto_font_scale
+
+ @auto_font_scale.setter
+ def auto_font_scale(self, flag):
+ """Add/remove text auto_font_scale.
+
+ Parameters
+ ----------
+ flag : bool
+ Automatically scales the text font if True.
+ """
+ self._auto_font_scale = flag
+ if flag:
+ self.actor.SetTextScaleModeToProp()
+ self._justification = "left"
+ self.update_bounding_box(self.size)
+ else:
+ self.actor.SetTextScaleModeToNone()
+
+ @property
+ def dynamic_bbox(self):
+ """Automatically resize the bounding box according to the content.
+
+ Returns
+ -------
+ bool
+ Bounding box is dynamic if True.
+ """
+ return self._dynamic_bbox
+
+ @dynamic_bbox.setter
+ def dynamic_bbox(self, flag):
+ """Add/remove dynamic_bbox.
+
+ Parameters
+ ----------
+ flag : bool
+ The text bounding box is dynamic if True.
+ """
+ self._dynamic_bbox = flag
+ if flag:
+ self.update_bounding_box()
+
[docs] def update_alignment(self):
"""Update Text Alignment.
"""
diff --git a/dev/_modules/fury/ui/elements.html b/dev/_modules/fury/ui/elements.html
index f4879119b..94a07f154 100644
--- a/dev/_modules/fury/ui/elements.html
+++ b/dev/_modules/fury/ui/elements.html
@@ -4,7 +4,7 @@
- fury.ui.elements — FURY 0.10.0.dev192+g2551b7f4 documentation
+ fury.ui.elements — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -24,7 +24,7 @@
-
+
@@ -39,7 +39,7 @@
-
+
diff --git a/dev/_modules/fury/ui/helpers.html b/dev/_modules/fury/ui/helpers.html
index ed79ae382..ee8dc21e0 100644
--- a/dev/_modules/fury/ui/helpers.html
+++ b/dev/_modules/fury/ui/helpers.html
@@ -4,7 +4,7 @@
- fury.ui.helpers — FURY 0.10.0.dev192+g2551b7f4 documentation
+ fury.ui.helpers — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -24,7 +24,7 @@
-
+
@@ -39,7 +39,7 @@
-
+
diff --git a/dev/_modules/fury/utils.html b/dev/_modules/fury/utils.html
index 11de9188a..bec1f633a 100644
--- a/dev/_modules/fury/utils.html
+++ b/dev/_modules/fury/utils.html
@@ -4,7 +4,7 @@
- fury.utils — FURY 0.10.0.dev192+g2551b7f4 documentation
+ fury.utils — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -24,7 +24,7 @@
-
+
@@ -39,7 +39,7 @@
-
+
diff --git a/dev/_modules/fury/window.html b/dev/_modules/fury/window.html
index 3b8167d1b..b1b99ff34 100644
--- a/dev/_modules/fury/window.html
+++ b/dev/_modules/fury/window.html
@@ -4,7 +4,7 @@
- fury.window — FURY 0.10.0.dev192+g2551b7f4 documentation
+ fury.window — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -24,7 +24,7 @@
-
+
@@ -39,7 +39,7 @@
-
+
diff --git a/dev/_modules/index.html b/dev/_modules/index.html
index 4e1f3c5c5..97e85287c 100644
--- a/dev/_modules/index.html
+++ b/dev/_modules/index.html
@@ -4,7 +4,7 @@
- Overview: module code — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Overview: module code — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -24,7 +24,7 @@
-
+
@@ -39,7 +39,7 @@
-
+
diff --git a/dev/_static/documentation_options.js b/dev/_static/documentation_options.js
index 8da95625c..f81694994 100644
--- a/dev/_static/documentation_options.js
+++ b/dev/_static/documentation_options.js
@@ -1,6 +1,6 @@
var DOCUMENTATION_OPTIONS = {
URL_ROOT: document.getElementById("documentation_options").getAttribute('data-url_root'),
- VERSION: '0.10.0.dev192+g2551b7f4',
+ VERSION: '0.10.0.dev197+g9a9cf7f0',
LANGUAGE: 'en',
COLLAPSE_INDEX: false,
BUILDER: 'html',
diff --git a/dev/_static/pygments.css b/dev/_static/pygments.css
index a4dcc0d54..d92c4cddd 100644
--- a/dev/_static/pygments.css
+++ b/dev/_static/pygments.css
@@ -22,6 +22,7 @@ html[data-theme="light"] .highlight .c1 { color: #8f5902; font-style: italic } /
html[data-theme="light"] .highlight .cs { color: #8f5902; font-style: italic } /* Comment.Special */
html[data-theme="light"] .highlight .gd { color: #a40000 } /* Generic.Deleted */
html[data-theme="light"] .highlight .ge { color: #000000; font-style: italic } /* Generic.Emph */
+html[data-theme="light"] .highlight .ges { color: #000000; font-weight: bold; font-style: italic } /* Generic.EmphStrong */
html[data-theme="light"] .highlight .gr { color: #ef2929 } /* Generic.Error */
html[data-theme="light"] .highlight .gh { color: #000080; font-weight: bold } /* Generic.Heading */
html[data-theme="light"] .highlight .gi { color: #00A000 } /* Generic.Inserted */
@@ -88,35 +89,36 @@ html[data-theme="dark"] .highlight td.linenos .special { color: #000000; backgro
html[data-theme="dark"] .highlight span.linenos.special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; }
html[data-theme="dark"] .highlight .hll { background-color: #49483e }
html[data-theme="dark"] .highlight { background: #272822; color: #f8f8f2 }
-html[data-theme="dark"] .highlight .c { color: #75715e } /* Comment */
-html[data-theme="dark"] .highlight .err { color: #960050; background-color: #1e0010 } /* Error */
+html[data-theme="dark"] .highlight .c { color: #959077 } /* Comment */
+html[data-theme="dark"] .highlight .err { color: #ed007e; background-color: #1e0010 } /* Error */
html[data-theme="dark"] .highlight .esc { color: #f8f8f2 } /* Escape */
html[data-theme="dark"] .highlight .g { color: #f8f8f2 } /* Generic */
html[data-theme="dark"] .highlight .k { color: #66d9ef } /* Keyword */
html[data-theme="dark"] .highlight .l { color: #ae81ff } /* Literal */
html[data-theme="dark"] .highlight .n { color: #f8f8f2 } /* Name */
-html[data-theme="dark"] .highlight .o { color: #f92672 } /* Operator */
+html[data-theme="dark"] .highlight .o { color: #ff4689 } /* Operator */
html[data-theme="dark"] .highlight .x { color: #f8f8f2 } /* Other */
html[data-theme="dark"] .highlight .p { color: #f8f8f2 } /* Punctuation */
-html[data-theme="dark"] .highlight .ch { color: #75715e } /* Comment.Hashbang */
-html[data-theme="dark"] .highlight .cm { color: #75715e } /* Comment.Multiline */
-html[data-theme="dark"] .highlight .cp { color: #75715e } /* Comment.Preproc */
-html[data-theme="dark"] .highlight .cpf { color: #75715e } /* Comment.PreprocFile */
-html[data-theme="dark"] .highlight .c1 { color: #75715e } /* Comment.Single */
-html[data-theme="dark"] .highlight .cs { color: #75715e } /* Comment.Special */
-html[data-theme="dark"] .highlight .gd { color: #f92672 } /* Generic.Deleted */
+html[data-theme="dark"] .highlight .ch { color: #959077 } /* Comment.Hashbang */
+html[data-theme="dark"] .highlight .cm { color: #959077 } /* Comment.Multiline */
+html[data-theme="dark"] .highlight .cp { color: #959077 } /* Comment.Preproc */
+html[data-theme="dark"] .highlight .cpf { color: #959077 } /* Comment.PreprocFile */
+html[data-theme="dark"] .highlight .c1 { color: #959077 } /* Comment.Single */
+html[data-theme="dark"] .highlight .cs { color: #959077 } /* Comment.Special */
+html[data-theme="dark"] .highlight .gd { color: #ff4689 } /* Generic.Deleted */
html[data-theme="dark"] .highlight .ge { color: #f8f8f2; font-style: italic } /* Generic.Emph */
+html[data-theme="dark"] .highlight .ges { color: #f8f8f2; font-weight: bold; font-style: italic } /* Generic.EmphStrong */
html[data-theme="dark"] .highlight .gr { color: #f8f8f2 } /* Generic.Error */
html[data-theme="dark"] .highlight .gh { color: #f8f8f2 } /* Generic.Heading */
html[data-theme="dark"] .highlight .gi { color: #a6e22e } /* Generic.Inserted */
html[data-theme="dark"] .highlight .go { color: #66d9ef } /* Generic.Output */
-html[data-theme="dark"] .highlight .gp { color: #f92672; font-weight: bold } /* Generic.Prompt */
+html[data-theme="dark"] .highlight .gp { color: #ff4689; font-weight: bold } /* Generic.Prompt */
html[data-theme="dark"] .highlight .gs { color: #f8f8f2; font-weight: bold } /* Generic.Strong */
-html[data-theme="dark"] .highlight .gu { color: #75715e } /* Generic.Subheading */
+html[data-theme="dark"] .highlight .gu { color: #959077 } /* Generic.Subheading */
html[data-theme="dark"] .highlight .gt { color: #f8f8f2 } /* Generic.Traceback */
html[data-theme="dark"] .highlight .kc { color: #66d9ef } /* Keyword.Constant */
html[data-theme="dark"] .highlight .kd { color: #66d9ef } /* Keyword.Declaration */
-html[data-theme="dark"] .highlight .kn { color: #f92672 } /* Keyword.Namespace */
+html[data-theme="dark"] .highlight .kn { color: #ff4689 } /* Keyword.Namespace */
html[data-theme="dark"] .highlight .kp { color: #66d9ef } /* Keyword.Pseudo */
html[data-theme="dark"] .highlight .kr { color: #66d9ef } /* Keyword.Reserved */
html[data-theme="dark"] .highlight .kt { color: #66d9ef } /* Keyword.Type */
@@ -135,9 +137,9 @@ html[data-theme="dark"] .highlight .nl { color: #f8f8f2 } /* Name.Label */
html[data-theme="dark"] .highlight .nn { color: #f8f8f2 } /* Name.Namespace */
html[data-theme="dark"] .highlight .nx { color: #a6e22e } /* Name.Other */
html[data-theme="dark"] .highlight .py { color: #f8f8f2 } /* Name.Property */
-html[data-theme="dark"] .highlight .nt { color: #f92672 } /* Name.Tag */
+html[data-theme="dark"] .highlight .nt { color: #ff4689 } /* Name.Tag */
html[data-theme="dark"] .highlight .nv { color: #f8f8f2 } /* Name.Variable */
-html[data-theme="dark"] .highlight .ow { color: #f92672 } /* Operator.Word */
+html[data-theme="dark"] .highlight .ow { color: #ff4689 } /* Operator.Word */
html[data-theme="dark"] .highlight .pm { color: #f8f8f2 } /* Punctuation.Marker */
html[data-theme="dark"] .highlight .w { color: #f8f8f2 } /* Text.Whitespace */
html[data-theme="dark"] .highlight .mb { color: #ae81ff } /* Literal.Number.Bin */
diff --git a/dev/auto_examples/01_introductory/index.html b/dev/auto_examples/01_introductory/index.html
index ca35c036a..347fe7b49 100644
--- a/dev/auto_examples/01_introductory/index.html
+++ b/dev/auto_examples/01_introductory/index.html
@@ -5,7 +5,7 @@
- Introductory — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Introductory — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,7 @@
-
+
diff --git a/dev/auto_examples/01_introductory/viz_arrow.html b/dev/auto_examples/01_introductory/viz_arrow.html
index 7798c02a5..64d8e5e73 100644
--- a/dev/auto_examples/01_introductory/viz_arrow.html
+++ b/dev/auto_examples/01_introductory/viz_arrow.html
@@ -5,7 +5,7 @@
- Fury Arrow Actor — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Fury Arrow Actor — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,7 @@
-
+
diff --git a/dev/auto_examples/01_introductory/viz_cone.html b/dev/auto_examples/01_introductory/viz_cone.html
index 69ac97565..2919d1e54 100644
--- a/dev/auto_examples/01_introductory/viz_cone.html
+++ b/dev/auto_examples/01_introductory/viz_cone.html
@@ -5,7 +5,7 @@
- Fury Cone Actor — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Fury Cone Actor — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,7 @@
-
+
diff --git a/dev/auto_examples/01_introductory/viz_earth_animation.html b/dev/auto_examples/01_introductory/viz_earth_animation.html
index 357a5fc65..a6654c268 100644
--- a/dev/auto_examples/01_introductory/viz_earth_animation.html
+++ b/dev/auto_examples/01_introductory/viz_earth_animation.html
@@ -5,7 +5,7 @@
- Texture Sphere Animation — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Texture Sphere Animation — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,7 @@
-
+
diff --git a/dev/auto_examples/01_introductory/viz_earth_coordinates.html b/dev/auto_examples/01_introductory/viz_earth_coordinates.html
index c53fef6f5..f774c991e 100644
--- a/dev/auto_examples/01_introductory/viz_earth_coordinates.html
+++ b/dev/auto_examples/01_introductory/viz_earth_coordinates.html
@@ -5,7 +5,7 @@
- Earth Coordinate Conversion — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Earth Coordinate Conversion — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,7 @@
-
+
diff --git a/dev/auto_examples/01_introductory/viz_gltf.html b/dev/auto_examples/01_introductory/viz_gltf.html
index babf87fb0..ed4f69098 100644
--- a/dev/auto_examples/01_introductory/viz_gltf.html
+++ b/dev/auto_examples/01_introductory/viz_gltf.html
@@ -5,7 +5,7 @@
- Visualizing a glTF file — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Visualizing a glTF file — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,7 @@
-
+
diff --git a/dev/auto_examples/01_introductory/viz_gltf_animated.html b/dev/auto_examples/01_introductory/viz_gltf_animated.html
index 28aab1790..d486601ea 100644
--- a/dev/auto_examples/01_introductory/viz_gltf_animated.html
+++ b/dev/auto_examples/01_introductory/viz_gltf_animated.html
@@ -5,7 +5,7 @@
- Visualizing a glTF file — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Visualizing a glTF file — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,7 @@
-
+
diff --git a/dev/auto_examples/01_introductory/viz_gltf_export.html b/dev/auto_examples/01_introductory/viz_gltf_export.html
index 6b05e7ba3..34ae913fe 100644
--- a/dev/auto_examples/01_introductory/viz_gltf_export.html
+++ b/dev/auto_examples/01_introductory/viz_gltf_export.html
@@ -5,7 +5,7 @@
- Exporting scene as a glTF file — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Exporting scene as a glTF file — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,7 @@
-
+
diff --git a/dev/auto_examples/01_introductory/viz_morphing.html b/dev/auto_examples/01_introductory/viz_morphing.html
index 449ebcda2..10627e984 100644
--- a/dev/auto_examples/01_introductory/viz_morphing.html
+++ b/dev/auto_examples/01_introductory/viz_morphing.html
@@ -5,7 +5,7 @@
- Morphing Animation in a glTF — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Morphing Animation in a glTF — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,7 @@
-
+
diff --git a/dev/auto_examples/01_introductory/viz_multithread.html b/dev/auto_examples/01_introductory/viz_multithread.html
index c76fff6be..b0f91172b 100644
--- a/dev/auto_examples/01_introductory/viz_multithread.html
+++ b/dev/auto_examples/01_introductory/viz_multithread.html
@@ -5,7 +5,7 @@
- Multithreading Example — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Multithreading Example — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,7 @@
-
+
diff --git a/dev/auto_examples/01_introductory/viz_picking.html b/dev/auto_examples/01_introductory/viz_picking.html
index 2665d39d0..baa54d50f 100644
--- a/dev/auto_examples/01_introductory/viz_picking.html
+++ b/dev/auto_examples/01_introductory/viz_picking.html
@@ -5,7 +5,7 @@
- Simple picking — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Simple picking — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,7 @@
-
+
diff --git a/dev/auto_examples/01_introductory/viz_selection.html b/dev/auto_examples/01_introductory/viz_selection.html
index 3ca6d3391..2d23cb623 100644
--- a/dev/auto_examples/01_introductory/viz_selection.html
+++ b/dev/auto_examples/01_introductory/viz_selection.html
@@ -5,7 +5,7 @@
- Selecting multiple objects — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Selecting multiple objects — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,7 @@
-
+
diff --git a/dev/auto_examples/01_introductory/viz_skinning.html b/dev/auto_examples/01_introductory/viz_skinning.html
index e7df4c356..791ce498a 100644
--- a/dev/auto_examples/01_introductory/viz_skinning.html
+++ b/dev/auto_examples/01_introductory/viz_skinning.html
@@ -5,7 +5,7 @@
- Skeletal Animation in a glTF file — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Skeletal Animation in a glTF file — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,7 @@
-
+
diff --git a/dev/auto_examples/01_introductory/viz_slice.html b/dev/auto_examples/01_introductory/viz_slice.html
index df2789712..f76766927 100644
--- a/dev/auto_examples/01_introductory/viz_slice.html
+++ b/dev/auto_examples/01_introductory/viz_slice.html
@@ -5,7 +5,7 @@
- Simple volume slicing — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Simple volume slicing — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,7 @@
-
+
diff --git a/dev/auto_examples/01_introductory/viz_solar_system.html b/dev/auto_examples/01_introductory/viz_solar_system.html
index 817d6e9fc..7861fcd0a 100644
--- a/dev/auto_examples/01_introductory/viz_solar_system.html
+++ b/dev/auto_examples/01_introductory/viz_solar_system.html
@@ -5,7 +5,7 @@
- Solar System Animation — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Solar System Animation — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,7 @@
-
+
diff --git a/dev/auto_examples/01_introductory/viz_sphere.html b/dev/auto_examples/01_introductory/viz_sphere.html
index 8b1ffcf2a..b316da103 100644
--- a/dev/auto_examples/01_introductory/viz_sphere.html
+++ b/dev/auto_examples/01_introductory/viz_sphere.html
@@ -5,7 +5,7 @@
- FURY sphere Actor — FURY 0.10.0.dev192+g2551b7f4 documentation
+ FURY sphere Actor — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,7 @@
-
+
diff --git a/dev/auto_examples/01_introductory/viz_spiky.html b/dev/auto_examples/01_introductory/viz_spiky.html
index 014cb83ce..0e07e22ff 100644
--- a/dev/auto_examples/01_introductory/viz_spiky.html
+++ b/dev/auto_examples/01_introductory/viz_spiky.html
@@ -5,7 +5,7 @@
- Spiky Sphere — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Spiky Sphere — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,7 @@
-
+
diff --git a/dev/auto_examples/01_introductory/viz_surfaces.html b/dev/auto_examples/01_introductory/viz_surfaces.html
index 18af8285a..b7b5f9d35 100644
--- a/dev/auto_examples/01_introductory/viz_surfaces.html
+++ b/dev/auto_examples/01_introductory/viz_surfaces.html
@@ -5,7 +5,7 @@
- Visualize surfaces — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Visualize surfaces — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,7 @@
-
+
diff --git a/dev/auto_examples/01_introductory/viz_texture.html b/dev/auto_examples/01_introductory/viz_texture.html
index 48a9d7e1c..6fb2b289e 100644
--- a/dev/auto_examples/01_introductory/viz_texture.html
+++ b/dev/auto_examples/01_introductory/viz_texture.html
@@ -5,7 +5,7 @@
- Sphere Texture — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Sphere Texture — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,7 @@
-
+
diff --git a/dev/auto_examples/01_introductory/viz_timers.html b/dev/auto_examples/01_introductory/viz_timers.html
index 52086a7f8..9f0ec714d 100644
--- a/dev/auto_examples/01_introductory/viz_timers.html
+++ b/dev/auto_examples/01_introductory/viz_timers.html
@@ -5,7 +5,7 @@
- Using a timer — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Using a timer — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,7 @@
-
+
diff --git a/dev/auto_examples/04_demos/collision-particles.html b/dev/auto_examples/04_demos/collision-particles.html
index fccfb3449..a43fe6596 100644
--- a/dev/auto_examples/04_demos/collision-particles.html
+++ b/dev/auto_examples/04_demos/collision-particles.html
@@ -5,7 +5,7 @@
- Collisions of particles in a box — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Collisions of particles in a box — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,7 @@
-
+
diff --git a/dev/auto_examples/04_demos/index.html b/dev/auto_examples/04_demos/index.html
index a2bc787f8..bf82a7f63 100644
--- a/dev/auto_examples/04_demos/index.html
+++ b/dev/auto_examples/04_demos/index.html
@@ -5,7 +5,7 @@
- Demos — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Demos — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,7 @@
-
+
diff --git a/dev/auto_examples/04_demos/viz_advanced.html b/dev/auto_examples/04_demos/viz_advanced.html
index 6d8921e0c..57e017df2 100644
--- a/dev/auto_examples/04_demos/viz_advanced.html
+++ b/dev/auto_examples/04_demos/viz_advanced.html
@@ -5,7 +5,7 @@
- Advanced interactive visualization — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Advanced interactive visualization — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,7 @@
-
+
diff --git a/dev/auto_examples/04_demos/viz_animated_surfaces.html b/dev/auto_examples/04_demos/viz_animated_surfaces.html
index bcf8fad83..a5397caee 100644
--- a/dev/auto_examples/04_demos/viz_animated_surfaces.html
+++ b/dev/auto_examples/04_demos/viz_animated_surfaces.html
@@ -5,7 +5,7 @@
- Animated 2D functions — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Animated 2D functions — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,7 @@
-
+
diff --git a/dev/auto_examples/04_demos/viz_brownian_motion.html b/dev/auto_examples/04_demos/viz_brownian_motion.html
index ee7522156..4e98562f4 100644
--- a/dev/auto_examples/04_demos/viz_brownian_motion.html
+++ b/dev/auto_examples/04_demos/viz_brownian_motion.html
@@ -5,7 +5,7 @@
- Brownian motion — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Brownian motion — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,7 @@
-
+
diff --git a/dev/auto_examples/04_demos/viz_bundles.html b/dev/auto_examples/04_demos/viz_bundles.html
index 3de5fa040..ff746be52 100644
--- a/dev/auto_examples/04_demos/viz_bundles.html
+++ b/dev/auto_examples/04_demos/viz_bundles.html
@@ -5,7 +5,7 @@
- Visualize bundles and metrics on bundles — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Visualize bundles and metrics on bundles — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,7 @@
-
+
diff --git a/dev/auto_examples/04_demos/viz_emwave_animation.html b/dev/auto_examples/04_demos/viz_emwave_animation.html
index c8cc7f368..8c08ca4e0 100644
--- a/dev/auto_examples/04_demos/viz_emwave_animation.html
+++ b/dev/auto_examples/04_demos/viz_emwave_animation.html
@@ -5,7 +5,7 @@
- Electromagnetic Wave Propagation Animation — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Electromagnetic Wave Propagation Animation — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,7 @@
-
+
diff --git a/dev/auto_examples/04_demos/viz_fiber_odf.html b/dev/auto_examples/04_demos/viz_fiber_odf.html
index 9ab695f1d..582f9af2f 100644
--- a/dev/auto_examples/04_demos/viz_fiber_odf.html
+++ b/dev/auto_examples/04_demos/viz_fiber_odf.html
@@ -5,7 +5,7 @@
- Brain Fiber ODF Visualisation — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Brain Fiber ODF Visualisation — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,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 833a479cf..2db43a30e 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
@@ -5,7 +5,7 @@
- Fine-tuning the OpenGL state using shader callbacks — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Fine-tuning the OpenGL state using shader callbacks — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,7 @@
-
+
diff --git a/dev/auto_examples/04_demos/viz_fractals.html b/dev/auto_examples/04_demos/viz_fractals.html
index 2178347c5..c442280e4 100644
--- a/dev/auto_examples/04_demos/viz_fractals.html
+++ b/dev/auto_examples/04_demos/viz_fractals.html
@@ -5,7 +5,7 @@
- Fractals — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Fractals — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,7 @@
-
+
diff --git a/dev/auto_examples/04_demos/viz_helical_motion.html b/dev/auto_examples/04_demos/viz_helical_motion.html
index 6a0d9354e..d4aea7d97 100644
--- a/dev/auto_examples/04_demos/viz_helical_motion.html
+++ b/dev/auto_examples/04_demos/viz_helical_motion.html
@@ -5,7 +5,7 @@
- Motion of a charged particle in a combined magnetic and electric field — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Motion of a charged particle in a combined magnetic and electric field — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,7 @@
-
+
diff --git a/dev/auto_examples/04_demos/viz_markers.html b/dev/auto_examples/04_demos/viz_markers.html
index 980468318..903203170 100644
--- a/dev/auto_examples/04_demos/viz_markers.html
+++ b/dev/auto_examples/04_demos/viz_markers.html
@@ -5,7 +5,7 @@
- Fury Markers — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Fury Markers — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,7 @@
-
+
diff --git a/dev/auto_examples/04_demos/viz_network.html b/dev/auto_examples/04_demos/viz_network.html
index 9f24d6ede..5d772a471 100644
--- a/dev/auto_examples/04_demos/viz_network.html
+++ b/dev/auto_examples/04_demos/viz_network.html
@@ -5,7 +5,7 @@
- Visualize Interdisciplinary map of the journals network — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Visualize Interdisciplinary map of the journals network — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,7 @@
-
+
diff --git a/dev/auto_examples/04_demos/viz_network_animated.html b/dev/auto_examples/04_demos/viz_network_animated.html
index 6ba84f89e..852e6701c 100644
--- a/dev/auto_examples/04_demos/viz_network_animated.html
+++ b/dev/auto_examples/04_demos/viz_network_animated.html
@@ -5,7 +5,7 @@
- Visualize Networks (Animated version) — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Visualize Networks (Animated version) — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,7 @@
-
+
diff --git a/dev/auto_examples/04_demos/viz_pbr_interactive.html b/dev/auto_examples/04_demos/viz_pbr_interactive.html
index 50aa0e507..be6d008cb 100644
--- a/dev/auto_examples/04_demos/viz_pbr_interactive.html
+++ b/dev/auto_examples/04_demos/viz_pbr_interactive.html
@@ -5,7 +5,7 @@
- Interactive PBR demo — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Interactive PBR demo — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,7 @@
-
+
diff --git a/dev/auto_examples/04_demos/viz_play_video.html b/dev/auto_examples/04_demos/viz_play_video.html
index c8d3e9647..d8ad7c65c 100644
--- a/dev/auto_examples/04_demos/viz_play_video.html
+++ b/dev/auto_examples/04_demos/viz_play_video.html
@@ -5,7 +5,7 @@
- Play a video in the 3D world — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Play a video in the 3D world — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,7 @@
-
+
diff --git a/dev/auto_examples/04_demos/viz_roi_contour.html b/dev/auto_examples/04_demos/viz_roi_contour.html
index 2ac6df175..6269c9be8 100644
--- a/dev/auto_examples/04_demos/viz_roi_contour.html
+++ b/dev/auto_examples/04_demos/viz_roi_contour.html
@@ -5,7 +5,7 @@
- Visualization of ROI Surface Rendered with Streamlines — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Visualization of ROI Surface Rendered with Streamlines — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,7 @@
-
+
diff --git a/dev/auto_examples/04_demos/viz_tesseract.html b/dev/auto_examples/04_demos/viz_tesseract.html
index 8be63e2c8..e7f3cceb0 100644
--- a/dev/auto_examples/04_demos/viz_tesseract.html
+++ b/dev/auto_examples/04_demos/viz_tesseract.html
@@ -5,7 +5,7 @@
- Tesseract (Hypercube) — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Tesseract (Hypercube) — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,7 @@
-
+
diff --git a/dev/auto_examples/07_ui/index.html b/dev/auto_examples/07_ui/index.html
index b6e0220a4..11d217035 100644
--- a/dev/auto_examples/07_ui/index.html
+++ b/dev/auto_examples/07_ui/index.html
@@ -5,7 +5,7 @@
- User Interface Elements — FURY 0.10.0.dev192+g2551b7f4 documentation
+ User Interface Elements — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,7 @@
-
+
diff --git a/dev/auto_examples/07_ui/viz_buttons.html b/dev/auto_examples/07_ui/viz_buttons.html
index b5c511ccf..d3364097e 100644
--- a/dev/auto_examples/07_ui/viz_buttons.html
+++ b/dev/auto_examples/07_ui/viz_buttons.html
@@ -5,7 +5,7 @@
- Buttons & Text — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Buttons & Text — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,7 @@
-
+
diff --git a/dev/auto_examples/07_ui/viz_card.html b/dev/auto_examples/07_ui/viz_card.html
index af200cf3d..a4eb71118 100644
--- a/dev/auto_examples/07_ui/viz_card.html
+++ b/dev/auto_examples/07_ui/viz_card.html
@@ -5,7 +5,7 @@
- Card — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Card — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,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 53b77eba3..bbc35f8b7 100644
--- a/dev/auto_examples/07_ui/viz_card_sprite_sheet.html
+++ b/dev/auto_examples/07_ui/viz_card_sprite_sheet.html
@@ -5,7 +5,7 @@
- Card — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Card — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,7 @@
-
+
diff --git a/dev/auto_examples/07_ui/viz_check_boxes.html b/dev/auto_examples/07_ui/viz_check_boxes.html
index 11c2016be..0021a8c99 100644
--- a/dev/auto_examples/07_ui/viz_check_boxes.html
+++ b/dev/auto_examples/07_ui/viz_check_boxes.html
@@ -5,7 +5,7 @@
- Figure and Color Control using Check boxes and Radio Buttons — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Figure and Color Control using Check boxes and Radio Buttons — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,7 @@
-
+
diff --git a/dev/auto_examples/07_ui/viz_combobox.html b/dev/auto_examples/07_ui/viz_combobox.html
index 4e0fdccbd..25e7ab16b 100644
--- a/dev/auto_examples/07_ui/viz_combobox.html
+++ b/dev/auto_examples/07_ui/viz_combobox.html
@@ -5,7 +5,7 @@
- ComboBox — FURY 0.10.0.dev192+g2551b7f4 documentation
+ ComboBox — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,7 @@
-
+
diff --git a/dev/auto_examples/07_ui/viz_drawpanel.html b/dev/auto_examples/07_ui/viz_drawpanel.html
index 7daa241ec..cee5dd5e8 100644
--- a/dev/auto_examples/07_ui/viz_drawpanel.html
+++ b/dev/auto_examples/07_ui/viz_drawpanel.html
@@ -5,7 +5,7 @@
- DrawPanel — FURY 0.10.0.dev192+g2551b7f4 documentation
+ DrawPanel — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,7 @@
-
+
diff --git a/dev/auto_examples/07_ui/viz_layout.html b/dev/auto_examples/07_ui/viz_layout.html
index 3977529c7..9d578f9a3 100644
--- a/dev/auto_examples/07_ui/viz_layout.html
+++ b/dev/auto_examples/07_ui/viz_layout.html
@@ -5,7 +5,7 @@
- Using Layouts with different UI elements — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Using Layouts with different UI elements — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,7 @@
-
+
diff --git a/dev/auto_examples/07_ui/viz_radio_buttons.html b/dev/auto_examples/07_ui/viz_radio_buttons.html
index 4e9bb14ed..fa4d16d8a 100644
--- a/dev/auto_examples/07_ui/viz_radio_buttons.html
+++ b/dev/auto_examples/07_ui/viz_radio_buttons.html
@@ -5,7 +5,7 @@
- Sphere Color Control using Radio Buttons — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Sphere Color Control using Radio Buttons — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,7 @@
-
+
diff --git a/dev/auto_examples/07_ui/viz_shapes.html b/dev/auto_examples/07_ui/viz_shapes.html
index bf44abd4f..f94606bb1 100644
--- a/dev/auto_examples/07_ui/viz_shapes.html
+++ b/dev/auto_examples/07_ui/viz_shapes.html
@@ -5,7 +5,7 @@
- Simple Shapes — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Simple Shapes — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,7 @@
-
+
diff --git a/dev/auto_examples/07_ui/viz_tab.html b/dev/auto_examples/07_ui/viz_tab.html
index 1f74997d4..d1d45d750 100644
--- a/dev/auto_examples/07_ui/viz_tab.html
+++ b/dev/auto_examples/07_ui/viz_tab.html
@@ -5,7 +5,7 @@
- Tab UI — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Tab UI — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,7 @@
-
+
diff --git a/dev/auto_examples/07_ui/viz_ui.html b/dev/auto_examples/07_ui/viz_ui.html
index bbfe086b6..e7400105e 100644
--- a/dev/auto_examples/07_ui/viz_ui.html
+++ b/dev/auto_examples/07_ui/viz_ui.html
@@ -5,7 +5,7 @@
- User Interfaces — FURY 0.10.0.dev192+g2551b7f4 documentation
+ User Interfaces — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,7 @@
-
+
diff --git a/dev/auto_examples/07_ui/viz_ui_listbox.html b/dev/auto_examples/07_ui/viz_ui_listbox.html
index a845b6850..14c5e1961 100644
--- a/dev/auto_examples/07_ui/viz_ui_listbox.html
+++ b/dev/auto_examples/07_ui/viz_ui_listbox.html
@@ -5,7 +5,7 @@
- ListBox — FURY 0.10.0.dev192+g2551b7f4 documentation
+ ListBox — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,7 @@
-
+
diff --git a/dev/auto_examples/07_ui/viz_ui_slider.html b/dev/auto_examples/07_ui/viz_ui_slider.html
index e6b6afae7..e35a129a8 100644
--- a/dev/auto_examples/07_ui/viz_ui_slider.html
+++ b/dev/auto_examples/07_ui/viz_ui_slider.html
@@ -5,7 +5,7 @@
- Cube & Slider Control — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Cube & Slider Control — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,7 @@
-
+
diff --git a/dev/auto_examples/10_animation/index.html b/dev/auto_examples/10_animation/index.html
index b8c9906cd..ffa3137ea 100644
--- a/dev/auto_examples/10_animation/index.html
+++ b/dev/auto_examples/10_animation/index.html
@@ -5,7 +5,7 @@
- Animation — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Animation — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,7 @@
-
+
diff --git a/dev/auto_examples/10_animation/viz_bezier_interpolator.html b/dev/auto_examples/10_animation/viz_bezier_interpolator.html
index 7a13a66a2..ae7c9e173 100644
--- a/dev/auto_examples/10_animation/viz_bezier_interpolator.html
+++ b/dev/auto_examples/10_animation/viz_bezier_interpolator.html
@@ -5,7 +5,7 @@
- Bezier Interpolator — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Bezier Interpolator — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,7 @@
-
+
diff --git a/dev/auto_examples/10_animation/viz_camera.html b/dev/auto_examples/10_animation/viz_camera.html
index 641e52903..24bdbac55 100644
--- a/dev/auto_examples/10_animation/viz_camera.html
+++ b/dev/auto_examples/10_animation/viz_camera.html
@@ -5,7 +5,7 @@
- Keyframe animation: Camera and opacity — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Keyframe animation: Camera and opacity — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,7 @@
-
+
diff --git a/dev/auto_examples/10_animation/viz_color_interpolators.html b/dev/auto_examples/10_animation/viz_color_interpolators.html
index c914dca14..231f0453d 100644
--- a/dev/auto_examples/10_animation/viz_color_interpolators.html
+++ b/dev/auto_examples/10_animation/viz_color_interpolators.html
@@ -5,7 +5,7 @@
- Keyframe Color Interpolators — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Keyframe Color Interpolators — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,7 @@
-
+
diff --git a/dev/auto_examples/10_animation/viz_custom_interpolator.html b/dev/auto_examples/10_animation/viz_custom_interpolator.html
index 7a04e3934..185c84b06 100644
--- a/dev/auto_examples/10_animation/viz_custom_interpolator.html
+++ b/dev/auto_examples/10_animation/viz_custom_interpolator.html
@@ -5,7 +5,7 @@
- Making a custom interpolator — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Making a custom interpolator — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,7 @@
-
+
diff --git a/dev/auto_examples/10_animation/viz_hierarchical_animation.html b/dev/auto_examples/10_animation/viz_hierarchical_animation.html
index c89c4e1da..6524b4aa3 100644
--- a/dev/auto_examples/10_animation/viz_hierarchical_animation.html
+++ b/dev/auto_examples/10_animation/viz_hierarchical_animation.html
@@ -5,7 +5,7 @@
- Keyframe hierarchical Animation — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Keyframe hierarchical Animation — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,7 @@
-
+
diff --git a/dev/auto_examples/10_animation/viz_interpolators.html b/dev/auto_examples/10_animation/viz_interpolators.html
index 554970cd7..887cc860e 100644
--- a/dev/auto_examples/10_animation/viz_interpolators.html
+++ b/dev/auto_examples/10_animation/viz_interpolators.html
@@ -5,7 +5,7 @@
- Keyframe animation — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Keyframe animation — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,7 @@
-
+
diff --git a/dev/auto_examples/10_animation/viz_introduction.html b/dev/auto_examples/10_animation/viz_introduction.html
index 5bd216ac9..c874f4472 100644
--- a/dev/auto_examples/10_animation/viz_introduction.html
+++ b/dev/auto_examples/10_animation/viz_introduction.html
@@ -5,7 +5,7 @@
- Keyframe animation introduction — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Keyframe animation introduction — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,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 c8290badd..de1fc5c17 100644
--- a/dev/auto_examples/10_animation/viz_robot_arm_animation.html
+++ b/dev/auto_examples/10_animation/viz_robot_arm_animation.html
@@ -5,7 +5,7 @@
- Arm Robot Animation — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Arm Robot Animation — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,7 @@
-
+
diff --git a/dev/auto_examples/10_animation/viz_spline_interpolator.html b/dev/auto_examples/10_animation/viz_spline_interpolator.html
index b05f6132f..364142ff4 100644
--- a/dev/auto_examples/10_animation/viz_spline_interpolator.html
+++ b/dev/auto_examples/10_animation/viz_spline_interpolator.html
@@ -5,7 +5,7 @@
- Keyframes Spline Interpolator — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Keyframes Spline Interpolator — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,7 @@
-
+
diff --git a/dev/auto_examples/10_animation/viz_timeline.html b/dev/auto_examples/10_animation/viz_timeline.html
index 26d9de7b7..3940b7248 100644
--- a/dev/auto_examples/10_animation/viz_timeline.html
+++ b/dev/auto_examples/10_animation/viz_timeline.html
@@ -5,7 +5,7 @@
- Timeline and setting keyframes — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Timeline and setting keyframes — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,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 9e23a3e0d..6bcbdabd3 100644
--- a/dev/auto_examples/10_animation/viz_using_time_equations.html
+++ b/dev/auto_examples/10_animation/viz_using_time_equations.html
@@ -5,7 +5,7 @@
- Keyframe animation — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Keyframe animation — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,7 @@
-
+
diff --git a/dev/auto_examples/13_shaders/index.html b/dev/auto_examples/13_shaders/index.html
index 86c9604b1..9f2bb01d0 100644
--- a/dev/auto_examples/13_shaders/index.html
+++ b/dev/auto_examples/13_shaders/index.html
@@ -5,7 +5,7 @@
- Shaders — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Shaders — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,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 daedd7ef2..82479bcdd 100644
--- a/dev/auto_examples/13_shaders/viz_billboard_sdf_spheres.html
+++ b/dev/auto_examples/13_shaders/viz_billboard_sdf_spheres.html
@@ -5,7 +5,7 @@
- SDF Impostors on Billboards — FURY 0.10.0.dev192+g2551b7f4 documentation
+ SDF Impostors on Billboards — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,7 @@
-
+
diff --git a/dev/auto_examples/13_shaders/viz_pbr_spheres.html b/dev/auto_examples/13_shaders/viz_pbr_spheres.html
index 52f923180..d073706c8 100644
--- a/dev/auto_examples/13_shaders/viz_pbr_spheres.html
+++ b/dev/auto_examples/13_shaders/viz_pbr_spheres.html
@@ -5,7 +5,7 @@
- Physically-Based Rendering (PBR) on spheres — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Physically-Based Rendering (PBR) on spheres — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,7 @@
-
+
diff --git a/dev/auto_examples/13_shaders/viz_principled_spheres.html b/dev/auto_examples/13_shaders/viz_principled_spheres.html
index 392541b4a..c9c73234d 100644
--- a/dev/auto_examples/13_shaders/viz_principled_spheres.html
+++ b/dev/auto_examples/13_shaders/viz_principled_spheres.html
@@ -5,7 +5,7 @@
- Principled BRDF shader on spheres — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Principled BRDF shader on spheres — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,7 @@
-
+
diff --git a/dev/auto_examples/13_shaders/viz_sdf_cylinder.html b/dev/auto_examples/13_shaders/viz_sdf_cylinder.html
index 3f7cd079a..5926a5902 100644
--- a/dev/auto_examples/13_shaders/viz_sdf_cylinder.html
+++ b/dev/auto_examples/13_shaders/viz_sdf_cylinder.html
@@ -5,7 +5,7 @@
- Make a Cylinder using polygons vs SDF — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Make a Cylinder using polygons vs SDF — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,7 @@
-
+
diff --git a/dev/auto_examples/13_shaders/viz_sdfactor.html b/dev/auto_examples/13_shaders/viz_sdfactor.html
index c6fa6b11a..030b0933f 100644
--- a/dev/auto_examples/13_shaders/viz_sdfactor.html
+++ b/dev/auto_examples/13_shaders/viz_sdfactor.html
@@ -5,7 +5,7 @@
- Visualize SDF Actor — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Visualize SDF Actor — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,7 @@
-
+
diff --git a/dev/auto_examples/13_shaders/viz_shader.html b/dev/auto_examples/13_shaders/viz_shader.html
index 0e635d28b..a3e6ee6ad 100644
--- a/dev/auto_examples/13_shaders/viz_shader.html
+++ b/dev/auto_examples/13_shaders/viz_shader.html
@@ -5,7 +5,7 @@
- Varying Color — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Varying Color — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,7 @@
-
+
diff --git a/dev/auto_examples/17_pybullet/index.html b/dev/auto_examples/17_pybullet/index.html
index 18226a1bb..246c7f2a4 100644
--- a/dev/auto_examples/17_pybullet/index.html
+++ b/dev/auto_examples/17_pybullet/index.html
@@ -5,7 +5,7 @@
- Integrate Physics using pybullet — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Integrate Physics using pybullet — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,7 @@
-
+
diff --git a/dev/auto_examples/17_pybullet/viz_ball_collide.html b/dev/auto_examples/17_pybullet/viz_ball_collide.html
index d892a68fd..f75d8da10 100644
--- a/dev/auto_examples/17_pybullet/viz_ball_collide.html
+++ b/dev/auto_examples/17_pybullet/viz_ball_collide.html
@@ -5,7 +5,7 @@
- Ball Collision Simulation — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Ball Collision Simulation — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,7 @@
-
+
diff --git a/dev/auto_examples/17_pybullet/viz_brick_wall.html b/dev/auto_examples/17_pybullet/viz_brick_wall.html
index 85500b7be..112c067fe 100644
--- a/dev/auto_examples/17_pybullet/viz_brick_wall.html
+++ b/dev/auto_examples/17_pybullet/viz_brick_wall.html
@@ -5,7 +5,7 @@
- Brick Wall Simulation — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Brick Wall Simulation — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,7 @@
-
+
diff --git a/dev/auto_examples/17_pybullet/viz_chain.html b/dev/auto_examples/17_pybullet/viz_chain.html
index b0bc16600..e40ba4053 100644
--- a/dev/auto_examples/17_pybullet/viz_chain.html
+++ b/dev/auto_examples/17_pybullet/viz_chain.html
@@ -5,7 +5,7 @@
- Chain Simulation — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Chain Simulation — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,7 @@
-
+
diff --git a/dev/auto_examples/17_pybullet/viz_domino.html b/dev/auto_examples/17_pybullet/viz_domino.html
index 4ec2c88e3..98903efd4 100644
--- a/dev/auto_examples/17_pybullet/viz_domino.html
+++ b/dev/auto_examples/17_pybullet/viz_domino.html
@@ -5,7 +5,7 @@
- Domino Physics Simulation — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Domino Physics Simulation — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,7 @@
-
+
diff --git a/dev/auto_examples/17_pybullet/viz_wrecking_ball.html b/dev/auto_examples/17_pybullet/viz_wrecking_ball.html
index 352468174..9e6593d3d 100644
--- a/dev/auto_examples/17_pybullet/viz_wrecking_ball.html
+++ b/dev/auto_examples/17_pybullet/viz_wrecking_ball.html
@@ -5,7 +5,7 @@
- Wrecking Ball Simulation — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Wrecking Ball Simulation — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,7 @@
-
+
diff --git a/dev/auto_examples/20_stream/index.html b/dev/auto_examples/20_stream/index.html
index fa16fc1fb..b24b50722 100644
--- a/dev/auto_examples/20_stream/index.html
+++ b/dev/auto_examples/20_stream/index.html
@@ -5,7 +5,7 @@
- Streaming — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Streaming — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,7 @@
-
+
diff --git a/dev/auto_examples/20_stream/viz_interaction.html b/dev/auto_examples/20_stream/viz_interaction.html
index 74f575706..4c1bef052 100644
--- a/dev/auto_examples/20_stream/viz_interaction.html
+++ b/dev/auto_examples/20_stream/viz_interaction.html
@@ -5,7 +5,7 @@
- Streaming FURY with user interaction — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Streaming FURY with user interaction — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,7 @@
-
+
diff --git a/dev/auto_examples/20_stream/viz_no_interaction.html b/dev/auto_examples/20_stream/viz_no_interaction.html
index 52b95e8ac..1ce99e94c 100644
--- a/dev/auto_examples/20_stream/viz_no_interaction.html
+++ b/dev/auto_examples/20_stream/viz_no_interaction.html
@@ -5,7 +5,7 @@
- Streaming FURY with WebRTC/MJPEG — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Streaming FURY with WebRTC/MJPEG — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,7 @@
-
+
diff --git a/dev/auto_examples/20_stream/viz_widget.html b/dev/auto_examples/20_stream/viz_widget.html
index 8c2d706e4..aa5167d05 100644
--- a/dev/auto_examples/20_stream/viz_widget.html
+++ b/dev/auto_examples/20_stream/viz_widget.html
@@ -5,7 +5,7 @@
- Streaming FURY with WebRTC/MJPEG using the Widget Object — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Streaming FURY with WebRTC/MJPEG using the Widget Object — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,7 @@
-
+
diff --git a/dev/auto_examples/index.html b/dev/auto_examples/index.html
index 9102d467e..bd711e5eb 100644
--- a/dev/auto_examples/index.html
+++ b/dev/auto_examples/index.html
@@ -5,7 +5,7 @@
- Tutorials — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Tutorials — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,7 @@
-
+
diff --git a/dev/blog.html b/dev/blog.html
index 3eca3f4c8..18b8345de 100644
--- a/dev/blog.html
+++ b/dev/blog.html
@@ -4,7 +4,7 @@
- All Posts — FURY 0.10.0.dev192+g2551b7f4 documentation
+ All Posts — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -24,7 +24,7 @@
-
+
@@ -39,7 +39,7 @@
-
+
diff --git a/dev/blog/2018.html b/dev/blog/2018.html
index 42adef9b3..7edb911b1 100644
--- a/dev/blog/2018.html
+++ b/dev/blog/2018.html
@@ -4,7 +4,7 @@
- Posted in 2018 — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Posted in 2018 — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -24,7 +24,7 @@
-
+
@@ -39,7 +39,7 @@
-
+
diff --git a/dev/blog/2018/atom.xml b/dev/blog/2018/atom.xml
index f2deeaa0a..1a10c9ebf 100644
--- a/dev/blog/2018/atom.xml
+++ b/dev/blog/2018/atom.xml
@@ -2,7 +2,7 @@
https://fury.gl/
Blog - Posted in 2018
- 2023-07-30T18:38:38.375621+00:00
+ 2023-08-07T17:18:52.014231+00:00
ABlog
diff --git a/dev/blog/2019.html b/dev/blog/2019.html
index 69d7993c5..9a0950b59 100644
--- a/dev/blog/2019.html
+++ b/dev/blog/2019.html
@@ -4,7 +4,7 @@
- Posted in 2019 — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Posted in 2019 — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -24,7 +24,7 @@
-
+
@@ -39,7 +39,7 @@
-
+
diff --git a/dev/blog/2019/atom.xml b/dev/blog/2019/atom.xml
index 9ed64f251..5ac63ae4f 100644
--- a/dev/blog/2019/atom.xml
+++ b/dev/blog/2019/atom.xml
@@ -2,7 +2,7 @@
https://fury.gl/
Blog - Posted in 2019
- 2023-07-30T18:38:38.354752+00:00
+ 2023-08-07T17:18:51.995432+00:00
ABlog
diff --git a/dev/blog/2020.html b/dev/blog/2020.html
index dbf163d78..3d422b9d2 100644
--- a/dev/blog/2020.html
+++ b/dev/blog/2020.html
@@ -4,7 +4,7 @@
- Posted in 2020 — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Posted in 2020 — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -24,7 +24,7 @@
-
+
@@ -39,7 +39,7 @@
-
+
diff --git a/dev/blog/2020/atom.xml b/dev/blog/2020/atom.xml
index 6109aa25d..f134cf05d 100644
--- a/dev/blog/2020/atom.xml
+++ b/dev/blog/2020/atom.xml
@@ -2,7 +2,7 @@
https://fury.gl/
Blog - Posted in 2020
- 2023-07-30T18:38:38.287089+00:00
+ 2023-08-07T17:18:51.933901+00:00
ABlog
diff --git a/dev/blog/2021.html b/dev/blog/2021.html
index 150744fc5..f719f4d86 100644
--- a/dev/blog/2021.html
+++ b/dev/blog/2021.html
@@ -4,7 +4,7 @@
- Posted in 2021 — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Posted in 2021 — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -24,7 +24,7 @@
-
+
@@ -39,7 +39,7 @@
-
+
diff --git a/dev/blog/2021/atom.xml b/dev/blog/2021/atom.xml
index b8ffdc677..f4b20c338 100644
--- a/dev/blog/2021/atom.xml
+++ b/dev/blog/2021/atom.xml
@@ -2,7 +2,7 @@
https://fury.gl/
Blog - Posted in 2021
- 2023-07-30T18:38:38.200282+00:00
+ 2023-08-07T17:18:51.853273+00:00
ABlog
diff --git a/dev/blog/2022.html b/dev/blog/2022.html
index 7685c078a..6b8d31034 100644
--- a/dev/blog/2022.html
+++ b/dev/blog/2022.html
@@ -4,7 +4,7 @@
- Posted in 2022 — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Posted in 2022 — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -24,7 +24,7 @@
-
+
@@ -39,7 +39,7 @@
-
+
diff --git a/dev/blog/2022/atom.xml b/dev/blog/2022/atom.xml
index 289a39992..854ad391d 100644
--- a/dev/blog/2022/atom.xml
+++ b/dev/blog/2022/atom.xml
@@ -2,7 +2,7 @@
https://fury.gl/
Blog - Posted in 2022
- 2023-07-30T18:38:38.163464+00:00
+ 2023-08-07T17:18:51.815262+00:00
ABlog
diff --git a/dev/blog/2023.html b/dev/blog/2023.html
index 13cf1a552..c0b5a1c03 100644
--- a/dev/blog/2023.html
+++ b/dev/blog/2023.html
@@ -4,7 +4,7 @@
- Posted in 2023 — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Posted in 2023 — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -24,7 +24,7 @@
-
+
@@ -39,7 +39,7 @@
-
+
diff --git a/dev/blog/2023/atom.xml b/dev/blog/2023/atom.xml
index ee5928e00..81871f3de 100644
--- a/dev/blog/2023/atom.xml
+++ b/dev/blog/2023/atom.xml
@@ -2,7 +2,7 @@
https://fury.gl/
Blog - Posted in 2023
- 2023-07-30T18:38:38.118280+00:00
+ 2023-08-07T17:18:51.771244+00:00
ABlog
diff --git a/dev/blog/archive.html b/dev/blog/archive.html
index f50961568..64c6a8019 100644
--- a/dev/blog/archive.html
+++ b/dev/blog/archive.html
@@ -4,7 +4,7 @@
- All posts — FURY 0.10.0.dev192+g2551b7f4 documentation
+ All posts — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -24,7 +24,7 @@
-
+
@@ -39,7 +39,7 @@
-
+
diff --git a/dev/blog/atom.xml b/dev/blog/atom.xml
index f0b1c4cb1..668e33e67 100644
--- a/dev/blog/atom.xml
+++ b/dev/blog/atom.xml
@@ -2,7 +2,7 @@
https://fury.gl/
Blog
- 2023-07-30T18:38:37.334946+00:00
+ 2023-08-07T17:18:50.990624+00:00
ABlog
diff --git a/dev/blog/author.html b/dev/blog/author.html
index 3d8aabff6..963634c80 100644
--- a/dev/blog/author.html
+++ b/dev/blog/author.html
@@ -4,7 +4,7 @@
- Authors — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Authors — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -24,7 +24,7 @@
-
+
@@ -39,7 +39,7 @@
-
+
diff --git a/dev/blog/author/antriksh-misri.html b/dev/blog/author/antriksh-misri.html
index 8f0b93d5c..8235541a7 100644
--- a/dev/blog/author/antriksh-misri.html
+++ b/dev/blog/author/antriksh-misri.html
@@ -4,7 +4,7 @@
- Posts by Antriksh Misri — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Posts by Antriksh Misri — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -24,7 +24,7 @@
-
+
@@ -39,7 +39,7 @@
-
+
diff --git a/dev/blog/author/antriksh-misri/atom.xml b/dev/blog/author/antriksh-misri/atom.xml
index 8a44bbcce..0d6a20f0d 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
- 2023-07-30T18:38:37.380909+00:00
+ 2023-08-07T17:18:51.037567+00:00
ABlog
diff --git a/dev/blog/author/bruno-messias.html b/dev/blog/author/bruno-messias.html
index 6c2718845..d46769d68 100644
--- a/dev/blog/author/bruno-messias.html
+++ b/dev/blog/author/bruno-messias.html
@@ -4,7 +4,7 @@
- Posts by Bruno Messias — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Posts by Bruno Messias — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -24,7 +24,7 @@
-
+
@@ -39,7 +39,7 @@
-
+
diff --git a/dev/blog/author/bruno-messias/atom.xml b/dev/blog/author/bruno-messias/atom.xml
index bc4cce33c..a89b9a280 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
- 2023-07-30T18:38:37.433179+00:00
+ 2023-08-07T17:18:51.092927+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 fca63df24..edbfe4a5f 100644
--- a/dev/blog/author/joao-victor-dell-agli-floriano.html
+++ b/dev/blog/author/joao-victor-dell-agli-floriano.html
@@ -4,7 +4,7 @@
- Posts by João Victor Dell Agli Floriano — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Posts by João Victor Dell Agli Floriano — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -24,7 +24,7 @@
-
+
@@ -39,7 +39,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 e10128232..30b4dc3b9 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
- 2023-07-30T18:38:37.507754+00:00
+ 2023-08-07T17:18:51.165198+00:00
ABlog
diff --git a/dev/blog/author/lenix-lobo.html b/dev/blog/author/lenix-lobo.html
index 073f79441..cc5870e81 100644
--- a/dev/blog/author/lenix-lobo.html
+++ b/dev/blog/author/lenix-lobo.html
@@ -4,7 +4,7 @@
- Posts by Lenix Lobo — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Posts by Lenix Lobo — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -24,7 +24,7 @@
-
+
@@ -39,7 +39,7 @@
-
+
diff --git a/dev/blog/author/lenix-lobo/atom.xml b/dev/blog/author/lenix-lobo/atom.xml
index fb95840de..a8b81f720 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
- 2023-07-30T18:38:37.562268+00:00
+ 2023-08-07T17:18:51.221821+00:00
ABlog
diff --git a/dev/blog/author/mohamed-abouagour.html b/dev/blog/author/mohamed-abouagour.html
index fa45596a7..eed2eed13 100644
--- a/dev/blog/author/mohamed-abouagour.html
+++ b/dev/blog/author/mohamed-abouagour.html
@@ -4,7 +4,7 @@
- Posts by Mohamed Abouagour — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Posts by Mohamed Abouagour — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -24,7 +24,7 @@
-
+
@@ -39,7 +39,7 @@
-
+
diff --git a/dev/blog/author/mohamed-abouagour/atom.xml b/dev/blog/author/mohamed-abouagour/atom.xml
index 92e90a0cc..a9dc4127c 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
- 2023-07-30T18:38:37.603901+00:00
+ 2023-08-07T17:18:51.262623+00:00
ABlog
diff --git a/dev/blog/author/praneeth-shetty.html b/dev/blog/author/praneeth-shetty.html
index e07a88cd7..bdb862144 100644
--- a/dev/blog/author/praneeth-shetty.html
+++ b/dev/blog/author/praneeth-shetty.html
@@ -4,7 +4,7 @@
- Posts by Praneeth Shetty — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Posts by Praneeth Shetty — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -24,7 +24,7 @@
-
+
@@ -39,7 +39,7 @@
-
+
diff --git a/dev/blog/author/praneeth-shetty/atom.xml b/dev/blog/author/praneeth-shetty/atom.xml
index fdbf38701..85244849b 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
- 2023-07-30T18:38:37.673013+00:00
+ 2023-08-07T17:18:51.330219+00:00
ABlog
diff --git a/dev/blog/author/sajag-swami.html b/dev/blog/author/sajag-swami.html
index f6cb9a7f8..5415fb51b 100644
--- a/dev/blog/author/sajag-swami.html
+++ b/dev/blog/author/sajag-swami.html
@@ -4,7 +4,7 @@
- Posts by Sajag Swami — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Posts by Sajag Swami — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -24,7 +24,7 @@
-
+
@@ -39,7 +39,7 @@
-
+
diff --git a/dev/blog/author/sajag-swami/atom.xml b/dev/blog/author/sajag-swami/atom.xml
index e95f64de2..d22c527c5 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
- 2023-07-30T18:38:37.731241+00:00
+ 2023-08-07T17:18:51.389780+00:00
ABlog
diff --git a/dev/blog/author/serge-koudoro.html b/dev/blog/author/serge-koudoro.html
index 10e01db5e..0e90a266a 100644
--- a/dev/blog/author/serge-koudoro.html
+++ b/dev/blog/author/serge-koudoro.html
@@ -4,7 +4,7 @@
- Posts by Serge Koudoro — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Posts by Serge Koudoro — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -24,7 +24,7 @@
-
+
@@ -39,7 +39,7 @@
-
+
diff --git a/dev/blog/author/serge-koudoro/atom.xml b/dev/blog/author/serge-koudoro/atom.xml
index 0a2bfb8a1..183aa5db2 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
- 2023-07-30T18:38:37.939442+00:00
+ 2023-08-07T17:18:51.597473+00:00
ABlog
diff --git a/dev/blog/author/shivam-anand.html b/dev/blog/author/shivam-anand.html
index ae0275ccd..4c8244a02 100644
--- a/dev/blog/author/shivam-anand.html
+++ b/dev/blog/author/shivam-anand.html
@@ -4,7 +4,7 @@
- Posts by Shivam Anand — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Posts by Shivam Anand — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -24,7 +24,7 @@
-
+
@@ -39,7 +39,7 @@
-
+
diff --git a/dev/blog/author/shivam-anand/atom.xml b/dev/blog/author/shivam-anand/atom.xml
index e0f352c82..75cb814da 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
- 2023-07-30T18:38:37.784306+00:00
+ 2023-08-07T17:18:51.443715+00:00
ABlog
diff --git a/dev/blog/author/shivam-sahu.html b/dev/blog/author/shivam-sahu.html
index c4d4d7545..e6cbb5add 100644
--- a/dev/blog/author/shivam-sahu.html
+++ b/dev/blog/author/shivam-sahu.html
@@ -4,7 +4,7 @@
- Posts by Shivam Sahu — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Posts by Shivam Sahu — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -24,7 +24,7 @@
-
+
@@ -39,7 +39,7 @@
-
+
diff --git a/dev/blog/author/shivam-sahu/atom.xml b/dev/blog/author/shivam-sahu/atom.xml
index 42d75005c..dd1746dfe 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
- 2023-07-30T18:38:37.846535+00:00
+ 2023-08-07T17:18:51.504997+00:00
ABlog
diff --git a/dev/blog/author/soham-biswas.html b/dev/blog/author/soham-biswas.html
index 075dcbfe2..2493da15e 100644
--- a/dev/blog/author/soham-biswas.html
+++ b/dev/blog/author/soham-biswas.html
@@ -4,7 +4,7 @@
- Posts by Soham Biswas — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Posts by Soham Biswas — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -24,7 +24,7 @@
-
+
@@ -39,7 +39,7 @@
-
+
diff --git a/dev/blog/author/soham-biswas/atom.xml b/dev/blog/author/soham-biswas/atom.xml
index bb1fdd4bf..f78d68eec 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
- 2023-07-30T18:38:37.852326+00:00
+ 2023-08-07T17:18:51.510556+00:00
ABlog
diff --git a/dev/blog/author/tania-castillo.html b/dev/blog/author/tania-castillo.html
index 981790658..98dd2029c 100644
--- a/dev/blog/author/tania-castillo.html
+++ b/dev/blog/author/tania-castillo.html
@@ -4,7 +4,7 @@
- Posts by Tania Castillo — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Posts by Tania Castillo — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -24,7 +24,7 @@
-
+
@@ -39,7 +39,7 @@
-
+
diff --git a/dev/blog/author/tania-castillo/atom.xml b/dev/blog/author/tania-castillo/atom.xml
index 9b30ed365..d4f3a6577 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
- 2023-07-30T18:38:37.916334+00:00
+ 2023-08-07T17:18:51.574406+00:00
ABlog
diff --git a/dev/blog/category.html b/dev/blog/category.html
index 854c3815e..d342cb926 100644
--- a/dev/blog/category.html
+++ b/dev/blog/category.html
@@ -4,7 +4,7 @@
- Categories — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Categories — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -24,7 +24,7 @@
-
+
@@ -39,7 +39,7 @@
-
+
diff --git a/dev/blog/category/gsoc.html b/dev/blog/category/gsoc.html
index 0182f357d..c73a9d520 100644
--- a/dev/blog/category/gsoc.html
+++ b/dev/blog/category/gsoc.html
@@ -4,7 +4,7 @@
- Posts in gsoc — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Posts in gsoc — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -24,7 +24,7 @@
-
+
@@ -39,7 +39,7 @@
-
+
diff --git a/dev/blog/category/gsoc/atom.xml b/dev/blog/category/gsoc/atom.xml
index 58db5c70d..5db6ebaa7 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
- 2023-07-30T18:38:37.999899+00:00
+ 2023-08-07T17:18:51.656745+00:00
ABlog
diff --git a/dev/blog/category/news.html b/dev/blog/category/news.html
index 344515c4c..35dd42b32 100644
--- a/dev/blog/category/news.html
+++ b/dev/blog/category/news.html
@@ -4,7 +4,7 @@
- Posts in news — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Posts in news — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -24,7 +24,7 @@
-
+
@@ -39,7 +39,7 @@
-
+
diff --git a/dev/blog/category/news/atom.xml b/dev/blog/category/news/atom.xml
index 142fb86ab..2d31e5fc3 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
- 2023-07-30T18:38:38.044965+00:00
+ 2023-08-07T17:18:51.700102+00:00
ABlog
diff --git a/dev/blog/category/release.html b/dev/blog/category/release.html
index 197ae6c65..c9a3f925b 100644
--- a/dev/blog/category/release.html
+++ b/dev/blog/category/release.html
@@ -4,7 +4,7 @@
- Posts in release — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Posts in release — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -24,7 +24,7 @@
-
+
@@ -39,7 +39,7 @@
-
+
diff --git a/dev/blog/category/release/atom.xml b/dev/blog/category/release/atom.xml
index 7310a2b62..4fea09e25 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
- 2023-07-30T18:38:38.047414+00:00
+ 2023-08-07T17:18:51.702772+00:00
ABlog
diff --git a/dev/blog/drafts.html b/dev/blog/drafts.html
index ed3ceabb2..5d5fc197a 100644
--- a/dev/blog/drafts.html
+++ b/dev/blog/drafts.html
@@ -4,7 +4,7 @@
- Drafts — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Drafts — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -24,7 +24,7 @@
-
+
@@ -39,7 +39,7 @@
-
+
diff --git a/dev/blog/tag.html b/dev/blog/tag.html
index 4e205077e..be5321119 100644
--- a/dev/blog/tag.html
+++ b/dev/blog/tag.html
@@ -4,7 +4,7 @@
- Tags — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Tags — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -24,7 +24,7 @@
-
+
@@ -39,7 +39,7 @@
-
+
diff --git a/dev/blog/tag/fury.html b/dev/blog/tag/fury.html
index 7b1be5bc4..32e949019 100644
--- a/dev/blog/tag/fury.html
+++ b/dev/blog/tag/fury.html
@@ -4,7 +4,7 @@
- Posts tagged fury — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Posts tagged fury — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -24,7 +24,7 @@
-
+
@@ -39,7 +39,7 @@
-
+
diff --git a/dev/blog/tag/fury/atom.xml b/dev/blog/tag/fury/atom.xml
index 75e520cb4..0023cad41 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
- 2023-07-30T18:38:38.392554+00:00
+ 2023-08-07T17:18:52.030038+00:00
ABlog
diff --git a/dev/blog/tag/google.html b/dev/blog/tag/google.html
index c030dfc31..290376ef6 100644
--- a/dev/blog/tag/google.html
+++ b/dev/blog/tag/google.html
@@ -4,7 +4,7 @@
- Posts tagged google — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Posts tagged google — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -24,7 +24,7 @@
-
+
@@ -39,7 +39,7 @@
-
+
diff --git a/dev/blog/tag/google/atom.xml b/dev/blog/tag/google/atom.xml
index d5ccfda99..8962b7adb 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
- 2023-07-30T18:38:38.465258+00:00
+ 2023-08-07T17:18:52.100001+00:00
ABlog
diff --git a/dev/blog/tag/shader.html b/dev/blog/tag/shader.html
index 7cfadbaa7..a30838695 100644
--- a/dev/blog/tag/shader.html
+++ b/dev/blog/tag/shader.html
@@ -4,7 +4,7 @@
- Posts tagged shader — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Posts tagged shader — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -24,7 +24,7 @@
-
+
@@ -39,7 +39,7 @@
-
+
diff --git a/dev/blog/tag/shader/atom.xml b/dev/blog/tag/shader/atom.xml
index b118d3848..17a4615c3 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
- 2023-07-30T18:38:38.508771+00:00
+ 2023-08-07T17:18:52.146585+00:00
ABlog
diff --git a/dev/community.html b/dev/community.html
index 769ce4713..7ee0e09c1 100644
--- a/dev/community.html
+++ b/dev/community.html
@@ -5,7 +5,7 @@
- Community — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Community — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,7 @@
-
+
@@ -313,7 +313,7 @@ Contributors
-
+ Stars
Stars
diff --git a/dev/fury-pybullet.html b/dev/fury-pybullet.html
index 2abc401b7..20197ec41 100644
--- a/dev/fury-pybullet.html
+++ b/dev/fury-pybullet.html
@@ -5,7 +5,7 @@
- FURY - pyBullet Integration Guide — FURY 0.10.0.dev192+g2551b7f4 documentation
+ FURY - pyBullet Integration Guide — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,7 @@
-
+
diff --git a/dev/genindex.html b/dev/genindex.html
index 95a5a2801..76eb0b041 100644
--- a/dev/genindex.html
+++ b/dev/genindex.html
@@ -4,7 +4,7 @@
- Index — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Index — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -24,7 +24,7 @@
-
+
@@ -39,7 +39,7 @@
-
+
@@ -546,10 +546,10 @@ A
AddPosition() (fury.actor.Container method)
-
-
+
- alignment (fury.ui.containers.Panel2D attribute)
- analyze_scene() (in module fury.window)
@@ -624,6 +624,12 @@
A
- attribute_to_actor() (in module fury.shaders.base)
+ - auto_font_scale (fury.ui.core.TextBlock2D attribute)
+
+
- axes() (in module fury.actor)
- azimuth() (fury.window.Scene method)
@@ -657,7 +663,7 @@
B
- bold (fury.ui.core.TextBlock2D attribute)
@@ -817,7 +823,7 @@ C
(fury.ui.core.TextBlock2D attribute)
- (fury.ui.core.TextBlock2D property)
+ (fury.ui.core.TextBlock2D property)
(fury.ui.elements.Card2D property)
@@ -982,10 +988,10 @@ D
disk() (in module fury.actor)
-
-
+
@@ -1127,13 +1139,13 @@ F
font_family (fury.ui.core.TextBlock2D attribute)
font_size (fury.ui.core.TextBlock2D attribute)
- - (fury.ui.core.TextBlock2D property)
+
- (fury.ui.core.TextBlock2D property)
- (fury.ui.elements.Checkbox property)
@@ -1803,7 +1815,7 @@ I
- italic (fury.ui.core.TextBlock2D attribute)
- items (fury.actor.Container property)
@@ -1825,7 +1837,7 @@
J
- justification (fury.ui.core.TextBlock2D attribute)
@@ -2075,13 +2087,13 @@ M
message (fury.ui.core.TextBlock2D attribute)
mid_track_radius (fury.ui.elements.RingSlider2D attribute)
middle_button_click_callback() (fury.ui.core.UI static method)
@@ -2346,7 +2358,7 @@ P
- (fury.ui.elements.Checkbox attribute)
- - (fury.ui.elements.Checkbox property)
+
- (fury.ui.elements.Checkbox property)
- (fury.ui.elements.RadioButton attribute)
@@ -2452,7 +2464,7 @@ P
- previous_value (fury.ui.elements.RingSlider2D attribute)
- prim_arrow() (in module fury.primitive)
@@ -2922,7 +2934,7 @@
S
- shadow (fury.ui.core.TextBlock2D attribute)
- shallow_copy() (in module fury.utils)
@@ -3326,7 +3338,7 @@
V
- vertical_justification (fury.ui.core.TextBlock2D attribute)
- VerticalLayout (class in fury.layout)
diff --git a/dev/getting_started.html b/dev/getting_started.html
index cf03e8fbb..4d0c83063 100644
--- a/dev/getting_started.html
+++ b/dev/getting_started.html
@@ -5,7 +5,7 @@
-
Getting Started — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Getting Started — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,7 @@
-
+
diff --git a/dev/installation.html b/dev/installation.html
index f50075459..f97e25e80 100644
--- a/dev/installation.html
+++ b/dev/installation.html
@@ -5,7 +5,7 @@
- Installation — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Installation — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,7 @@
-
+
diff --git a/dev/introduction.html b/dev/introduction.html
index 004b29d37..2c0e0e6a1 100644
--- a/dev/introduction.html
+++ b/dev/introduction.html
@@ -5,7 +5,7 @@
- About — FURY 0.10.0.dev192+g2551b7f4 documentation
+ About — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,7 @@
-
+
diff --git a/dev/objects.inv b/dev/objects.inv
index 2892846c8..73c6b1a97 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 326094661..b7c5505c8 100644
--- a/dev/posts/2018/2018-09-21-release-announcement.html
+++ b/dev/posts/2018/2018-09-21-release-announcement.html
@@ -5,7 +5,7 @@
- FURY 0.1.0 Released — FURY 0.10.0.dev192+g2551b7f4 documentation
+ FURY 0.1.0 Released — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,7 @@
-
+
diff --git a/dev/posts/2018/2018-10-31-release-announcement.html b/dev/posts/2018/2018-10-31-release-announcement.html
index c1193ecad..41adc1f77 100644
--- a/dev/posts/2018/2018-10-31-release-announcement.html
+++ b/dev/posts/2018/2018-10-31-release-announcement.html
@@ -5,7 +5,7 @@
- FURY 0.1.3 Released — FURY 0.10.0.dev192+g2551b7f4 documentation
+ FURY 0.1.3 Released — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,7 @@
-
+
diff --git a/dev/posts/2018/2018-11-26-release-announcement.html b/dev/posts/2018/2018-11-26-release-announcement.html
index aa4f305f8..ec352c41e 100644
--- a/dev/posts/2018/2018-11-26-release-announcement.html
+++ b/dev/posts/2018/2018-11-26-release-announcement.html
@@ -5,7 +5,7 @@
- FURY 0.1.4 Released — FURY 0.10.0.dev192+g2551b7f4 documentation
+ FURY 0.1.4 Released — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,7 @@
-
+
diff --git a/dev/posts/2019/2019-03-08-release-announcement.html b/dev/posts/2019/2019-03-08-release-announcement.html
index 394dfa0d7..48851187f 100644
--- a/dev/posts/2019/2019-03-08-release-announcement.html
+++ b/dev/posts/2019/2019-03-08-release-announcement.html
@@ -5,7 +5,7 @@
- FURY 0.2.0 Released — FURY 0.10.0.dev192+g2551b7f4 documentation
+ FURY 0.2.0 Released — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,7 @@
-
+
diff --git a/dev/posts/2019/2019-06-19-brain-art.html b/dev/posts/2019/2019-06-19-brain-art.html
index 92211bbad..50903ef85 100644
--- a/dev/posts/2019/2019-06-19-brain-art.html
+++ b/dev/posts/2019/2019-06-19-brain-art.html
@@ -5,7 +5,7 @@
- Success on Brain Art Competition using FURY — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Success on Brain Art Competition using FURY — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,7 @@
-
+
diff --git a/dev/posts/2019/2019-08-02-release-announcement.html b/dev/posts/2019/2019-08-02-release-announcement.html
index 292305ac4..0179ce7fa 100644
--- a/dev/posts/2019/2019-08-02-release-announcement.html
+++ b/dev/posts/2019/2019-08-02-release-announcement.html
@@ -5,7 +5,7 @@
- FURY 0.3.0 Released — FURY 0.10.0.dev192+g2551b7f4 documentation
+ FURY 0.3.0 Released — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,7 @@
-
+
diff --git a/dev/posts/2019/2019-10-29-release-announcement.html b/dev/posts/2019/2019-10-29-release-announcement.html
index ebf419b82..e0dead92a 100644
--- a/dev/posts/2019/2019-10-29-release-announcement.html
+++ b/dev/posts/2019/2019-10-29-release-announcement.html
@@ -5,7 +5,7 @@
- FURY 0.4.0 Released — FURY 0.10.0.dev192+g2551b7f4 documentation
+ FURY 0.4.0 Released — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,7 @@
-
+
diff --git a/dev/posts/2020/2020-01-05-gsoc.html b/dev/posts/2020/2020-01-05-gsoc.html
index f8faf1668..25918253d 100644
--- a/dev/posts/2020/2020-01-05-gsoc.html
+++ b/dev/posts/2020/2020-01-05-gsoc.html
@@ -5,7 +5,7 @@
- Google Summer of Code — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Google Summer of Code — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,7 @@
-
+
diff --git a/dev/posts/2020/2020-04-09-release-announcement.html b/dev/posts/2020/2020-04-09-release-announcement.html
index 0230b3d01..38af50658 100644
--- a/dev/posts/2020/2020-04-09-release-announcement.html
+++ b/dev/posts/2020/2020-04-09-release-announcement.html
@@ -5,7 +5,7 @@
- FURY 0.5.1 Released — FURY 0.10.0.dev192+g2551b7f4 documentation
+ FURY 0.5.1 Released — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,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 40706a839..c1e73e898 100644
--- a/dev/posts/2020/2020-05-30-week-1-lenix.html
+++ b/dev/posts/2020/2020-05-30-week-1-lenix.html
@@ -5,7 +5,7 @@
- Weekly Check-in #1 — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Weekly Check-in #1 — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,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 acb8fc40b..ad583fa39 100644
--- a/dev/posts/2020/2020-05-30-week-1-soham.html
+++ b/dev/posts/2020/2020-05-30-week-1-soham.html
@@ -5,7 +5,7 @@
- Welcome to my GSoC Blog!!! — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Welcome to my GSoC Blog!!! — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,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 d09bf648c..e9d4c4ca6 100644
--- a/dev/posts/2020/2020-06-07-week-2-lenix.html
+++ b/dev/posts/2020/2020-06-07-week-2-lenix.html
@@ -5,7 +5,7 @@
- First week of coding!! — FURY 0.10.0.dev192+g2551b7f4 documentation
+ First week of coding!! — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,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 d2138cb94..7417634a5 100644
--- a/dev/posts/2020/2020-06-07-week-2-soham.html
+++ b/dev/posts/2020/2020-06-07-week-2-soham.html
@@ -5,7 +5,7 @@
- First week of coding!! — FURY 0.10.0.dev192+g2551b7f4 documentation
+ First week of coding!! — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,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 7cc62a688..6ab7777d6 100644
--- a/dev/posts/2020/2020-06-14-week-3-lenix.html
+++ b/dev/posts/2020/2020-06-14-week-3-lenix.html
@@ -5,7 +5,7 @@
- Raymarching!! — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Raymarching!! — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,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 d025624fc..14f5f8298 100644
--- a/dev/posts/2020/2020-06-14-week-3-soham.html
+++ b/dev/posts/2020/2020-06-14-week-3-soham.html
@@ -5,7 +5,7 @@
- ComboBox2D Progress!! — FURY 0.10.0.dev192+g2551b7f4 documentation
+ ComboBox2D Progress!! — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,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 612076d76..147b8e53d 100644
--- a/dev/posts/2020/2020-06-21-week-4-lenix.html
+++ b/dev/posts/2020/2020-06-21-week-4-lenix.html
@@ -5,7 +5,7 @@
- Raymarching continued — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Raymarching continued — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,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 dea4e8c26..eece751d0 100644
--- a/dev/posts/2020/2020-06-21-week-4-soham.html
+++ b/dev/posts/2020/2020-06-21-week-4-soham.html
@@ -5,7 +5,7 @@
- TextBlock2D Progress!! — FURY 0.10.0.dev192+g2551b7f4 documentation
+ TextBlock2D Progress!! — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,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 1d45e93d4..1c0631215 100644
--- a/dev/posts/2020/2020-06-28-week-5-lenix.html
+++ b/dev/posts/2020/2020-06-28-week-5-lenix.html
@@ -5,7 +5,7 @@
- Spherical harmonics — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Spherical harmonics — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,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 ac1a2a1c0..17d27fffe 100644
--- a/dev/posts/2020/2020-06-28-week-5-soham.html
+++ b/dev/posts/2020/2020-06-28-week-5-soham.html
@@ -5,7 +5,7 @@
- May the Force be with you!! — FURY 0.10.0.dev192+g2551b7f4 documentation
+ May the Force be with you!! — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,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 10be33b61..f212ef74d 100644
--- a/dev/posts/2020/2020-07-05-week-6-lenix.html
+++ b/dev/posts/2020/2020-07-05-week-6-lenix.html
@@ -5,7 +5,7 @@
- Spherical harmonics, Continued. — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Spherical harmonics, Continued. — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,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 12a28c720..6b5357ed3 100644
--- a/dev/posts/2020/2020-07-05-week-6-soham.html
+++ b/dev/posts/2020/2020-07-05-week-6-soham.html
@@ -5,7 +5,7 @@
- Translation, Reposition, Rotation. — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Translation, Reposition, Rotation. — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,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 a2c845cff..f14ddd3f1 100644
--- a/dev/posts/2020/2020-07-12-week-7-soham.html
+++ b/dev/posts/2020/2020-07-12-week-7-soham.html
@@ -5,7 +5,7 @@
- Orientation, Sizing, Tab UI. — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Orientation, Sizing, Tab UI. — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,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 d317bd889..c6397b369 100644
--- a/dev/posts/2020/2020-07-13-week-7-lenix.html
+++ b/dev/posts/2020/2020-07-13-week-7-lenix.html
@@ -5,7 +5,7 @@
- Multiple SDF primitives. — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Multiple SDF primitives. — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,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 f6f2ebce6..df37aa9fd 100644
--- a/dev/posts/2020/2020-07-19-week-8-soham.html
+++ b/dev/posts/2020/2020-07-19-week-8-soham.html
@@ -5,7 +5,7 @@
- ComboBox2D, TextBlock2D, Clipping Overflow. — FURY 0.10.0.dev192+g2551b7f4 documentation
+ ComboBox2D, TextBlock2D, Clipping Overflow. — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,7 @@
-
+
diff --git a/dev/posts/2020/2020-07-20-release-announcement.html b/dev/posts/2020/2020-07-20-release-announcement.html
index 5afbd4815..6a1aa90e6 100644
--- a/dev/posts/2020/2020-07-20-release-announcement.html
+++ b/dev/posts/2020/2020-07-20-release-announcement.html
@@ -5,7 +5,7 @@
- FURY 0.6.0 Released — FURY 0.10.0.dev192+g2551b7f4 documentation
+ FURY 0.6.0 Released — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,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 50b31b2ed..a5a3d47b5 100644
--- a/dev/posts/2020/2020-07-20-week-8-lenix.html
+++ b/dev/posts/2020/2020-07-20-week-8-lenix.html
@@ -5,7 +5,7 @@
- Improvements in SDF primitives. — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Improvements in SDF primitives. — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,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 d522ef102..3a6f85641 100644
--- a/dev/posts/2020/2020-07-26-week-9-soham.html
+++ b/dev/posts/2020/2020-07-26-week-9-soham.html
@@ -5,7 +5,7 @@
- Tab UI, TabPanel2D, Tab UI Tutorial. — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Tab UI, TabPanel2D, Tab UI Tutorial. — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,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 3ae0e3268..fc165b5b3 100644
--- a/dev/posts/2020/2020-07-27-week-9-lenix.html
+++ b/dev/posts/2020/2020-07-27-week-9-lenix.html
@@ -5,7 +5,7 @@
- Merging SDF primitives. — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Merging SDF primitives. — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,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 ef0e6816f..0cdce24f5 100644
--- a/dev/posts/2020/2020-08-02-week-10-lenix.html
+++ b/dev/posts/2020/2020-08-02-week-10-lenix.html
@@ -5,7 +5,7 @@
- More Shaders!! — FURY 0.10.0.dev192+g2551b7f4 documentation
+ More Shaders!! — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,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 911fd12cf..7a361585d 100644
--- a/dev/posts/2020/2020-08-02-week-10-soham.html
+++ b/dev/posts/2020/2020-08-02-week-10-soham.html
@@ -5,7 +5,7 @@
- Single Actor, Physics, Scrollbars. — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Single Actor, Physics, Scrollbars. — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,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 56a64ec29..ec5506a9d 100644
--- a/dev/posts/2020/2020-08-09-week-11-lenix.html
+++ b/dev/posts/2020/2020-08-09-week-11-lenix.html
@@ -5,7 +5,7 @@
- More Shaders!! — FURY 0.10.0.dev192+g2551b7f4 documentation
+ More Shaders!! — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,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 e858849b8..7321f75b3 100644
--- a/dev/posts/2020/2020-08-09-week-11-soham.html
+++ b/dev/posts/2020/2020-08-09-week-11-soham.html
@@ -5,7 +5,7 @@
- Chain Simulation, Scrollbar Refactor, Tutorial Update. — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Chain Simulation, Scrollbar Refactor, Tutorial Update. — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,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 37254d486..10c4c82cd 100644
--- a/dev/posts/2020/2020-08-16-week-12-soham.html
+++ b/dev/posts/2020/2020-08-16-week-12-soham.html
@@ -5,7 +5,7 @@
- Wrecking Ball Simulation, Scrollbars Update, Physics Tutorials. — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Wrecking Ball Simulation, Scrollbars Update, Physics Tutorials. — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,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 ada261248..2bbfe7ee7 100644
--- a/dev/posts/2020/2020-08-17-week-12-lenix.html
+++ b/dev/posts/2020/2020-08-17-week-12-lenix.html
@@ -5,7 +5,7 @@
- Outline Picker — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Outline Picker — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,7 @@
-
+
diff --git a/dev/posts/2020/2020-08-18-release-announcement.html b/dev/posts/2020/2020-08-18-release-announcement.html
index 970804154..53d38e39b 100644
--- a/dev/posts/2020/2020-08-18-release-announcement.html
+++ b/dev/posts/2020/2020-08-18-release-announcement.html
@@ -5,7 +5,7 @@
- FURY 0.6.1 Released — FURY 0.10.0.dev192+g2551b7f4 documentation
+ FURY 0.6.1 Released — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,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 866317d46..2e82e7cad 100644
--- a/dev/posts/2020/2020-08-23-week-13-soham.html
+++ b/dev/posts/2020/2020-08-23-week-13-soham.html
@@ -5,7 +5,7 @@
- Part of the Journey is the end unless its Open Source! — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Part of the Journey is the end unless its Open Source! — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,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 a0e316fb4..46bd6ed13 100644
--- a/dev/posts/2020/2020-08-24-final-work-lenix.html
+++ b/dev/posts/2020/2020-08-24-final-work-lenix.html
@@ -5,7 +5,7 @@
- Google Summer of Code 2020 Final Work Product — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Google Summer of Code 2020 Final Work Product — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,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 166e6bf8f..b36f89b11 100644
--- a/dev/posts/2020/2020-08-24-final-work-soham.html
+++ b/dev/posts/2020/2020-08-24-final-work-soham.html
@@ -5,7 +5,7 @@
- Google Summer of Code Final Work Product — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Google Summer of Code Final Work Product — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,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 ab3583787..8792cfa44 100644
--- a/dev/posts/2020/2020-08-24-week-13-lenix.html
+++ b/dev/posts/2020/2020-08-24-week-13-lenix.html
@@ -5,7 +5,7 @@
- Shader Showcase — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Shader Showcase — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,7 @@
-
+
diff --git a/dev/posts/2021/2021-03-09-gsoc.html b/dev/posts/2021/2021-03-09-gsoc.html
index 88112237f..c3ecc7eaa 100644
--- a/dev/posts/2021/2021-03-09-gsoc.html
+++ b/dev/posts/2021/2021-03-09-gsoc.html
@@ -5,7 +5,7 @@
- Google Summer of Code — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Google Summer of Code — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,7 @@
-
+
diff --git a/dev/posts/2021/2021-03-13-release-announcement.html b/dev/posts/2021/2021-03-13-release-announcement.html
index 9b82330f8..ec849c52c 100644
--- a/dev/posts/2021/2021-03-13-release-announcement.html
+++ b/dev/posts/2021/2021-03-13-release-announcement.html
@@ -5,7 +5,7 @@
- FURY 0.7.0 Released — FURY 0.10.0.dev192+g2551b7f4 documentation
+ FURY 0.7.0 Released — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,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 3c2401bcb..9fdd15f56 100644
--- a/dev/posts/2021/2021-06-08-gsoc-devmessias-1.html
+++ b/dev/posts/2021/2021-06-08-gsoc-devmessias-1.html
@@ -5,7 +5,7 @@
- Weekly Check-In #1 — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Weekly Check-In #1 — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,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 329e144f0..dbada0718 100644
--- a/dev/posts/2021/2021-06-08-week-1-antriksh.html
+++ b/dev/posts/2021/2021-06-08-week-1-antriksh.html
@@ -5,7 +5,7 @@
- Week #1: Welcome to my weekly Blogs! — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Week #1: Welcome to my weekly Blogs! — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,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 114cc04db..faed4dd92 100644
--- a/dev/posts/2021/2021-06-08-week-1-sajag.html
+++ b/dev/posts/2021/2021-06-08-week-1-sajag.html
@@ -5,7 +5,7 @@
- Welcome to my GSoC Blog! — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Welcome to my GSoC Blog! — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,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 a807d13cb..d796c8b15 100644
--- a/dev/posts/2021/2021-06-12-gsoc-devmessias-2.html
+++ b/dev/posts/2021/2021-06-12-gsoc-devmessias-2.html
@@ -5,7 +5,7 @@
- A Stadia-like system for data visualization — FURY 0.10.0.dev192+g2551b7f4 documentation
+ A Stadia-like system for data visualization — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,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 6bf250bd7..31cd82059 100644
--- a/dev/posts/2021/2021-06-13-week-2-antriksh.html
+++ b/dev/posts/2021/2021-06-13-week-2-antriksh.html
@@ -5,7 +5,7 @@
- Week #2: Feature additions in UI and IO modules — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Week #2: Feature additions in UI and IO modules — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,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 3a3f5699f..93f55a3fc 100644
--- a/dev/posts/2021/2021-06-14-week-2-sajag.html
+++ b/dev/posts/2021/2021-06-14-week-2-sajag.html
@@ -5,7 +5,7 @@
- First week of coding! — FURY 0.10.0.dev192+g2551b7f4 documentation
+ First week of coding! — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,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 aeb9cf4c2..a123bf043 100644
--- a/dev/posts/2021/2021-06-21-gsoc-devmessias-3.html
+++ b/dev/posts/2021/2021-06-21-gsoc-devmessias-3.html
@@ -5,7 +5,7 @@
- Weekly Check-In #3 — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Weekly Check-In #3 — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,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 3d6faff1b..25f9f25ff 100644
--- a/dev/posts/2021/2021-06-21-week-3-antriksh.html
+++ b/dev/posts/2021/2021-06-21-week-3-antriksh.html
@@ -5,7 +5,7 @@
- Week #3: Adapting GridLayout to work with UI — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Week #3: Adapting GridLayout to work with UI — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,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 86f73a202..c7375dcfa 100644
--- a/dev/posts/2021/2021-06-21-week-3-sajag.html
+++ b/dev/posts/2021/2021-06-21-week-3-sajag.html
@@ -5,7 +5,7 @@
- Second week of coding! — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Second week of coding! — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,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 f2d4708bf..ece2c259d 100644
--- a/dev/posts/2021/2021-06-28-gsoc-devmessias-4.html
+++ b/dev/posts/2021/2021-06-28-gsoc-devmessias-4.html
@@ -5,7 +5,7 @@
- SOLID, monkey patching a python issue and network visualization through WebRTC — FURY 0.10.0.dev192+g2551b7f4 documentation
+ SOLID, monkey patching a python issue and network visualization through WebRTC — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,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 16dca9c7a..d6d4c5655 100644
--- a/dev/posts/2021/2021-06-28-week-4-antriksh.html
+++ b/dev/posts/2021/2021-06-28-week-4-antriksh.html
@@ -5,7 +5,7 @@
- Week #4: Adding Tree UI to the UI module — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Week #4: Adding Tree UI to the UI module — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,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 57c661c1d..cba9191f5 100644
--- a/dev/posts/2021/2021-06-28-week-4-sajag.html
+++ b/dev/posts/2021/2021-06-28-week-4-sajag.html
@@ -5,7 +5,7 @@
- Third week of coding! — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Third week of coding! — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,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 09125c077..0baff628d 100644
--- a/dev/posts/2021/2021-07-05-gsoc-devmessias-5.html
+++ b/dev/posts/2021/2021-07-05-gsoc-devmessias-5.html
@@ -5,7 +5,7 @@
- Weekly Check-In #5 — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Weekly Check-In #5 — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,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 c89e719fc..76b17744d 100644
--- a/dev/posts/2021/2021-07-05-week-5-antriksh.html
+++ b/dev/posts/2021/2021-07-05-week-5-antriksh.html
@@ -5,7 +5,7 @@
- Week #5: Rebasing all PRs w.r.t the UI restructuring, Tree2D, Bug Fixes — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Week #5: Rebasing all PRs w.r.t the UI restructuring, Tree2D, Bug Fixes — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,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 b2cd9526a..c0413e970 100644
--- a/dev/posts/2021/2021-07-05-week-5-sajag.html
+++ b/dev/posts/2021/2021-07-05-week-5-sajag.html
@@ -5,7 +5,7 @@
- Fourth week of coding! — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Fourth week of coding! — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,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 4fa506bc3..f6d3ed3db 100644
--- a/dev/posts/2021/2021-07-12-gsoc-devmessias-6.html
+++ b/dev/posts/2021/2021-07-12-gsoc-devmessias-6.html
@@ -5,7 +5,7 @@
- Network layout algorithms using IPC — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Network layout algorithms using IPC — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,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 64fdebf62..4209debd7 100644
--- a/dev/posts/2021/2021-07-12-week-6-antriksh.html
+++ b/dev/posts/2021/2021-07-12-week-6-antriksh.html
@@ -5,7 +5,7 @@
- Week #6: Bug fixes, Working on Tree2D UI — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Week #6: Bug fixes, Working on Tree2D UI — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,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 f53fe84f6..63647f2e8 100644
--- a/dev/posts/2021/2021-07-12-week-6-sajag.html
+++ b/dev/posts/2021/2021-07-12-week-6-sajag.html
@@ -5,7 +5,7 @@
- Fifth week of coding! — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Fifth week of coding! — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,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 f1b79dfee..6a35fd71a 100644
--- a/dev/posts/2021/2021-07-19-gsoc-devmessias-7.html
+++ b/dev/posts/2021/2021-07-19-gsoc-devmessias-7.html
@@ -5,7 +5,7 @@
- Weekly Check-In #7 — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Weekly Check-In #7 — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,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 5c90962b4..2ba9a2d23 100644
--- a/dev/posts/2021/2021-07-19-week-7-antriksh.html
+++ b/dev/posts/2021/2021-07-19-week-7-antriksh.html
@@ -5,7 +5,7 @@
- Week #7: Finalizing the stalling PRs, finishing up Tree2D UI. — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Week #7: Finalizing the stalling PRs, finishing up Tree2D UI. — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,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 71a9bb44f..266e0b7ca 100644
--- a/dev/posts/2021/2021-07-19-week-7-sajag.html
+++ b/dev/posts/2021/2021-07-19-week-7-sajag.html
@@ -5,7 +5,7 @@
- Sixth week of coding! — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Sixth week of coding! — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,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 294d5fc1f..54d36c0e5 100644
--- a/dev/posts/2021/2021-07-26-gsoc-devmessias-8.html
+++ b/dev/posts/2021/2021-07-26-gsoc-devmessias-8.html
@@ -5,7 +5,7 @@
- Weekly Check-In #8 — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Weekly Check-In #8 — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,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 a94bc3cb2..7a811923c 100644
--- a/dev/posts/2021/2021-07-26-week-8-antriksh.html
+++ b/dev/posts/2021/2021-07-26-week-8-antriksh.html
@@ -5,7 +5,7 @@
- Week #8: Code Cleanup, Finishing up open PRs, Continuing work on Tree2D — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Week #8: Code Cleanup, Finishing up open PRs, Continuing work on Tree2D — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,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 82490b218..06c3bb74e 100644
--- a/dev/posts/2021/2021-07-26-week-8-sajag.html
+++ b/dev/posts/2021/2021-07-26-week-8-sajag.html
@@ -5,7 +5,7 @@
- Seventh week of coding! — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Seventh week of coding! — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,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 6dc59b5b2..fca6e71b0 100644
--- a/dev/posts/2021/2021-08-02-gsoc-devmessias-9.html
+++ b/dev/posts/2021/2021-08-02-gsoc-devmessias-9.html
@@ -5,7 +5,7 @@
- Week #09: Sphinx custom summary — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Week #09: Sphinx custom summary — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,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 ef80a5421..7f449b233 100644
--- a/dev/posts/2021/2021-08-02-week-9-antriksh.html
+++ b/dev/posts/2021/2021-08-02-week-9-antriksh.html
@@ -5,7 +5,7 @@
- Week #9: More Layouts! — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Week #9: More Layouts! — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,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 ed9fad76c..dbb01f994 100644
--- a/dev/posts/2021/2021-08-02-week-9-sajag.html
+++ b/dev/posts/2021/2021-08-02-week-9-sajag.html
@@ -5,7 +5,7 @@
- Eighth coding week! — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Eighth coding week! — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,7 @@
-
+
diff --git a/dev/posts/2021/2021-08-03-release-announcement.html b/dev/posts/2021/2021-08-03-release-announcement.html
index b3e9c603c..e676d564e 100644
--- a/dev/posts/2021/2021-08-03-release-announcement.html
+++ b/dev/posts/2021/2021-08-03-release-announcement.html
@@ -5,7 +5,7 @@
- FURY 0.7.0 Released — FURY 0.10.0.dev192+g2551b7f4 documentation
+ FURY 0.7.0 Released — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,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 251a2e29e..520749d5e 100644
--- a/dev/posts/2021/2021-08-09-week-10-antriksh.html
+++ b/dev/posts/2021/2021-08-09-week-10-antriksh.html
@@ -5,7 +5,7 @@
- Week#10: Accordion UI, Support for sprite sheet animations — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Week#10: Accordion UI, Support for sprite sheet animations — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,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 114ceb48b..ac6229899 100644
--- a/dev/posts/2021/2021-08-09-week-10-sajag.html
+++ b/dev/posts/2021/2021-08-09-week-10-sajag.html
@@ -5,7 +5,7 @@
- Ninth coding week! — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Ninth coding week! — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,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 a9830ad62..568fef160 100644
--- a/dev/posts/2021/2021-08-16-week-11-antriksh.html
+++ b/dev/posts/2021/2021-08-16-week-11-antriksh.html
@@ -5,7 +5,7 @@
- Week #11: Finalizing open Pull Requests — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Week #11: Finalizing open Pull Requests — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,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 63cc58e9d..e628c88a8 100644
--- a/dev/posts/2021/2021-08-16-week-11-sajag.html
+++ b/dev/posts/2021/2021-08-16-week-11-sajag.html
@@ -5,7 +5,7 @@
- Tenth coding week! — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Tenth coding week! — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,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 e39d2baf1..0410ad00d 100644
--- a/dev/posts/2021/2021-08-23-final-work-antriksh.html
+++ b/dev/posts/2021/2021-08-23-final-work-antriksh.html
@@ -5,7 +5,7 @@
- Google Summer of Code Final Work Product — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Google Summer of Code Final Work Product — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,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 ae4df2ffc..d50913c7f 100644
--- a/dev/posts/2021/2021-08-23-final-work-sajag.html
+++ b/dev/posts/2021/2021-08-23-final-work-sajag.html
@@ -5,7 +5,7 @@
- Google Summer of Code Final Work Product — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Google Summer of Code Final Work Product — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,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 7654cd8a8..dadb5ce51 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
@@ -5,7 +5,7 @@
- Google Summer of Code 2021 - Final Report - Bruno Messias — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Google Summer of Code 2021 - Final Report - Bruno Messias — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,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 cac625db3..b533d5aae 100644
--- a/dev/posts/2021/2021-09-08-gsoc-devmessias-10.html
+++ b/dev/posts/2021/2021-09-08-gsoc-devmessias-10.html
@@ -5,7 +5,7 @@
- Week #10: SDF Fonts — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Week #10: SDF Fonts — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,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 c148b0d9a..37936a2fe 100644
--- a/dev/posts/2021/2021-16-08-gsoc-devmessias-11.html
+++ b/dev/posts/2021/2021-16-08-gsoc-devmessias-11.html
@@ -5,7 +5,7 @@
- Week #11: Removing the flickering effect — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Week #11: Removing the flickering effect — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,7 @@
-
+
diff --git a/dev/posts/2022/2022-01-31-release-announcement.html b/dev/posts/2022/2022-01-31-release-announcement.html
index c1001848d..7ee4b76b7 100644
--- a/dev/posts/2022/2022-01-31-release-announcement.html
+++ b/dev/posts/2022/2022-01-31-release-announcement.html
@@ -5,7 +5,7 @@
- FURY 0.8.0 Released — FURY 0.10.0.dev192+g2551b7f4 documentation
+ FURY 0.8.0 Released — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,7 @@
-
+
diff --git a/dev/posts/2022/2022-02-01-gsoc.html b/dev/posts/2022/2022-02-01-gsoc.html
index fe75d0839..8e1e87f52 100644
--- a/dev/posts/2022/2022-02-01-gsoc.html
+++ b/dev/posts/2022/2022-02-01-gsoc.html
@@ -5,7 +5,7 @@
- Contribute to FURY via Google Summer of Code 2022 — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Contribute to FURY via Google Summer of Code 2022 — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,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 7c953d41a..3a099a029 100644
--- a/dev/posts/2022/2022-05-23-first-post-mohamed.html
+++ b/dev/posts/2022/2022-05-23-first-post-mohamed.html
@@ -5,7 +5,7 @@
- My journey till getting accepted into GSoC22 — FURY 0.10.0.dev192+g2551b7f4 documentation
+ My journey till getting accepted into GSoC22 — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,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 0e93a5f67..418bd8252 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
@@ -5,7 +5,7 @@
- My Journey to GSoC 2022 — FURY 0.10.0.dev192+g2551b7f4 documentation
+ My Journey to GSoC 2022 — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,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 89f5c7060..be122fb98 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
@@ -5,7 +5,7 @@
- Pre-GSoC Journey — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Pre-GSoC Journey — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,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 a0a63889e..c53916a46 100644
--- a/dev/posts/2022/2022-06-08-week-1-mohamed.html
+++ b/dev/posts/2022/2022-06-08-week-1-mohamed.html
@@ -5,7 +5,7 @@
- Week 1: Implementing a basic Keyframe animation API — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Week 1: Implementing a basic Keyframe animation API — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,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 9a7b29b92..138ce5669 100644
--- a/dev/posts/2022/2022-06-08-week-1-praneeth.html
+++ b/dev/posts/2022/2022-06-08-week-1-praneeth.html
@@ -5,7 +5,7 @@
- Week 1 - Laying the Foundation of DrawPanel UI — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Week 1 - Laying the Foundation of DrawPanel UI — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,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 ca9c1d8f7..89921ad9d 100644
--- a/dev/posts/2022/2022-06-15-week-2-praneeth.html
+++ b/dev/posts/2022/2022-06-15-week-2-praneeth.html
@@ -5,7 +5,7 @@
- Week 2 - Improving DrawPanel UI — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Week 2 - Improving DrawPanel UI — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,7 @@
-
+
diff --git a/dev/posts/2022/2022-06-20-week1-shivam.html b/dev/posts/2022/2022-06-20-week1-shivam.html
index 2ebee6f6d..1296e4c05 100644
--- a/dev/posts/2022/2022-06-20-week1-shivam.html
+++ b/dev/posts/2022/2022-06-20-week1-shivam.html
@@ -5,7 +5,7 @@
- Week 1 - A Basic glTF Importer — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Week 1 - A Basic glTF Importer — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,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 950aed972..e114f7c4d 100644
--- a/dev/posts/2022/2022-06-22-week-3-praneeth.html
+++ b/dev/posts/2022/2022-06-22-week-3-praneeth.html
@@ -5,7 +5,7 @@
- Week 3 - Dealing with Problems — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Week 3 - Dealing with Problems — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,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 8cb4cf43a..8a3619197 100644
--- a/dev/posts/2022/2022-06-28-week-2-mohamed.html
+++ b/dev/posts/2022/2022-06-28-week-2-mohamed.html
@@ -5,7 +5,7 @@
- Week 2: Implementing non-linear and color interpolators — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Week 2: Implementing non-linear and color interpolators — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,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 c4be1970d..31de021ea 100644
--- a/dev/posts/2022/2022-06-29-week-4-praneeth.html
+++ b/dev/posts/2022/2022-06-29-week-4-praneeth.html
@@ -5,7 +5,7 @@
- Week 4 - Fixing the Clamping Issue — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Week 4 - Fixing the Clamping Issue — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,7 @@
-
+
diff --git a/dev/posts/2022/2022-06-29-week2-shivam.html b/dev/posts/2022/2022-06-29-week2-shivam.html
index 4bd04111b..4ece2d1c9 100644
--- a/dev/posts/2022/2022-06-29-week2-shivam.html
+++ b/dev/posts/2022/2022-06-29-week2-shivam.html
@@ -5,7 +5,7 @@
- Week 2 - Improving Fetcher and Exporting glTF — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Week 2 - Improving Fetcher and Exporting glTF — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,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 9df68e9ba..3a52f1971 100644
--- a/dev/posts/2022/2022-07-04-week-3-mohamed.html
+++ b/dev/posts/2022/2022-07-04-week-3-mohamed.html
@@ -5,7 +5,7 @@
- Week 3: Redesigning the API, Implementing cubic Bezier Interpolator, and making progress on the GPU side! — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Week 3: Redesigning the API, Implementing cubic Bezier Interpolator, and making progress on the GPU side! — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,7 @@
-
+
diff --git a/dev/posts/2022/2022-07-04-week3-shivam.html b/dev/posts/2022/2022-07-04-week3-shivam.html
index 19c5fcec4..7aa9b63f0 100644
--- a/dev/posts/2022/2022-07-04-week3-shivam.html
+++ b/dev/posts/2022/2022-07-04-week3-shivam.html
@@ -5,7 +5,7 @@
- Week 3 - Fixing fetcher, adding tests and docs — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Week 3 - Fixing fetcher, adding tests and docs — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,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 167cd1cb8..8be5f1e47 100644
--- a/dev/posts/2022/2022-07-06-week-5-praneeth.html
+++ b/dev/posts/2022/2022-07-06-week-5-praneeth.html
@@ -5,7 +5,7 @@
- Week 5 - Working on new features — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Week 5 - Working on new features — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,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 26ad97eb1..1fa82af6b 100644
--- a/dev/posts/2022/2022-07-11-week-4-mohamed.html
+++ b/dev/posts/2022/2022-07-11-week-4-mohamed.html
@@ -5,7 +5,7 @@
- Week 4: Camera animation, interpolation in GLSL, and a single Timeline! — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Week 4: Camera animation, interpolation in GLSL, and a single Timeline! — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,7 @@
-
+
diff --git a/dev/posts/2022/2022-07-12-week4-shivam.html b/dev/posts/2022/2022-07-12-week4-shivam.html
index 07de5cb33..6adf8dbac 100644
--- a/dev/posts/2022/2022-07-12-week4-shivam.html
+++ b/dev/posts/2022/2022-07-12-week4-shivam.html
@@ -5,7 +5,7 @@
- Week 4 - Finalizing glTF loader — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Week 4 - Finalizing glTF loader — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,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 3a8d53e5f..bcc34f30d 100644
--- a/dev/posts/2022/2022-07-13-week-6-praneeth.html
+++ b/dev/posts/2022/2022-07-13-week-6-praneeth.html
@@ -5,7 +5,7 @@
- Week 6 - Supporting Rotation of the Shapes from the Center — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Week 6 - Supporting Rotation of the Shapes from the Center — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,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 5e5af50cd..e1a26c736 100644
--- a/dev/posts/2022/2022-07-19-week-5-mohamed.html
+++ b/dev/posts/2022/2022-07-19-week-5-mohamed.html
@@ -5,7 +5,7 @@
- Week 5: Slerp implementation, documenting the Timeline, and adding unit tests — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Week 5: Slerp implementation, documenting the Timeline, and adding unit tests — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,7 @@
-
+
diff --git a/dev/posts/2022/2022-07-19-week5-shivam.html b/dev/posts/2022/2022-07-19-week5-shivam.html
index f00fb927f..cad4c90a2 100644
--- a/dev/posts/2022/2022-07-19-week5-shivam.html
+++ b/dev/posts/2022/2022-07-19-week5-shivam.html
@@ -5,7 +5,7 @@
- Week 5 - Creating PR for glTF exporter and fixing the loader — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Week 5 - Creating PR for glTF exporter and fixing the loader — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,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 fb8c37a35..940de4716 100644
--- a/dev/posts/2022/2022-07-20-week-7-praneeth.html
+++ b/dev/posts/2022/2022-07-20-week-7-praneeth.html
@@ -5,7 +5,7 @@
- Week 7 - Working on Rotation PR and Trying Freehand Drawing — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Week 7 - Working on Rotation PR and Trying Freehand Drawing — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,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 fc9b9a07b..82fda1228 100644
--- a/dev/posts/2022/2022-07-25-week-6-mohamed.html
+++ b/dev/posts/2022/2022-07-25-week-6-mohamed.html
@@ -5,7 +5,7 @@
- Week 6: Fixing the Timeline issues and equipping it with more features — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Week 6: Fixing the Timeline issues and equipping it with more features — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,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 896f63732..d66dcd1b5 100644
--- a/dev/posts/2022/2022-07-25-week-6-shivam.html
+++ b/dev/posts/2022/2022-07-25-week-6-shivam.html
@@ -5,7 +5,7 @@
- Week 6 - Extracting the animation data — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Week 6 - Extracting the animation data — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,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 65c11ffef..c4f321257 100644
--- a/dev/posts/2022/2022-07-27-week-8-praneeth.html
+++ b/dev/posts/2022/2022-07-27-week-8-praneeth.html
@@ -5,7 +5,7 @@
- Week 8 - Working on the polyline feature — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Week 8 - Working on the polyline feature — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,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 4a3e686c9..8e58b4e72 100644
--- a/dev/posts/2022/2022-08-01-week-7-mohamed.html
+++ b/dev/posts/2022/2022-08-01-week-7-mohamed.html
@@ -5,7 +5,7 @@
- Week 7: Billboard spheres and implementing interpolators using closures — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Week 7: Billboard spheres and implementing interpolators using closures — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,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 576074416..a53546f97 100644
--- a/dev/posts/2022/2022-08-01-week-7-shivam.html
+++ b/dev/posts/2022/2022-08-01-week-7-shivam.html
@@ -5,7 +5,7 @@
- Week 7 - Fixing bugs in animations — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Week 7 - Fixing bugs in animations — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,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 de1f20ce9..760f7e9a7 100644
--- a/dev/posts/2022/2022-08-03-week-9-praneeth.html
+++ b/dev/posts/2022/2022-08-03-week-9-praneeth.html
@@ -5,7 +5,7 @@
- Week 9 - Grouping and Transforming Shapes — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Week 9 - Grouping and Transforming Shapes — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,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 c170dd9f9..b299b4432 100644
--- a/dev/posts/2022/2022-08-09-week-08-shivam.html
+++ b/dev/posts/2022/2022-08-09-week-08-shivam.html
@@ -5,7 +5,7 @@
- Week 8 - Fixing animation bugs — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Week 8 - Fixing animation bugs — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,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 4f77d9d77..e99393880 100644
--- a/dev/posts/2022/2022-08-09-week-8-mohamed.html
+++ b/dev/posts/2022/2022-08-09-week-8-mohamed.html
@@ -5,7 +5,7 @@
- Week 8: Back to the shader-based version of the Timeline — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Week 8: Back to the shader-based version of the Timeline — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,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 f49292655..e26c3c5fb 100644
--- a/dev/posts/2022/2022-08-10-week-10-praneeth.html
+++ b/dev/posts/2022/2022-08-10-week-10-praneeth.html
@@ -5,7 +5,7 @@
- Week 10 - Understanding Codes and Playing with Animation — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Week 10 - Understanding Codes and Playing with Animation — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,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 f26971803..430bd0346 100644
--- a/dev/posts/2022/2022-08-16-week-9-mohamed.html
+++ b/dev/posts/2022/2022-08-16-week-9-mohamed.html
@@ -5,7 +5,7 @@
- Week 9: Animating primitives of the same actor — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Week 9: Animating primitives of the same actor — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,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 0af201c3e..64a61b59f 100644
--- a/dev/posts/2022/2022-08-17-week-09-shivam.html
+++ b/dev/posts/2022/2022-08-17-week-09-shivam.html
@@ -5,7 +5,7 @@
- Week 9 - First working skeletal animation prototype — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Week 9 - First working skeletal animation prototype — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,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 5affb86f1..7f02d5895 100644
--- a/dev/posts/2022/2022-08-17-week-11-praneeth.html
+++ b/dev/posts/2022/2022-08-17-week-11-praneeth.html
@@ -5,7 +5,7 @@
- Week 11 - Creating a base for Freehand Drawing — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Week 11 - Creating a base for Freehand Drawing — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,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 7ae23eb9e..e203b1635 100644
--- a/dev/posts/2022/2022-08-23-week-10-mohamed.html
+++ b/dev/posts/2022/2022-08-23-week-10-mohamed.html
@@ -5,7 +5,7 @@
- Week 10: Supporting hierarchical animating — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Week 10: Supporting hierarchical animating — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,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 0c453fd3e..5dd0dd20d 100644
--- a/dev/posts/2022/2022-08-24-week-12-praneeth.html
+++ b/dev/posts/2022/2022-08-24-week-12-praneeth.html
@@ -5,7 +5,7 @@
- Week 12 - Fixing translating issues and updating tests — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Week 12 - Fixing translating issues and updating tests — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,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 5ba8b4527..426bd945c 100644
--- a/dev/posts/2022/2022-08-25-week-10-shivam.html
+++ b/dev/posts/2022/2022-08-25-week-10-shivam.html
@@ -5,7 +5,7 @@
- Week 10 - Multi-node skinning support — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Week 10 - Multi-node skinning support — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,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 f8b8e339e..7e2ea9023 100644
--- a/dev/posts/2022/2022-08-30-week-11-mohamed.html
+++ b/dev/posts/2022/2022-08-30-week-11-mohamed.html
@@ -5,7 +5,7 @@
- Week 11: Improving tutorials a little — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Week 11: Improving tutorials a little — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,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 5d161fb90..cb1734de6 100644
--- a/dev/posts/2022/2022-08-31-week-11-shivam.html
+++ b/dev/posts/2022/2022-08-31-week-11-shivam.html
@@ -5,7 +5,7 @@
- Week 11 - Multiple transformations support and adding tests — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Week 11 - Multiple transformations support and adding tests — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,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 4c4d5fb41..a1f1ca94b 100644
--- a/dev/posts/2022/2022-08-31-week-13-praneeth.html
+++ b/dev/posts/2022/2022-08-31-week-13-praneeth.html
@@ -5,7 +5,7 @@
- Week 13 - Separating tests and fixing bugs — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Week 13 - Separating tests and fixing bugs — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,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 0a5570fca..c7cec1fe9 100644
--- a/dev/posts/2022/2022-09-07-week-14-praneeth.html
+++ b/dev/posts/2022/2022-09-07-week-14-praneeth.html
@@ -5,7 +5,7 @@
- Week 14 - Updating DrawPanel architecture — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Week 14 - Updating DrawPanel architecture — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,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 eea62beb2..ac2da844f 100644
--- a/dev/posts/2022/2022-09-08-week-12-shivam.html
+++ b/dev/posts/2022/2022-09-08-week-12-shivam.html
@@ -5,7 +5,7 @@
- Week 12 - Adding skeleton as actors and fix global transformation — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Week 12 - Adding skeleton as actors and fix global transformation — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,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 b0569d2e1..c4f9158d0 100644
--- a/dev/posts/2022/2022-09-14-week-15-praneeth.html
+++ b/dev/posts/2022/2022-09-14-week-15-praneeth.html
@@ -5,7 +5,7 @@
- Week 15 - Highlighting DrawShapes — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Week 15 - Highlighting DrawShapes — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,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 cea955a92..78e99776f 100644
--- a/dev/posts/2022/2022-09-15-week-13-blog.html
+++ b/dev/posts/2022/2022-09-15-week-13-blog.html
@@ -5,7 +5,7 @@
- Week 13 - Multi-bone skeletal animation support — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Week 13 - Multi-bone skeletal animation support — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,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 64479742b..1221d80a2 100644
--- a/dev/posts/2022/2022-09-20-week-13-mohamed.html
+++ b/dev/posts/2022/2022-09-20-week-13-mohamed.html
@@ -5,7 +5,7 @@
- Week 13: Keyframes animation is now a bit easier in FURY — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Week 13: Keyframes animation is now a bit easier in FURY — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,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 d60741b10..bd1b838a0 100644
--- a/dev/posts/2022/2022-09-21-week-16-praneeth.html
+++ b/dev/posts/2022/2022-09-21-week-16-praneeth.html
@@ -5,7 +5,7 @@
- Week 16 - Working with Rotations! — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Week 16 - Working with Rotations! — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,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 44ac62eb8..f482ce2ab 100644
--- a/dev/posts/2022/2022-09-28-week-14-mohamed.html
+++ b/dev/posts/2022/2022-09-28-week-14-mohamed.html
@@ -5,7 +5,7 @@
- Week 14: Keyframes animation is now a bit easier in FURY — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Week 14: Keyframes animation is now a bit easier in FURY — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,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 f61d2f1b2..1cd2e93b9 100644
--- a/dev/posts/2022/2022-09-28-week-14-shivam.html
+++ b/dev/posts/2022/2022-09-28-week-14-shivam.html
@@ -5,7 +5,7 @@
- Week 14 - Morphing is here! — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Week 14 - Morphing is here! — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,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 65fde41f0..b0dc9dedd 100644
--- a/dev/posts/2022/2022-09-7-week-12-mohamed.html
+++ b/dev/posts/2022/2022-09-7-week-12-mohamed.html
@@ -5,7 +5,7 @@
- Week 12: Adding new tutorials — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Week 12: Adding new tutorials — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,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 6001d9715..955952d05 100644
--- a/dev/posts/2023/2023-01-24-final-report-praneeth.html
+++ b/dev/posts/2023/2023-01-24-final-report-praneeth.html
@@ -5,7 +5,7 @@
- Google Summer of Code Final Work Product — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Google Summer of Code Final Work Product — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,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 bab04b02b..921eb4b0d 100644
--- a/dev/posts/2023/2023-01-29-final-report-mohamed.html
+++ b/dev/posts/2023/2023-01-29-final-report-mohamed.html
@@ -5,7 +5,7 @@
- Google Summer of Code Final Work Product — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Google Summer of Code Final Work Product — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,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 509b82528..a2f0ea29b 100644
--- a/dev/posts/2023/2023-01-29-final-report-shivam.html
+++ b/dev/posts/2023/2023-01-29-final-report-shivam.html
@@ -5,7 +5,7 @@
- Google Summer of Code Final Work Product — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Google Summer of Code Final Work Product — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,7 @@
-
+
diff --git a/dev/posts/2023/2023-02-01-gsoc.html b/dev/posts/2023/2023-02-01-gsoc.html
index 9b5d56dfc..6a29884dd 100644
--- a/dev/posts/2023/2023-02-01-gsoc.html
+++ b/dev/posts/2023/2023-02-01-gsoc.html
@@ -5,7 +5,7 @@
- Contribute to FURY via Google Summer of Code 2023 — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Contribute to FURY via Google Summer of Code 2023 — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,7 @@
-
+
diff --git a/dev/posts/2023/2023-04-14-release-announcement.html b/dev/posts/2023/2023-04-14-release-announcement.html
index a08d5c287..6d6ab2bf8 100644
--- a/dev/posts/2023/2023-04-14-release-announcement.html
+++ b/dev/posts/2023/2023-04-14-release-announcement.html
@@ -5,7 +5,7 @@
- FURY 0.9.0 Released — FURY 0.10.0.dev192+g2551b7f4 documentation
+ FURY 0.9.0 Released — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,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 9ac7b8193..37a33e281 100644
--- a/dev/posts/2023/2023-06-02-week-0-praneeth.html
+++ b/dev/posts/2023/2023-06-02-week-0-praneeth.html
@@ -5,7 +5,7 @@
- Week 0: Community Bounding Period — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Week 0: Community Bounding Period — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,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 1ec8c08ff..2b180b41e 100644
--- a/dev/posts/2023/2023-06-02-week-0-tvcastillod.html
+++ b/dev/posts/2023/2023-06-02-week-0-tvcastillod.html
@@ -5,7 +5,7 @@
- Week 0: Community Bounding Period — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Week 0: Community Bounding Period — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,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 ee9421949..59fea9184 100644
--- a/dev/posts/2023/2023-06-03-week-1-praneeth.html
+++ b/dev/posts/2023/2023-06-03-week-1-praneeth.html
@@ -5,7 +5,7 @@
- Week 1: Working with SpinBox and TextBox Enhancements — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Week 1: Working with SpinBox and TextBox Enhancements — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,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 6dcdf731e..184d27257 100644
--- a/dev/posts/2023/2023-06-05-week-1-joaodellagli.html
+++ b/dev/posts/2023/2023-06-05-week-1-joaodellagli.html
@@ -5,7 +5,7 @@
- The FBO Saga - Week 1 — FURY 0.10.0.dev192+g2551b7f4 documentation
+ The FBO Saga - Week 1 — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,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 f9f51ab04..78fad5947 100644
--- a/dev/posts/2023/2023-06-05-week-1-tvcastillod.html
+++ b/dev/posts/2023/2023-06-05-week-1-tvcastillod.html
@@ -5,7 +5,7 @@
- Week 1: Ellipsoid actor implemented with SDF — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Week 1: Ellipsoid actor implemented with SDF — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,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 6e83f92b1..fff1252d8 100644
--- a/dev/posts/2023/2023-06-11-week-2-praneeth.html
+++ b/dev/posts/2023/2023-06-11-week-2-praneeth.html
@@ -5,7 +5,7 @@
- Week 2: Tackling Text Justification and Icon Flaw Issues — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Week 2: Tackling Text Justification and Icon Flaw Issues — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,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 f58cd4746..04075fa12 100644
--- a/dev/posts/2023/2023-06-12-week-2-joaodellagli.html
+++ b/dev/posts/2023/2023-06-12-week-2-joaodellagli.html
@@ -5,7 +5,7 @@
- Week 2: The Importance of (good) Documentation — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Week 2: The Importance of (good) Documentation — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,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 51d3d9ebb..81c1095b7 100644
--- a/dev/posts/2023/2023-06-12-week-2-tvcastillod.html
+++ b/dev/posts/2023/2023-06-12-week-2-tvcastillod.html
@@ -5,7 +5,7 @@
- Week 2: Making adjustments to the Ellipsoid Actor — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Week 2: Making adjustments to the Ellipsoid Actor — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,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 ee41148c0..3bfc9fe29 100644
--- a/dev/posts/2023/2023-06-17-week-3-praneeth.html
+++ b/dev/posts/2023/2023-06-17-week-3-praneeth.html
@@ -5,7 +5,7 @@
- Week 3: Resolving Combobox Icon Flaw and TextBox Justification — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Week 3: Resolving Combobox Icon Flaw and TextBox Justification — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,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 51161388d..d943cfaba 100644
--- a/dev/posts/2023/2023-06-19-week-3-joaodellagli.html
+++ b/dev/posts/2023/2023-06-19-week-3-joaodellagli.html
@@ -5,7 +5,7 @@
- Week 3: Watch Your Expectations — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Week 3: Watch Your Expectations — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,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 935b9146d..18ddb1b9f 100644
--- a/dev/posts/2023/2023-06-19-week-3-tvcastillod.html
+++ b/dev/posts/2023/2023-06-19-week-3-tvcastillod.html
@@ -5,7 +5,7 @@
- Week 3: Working on uncertainty and details of the first PR — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Week 3: Working on uncertainty and details of the first PR — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,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 c86845ca6..752f8faa4 100644
--- a/dev/posts/2023/2023-06-24-week-4-praneeth.html
+++ b/dev/posts/2023/2023-06-24-week-4-praneeth.html
@@ -5,7 +5,7 @@
- Week 4: Exam Preparations and Reviewing — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Week 4: Exam Preparations and Reviewing — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,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 a3e59b57b..b298f639f 100644
--- a/dev/posts/2023/2023-06-26-week-4-joaodellagli.html
+++ b/dev/posts/2023/2023-06-26-week-4-joaodellagli.html
@@ -5,7 +5,7 @@
- Week 4: Nothing is Ever Lost — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Week 4: Nothing is Ever Lost — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,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 2a09798df..c2df958df 100644
--- a/dev/posts/2023/2023-06-27-week-4-tvcastillod.html
+++ b/dev/posts/2023/2023-06-27-week-4-tvcastillod.html
@@ -5,7 +5,7 @@
- Week 4: First draft of the DTI uncertainty visualization — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Week 4: First draft of the DTI uncertainty visualization — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,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 6fef7ce46..e2efe1bbf 100644
--- a/dev/posts/2023/2023-07-01-week-5-praneeth.html
+++ b/dev/posts/2023/2023-07-01-week-5-praneeth.html
@@ -5,7 +5,7 @@
- Week 5: Trying out PRs and Planning Ahead — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Week 5: Trying out PRs and Planning Ahead — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,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 285b95870..6f57d7c44 100644
--- a/dev/posts/2023/2023-07-03-week-5-joaodellagli.html
+++ b/dev/posts/2023/2023-07-03-week-5-joaodellagli.html
@@ -5,7 +5,7 @@
- Week 5: All Roads Lead to Rome — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Week 5: All Roads Lead to Rome — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,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 0b0c5c420..8fd150d20 100644
--- a/dev/posts/2023/2023-07-03-week-5-tvcastillod.html
+++ b/dev/posts/2023/2023-07-03-week-5-tvcastillod.html
@@ -5,7 +5,7 @@
- Week 5: Preparing the data for the Ellipsoid tutorial — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Week 5: Preparing the data for the Ellipsoid tutorial — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,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 34ac26d24..88898e318 100644
--- a/dev/posts/2023/2023-07-08-week-6-praneeth.html
+++ b/dev/posts/2023/2023-07-08-week-6-praneeth.html
@@ -5,7 +5,7 @@
- Week 6: BoundingBox for TextBlock2D! — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Week 6: BoundingBox for TextBlock2D! — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,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 b844160b1..78e8ebbe1 100644
--- a/dev/posts/2023/2023-07-10-week-6-joaodellagli.html
+++ b/dev/posts/2023/2023-07-10-week-6-joaodellagli.html
@@ -5,7 +5,7 @@
- Week 6: Things are Starting to Build Up — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Week 6: Things are Starting to Build Up — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,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 f8d206806..2ac43da04 100644
--- a/dev/posts/2023/2023-07-10-week-6-tvcastillod.html
+++ b/dev/posts/2023/2023-07-10-week-6-tvcastillod.html
@@ -5,7 +5,7 @@
- Week 6: First draft of the Ellipsoid tutorial — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Week 6: First draft of the Ellipsoid tutorial — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,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 3868a5487..9c4693eae 100644
--- a/dev/posts/2023/2023-07-15-week-7-praneeth.html
+++ b/dev/posts/2023/2023-07-15-week-7-praneeth.html
@@ -5,7 +5,7 @@
- Week 7: Sowing the seeds for TreeUI — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Week 7: Sowing the seeds for TreeUI — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,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 80034b192..c7f4de9a5 100644
--- a/dev/posts/2023/2023-07-17-week-7-joaodellagli.html
+++ b/dev/posts/2023/2023-07-17-week-7-joaodellagli.html
@@ -5,7 +5,7 @@
- Week 7: Experimentation Done — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Week 7: Experimentation Done — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,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 61f2f3b08..c2c3dc64f 100644
--- a/dev/posts/2023/2023-07-17-week-7-tvcastillod.html
+++ b/dev/posts/2023/2023-07-17-week-7-tvcastillod.html
@@ -5,7 +5,7 @@
- Week 7: Adjustments on the Uncertainty Cones visualization — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Week 7: Adjustments on the Uncertainty Cones visualization — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,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 586828031..4c112c7d5 100644
--- a/dev/posts/2023/2023-07-22-week-8-praneeth.html
+++ b/dev/posts/2023/2023-07-22-week-8-praneeth.html
@@ -5,7 +5,7 @@
- Week 8: Another week with TextBlockUI — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Week 8: Another week with TextBlockUI — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,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 218eef8f9..d97822e9d 100644
--- a/dev/posts/2023/2023-07-24-week-8-joaodellagli.html
+++ b/dev/posts/2023/2023-07-24-week-8-joaodellagli.html
@@ -5,7 +5,7 @@
- Week 8: The Birth of a Versatile API — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Week 8: The Birth of a Versatile API — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,7 @@
-
+
diff --git a/dev/posts/2023/29-05-2023-week-0-joaodellagli.html b/dev/posts/2023/29-05-2023-week-0-joaodellagli.html
index 96c67daff..9fdae4056 100644
--- a/dev/posts/2023/29-05-2023-week-0-joaodellagli.html
+++ b/dev/posts/2023/29-05-2023-week-0-joaodellagli.html
@@ -5,7 +5,7 @@
- The Beginning of Everything - Week 0 — FURY 0.10.0.dev192+g2551b7f4 documentation
+ The Beginning of Everything - Week 0 — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,7 @@
-
+
diff --git a/dev/py-modindex.html b/dev/py-modindex.html
index eb8fceedc..70560fd0a 100644
--- a/dev/py-modindex.html
+++ b/dev/py-modindex.html
@@ -4,7 +4,7 @@
- Python Module Index — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Python Module Index — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -24,7 +24,7 @@
-
+
@@ -39,7 +39,7 @@
-
+
diff --git a/dev/reference/fury.actor.html b/dev/reference/fury.actor.html
index 10cad7cb9..411f0b184 100644
--- a/dev/reference/fury.actor.html
+++ b/dev/reference/fury.actor.html
@@ -5,7 +5,7 @@
- actor — FURY 0.10.0.dev192+g2551b7f4 documentation
+ actor — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,7 @@
-
+
diff --git a/dev/reference/fury.actors.html b/dev/reference/fury.actors.html
index 146995c03..bdf7f10cf 100644
--- a/dev/reference/fury.actors.html
+++ b/dev/reference/fury.actors.html
@@ -5,7 +5,7 @@
- actors — FURY 0.10.0.dev192+g2551b7f4 documentation
+ actors — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,7 @@
-
+
diff --git a/dev/reference/fury.animation.html b/dev/reference/fury.animation.html
index cfab92ae7..4900dacf0 100644
--- a/dev/reference/fury.animation.html
+++ b/dev/reference/fury.animation.html
@@ -5,7 +5,7 @@
- animation — FURY 0.10.0.dev192+g2551b7f4 documentation
+ animation — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,7 @@
-
+
diff --git a/dev/reference/fury.colormap.html b/dev/reference/fury.colormap.html
index 65c56db0a..e2fe12bc8 100644
--- a/dev/reference/fury.colormap.html
+++ b/dev/reference/fury.colormap.html
@@ -5,7 +5,7 @@
- colormap — FURY 0.10.0.dev192+g2551b7f4 documentation
+ colormap — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,7 @@
-
+
diff --git a/dev/reference/fury.convert.html b/dev/reference/fury.convert.html
index 34d797a6b..b0fae971b 100644
--- a/dev/reference/fury.convert.html
+++ b/dev/reference/fury.convert.html
@@ -5,7 +5,7 @@
- convert — FURY 0.10.0.dev192+g2551b7f4 documentation
+ convert — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,7 @@
-
+
diff --git a/dev/reference/fury.data.html b/dev/reference/fury.data.html
index f0c8bdc81..c21f197b9 100644
--- a/dev/reference/fury.data.html
+++ b/dev/reference/fury.data.html
@@ -5,7 +5,7 @@
- data — FURY 0.10.0.dev192+g2551b7f4 documentation
+ data — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,7 @@
-
+
diff --git a/dev/reference/fury.decorators.html b/dev/reference/fury.decorators.html
index d12cbf4f5..3a902ddf5 100644
--- a/dev/reference/fury.decorators.html
+++ b/dev/reference/fury.decorators.html
@@ -5,7 +5,7 @@
- decorators — FURY 0.10.0.dev192+g2551b7f4 documentation
+ decorators — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,7 @@
-
+
diff --git a/dev/reference/fury.deprecator.html b/dev/reference/fury.deprecator.html
index fee7f7f74..9e898aba0 100644
--- a/dev/reference/fury.deprecator.html
+++ b/dev/reference/fury.deprecator.html
@@ -5,7 +5,7 @@
- deprecator — FURY 0.10.0.dev192+g2551b7f4 documentation
+ deprecator — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,7 @@
-
+
@@ -393,7 +393,7 @@ _LEADING_WHITE#
-
-fury.deprecator.cmp_pkg_version(version_str, pkg_version_str='0.10.0.dev192+g2551b7f4')[source]#
+fury.deprecator.cmp_pkg_version(version_str, pkg_version_str='0.10.0.dev197+g9a9cf7f0')[source]#
Compare version_str
to current package version.
- Parameters:
diff --git a/dev/reference/fury.gltf.html b/dev/reference/fury.gltf.html
index 44bd7b80f..5fc887cf2 100644
--- a/dev/reference/fury.gltf.html
+++ b/dev/reference/fury.gltf.html
@@ -5,7 +5,7 @@
- gltf — FURY 0.10.0.dev192+g2551b7f4 documentation
+ gltf — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,7 @@
-
+
diff --git a/dev/reference/fury.html b/dev/reference/fury.html
index cf45ca16f..74b2638fb 100644
--- a/dev/reference/fury.html
+++ b/dev/reference/fury.html
@@ -5,7 +5,7 @@
- fury — FURY 0.10.0.dev192+g2551b7f4 documentation
+ fury — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,7 @@
-
+
diff --git a/dev/reference/fury.io.html b/dev/reference/fury.io.html
index 209c77008..5ac4108b0 100644
--- a/dev/reference/fury.io.html
+++ b/dev/reference/fury.io.html
@@ -5,7 +5,7 @@
- io — FURY 0.10.0.dev192+g2551b7f4 documentation
+ io — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,7 @@
-
+
diff --git a/dev/reference/fury.layout.html b/dev/reference/fury.layout.html
index 3000214d0..40879fa3a 100644
--- a/dev/reference/fury.layout.html
+++ b/dev/reference/fury.layout.html
@@ -5,7 +5,7 @@
- layout — FURY 0.10.0.dev192+g2551b7f4 documentation
+ layout — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,7 @@
-
+
diff --git a/dev/reference/fury.lib.html b/dev/reference/fury.lib.html
index f5359a89b..1991b78ae 100644
--- a/dev/reference/fury.lib.html
+++ b/dev/reference/fury.lib.html
@@ -5,7 +5,7 @@
- lib — FURY 0.10.0.dev192+g2551b7f4 documentation
+ lib — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,7 @@
-
+
diff --git a/dev/reference/fury.material.html b/dev/reference/fury.material.html
index 19d2efe61..6667e8ac3 100644
--- a/dev/reference/fury.material.html
+++ b/dev/reference/fury.material.html
@@ -5,7 +5,7 @@
- material — FURY 0.10.0.dev192+g2551b7f4 documentation
+ material — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,7 @@
-
+
diff --git a/dev/reference/fury.molecular.html b/dev/reference/fury.molecular.html
index 43e9be05e..e21ad7e11 100644
--- a/dev/reference/fury.molecular.html
+++ b/dev/reference/fury.molecular.html
@@ -5,7 +5,7 @@
- molecular — FURY 0.10.0.dev192+g2551b7f4 documentation
+ molecular — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,7 @@
-
+
diff --git a/dev/reference/fury.pick.html b/dev/reference/fury.pick.html
index 310a0bda3..41e01193b 100644
--- a/dev/reference/fury.pick.html
+++ b/dev/reference/fury.pick.html
@@ -5,7 +5,7 @@
- pick — FURY 0.10.0.dev192+g2551b7f4 documentation
+ pick — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,7 @@
-
+
diff --git a/dev/reference/fury.pkg_info.html b/dev/reference/fury.pkg_info.html
index 78d404525..4053d2260 100644
--- a/dev/reference/fury.pkg_info.html
+++ b/dev/reference/fury.pkg_info.html
@@ -5,7 +5,7 @@
- pkg_info — FURY 0.10.0.dev192+g2551b7f4 documentation
+ pkg_info — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,7 @@
-
+
diff --git a/dev/reference/fury.primitive.html b/dev/reference/fury.primitive.html
index 253d6b66c..dcad9d816 100644
--- a/dev/reference/fury.primitive.html
+++ b/dev/reference/fury.primitive.html
@@ -5,7 +5,7 @@
- primitive — FURY 0.10.0.dev192+g2551b7f4 documentation
+ primitive — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,7 @@
-
+
diff --git a/dev/reference/fury.shaders.html b/dev/reference/fury.shaders.html
index 554daf859..53ef844af 100644
--- a/dev/reference/fury.shaders.html
+++ b/dev/reference/fury.shaders.html
@@ -5,7 +5,7 @@
- shaders — FURY 0.10.0.dev192+g2551b7f4 documentation
+ shaders — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,7 @@
-
+
diff --git a/dev/reference/fury.stream.html b/dev/reference/fury.stream.html
index 19fd77d67..a4d7aa3cf 100644
--- a/dev/reference/fury.stream.html
+++ b/dev/reference/fury.stream.html
@@ -5,7 +5,7 @@
- stream — FURY 0.10.0.dev192+g2551b7f4 documentation
+ stream — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,7 @@
-
+
diff --git a/dev/reference/fury.transform.html b/dev/reference/fury.transform.html
index a62f230ac..2ef159ab4 100644
--- a/dev/reference/fury.transform.html
+++ b/dev/reference/fury.transform.html
@@ -5,7 +5,7 @@
- transform — FURY 0.10.0.dev192+g2551b7f4 documentation
+ transform — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,7 @@
-
+
diff --git a/dev/reference/fury.ui.html b/dev/reference/fury.ui.html
index ad9ea68eb..7ed24248e 100644
--- a/dev/reference/fury.ui.html
+++ b/dev/reference/fury.ui.html
@@ -5,7 +5,7 @@
- ui — FURY 0.10.0.dev192+g2551b7f4 documentation
+ ui — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,7 @@
-
+
@@ -1612,6 +1612,28 @@
+-
+auto_font_scale#
+Automatically scale font according to the text bounding box.
+
+- Type:
+-
+
+
+
+
+
+-
+dynamic_bbox#
+Automatically resize the bounding box according to the content.
+
+- Type:
+-
+
+
+
+
-
__init__(text='Text Block', font_size=18, font_family='Arial', justification='left', vertical_justification='bottom', bold=False, italic=False, shadow=False, size=None, color=(1, 1, 1), bg_color=None, position=(0, 0), auto_font_scale=False, dynamic_bbox=False)[source]#
@@ -1638,6 +1660,20 @@
+-
+property auto_font_scale#
+Return whether text font is automatically scaled.
+
+- Returns:
+Text is auto_font_scaled if True.
+
+- Return type:
+-
+
+
+
+
-
property background_color#
@@ -1654,8 +1690,8 @@
--
-property bold#
+-
+property bold#
Return whether the text is bold.
- Returns:
@@ -1674,8 +1710,8 @@
--
-property color#
+-
+property color#
Get text color.
- Returns:
@@ -1688,8 +1724,22 @@
--
-property font_family#
+-
+property dynamic_bbox#
+Automatically resize the bounding box according to the content.
+
+- Returns:
+Bounding box is dynamic if True.
+
+- Return type:
+-
+
+
+
+
+
+-
+property font_family#
Get font family.
- Returns:
@@ -1702,8 +1752,8 @@
--
-property font_size#
+-
+property font_size#
Get text font size.
- Returns:
@@ -1716,8 +1766,8 @@
--
-property italic#
+-
+property italic#
Return whether the text is italicised.
- Returns:
@@ -1730,8 +1780,8 @@
--
-property justification#
+-
+property justification#
Get text justification.
- Returns:
@@ -1744,8 +1794,8 @@
--
-property message#
+-
+property message#
Get message from the text.
- Returns:
@@ -1769,8 +1819,8 @@
--
-property shadow#
+-
+property shadow#
Return whether the text has shadow.
- Returns:
@@ -1801,8 +1851,8 @@
--
-property vertical_justification#
+-
+property vertical_justification#
Get text vertical justification.
- Returns:
@@ -2892,8 +2942,8 @@
--
-property mid_track_radius#
+-
+property mid_track_radius#
@@ -2908,8 +2958,8 @@
--
-property previous_value#
+-
+property previous_value#
@@ -3177,8 +3227,8 @@
--
-property padding#
+-
+property padding#
Get the padding between options.
@@ -5721,6 +5771,24 @@ rotate_2d
+
+
+
+ TextBlock2D.auto_font_scale
+
+
+
+
+ -
+
+
+
+ TextBlock2D.dynamic_bbox
+
+
+
+
-
@@ -5730,6 +5798,15 @@ rotate_2d
+
+
+
+ TextBlock2D.auto_font_scale
+
+
+
+
-
@@ -5740,7 +5817,7 @@ rotate_2d
-
+
TextBlock2D.bold
@@ -5758,7 +5835,7 @@ rotate_2d
-
+
TextBlock2D.color
@@ -5767,7 +5844,16 @@ rotate_2d
-
+
+
+
+ TextBlock2D.dynamic_bbox
+
+
+
+
+ -
+
TextBlock2D.font_family
@@ -5776,7 +5862,7 @@ rotate_2d
-
+
TextBlock2D.font_size
@@ -5785,7 +5871,7 @@ rotate_2d
-
+
TextBlock2D.italic
@@ -5794,7 +5880,7 @@ rotate_2d
-
+
TextBlock2D.justification
@@ -5803,7 +5889,7 @@ rotate_2d
-
+
TextBlock2D.message
@@ -5821,7 +5907,7 @@ rotate_2d
-
+
TextBlock2D.shadow
@@ -5848,7 +5934,7 @@ rotate_2d
-
+
TextBlock2D.vertical_justification
@@ -6849,7 +6935,7 @@ rotate_2d
-
+
RingSlider2D.mid_track_radius
@@ -6867,7 +6953,7 @@ rotate_2d
-
+
RingSlider2D.previous_value
@@ -7131,7 +7217,7 @@ rotate_2d
-
+
Checkbox.padding
diff --git a/dev/reference/fury.utils.html b/dev/reference/fury.utils.html
index 5a9237413..18caed9b1 100644
--- a/dev/reference/fury.utils.html
+++ b/dev/reference/fury.utils.html
@@ -5,7 +5,7 @@
- utils — FURY 0.10.0.dev192+g2551b7f4 documentation
+ utils — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,7 @@
-
+
diff --git a/dev/reference/fury.window.html b/dev/reference/fury.window.html
index e1ce4d778..f99768891 100644
--- a/dev/reference/fury.window.html
+++ b/dev/reference/fury.window.html
@@ -5,7 +5,7 @@
- window — FURY 0.10.0.dev192+g2551b7f4 documentation
+ window — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,7 @@
-
+
diff --git a/dev/reference/index.html b/dev/reference/index.html
index c0b2b6196..609150f9f 100644
--- a/dev/reference/index.html
+++ b/dev/reference/index.html
@@ -5,7 +5,7 @@
- API Reference — FURY 0.10.0.dev192+g2551b7f4 documentation
+ API Reference — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,7 @@
-
+
@@ -2355,21 +2355,25 @@ API ReferenceTextBlock2D.italic
TextBlock2D.shadow
TextBlock2D.size
+TextBlock2D.auto_font_scale
+TextBlock2D.dynamic_bbox
TextBlock2D.__init__()
+TextBlock2D.auto_font_scale
TextBlock2D.background_color
-TextBlock2D.bold
+TextBlock2D.bold
TextBlock2D.cal_size_from_message()
-TextBlock2D.color
-TextBlock2D.font_family
-TextBlock2D.font_size
-TextBlock2D.italic
-TextBlock2D.justification
-TextBlock2D.message
+TextBlock2D.color
+TextBlock2D.dynamic_bbox
+TextBlock2D.font_family
+TextBlock2D.font_size
+TextBlock2D.italic
+TextBlock2D.justification
+TextBlock2D.message
TextBlock2D.resize()
-TextBlock2D.shadow
+TextBlock2D.shadow
TextBlock2D.update_alignment()
TextBlock2D.update_bounding_box()
-TextBlock2D.vertical_justification
+TextBlock2D.vertical_justification
@@ -2498,9 +2502,9 @@ API ReferenceRingSlider2D.format_text()
RingSlider2D.handle_move_callback()
RingSlider2D.handle_release_callback()
-RingSlider2D.mid_track_radius
+RingSlider2D.mid_track_radius
RingSlider2D.move_handle()
-RingSlider2D.previous_value
+RingSlider2D.previous_value
RingSlider2D.ratio
RingSlider2D.track_click_callback()
RingSlider2D.update()
@@ -2540,7 +2544,7 @@ API ReferenceCheckbox.padding
Checkbox.__init__()
Checkbox.font_size
-Checkbox.padding
+Checkbox.padding
diff --git a/dev/release-history.html b/dev/release-history.html
index 9b94a987f..bfae21f2e 100644
--- a/dev/release-history.html
+++ b/dev/release-history.html
@@ -5,7 +5,7 @@
- Release History — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Release History — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,7 @@
-
+
diff --git a/dev/release_notes/releasev0.1.0.html b/dev/release_notes/releasev0.1.0.html
index dc25f4891..96770bc54 100644
--- a/dev/release_notes/releasev0.1.0.html
+++ b/dev/release_notes/releasev0.1.0.html
@@ -5,7 +5,7 @@
- Release notes v0.1.0 (2018-09-21) — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Release notes v0.1.0 (2018-09-21) — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,7 @@
-
+
diff --git a/dev/release_notes/releasev0.1.1.html b/dev/release_notes/releasev0.1.1.html
index 744eab121..1328393fc 100644
--- a/dev/release_notes/releasev0.1.1.html
+++ b/dev/release_notes/releasev0.1.1.html
@@ -5,7 +5,7 @@
- Release notes v0.1.1 (2018-10-29) — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Release notes v0.1.1 (2018-10-29) — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,7 @@
-
+
diff --git a/dev/release_notes/releasev0.1.3.html b/dev/release_notes/releasev0.1.3.html
index 53d942807..dce1c58d3 100644
--- a/dev/release_notes/releasev0.1.3.html
+++ b/dev/release_notes/releasev0.1.3.html
@@ -5,7 +5,7 @@
- Release notes v0.1.2 and v0.1.3 (2018-10-31) — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Release notes v0.1.2 and v0.1.3 (2018-10-31) — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,7 @@
-
+
diff --git a/dev/release_notes/releasev0.1.4.html b/dev/release_notes/releasev0.1.4.html
index 8216fbe3c..42724a0ab 100644
--- a/dev/release_notes/releasev0.1.4.html
+++ b/dev/release_notes/releasev0.1.4.html
@@ -5,7 +5,7 @@
- Release notes v0.1.4 (2018-11-26) — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Release notes v0.1.4 (2018-11-26) — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,7 @@
-
+
diff --git a/dev/release_notes/releasev0.2.0.html b/dev/release_notes/releasev0.2.0.html
index 3250e742d..d398f1b6b 100644
--- a/dev/release_notes/releasev0.2.0.html
+++ b/dev/release_notes/releasev0.2.0.html
@@ -5,7 +5,7 @@
- Release notes v0.2.0 (2019-03-08) — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Release notes v0.2.0 (2019-03-08) — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,7 @@
-
+
diff --git a/dev/release_notes/releasev0.3.0.html b/dev/release_notes/releasev0.3.0.html
index 94bc124e1..c73b8a1f1 100644
--- a/dev/release_notes/releasev0.3.0.html
+++ b/dev/release_notes/releasev0.3.0.html
@@ -5,7 +5,7 @@
- Release notes v0.3.0 (2019-08-02) — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Release notes v0.3.0 (2019-08-02) — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,7 @@
-
+
diff --git a/dev/release_notes/releasev0.4.0.html b/dev/release_notes/releasev0.4.0.html
index b724c309e..0a25c2cb3 100644
--- a/dev/release_notes/releasev0.4.0.html
+++ b/dev/release_notes/releasev0.4.0.html
@@ -5,7 +5,7 @@
- Release notes v0.4.0 (2019-10-29) — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Release notes v0.4.0 (2019-10-29) — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,7 @@
-
+
diff --git a/dev/release_notes/releasev0.5.1.html b/dev/release_notes/releasev0.5.1.html
index 1eaffc36e..9a21629a0 100644
--- a/dev/release_notes/releasev0.5.1.html
+++ b/dev/release_notes/releasev0.5.1.html
@@ -5,7 +5,7 @@
- Release notes v0.5.1 (2020-04-01) — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Release notes v0.5.1 (2020-04-01) — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,7 @@
-
+
diff --git a/dev/release_notes/releasev0.6.0.html b/dev/release_notes/releasev0.6.0.html
index 7d31ef6ec..ab3e01e89 100644
--- a/dev/release_notes/releasev0.6.0.html
+++ b/dev/release_notes/releasev0.6.0.html
@@ -5,7 +5,7 @@
- Release notes v0.6.0 (2020-07-20) — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Release notes v0.6.0 (2020-07-20) — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,7 @@
-
+
diff --git a/dev/release_notes/releasev0.6.1.html b/dev/release_notes/releasev0.6.1.html
index d667aca2f..1a530f2ae 100644
--- a/dev/release_notes/releasev0.6.1.html
+++ b/dev/release_notes/releasev0.6.1.html
@@ -5,7 +5,7 @@
- Release notes v0.6.1 (2020-08-20) — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Release notes v0.6.1 (2020-08-20) — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,7 @@
-
+
diff --git a/dev/release_notes/releasev0.7.0.html b/dev/release_notes/releasev0.7.0.html
index 6ba938b9c..9f4d90ab3 100644
--- a/dev/release_notes/releasev0.7.0.html
+++ b/dev/release_notes/releasev0.7.0.html
@@ -5,7 +5,7 @@
- Release notes v0.7.0 (2021/03/13) — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Release notes v0.7.0 (2021/03/13) — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,7 @@
-
+
diff --git a/dev/release_notes/releasev0.7.1.html b/dev/release_notes/releasev0.7.1.html
index 220c17da7..05caa34a6 100644
--- a/dev/release_notes/releasev0.7.1.html
+++ b/dev/release_notes/releasev0.7.1.html
@@ -5,7 +5,7 @@
- Release notes v0.7.1 (2021/08/03) — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Release notes v0.7.1 (2021/08/03) — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,7 @@
-
+
diff --git a/dev/release_notes/releasev0.8.0.html b/dev/release_notes/releasev0.8.0.html
index 504d21e90..7bae2942f 100644
--- a/dev/release_notes/releasev0.8.0.html
+++ b/dev/release_notes/releasev0.8.0.html
@@ -5,7 +5,7 @@
- Release notes v0.8.0 (2022/01/31) — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Release notes v0.8.0 (2022/01/31) — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,7 @@
-
+
diff --git a/dev/release_notes/releasev0.9.0.html b/dev/release_notes/releasev0.9.0.html
index 6be9b54ef..6f036ed8c 100644
--- a/dev/release_notes/releasev0.9.0.html
+++ b/dev/release_notes/releasev0.9.0.html
@@ -5,7 +5,7 @@
- Release notes v0.9.0 (2023/04/15) — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Release notes v0.9.0 (2023/04/15) — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,7 @@
-
+
diff --git a/dev/search.html b/dev/search.html
index ec1713ad5..7c4f24873 100644
--- a/dev/search.html
+++ b/dev/search.html
@@ -3,7 +3,7 @@
- Search - FURY 0.10.0.dev192+g2551b7f4 documentation
+ Search - FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -23,7 +23,7 @@
-
+
@@ -38,7 +38,7 @@
-
+
diff --git a/dev/searchindex.js b/dev/searchindex.js
index e4e608165..0e17a38ae 100644
--- a/dev/searchindex.js
+++ b/dev/searchindex.js
@@ -1 +1 @@
-Search.setIndex({"docnames": ["auto_examples/01_introductory/index", "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/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_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/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_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/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_interpolators", "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/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/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/viz_interaction", "auto_examples/20_stream/viz_no_interaction", "auto_examples/20_stream/viz_widget", "auto_examples/index", "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-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/29-05-2023-week-0-joaodellagli", "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.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", "symlink/contributing", "symlink/license"], "filenames": ["auto_examples/01_introductory/index.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/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_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/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_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/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_interpolators.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/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/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/viz_interaction.rst", "auto_examples/20_stream/viz_no_interaction.rst", "auto_examples/20_stream/viz_widget.rst", "auto_examples/index.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-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/29-05-2023-week-0-joaodellagli.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.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", "symlink/contributing.rst", "symlink/license.rst"], "titles": ["Introductory", "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", "Advanced interactive visualization", "Animated 2D functions", "Brownian motion", "Visualize bundles and metrics on bundles", "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", "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", "Tab UI", "User Interfaces", "ListBox", "Cube & Slider Control", "Animation", "Bezier Interpolator", "Keyframe animation: Camera and opacity", "Keyframe Color Interpolators", "Making a custom interpolator", "Keyframe hierarchical Animation", "Keyframe animation", "Keyframe animation introduction", "Arm Robot Animation", "Keyframes Spline Interpolator", "Timeline and setting keyframes", "Keyframe animation", "Shaders", "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", "Ball Collision Simulation", "Brick Wall Simulation", "Chain Simulation", "Domino Physics Simulation", "Wrecking Ball Simulation", "Streaming", "Streaming FURY with user interaction", "Streaming FURY with WebRTC/MJPEG", "Streaming FURY with WebRTC/MJPEG using the Widget Object", "Tutorials", "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", "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", "The Beginning of Everything - Week 0", "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.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)", "Contributing", "License"], "terms": {"These": [0, 29, 38, 52, 59, 64, 66, 71, 77, 81, 131, 139, 149, 155, 158, 160, 162, 171, 216, 217, 218, 245, 251, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286], "tutori": [0, 3, 4, 5, 6, 7, 8, 10, 11, 12, 14, 16, 17, 18, 22, 36, 38, 52, 54, 55, 56, 58, 59, 60, 61, 62, 63, 64, 65, 66, 68, 69, 77, 78, 87, 94, 95, 97, 112, 113, 116, 123, 124, 125, 126, 131, 132, 133, 135, 139, 149, 152, 156, 159, 160, 162, 163, 170, 171, 172, 173, 174, 180, 181, 186, 187, 189, 190, 197, 198, 201, 213, 217, 218, 220, 243, 253, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287], "show": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 22, 26, 28, 29, 30, 31, 32, 33, 35, 36, 37, 38, 39, 40, 41, 45, 47, 48, 50, 52, 54, 55, 56, 57, 59, 61, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 81, 89, 90, 91, 92, 94, 95, 97, 102, 113, 123, 129, 130, 133, 135, 137, 141, 142, 145, 150, 152, 157, 160, 164, 166, 167, 170, 171, 172, 173, 192, 198, 207, 211, 218, 220, 227, 233, 237, 239, 240, 245, 248, 250, 253, 266, 268, 269, 271, 277, 279, 280, 284], "how": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 25, 27, 28, 29, 31, 33, 34, 35, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 55, 58, 59, 62, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 81, 84, 87, 98, 109, 118, 122, 126, 131, 132, 135, 137, 138, 139, 141, 142, 143, 148, 154, 156, 160, 161, 164, 166, 169, 170, 171, 172, 174, 175, 176, 177, 181, 183, 185, 186, 189, 192, 193, 196, 197, 198, 200, 204, 208, 209, 212, 216, 217, 218, 222, 224, 225, 228, 229, 230, 233, 237, 239, 240, 242, 243, 246, 251, 260, 270, 277, 284, 285, 286, 287], "combin": [0, 21, 27, 65, 81, 104, 112, 115, 121, 126, 200, 203, 218, 226, 256, 270], "timer": [0, 16, 33, 35, 41, 70, 72, 73, 74, 75, 76, 79, 81, 107, 139, 158, 203, 217, 218, 245, 266, 281, 286], "an": [0, 3, 10, 11, 13, 14, 16, 17, 18, 22, 23, 24, 29, 30, 31, 32, 33, 36, 37, 47, 49, 53, 54, 55, 56, 57, 59, 63, 65, 66, 68, 78, 81, 84, 87, 88, 89, 90, 91, 92, 94, 95, 97, 98, 99, 100, 102, 106, 108, 109, 112, 113, 115, 117, 120, 123, 125, 126, 129, 131, 132, 133, 135, 137, 138, 139, 140, 143, 145, 146, 147, 156, 157, 159, 161, 162, 164, 167, 169, 170, 171, 172, 173, 174, 175, 177, 178, 179, 181, 183, 185, 186, 189, 191, 192, 193, 196, 197, 201, 203, 208, 209, 212, 213, 215, 216, 217, 218, 220, 221, 223, 224, 225, 227, 232, 234, 236, 237, 238, 239, 242, 244, 245, 246, 248, 249, 250, 251, 255, 256, 257, 261, 264, 265, 266, 267, 268, 269, 270, 280, 283, 284, 286, 287], "actor": [0, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 42, 46, 48, 49, 51, 52, 53, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 72, 73, 74, 75, 76, 78, 79, 80, 81, 85, 87, 89, 94, 95, 97, 100, 102, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 125, 126, 129, 131, 132, 135, 136, 137, 150, 153, 155, 156, 157, 159, 162, 163, 164, 166, 167, 169, 172, 175, 177, 179, 180, 181, 182, 183, 186, 187, 189, 192, 193, 195, 196, 201, 204, 209, 210, 211, 213, 214, 215, 217, 220, 222, 229, 231, 234, 235, 236, 237, 239, 240, 241, 242, 243, 245, 250, 251, 256, 258, 260, 261, 262, 265, 268, 269, 270, 271, 273, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286], "slice": [0, 22, 27, 81, 84, 240, 248, 249], "data": [0, 3, 4, 5, 6, 7, 8, 12, 13, 14, 17, 18, 22, 25, 27, 32, 33, 34, 36, 39, 40, 41, 42, 43, 44, 46, 47, 48, 49, 50, 51, 53, 58, 59, 68, 70, 79, 80, 81, 85, 96, 125, 128, 132, 140, 141, 144, 145, 150, 162, 163, 164, 168, 169, 170, 171, 175, 176, 179, 183, 184, 187, 195, 196, 198, 210, 216, 217, 218, 219, 225, 231, 233, 234, 236, 240, 243, 246, 248, 250, 251, 256, 257, 259, 261, 265, 266, 269, 271, 280, 286, 288], "slicer": [0, 13, 22, 27, 81, 129, 271, 277, 278, 280, 283], "us": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 12, 13, 14, 15, 16, 17, 18, 20, 21, 22, 23, 24, 25, 26, 27, 29, 30, 31, 32, 33, 34, 37, 38, 39, 41, 43, 44, 47, 48, 49, 50, 51, 52, 54, 55, 56, 57, 58, 59, 61, 62, 63, 64, 65, 66, 67, 69, 70, 72, 73, 74, 75, 76, 77, 78, 79, 84, 85, 87, 88, 98, 100, 103, 105, 106, 107, 108, 109, 115, 116, 117, 119, 120, 122, 125, 126, 130, 131, 132, 133, 134, 135, 136, 137, 138, 140, 141, 142, 143, 146, 148, 149, 150, 152, 154, 156, 158, 160, 161, 162, 163, 164, 165, 166, 169, 170, 171, 172, 173, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 193, 195, 196, 197, 198, 200, 201, 202, 204, 206, 207, 208, 209, 210, 211, 214, 215, 216, 217, 218, 222, 224, 225, 227, 229, 232, 233, 234, 236, 237, 238, 239, 240, 241, 242, 243, 245, 246, 248, 249, 250, 251, 252, 253, 255, 256, 257, 259, 260, 261, 262, 265, 266, 267, 268, 269, 270, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288], "normal": [0, 8, 12, 16, 24, 27, 31, 34, 65, 66, 68, 80, 81, 143, 162, 172, 175, 188, 198, 216, 218, 245, 248, 249, 251, 256, 260, 265, 268, 269, 270, 280], "your": [0, 3, 14, 18, 65, 78, 80, 81, 87, 89, 90, 91, 92, 94, 95, 96, 97, 113, 123, 124, 128, 129, 145, 157, 164, 167, 168, 171, 203, 219, 220, 233, 236, 251, 261, 265, 266, 270, 287], "sphere": [0, 4, 7, 9, 14, 19, 20, 27, 31, 32, 33, 34, 38, 42, 53, 56, 58, 60, 61, 62, 63, 64, 68, 69, 72, 73, 76, 78, 79, 80, 81, 84, 107, 115, 116, 121, 125, 132, 136, 163, 164, 170, 172, 196, 217, 218, 240, 249, 261, 264, 267, 271, 280, 283, 285, 286], "textur": [0, 4, 5, 11, 14, 34, 35, 81, 97, 100, 119, 125, 152, 158, 162, 164, 165, 166, 169, 175, 179, 184, 218, 224, 227, 230, 233, 236, 239, 242, 246, 253, 256, 257, 269, 271, 280, 281, 286], "visual": [0, 3, 8, 12, 13, 14, 16, 18, 21, 27, 28, 34, 35, 40, 41, 42, 46, 51, 53, 54, 61, 64, 65, 66, 67, 68, 73, 75, 76, 78, 80, 81, 84, 88, 89, 90, 91, 92, 94, 95, 96, 97, 106, 113, 116, 117, 123, 125, 128, 129, 130, 135, 141, 142, 145, 146, 148, 157, 162, 163, 164, 166, 167, 168, 171, 172, 177, 178, 189, 208, 212, 216, 217, 219, 220, 222, 223, 225, 228, 231, 237, 240, 246, 247, 248, 249, 250, 261, 270, 277, 280, 283, 284], "gltf": [0, 81, 88, 170, 172, 181, 189, 190, 192, 193, 195, 220, 250, 253, 271, 286], "file": [0, 10, 11, 14, 32, 33, 79, 81, 84, 87, 88, 118, 124, 126, 132, 135, 139, 170, 171, 175, 179, 181, 184, 190, 191, 207, 247, 248, 250, 253, 255, 256, 257, 263, 264, 265, 268, 270, 280, 283, 284, 286, 287], "furi": [0, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43, 44, 45, 46, 47, 49, 50, 51, 52, 53, 55, 56, 57, 58, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 81, 85, 87, 88, 96, 98, 99, 100, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 114, 115, 116, 117, 118, 119, 120, 122, 124, 125, 126, 127, 128, 130, 131, 132, 133, 136, 137, 145, 148, 151, 152, 155, 156, 159, 161, 162, 163, 164, 169, 170, 171, 172, 173, 174, 175, 177, 181, 191, 192, 197, 198, 208, 215, 216, 217, 218, 222, 224, 230, 232, 235, 237, 239, 242, 243, 245, 246, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 273, 277, 278, 280, 281, 282, 283, 284, 285, 286, 287, 288], "cone": [0, 16, 42, 57, 60, 81, 94, 218, 228, 231, 234, 264, 271, 278, 281, 286], "arrow": [0, 16, 26, 30, 42, 54, 58, 81, 95, 208, 256, 264, 271, 278, 279, 280, 286], "morph": [0, 81, 187, 190, 210, 217, 256, 286], "anim": [0, 4, 6, 16, 19, 21, 24, 30, 37, 53, 55, 56, 62, 88, 89, 90, 91, 92, 94, 95, 96, 97, 113, 123, 128, 129, 145, 147, 148, 150, 157, 160, 162, 163, 164, 167, 168, 169, 175, 177, 180, 184, 186, 187, 189, 192, 196, 203, 204, 205, 208, 214, 215, 216, 217, 219, 220, 256, 270, 271, 280, 281, 283, 285, 286], "export": [0, 81, 87, 175, 181, 184, 286], "scene": [0, 1, 2, 3, 4, 5, 6, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 65, 66, 67, 68, 69, 70, 72, 73, 74, 75, 76, 78, 79, 80, 81, 85, 92, 110, 122, 125, 134, 137, 140, 162, 175, 179, 183, 189, 202, 204, 215, 217, 236, 245, 248, 250, 256, 258, 262, 268, 271, 277, 285, 286], "skelet": [0, 81, 112, 126, 187, 190, 195, 217], "spiki": [0, 81, 280], "surfac": [0, 3, 4, 16, 18, 21, 23, 65, 68, 69, 81, 125, 132, 141, 147, 150, 153, 156, 159, 161, 163, 171, 175, 218, 251, 269, 271, 277, 278, 284, 285], "select": [0, 10, 29, 43, 50, 81, 99, 112, 126, 152, 157, 164, 170, 171, 173, 174, 176, 182, 185, 188, 206, 207, 209, 216, 257, 260, 261, 262, 268, 269, 271, 284], "multipl": [0, 6, 9, 13, 54, 62, 67, 81, 88, 95, 97, 102, 104, 109, 112, 113, 115, 120, 122, 125, 126, 138, 143, 146, 150, 152, 157, 163, 166, 175, 181, 182, 183, 190, 203, 208, 210, 214, 217, 218, 220, 248, 249, 250, 255, 261, 262, 268, 270, 279, 280, 281, 284, 286], "object": [0, 4, 5, 6, 8, 10, 12, 13, 14, 16, 22, 23, 24, 25, 26, 30, 34, 35, 36, 37, 42, 44, 56, 61, 65, 66, 68, 72, 73, 74, 75, 76, 77, 78, 81, 85, 92, 101, 103, 105, 107, 109, 110, 111, 114, 115, 118, 120, 131, 133, 137, 139, 141, 142, 145, 152, 157, 166, 175, 177, 183, 184, 185, 188, 224, 225, 227, 233, 236, 242, 246, 248, 250, 251, 252, 253, 254, 255, 256, 258, 259, 261, 262, 265, 266, 267, 268, 269, 270, 277, 283, 284, 286], "multithread": [0, 81, 88, 166, 270, 286], "exampl": [0, 1, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 65, 66, 67, 68, 69, 70, 72, 73, 74, 75, 76, 78, 79, 80, 81, 87, 94, 95, 97, 98, 100, 107, 112, 113, 119, 120, 123, 125, 126, 127, 130, 133, 135, 137, 138, 139, 140, 142, 143, 145, 152, 158, 161, 163, 164, 166, 175, 181, 187, 192, 193, 199, 201, 209, 239, 241, 245, 248, 250, 251, 253, 254, 255, 262, 264, 265, 266, 267, 269, 270, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287], "simpl": [0, 6, 17, 19, 20, 23, 27, 36, 38, 49, 69, 77, 81, 105, 107, 112, 124, 133, 163, 164, 171, 172, 173, 184, 187, 190, 206, 208, 210, 214, 224, 228, 230, 233, 245, 250, 251, 256, 261, 267, 269, 270, 286], "pick": [0, 11, 13, 32, 81, 113, 122, 125, 170, 268, 271, 281], "earth": [0, 3, 18, 81, 171, 281, 286], "coordin": [0, 10, 22, 23, 24, 25, 26, 30, 37, 69, 81, 84, 103, 104, 107, 132, 138, 143, 162, 163, 169, 175, 239, 248, 249, 251, 256, 258, 261, 262, 264, 267, 268, 269, 281, 286], "convers": [0, 81, 84, 175, 188, 251], "volum": [0, 27, 81, 161, 248, 249, 270, 271], "solar": [0, 81, 281, 285], "system": [0, 16, 22, 59, 78, 80, 81, 84, 103, 107, 113, 119, 124, 125, 127, 130, 136, 145, 148, 149, 162, 164, 165, 166, 169, 171, 173, 175, 193, 197, 210, 217, 220, 232, 238, 248, 266, 281, 282, 283, 285, 286], "go": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 65, 66, 67, 68, 69, 70, 72, 73, 74, 75, 76, 78, 79, 80, 81, 85, 87, 88, 89, 90, 91, 92, 94, 95, 97, 98, 100, 102, 105, 112, 113, 123, 129, 132, 143, 152, 157, 160, 161, 167, 169, 171, 172, 176, 202, 220, 222, 228, 233, 234, 236, 240, 268, 270, 287], "end": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 65, 66, 67, 68, 69, 70, 72, 73, 74, 75, 76, 78, 79, 80, 87, 109, 118, 122, 126, 127, 132, 152, 160, 161, 169, 170, 171, 175, 178, 184, 216, 232, 233, 235, 237, 242, 250, 264, 265], "download": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 65, 66, 67, 68, 69, 70, 72, 73, 74, 75, 76, 78, 79, 80, 81, 85, 171, 175, 179, 181, 184, 218, 251, 253, 286], "full": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 65, 66, 67, 68, 69, 70, 72, 73, 74, 75, 76, 78, 79, 80, 143, 176, 218, 232, 248, 265, 272, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287], "code": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 65, 66, 67, 68, 69, 70, 72, 73, 74, 75, 76, 78, 79, 80, 81, 84, 92, 94, 95, 97, 102, 104, 105, 108, 109, 111, 112, 113, 114, 118, 123, 124, 127, 130, 131, 133, 142, 149, 151, 158, 160, 166, 170, 171, 172, 174, 175, 183, 184, 199, 202, 207, 209, 211, 212, 214, 215, 221, 222, 224, 227, 228, 232, 233, 239, 240, 243, 245, 248, 251, 265, 266, 267, 268, 270, 277, 278, 279, 280, 281, 282, 283, 284, 286, 287, 288], "thi": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 22, 23, 24, 25, 27, 28, 29, 30, 31, 32, 33, 34, 35, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 53, 54, 55, 56, 58, 59, 61, 62, 63, 65, 66, 67, 68, 69, 70, 72, 73, 74, 75, 76, 78, 79, 80, 84, 87, 88, 89, 90, 91, 92, 94, 95, 97, 98, 99, 113, 123, 125, 126, 129, 132, 133, 139, 145, 157, 162, 163, 164, 167, 169, 170, 171, 216, 217, 218, 220, 221, 247, 248, 250, 251, 252, 253, 254, 255, 261, 263, 264, 265, 266, 267, 268, 269, 270, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288], "import": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 65, 66, 67, 68, 69, 70, 72, 73, 74, 75, 76, 78, 79, 80, 85, 87, 133, 137, 139, 140, 143, 146, 162, 172, 184, 187, 208, 222, 233, 239, 242, 245, 248, 251, 255, 264, 265, 267, 269, 270, 285, 286, 287], "numpi": [1, 2, 3, 4, 7, 9, 10, 11, 14, 15, 16, 17, 19, 20, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 35, 37, 41, 42, 46, 48, 49, 51, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 65, 66, 67, 68, 69, 72, 73, 74, 75, 76, 78, 79, 80, 84, 85, 87, 88, 133, 150, 161, 169, 248, 251, 252, 256, 264, 265, 267, 269, 270, 280, 285, 286, 287], "np": [1, 2, 3, 4, 7, 9, 10, 11, 14, 15, 16, 17, 19, 20, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 35, 37, 42, 46, 48, 49, 51, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 65, 66, 67, 68, 69, 72, 73, 74, 75, 76, 78, 79, 80, 84, 85, 109, 118, 133, 205, 248, 250, 251, 256, 264, 267, 269, 270], "from": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 53, 54, 55, 57, 58, 59, 60, 61, 62, 63, 65, 66, 67, 68, 69, 70, 72, 73, 74, 75, 76, 78, 79, 80, 84, 85, 87, 88, 89, 97, 98, 99, 101, 103, 107, 109, 110, 112, 115, 118, 120, 121, 124, 126, 127, 129, 131, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 145, 146, 149, 152, 158, 160, 162, 164, 166, 169, 170, 171, 172, 174, 175, 176, 178, 179, 181, 187, 188, 190, 192, 193, 195, 197, 204, 205, 208, 212, 214, 215, 216, 217, 220, 226, 229, 233, 234, 236, 238, 239, 241, 242, 244, 245, 246, 248, 249, 250, 251, 252, 253, 255, 256, 257, 258, 259, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 273, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288], "window": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 65, 66, 67, 68, 69, 70, 72, 73, 74, 75, 76, 78, 79, 80, 81, 84, 85, 87, 88, 89, 91, 92, 95, 102, 126, 131, 134, 140, 143, 145, 146, 149, 162, 164, 165, 166, 169, 220, 227, 233, 236, 242, 245, 246, 248, 250, 265, 266, 268, 271, 273, 276, 277, 278, 279, 280, 281, 284, 285, 286], "first": [1, 2, 9, 13, 14, 15, 19, 22, 23, 25, 27, 28, 29, 32, 33, 36, 37, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 55, 56, 57, 58, 59, 60, 61, 65, 68, 70, 72, 73, 74, 75, 76, 79, 84, 87, 105, 107, 109, 110, 120, 125, 126, 130, 132, 133, 136, 139, 143, 146, 160, 161, 162, 163, 164, 166, 170, 171, 172, 173, 181, 182, 188, 192, 196, 197, 209, 210, 217, 218, 221, 222, 224, 225, 227, 228, 233, 236, 237, 239, 242, 243, 245, 248, 250, 251, 255, 261, 265, 268, 269, 286, 287], "thing": [1, 2, 15, 65, 84, 112, 120, 133, 139, 143, 146, 149, 152, 158, 171, 173, 176, 182, 191, 197, 206, 212, 216, 222, 224, 225, 227, 228, 236, 245, 285], "you": [1, 2, 5, 8, 12, 13, 15, 16, 18, 20, 22, 25, 27, 28, 29, 31, 32, 33, 36, 49, 53, 54, 59, 62, 65, 68, 78, 79, 80, 85, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 113, 123, 126, 128, 129, 131, 133, 134, 137, 139, 140, 143, 145, 146, 149, 152, 155, 157, 158, 160, 164, 167, 168, 171, 216, 219, 220, 227, 230, 233, 239, 245, 248, 251, 252, 253, 265, 266, 269, 270, 287], "have": [1, 2, 13, 15, 22, 25, 27, 29, 34, 37, 39, 42, 46, 47, 49, 50, 51, 56, 57, 65, 66, 68, 69, 70, 78, 80, 84, 87, 88, 98, 99, 101, 103, 104, 105, 106, 107, 110, 112, 114, 115, 116, 120, 121, 124, 126, 127, 130, 131, 132, 133, 134, 135, 139, 140, 143, 148, 152, 155, 156, 158, 160, 162, 164, 166, 169, 171, 172, 174, 180, 183, 184, 196, 204, 206, 208, 209, 211, 212, 213, 216, 217, 218, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 236, 239, 240, 242, 243, 245, 248, 249, 250, 251, 254, 255, 258, 261, 263, 265, 267, 268, 269, 278, 280, 287], "specifi": [1, 2, 3, 7, 15, 16, 39, 49, 59, 70, 103, 126, 227, 248, 250, 253, 255, 258, 259, 260, 261, 265, 268, 269, 270], "center": [1, 2, 3, 4, 7, 9, 10, 11, 14, 15, 16, 19, 20, 22, 24, 26, 27, 28, 29, 30, 31, 32, 33, 39, 42, 43, 46, 47, 48, 49, 51, 54, 60, 65, 66, 67, 68, 69, 72, 73, 74, 75, 76, 78, 79, 80, 84, 85, 109, 192, 193, 202, 212, 216, 217, 241, 245, 248, 249, 264, 267, 268, 269, 270, 271, 283, 286], "direct": [1, 2, 10, 11, 16, 26, 30, 33, 34, 36, 42, 48, 49, 51, 57, 65, 68, 69, 72, 73, 74, 75, 76, 84, 85, 114, 136, 137, 145, 158, 162, 164, 201, 217, 225, 248, 249, 250, 251, 258, 260, 264, 267, 269, 270, 278, 279, 280, 286, 288], "color": [1, 2, 3, 4, 7, 9, 10, 11, 13, 14, 15, 16, 17, 19, 20, 22, 23, 24, 26, 27, 28, 29, 30, 31, 32, 33, 34, 36, 37, 38, 39, 43, 45, 47, 49, 51, 52, 53, 54, 57, 60, 62, 64, 65, 66, 67, 68, 69, 72, 73, 74, 75, 76, 78, 79, 80, 81, 84, 85, 91, 105, 112, 115, 120, 123, 163, 166, 172, 175, 179, 180, 182, 183, 189, 201, 207, 209, 214, 217, 218, 224, 225, 227, 230, 233, 236, 248, 249, 250, 251, 256, 260, 261, 264, 265, 268, 269, 270, 271, 276, 277, 278, 279, 280, 281, 282, 286], "": [1, 3, 4, 8, 9, 10, 11, 12, 13, 14, 16, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 37, 39, 40, 41, 42, 43, 47, 49, 54, 56, 57, 59, 62, 65, 66, 67, 68, 70, 74, 76, 78, 79, 84, 85, 87, 98, 99, 103, 105, 109, 110, 112, 118, 120, 121, 125, 126, 130, 131, 133, 134, 136, 137, 138, 139, 140, 143, 145, 146, 148, 149, 151, 152, 154, 155, 156, 157, 158, 161, 162, 163, 164, 166, 169, 170, 171, 172, 175, 176, 179, 180, 181, 184, 187, 189, 192, 195, 197, 198, 199, 202, 203, 204, 208, 210, 211, 213, 214, 215, 216, 217, 221, 223, 224, 232, 248, 250, 251, 252, 260, 261, 262, 263, 265, 266, 267, 268, 269, 270, 283, 284, 285, 286, 287], "zero": [1, 2, 7, 10, 11, 15, 16, 29, 33, 36, 37, 56, 59, 62, 73, 74, 75, 76, 194, 216, 251, 266, 286], "3": [1, 2, 3, 4, 7, 9, 10, 11, 13, 14, 15, 17, 19, 20, 22, 24, 25, 26, 29, 30, 31, 33, 34, 37, 43, 45, 48, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 65, 66, 68, 69, 73, 74, 75, 76, 78, 80, 84, 85, 87, 88, 109, 115, 118, 125, 126, 133, 134, 139, 145, 162, 163, 164, 169, 170, 175, 182, 216, 217, 218, 239, 248, 249, 250, 251, 253, 255, 257, 258, 260, 261, 264, 265, 266, 267, 268, 269, 270, 272, 277, 279, 281, 286, 287], "ident": [1, 2, 208, 248, 256], "i": [1, 2, 3, 4, 9, 10, 11, 13, 14, 15, 16, 17, 20, 21, 22, 23, 24, 25, 26, 27, 29, 30, 31, 32, 33, 34, 35, 36, 37, 41, 42, 43, 45, 48, 49, 51, 53, 54, 55, 56, 61, 63, 65, 66, 67, 68, 69, 70, 73, 75, 76, 78, 79, 80, 81, 84, 85, 87, 88, 89, 90, 91, 92, 94, 95, 96, 97, 113, 123, 125, 126, 128, 129, 133, 139, 157, 162, 163, 164, 167, 168, 170, 171, 216, 217, 218, 219, 220, 221, 224, 227, 230, 236, 242, 245, 246, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 263, 264, 265, 266, 267, 268, 269, 270, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288], "same": [1, 3, 13, 17, 20, 25, 29, 53, 55, 62, 63, 73, 74, 76, 84, 98, 101, 102, 103, 105, 107, 111, 112, 117, 125, 132, 133, 134, 135, 139, 143, 145, 146, 147, 152, 164, 166, 170, 171, 172, 173, 181, 182, 183, 185, 194, 196, 201, 202, 203, 205, 208, 217, 224, 228, 236, 239, 245, 248, 249, 250, 251, 255, 258, 261, 265, 266, 269], "x": [1, 4, 13, 14, 22, 23, 24, 26, 27, 30, 31, 34, 78, 80, 84, 87, 109, 136, 139, 158, 160, 162, 163, 169, 175, 192, 248, 249, 250, 251, 253, 258, 260, 261, 262, 266, 267, 268, 269, 270, 286, 287], "y": [1, 4, 13, 14, 22, 23, 24, 26, 27, 30, 34, 57, 84, 109, 143, 158, 160, 162, 163, 169, 192, 248, 249, 250, 253, 258, 260, 261, 262, 266, 267, 268, 269, 270, 286, 287], "z": [1, 4, 13, 22, 23, 24, 26, 27, 30, 34, 37, 65, 84, 109, 158, 160, 162, 163, 169, 192, 204, 248, 249, 250, 253, 258, 260, 261, 267, 269, 286, 287], "dir": [1, 2, 68, 69, 248], "scale": [1, 3, 4, 9, 10, 11, 13, 14, 20, 23, 24, 27, 28, 29, 31, 42, 48, 49, 51, 53, 54, 55, 57, 58, 59, 60, 62, 63, 65, 66, 67, 68, 69, 73, 74, 75, 76, 79, 84, 105, 114, 143, 169, 172, 191, 193, 195, 201, 203, 204, 207, 209, 217, 218, 225, 229, 238, 239, 244, 245, 248, 249, 250, 256, 261, 264, 268, 270, 271, 282, 283], "arrai": [1, 2, 3, 4, 7, 10, 11, 15, 17, 20, 24, 26, 28, 29, 30, 32, 33, 37, 41, 42, 46, 48, 49, 51, 53, 54, 55, 56, 57, 58, 60, 61, 62, 63, 65, 67, 68, 69, 72, 73, 74, 75, 76, 78, 79, 84, 109, 133, 139, 150, 161, 184, 242, 248, 249, 250, 251, 252, 256, 257, 261, 265, 266, 267, 268, 269, 270, 280, 282, 285], "2": [1, 3, 4, 7, 10, 11, 13, 14, 16, 17, 20, 22, 23, 24, 25, 26, 27, 28, 29, 30, 32, 33, 34, 36, 37, 42, 49, 53, 54, 55, 56, 57, 58, 60, 61, 62, 63, 65, 66, 67, 68, 70, 73, 74, 75, 76, 84, 85, 87, 97, 105, 109, 111, 122, 125, 126, 135, 136, 139, 145, 162, 163, 164, 170, 171, 216, 217, 218, 220, 248, 249, 250, 251, 253, 255, 256, 258, 260, 264, 266, 267, 268, 269, 270, 272, 274, 278, 280, 281, 283, 285, 286, 287], "1": [1, 2, 3, 4, 5, 7, 9, 10, 11, 13, 14, 15, 16, 17, 20, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43, 44, 46, 47, 49, 51, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 65, 66, 67, 68, 69, 70, 72, 73, 74, 75, 76, 78, 79, 80, 84, 85, 87, 109, 122, 125, 126, 133, 135, 136, 139, 145, 157, 162, 163, 164, 167, 171, 184, 201, 204, 216, 217, 218, 230, 233, 248, 249, 250, 251, 253, 255, 256, 257, 258, 260, 261, 264, 265, 266, 267, 268, 269, 270, 272, 277, 281, 283, 285, 286, 287], "6": [1, 10, 11, 14, 17, 20, 22, 23, 24, 26, 29, 34, 36, 43, 45, 48, 53, 54, 55, 56, 57, 58, 59, 60, 61, 63, 65, 68, 72, 73, 74, 75, 76, 84, 116, 125, 126, 145, 162, 163, 164, 216, 217, 218, 248, 250, 257, 261, 266, 268, 269, 272, 277, 283, 286, 287], "5": [1, 2, 3, 4, 9, 10, 11, 13, 14, 15, 17, 19, 20, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 40, 41, 42, 43, 45, 48, 49, 51, 53, 54, 55, 57, 58, 60, 61, 63, 65, 66, 67, 68, 70, 72, 73, 74, 75, 76, 78, 79, 80, 84, 85, 87, 113, 125, 126, 134, 136, 139, 145, 162, 163, 164, 171, 216, 217, 218, 239, 248, 250, 251, 256, 260, 261, 264, 266, 267, 268, 269, 272, 277, 281, 286], "The": [1, 2, 3, 9, 11, 13, 14, 15, 16, 19, 22, 23, 24, 26, 27, 28, 29, 30, 32, 33, 34, 35, 36, 45, 49, 53, 55, 56, 57, 58, 59, 65, 66, 67, 68, 70, 76, 80, 84, 85, 87, 88, 89, 90, 91, 92, 94, 95, 97, 98, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 129, 130, 131, 133, 134, 135, 136, 137, 138, 139, 140, 142, 143, 146, 149, 152, 156, 157, 158, 159, 160, 162, 163, 164, 166, 167, 173, 175, 178, 179, 181, 182, 188, 189, 194, 196, 203, 209, 214, 216, 217, 218, 220, 225, 226, 229, 230, 232, 234, 236, 237, 239, 241, 242, 244, 248, 249, 250, 251, 252, 253, 254, 255, 256, 258, 261, 262, 264, 265, 266, 267, 268, 269, 270, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287], "below": [1, 2, 3, 13, 15, 21, 56, 57, 58, 81, 93, 100, 102, 104, 106, 108, 111, 114, 117, 119, 122, 127, 131, 133, 134, 137, 139, 140, 142, 143, 145, 146, 148, 149, 152, 155, 158, 160, 162, 164, 176, 178, 180, 181, 183, 185, 188, 191, 194, 197, 200, 202, 207, 209, 216, 224, 227, 230, 234, 236, 239, 242, 245, 251, 270], "gener": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 65, 66, 67, 68, 69, 70, 72, 73, 74, 75, 76, 78, 79, 80, 81, 84, 87, 88, 108, 125, 132, 133, 135, 138, 139, 152, 156, 159, 161, 162, 163, 164, 166, 171, 173, 177, 181, 183, 186, 212, 217, 230, 233, 234, 237, 239, 243, 248, 250, 251, 253, 255, 256, 261, 264, 266, 269, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287], "repeat": [1, 2, 15, 20, 23, 24, 26, 30, 33, 37, 54, 68, 149, 207, 218, 264, 268, 270, 286], "primit": [1, 2, 15, 16, 22, 29, 37, 68, 69, 79, 97, 100, 104, 113, 125, 129, 157, 170, 175, 177, 179, 180, 187, 196, 214, 217, 218, 248, 256, 269, 271, 280, 281, 282, 283, 284, 285, 286], "arrow_actor": [1, 16, 26, 30, 248], "what": [1, 2, 10, 13, 14, 22, 29, 65, 85, 133, 139, 163, 164, 170, 171, 216, 227, 230, 233, 236, 245, 252, 270], "we": [1, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 24, 25, 27, 28, 29, 32, 33, 34, 36, 37, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 65, 66, 67, 68, 69, 70, 72, 73, 74, 75, 76, 78, 79, 80, 84, 85, 87, 88, 89, 90, 91, 92, 94, 95, 97, 99, 100, 105, 107, 108, 109, 110, 111, 113, 115, 116, 118, 122, 123, 124, 126, 129, 130, 131, 132, 133, 136, 137, 139, 142, 145, 152, 156, 157, 160, 162, 164, 166, 167, 171, 172, 173, 174, 175, 177, 178, 179, 180, 181, 184, 188, 190, 191, 192, 193, 195, 196, 197, 202, 203, 204, 205, 206, 207, 208, 209, 210, 212, 214, 216, 217, 218, 220, 221, 222, 226, 227, 228, 229, 230, 232, 233, 235, 236, 237, 238, 241, 243, 244, 245, 248, 251, 256, 263, 264, 267, 268, 270, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287], "did": [1, 2, 169, 170, 267], "time": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 65, 66, 67, 68, 69, 70, 72, 73, 74, 75, 76, 78, 79, 80, 84, 100, 110, 111, 118, 127, 132, 133, 139, 140, 141, 142, 143, 145, 146, 149, 154, 159, 161, 162, 164, 165, 169, 170, 171, 172, 175, 176, 177, 180, 183, 184, 185, 187, 188, 189, 191, 196, 197, 203, 204, 206, 209, 212, 215, 216, 217, 224, 226, 228, 229, 230, 232, 233, 235, 236, 238, 239, 242, 244, 245, 246, 248, 250, 251, 252, 266, 268, 270, 286, 287], "random": [1, 2, 4, 9, 11, 19, 20, 24, 25, 31, 32, 33, 54, 69, 73, 74, 75, 76, 79, 80, 84, 85, 236, 242, 248, 251, 267, 269, 270], "cen2": [1, 2, 15], "rand": [1, 2, 4, 11, 19, 20, 24, 25, 32, 33, 69, 73, 74, 75, 76, 79, 84, 85, 248, 269, 270], "dir2": [1, 2], "cols2": [1, 2, 15], "arrow_actor2": 1, "ad": [1, 2, 7, 10, 11, 12, 13, 15, 23, 25, 28, 32, 33, 34, 41, 44, 49, 53, 55, 56, 57, 58, 59, 60, 61, 62, 63, 73, 74, 75, 85, 89, 90, 91, 92, 94, 95, 97, 100, 102, 103, 104, 106, 108, 109, 111, 112, 113, 114, 116, 123, 125, 126, 129, 131, 132, 133, 134, 137, 143, 146, 149, 150, 152, 153, 154, 155, 156, 157, 158, 159, 160, 162, 163, 164, 167, 169, 171, 172, 174, 175, 177, 178, 179, 183, 184, 185, 187, 188, 189, 190, 191, 192, 193, 194, 200, 201, 202, 203, 204, 206, 211, 213, 214, 216, 217, 218, 220, 227, 229, 245, 248, 250, 251, 261, 268, 270, 277, 280, 281, 282, 283, 284, 285, 286], "our": [1, 2, 15, 22, 27, 29, 32, 33, 34, 37, 54, 59, 62, 65, 66, 67, 68, 70, 76, 84, 88, 89, 90, 91, 92, 94, 95, 96, 97, 99, 113, 118, 123, 128, 129, 133, 136, 157, 164, 167, 168, 171, 173, 190, 193, 205, 208, 210, 219, 220, 221, 229, 232, 255, 261, 264, 285, 287], "add": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 53, 54, 55, 57, 59, 60, 61, 62, 65, 66, 67, 68, 69, 70, 72, 73, 74, 75, 76, 78, 79, 80, 84, 85, 91, 92, 94, 95, 102, 103, 104, 105, 106, 108, 109, 120, 121, 131, 134, 137, 140, 143, 146, 147, 155, 158, 160, 162, 164, 169, 173, 175, 178, 179, 180, 182, 183, 186, 188, 189, 192, 207, 209, 210, 211, 213, 217, 218, 237, 245, 248, 249, 250, 256, 261, 265, 268, 269, 270, 271, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287], "interact": [1, 2, 5, 6, 7, 8, 9, 10, 11, 12, 13, 15, 18, 20, 21, 23, 25, 26, 27, 28, 29, 31, 32, 36, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 65, 66, 67, 68, 69, 70, 72, 73, 74, 75, 76, 77, 79, 80, 81, 88, 98, 99, 103, 133, 139, 145, 150, 164, 173, 182, 189, 216, 245, 251, 266, 268, 270, 277], "fals": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 25, 26, 27, 28, 29, 31, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 65, 66, 67, 68, 69, 70, 72, 73, 74, 75, 76, 78, 79, 80, 84, 85, 136, 139, 149, 227, 233, 247, 248, 249, 250, 252, 254, 255, 256, 257, 261, 264, 265, 266, 268, 269, 270, 286], "size": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 65, 66, 67, 68, 69, 70, 72, 73, 74, 75, 76, 78, 79, 80, 84, 85, 101, 103, 105, 107, 112, 120, 126, 131, 133, 139, 140, 142, 143, 152, 162, 171, 173, 176, 184, 223, 239, 241, 244, 248, 249, 250, 251, 253, 256, 258, 264, 266, 268, 269, 270, 271, 279, 282], "600": [1, 2, 13, 15, 17, 18, 23, 24, 25, 26, 28, 30, 31, 32, 35, 36, 37, 42, 45, 47, 48, 65, 66, 67, 68, 72, 175, 179, 181, 218, 248, 286], "record": [1, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 65, 66, 67, 68, 69, 70, 72, 73, 74, 75, 76, 78, 79, 80, 143, 146, 148, 149, 152, 164, 204, 211, 217, 250, 255, 271, 278, 286], "out_path": [1, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 65, 66, 67, 68, 69, 70, 72, 73, 74, 75, 76, 78, 79, 80, 270], "viz_arrow": 1, "png": [1, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 65, 66, 67, 68, 69, 70, 72, 73, 74, 75, 76, 78, 79, 80, 88, 184, 252, 253, 257, 268, 270], "total": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 65, 66, 67, 68, 69, 70, 72, 73, 74, 75, 76, 78, 79, 80, 84, 143, 208, 251, 261, 266, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286], "run": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 65, 66, 67, 68, 69, 70, 72, 73, 74, 75, 76, 78, 79, 80, 84, 89, 90, 91, 92, 94, 95, 97, 113, 123, 129, 133, 134, 157, 166, 167, 169, 171, 181, 187, 220, 222, 245, 266, 267, 280, 284, 286, 287], "script": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 65, 66, 67, 68, 69, 70, 72, 73, 74, 75, 76, 78, 79, 80, 87, 179, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287], "0": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43, 44, 45, 46, 47, 49, 50, 51, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 65, 66, 67, 68, 69, 70, 72, 73, 74, 75, 76, 78, 79, 80, 83, 84, 85, 87, 109, 116, 134, 149, 162, 169, 175, 184, 208, 216, 217, 218, 224, 227, 230, 233, 244, 245, 248, 249, 250, 251, 253, 255, 256, 257, 258, 260, 261, 262, 264, 265, 266, 267, 268, 269, 270, 272, 280, 282, 284, 287], "minut": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 65, 66, 67, 68, 69, 70, 72, 73, 74, 75, 76, 78, 79, 80, 171], "000": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 65, 66, 67, 68, 69, 70, 72, 73, 74, 75, 76, 78, 79, 80, 116, 251], "second": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 65, 66, 67, 68, 69, 70, 72, 73, 74, 75, 76, 78, 79, 80, 84, 87, 101, 105, 107, 109, 118, 125, 126, 130, 135, 145, 160, 162, 163, 164, 166, 170, 176, 196, 209, 224, 234, 239, 242, 245, 250, 251, 261, 266, 270, 287], "python": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 65, 66, 67, 68, 69, 70, 72, 73, 74, 75, 76, 78, 79, 80, 81, 87, 88, 89, 90, 91, 92, 94, 95, 96, 97, 98, 99, 113, 123, 125, 126, 128, 129, 130, 133, 135, 141, 142, 150, 152, 156, 157, 158, 160, 162, 163, 164, 167, 168, 169, 170, 171, 175, 180, 183, 184, 216, 217, 218, 219, 220, 224, 251, 257, 261, 266, 270, 274, 277, 280, 281, 282, 283, 287, 288], "sourc": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 65, 66, 67, 68, 69, 70, 72, 73, 74, 75, 76, 78, 79, 80, 81, 88, 89, 90, 91, 92, 94, 95, 96, 97, 113, 121, 123, 125, 126, 128, 129, 133, 141, 145, 157, 164, 167, 168, 169, 171, 172, 219, 220, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 284, 287, 288], "py": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 65, 66, 67, 68, 69, 70, 72, 73, 74, 75, 76, 78, 79, 80, 87, 90, 133, 139, 142, 145, 152, 160, 166, 181, 189, 192, 207, 247, 248, 267, 275, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287], "jupyt": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 65, 66, 67, 68, 69, 70, 72, 73, 74, 75, 76, 78, 79, 80, 81, 88, 136, 145, 164, 266], "notebook": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 65, 66, 67, 68, 69, 70, 72, 73, 74, 75, 76, 78, 79, 80, 81, 145, 164], "ipynb": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 65, 66, 67, 68, 69, 70, 72, 73, 74, 75, 76, 78, 79, 80, 145], "galleri": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 65, 66, 67, 68, 69, 70, 72, 73, 74, 75, 76, 78, 79, 80, 81, 143, 164, 278], "sphinx": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 65, 66, 67, 68, 69, 70, 72, 73, 74, 75, 76, 78, 79, 80, 81, 164, 278, 286, 287], "cone_actor1": 2, "height": [2, 16, 26, 30, 42, 57, 60, 68, 74, 76, 84, 85, 101, 105, 112, 126, 139, 146, 163, 169, 224, 227, 233, 245, 248, 250, 258, 264, 266, 268, 269, 270, 271], "here": [2, 8, 9, 10, 11, 12, 13, 14, 16, 17, 20, 22, 23, 24, 25, 26, 27, 28, 29, 30, 36, 39, 45, 49, 54, 56, 59, 68, 69, 73, 75, 84, 85, 89, 90, 91, 92, 94, 95, 97, 100, 103, 105, 107, 109, 110, 112, 113, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 129, 133, 137, 139, 145, 157, 158, 162, 163, 164, 167, 171, 175, 176, 181, 184, 197, 199, 200, 203, 208, 209, 210, 216, 218, 220, 221, 223, 224, 225, 227, 233, 234, 236, 238, 243, 245, 251, 252, 267, 287], "re": [2, 8, 12, 15, 22, 28, 78, 79, 112, 139, 149, 171, 210, 268, 269, 277, 280, 281, 286, 287], "vtkconesourc": 2, "cone_actor2": 2, "use_primit": [2, 9, 15, 65, 248, 286], "viz_con": 2, "In": [3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 16, 18, 20, 22, 24, 25, 29, 30, 31, 34, 39, 49, 53, 56, 57, 58, 62, 65, 66, 67, 68, 69, 72, 73, 74, 75, 76, 78, 80, 84, 87, 102, 103, 107, 109, 118, 120, 121, 126, 127, 131, 132, 133, 135, 137, 138, 139, 140, 141, 143, 145, 146, 152, 160, 162, 163, 164, 166, 169, 170, 171, 174, 175, 188, 203, 222, 224, 227, 232, 236, 244, 245, 248, 263, 270, 285], "itertool": [3, 4, 14, 16, 19, 20, 23, 26, 28, 30, 37, 72, 73, 74, 75, 76, 84], "io": [3, 4, 14, 17, 18, 34, 41, 70, 85, 151, 162, 164, 184, 271, 280, 284], "util": [3, 4, 10, 11, 14, 16, 17, 20, 23, 24, 26, 27, 28, 29, 30, 33, 34, 36, 37, 42, 46, 60, 65, 66, 68, 70, 73, 74, 75, 76, 84, 85, 89, 91, 137, 160, 163, 173, 179, 218, 229, 232, 249, 271, 273, 276, 277, 280, 285, 286], "fetch_viz_model": [3, 70, 85, 271], "fetch_viz_textur": [3, 4, 14, 18, 271], "read_viz_model": [3, 70, 271], "read_viz_textur": [3, 4, 14, 18, 271], "creat": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 29, 30, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 48, 49, 50, 51, 53, 55, 56, 57, 59, 60, 61, 63, 64, 65, 68, 69, 70, 73, 74, 75, 76, 77, 80, 81, 85, 88, 93, 98, 99, 100, 101, 104, 105, 107, 109, 112, 115, 116, 117, 118, 121, 122, 125, 126, 127, 135, 136, 137, 138, 139, 140, 142, 143, 144, 145, 146, 149, 150, 152, 154, 156, 158, 159, 160, 161, 162, 163, 164, 166, 170, 171, 173, 174, 175, 176, 177, 179, 181, 182, 184, 185, 190, 191, 193, 194, 195, 197, 199, 202, 205, 206, 207, 208, 209, 212, 214, 216, 217, 218, 225, 227, 228, 229, 235, 236, 237, 238, 240, 241, 246, 248, 251, 253, 256, 259, 261, 265, 266, 268, 269, 270, 281, 282, 284, 286, 287], "start": [3, 4, 6, 8, 9, 10, 11, 12, 13, 14, 16, 18, 19, 20, 22, 23, 24, 26, 27, 28, 29, 30, 32, 33, 34, 35, 37, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 65, 66, 67, 68, 69, 70, 72, 73, 74, 75, 76, 78, 79, 80, 84, 87, 98, 99, 104, 105, 112, 116, 121, 122, 124, 125, 130, 131, 142, 148, 152, 153, 155, 166, 169, 170, 171, 173, 174, 175, 176, 178, 180, 182, 183, 184, 185, 191, 193, 194, 195, 196, 197, 200, 202, 203, 208, 209, 212, 214, 216, 222, 223, 225, 226, 227, 228, 229, 230, 231, 237, 238, 240, 243, 245, 251, 265, 266, 270, 271, 279, 280, 286], "next": [3, 4, 14, 16, 18, 19, 20, 23, 26, 28, 29, 30, 35, 36, 37, 48, 68, 72, 73, 74, 75, 76, 84, 87, 133, 149, 169, 170, 171, 227, 239, 242, 250, 251, 268, 286, 287], "load": [3, 4, 13, 14, 17, 18, 22, 27, 34, 65, 70, 139, 162, 167, 169, 171, 175, 184, 187, 190, 214, 237, 248, 256, 257, 264, 268, 271, 280, 285, 286], "each": [3, 4, 10, 11, 12, 14, 16, 20, 22, 24, 26, 27, 28, 29, 30, 31, 32, 33, 35, 37, 39, 49, 54, 55, 56, 57, 59, 61, 66, 67, 68, 73, 75, 76, 84, 98, 99, 107, 109, 110, 112, 118, 132, 133, 137, 139, 140, 145, 152, 160, 162, 166, 169, 171, 174, 175, 176, 180, 183, 188, 196, 203, 208, 210, 212, 216, 218, 223, 224, 239, 242, 245, 248, 249, 250, 251, 253, 256, 258, 261, 265, 266, 268, 269, 277], "For": [3, 5, 20, 23, 25, 26, 29, 36, 58, 59, 65, 66, 67, 68, 70, 78, 80, 84, 87, 89, 90, 91, 92, 94, 95, 97, 107, 113, 115, 123, 129, 133, 145, 150, 152, 155, 157, 164, 167, 174, 182, 185, 191, 209, 212, 213, 220, 222, 224, 225, 226, 228, 233, 236, 239, 242, 246, 250, 251, 253, 254, 255, 265, 267, 269, 270, 272], "one": [3, 9, 11, 14, 23, 28, 29, 32, 33, 34, 36, 49, 54, 55, 61, 63, 67, 68, 84, 103, 104, 105, 107, 115, 124, 133, 137, 138, 141, 145, 160, 162, 169, 170, 171, 176, 177, 192, 196, 210, 215, 217, 224, 225, 227, 228, 233, 237, 239, 242, 245, 246, 248, 249, 250, 251, 261, 264, 265, 266, 267, 268, 269, 270, 277, 280, 283, 286, 287], "anoth": [3, 19, 34, 58, 59, 61, 105, 117, 139, 140, 171, 179, 183, 188, 193, 198, 217, 218, 221, 228, 230, 233, 236, 239, 242, 245, 251, 287], "moon": [3, 171], "collect": [3, 159, 169, 216, 246, 266], "github": [3, 18, 56, 87, 88, 89, 90, 91, 92, 94, 95, 96, 97, 113, 123, 128, 129, 139, 151, 157, 160, 167, 168, 169, 170, 175, 179, 218, 219, 220, 253, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287], "load_imag": [3, 4, 14, 18, 41, 134, 271, 280], "imag": [3, 4, 13, 18, 22, 25, 29, 34, 35, 41, 96, 100, 128, 133, 134, 139, 142, 143, 148, 158, 160, 162, 164, 168, 175, 184, 218, 219, 234, 236, 245, 246, 248, 251, 253, 256, 257, 266, 268, 269, 270, 271, 277, 280, 284, 286], "earth_filenam": 3, "1_earth_8k": [3, 14, 18], "jpg": [3, 4, 14, 18, 253, 257, 268], "earth_imag": [3, 4], "texture_on_spher": [3, 4, 14, 18, 271], "earth_actor": [3, 4, 14], "newli": [3, 7, 14, 143, 172, 189, 218], "Then": [3, 14, 19, 22, 27, 32, 33, 34, 39, 47, 49, 55, 57, 59, 65, 68, 84, 169, 171, 172, 173, 174, 179, 182, 185, 191, 194, 196, 197, 202, 207, 216, 240, 248, 249, 269, 287], "do": [3, 20, 29, 57, 68, 73, 84, 88, 133, 170, 171, 216, 217, 218, 224, 227, 236, 239, 242, 248, 251, 268, 285, 286], "moon_filenam": 3, "8k": 3, "moon_imag": 3, "moon_actor": 3, "both": [3, 15, 22, 25, 36, 60, 72, 84, 104, 106, 107, 115, 127, 143, 163, 164, 169, 172, 180, 183, 189, 192, 200, 209, 218, 226, 237, 240, 241, 245, 248, 249, 255, 257, 258, 264, 268, 270], "alreadi": [3, 18, 28, 58, 65, 120, 133, 137, 139, 145, 164, 169, 172, 173, 185, 189, 192, 203, 217, 218, 225, 228, 237, 239, 240, 245, 253, 261, 266, 269, 287], "exist": [3, 18, 29, 53, 100, 102, 108, 115, 118, 131, 146, 149, 171, 173, 182, 189, 192, 216, 239, 245, 250, 253, 268, 286], "alter": [3, 198], "posit": [3, 4, 7, 10, 13, 14, 17, 20, 22, 23, 24, 25, 26, 27, 29, 30, 32, 33, 34, 37, 39, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 54, 55, 57, 59, 60, 61, 62, 63, 65, 68, 72, 73, 74, 75, 76, 79, 84, 85, 101, 103, 107, 109, 133, 137, 139, 145, 148, 160, 163, 164, 166, 173, 174, 176, 178, 182, 183, 185, 188, 189, 194, 200, 201, 202, 205, 213, 216, 217, 223, 229, 241, 242, 244, 248, 249, 250, 252, 253, 255, 258, 261, 262, 264, 265, 266, 267, 268, 269, 270, 271, 279, 280, 285, 286], "correctli": [3, 4, 76, 84, 112, 121, 143, 175, 208, 226, 229, 234, 280, 287], "comparison": [3, 68, 223, 240, 277], "setposit": [3, 11, 13, 14, 48, 49, 51, 57, 59, 60, 72, 73, 74, 75, 76, 84, 248, 271], "setscal": [3, 4, 14], "rotat": [3, 4, 9, 14, 19, 28, 34, 35, 37, 49, 51, 57, 58, 60, 62, 66, 68, 73, 74, 75, 84, 110, 111, 114, 126, 150, 158, 163, 167, 173, 182, 183, 186, 189, 192, 193, 194, 195, 207, 209, 216, 217, 218, 242, 248, 250, 256, 258, 260, 268, 270, 271, 285, 286], "align": [3, 10, 13, 14, 22, 27, 34, 39, 49, 51, 65, 68, 84, 115, 184, 208, 223, 232, 238, 241, 258, 268, 271, 286], "25": [3, 4, 13, 14, 26, 31, 34, 36, 39, 42, 49, 54, 58, 66, 67, 72, 216, 217, 218, 267, 281], "90": [3, 4, 14, 26, 30, 58, 60, 63, 73, 75, 175, 269, 278], "showmanag": [3, 4, 6, 8, 9, 10, 11, 12, 13, 14, 16, 19, 20, 22, 23, 24, 26, 27, 28, 29, 30, 33, 34, 35, 37, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 69, 70, 72, 73, 74, 75, 76, 78, 79, 80, 84, 85, 211, 213, 215, 217, 245, 262, 265, 266, 271, 280, 286], "class": [3, 14, 16, 22, 35, 101, 131, 134, 135, 137, 140, 141, 143, 146, 149, 160, 162, 163, 170, 172, 173, 181, 183, 185, 189, 190, 192, 216, 217, 218, 224, 226, 229, 236, 245, 248, 249, 250, 251, 255, 256, 258, 259, 261, 262, 265, 266, 268, 270, 280, 284, 286], "interfac": [3, 4, 14, 16, 22, 88, 99, 126, 162, 185, 216, 223, 227, 246, 251, 270], "between": [3, 4, 14, 16, 20, 29, 32, 33, 36, 42, 48, 53, 58, 59, 66, 67, 68, 69, 72, 73, 75, 76, 78, 80, 84, 107, 109, 126, 136, 145, 162, 163, 164, 166, 169, 173, 178, 185, 188, 200, 216, 217, 231, 232, 237, 242, 244, 248, 250, 253, 257, 260, 261, 266, 267, 268, 270, 286], "interactor": [3, 4, 14, 16, 89, 143, 146, 233, 242, 245, 262, 270, 273], "showm": [3, 4, 6, 8, 9, 10, 11, 12, 14, 16, 19, 20, 23, 24, 26, 28, 30, 33, 37, 43, 44, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 69, 70, 72, 73, 74, 75, 76, 78, 79, 80, 84, 85, 265, 266, 270], "900": [3, 4, 6, 8, 9, 12, 13, 14, 16, 18, 19, 20, 22, 27, 28, 33, 35, 37, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 72, 73, 74, 75, 76, 84, 250], "768": [3, 4, 6, 8, 9, 10, 11, 12, 14, 16, 18, 19, 20, 28, 33, 35, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 73, 74, 75, 76, 84, 226, 229, 250], "reset_camera": [3, 4, 6, 8, 9, 10, 11, 12, 13, 14, 16, 17, 18, 19, 20, 22, 24, 25, 26, 27, 28, 29, 30, 33, 34, 35, 42, 46, 49, 51, 53, 54, 55, 56, 57, 58, 60, 61, 63, 70, 72, 73, 74, 75, 76, 79, 84, 85, 270, 271], "order_transpar": [3, 4, 6, 8, 9, 10, 11, 12, 14, 16, 19, 20, 24, 26, 28, 30, 33, 34, 35, 37, 53, 54, 55, 56, 57, 58, 60, 61, 63, 72, 73, 74, 75, 76, 79, 84, 250, 270, 281], "true": [3, 4, 5, 6, 8, 9, 10, 11, 12, 14, 16, 18, 19, 20, 22, 23, 24, 25, 26, 27, 29, 30, 32, 33, 34, 35, 37, 40, 41, 42, 43, 45, 48, 49, 50, 51, 53, 54, 55, 56, 57, 58, 60, 61, 62, 63, 65, 68, 70, 72, 73, 74, 75, 76, 78, 79, 84, 105, 139, 183, 229, 233, 248, 249, 250, 251, 252, 254, 255, 256, 257, 261, 262, 264, 265, 266, 267, 268, 269, 270], "let": [3, 4, 9, 10, 11, 13, 14, 16, 19, 20, 22, 24, 25, 28, 29, 30, 32, 33, 34, 37, 39, 40, 41, 47, 49, 59, 65, 66, 67, 69, 70, 85, 87, 88, 136, 139, 145, 230, 232, 233, 236, 242, 246, 265, 281], "focu": [3, 14, 101, 104, 105, 116, 117, 130, 139, 142, 145, 186, 223, 226, 235, 238, 244, 268], "can": [3, 5, 8, 9, 11, 12, 13, 14, 16, 20, 22, 23, 25, 27, 28, 29, 30, 31, 32, 33, 34, 37, 39, 47, 48, 49, 51, 53, 54, 55, 58, 59, 62, 65, 66, 67, 69, 78, 80, 84, 85, 87, 89, 90, 91, 92, 93, 94, 95, 97, 101, 103, 105, 107, 109, 110, 111, 112, 113, 115, 116, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 129, 131, 132, 133, 136, 137, 138, 139, 140, 141, 142, 143, 145, 149, 152, 157, 158, 160, 162, 163, 164, 166, 167, 169, 170, 171, 172, 173, 174, 177, 178, 179, 180, 181, 183, 184, 185, 187, 188, 190, 191, 192, 194, 197, 200, 202, 207, 209, 212, 216, 217, 218, 220, 224, 225, 226, 227, 228, 229, 230, 231, 232, 234, 236, 237, 238, 239, 240, 243, 245, 246, 248, 250, 251, 252, 253, 257, 258, 262, 265, 266, 267, 268, 269, 270, 283, 284, 287], "determin": [3, 14, 16, 24, 37, 42, 65, 84, 105, 110, 146, 229, 232, 256, 269, 270, 286], "durat": [3, 14, 16, 35, 72, 73, 74, 75, 76, 84, 217, 250, 270, 271], "counter": [3, 4, 9, 14, 16, 19, 20, 23, 26, 28, 29, 30, 33, 37, 72, 73, 74, 75, 76, 84, 183, 260, 267, 269], "avoid": [3, 11, 14, 16, 19, 20, 29, 104, 133, 145, 152, 164, 166, 251, 261, 280], "global": [3, 14, 16, 19, 20, 22, 23, 24, 26, 27, 29, 30, 34, 37, 41, 48, 49, 70, 72, 73, 74, 75, 76, 84, 137, 146, 178, 205, 218, 247, 251, 254], "variabl": [3, 14, 16, 19, 20, 22, 23, 24, 26, 27, 30, 32, 37, 49, 65, 68, 69, 70, 73, 75, 84, 85, 105, 108, 175, 196, 236, 243, 248, 263, 268], "count": [3, 4, 9, 14, 16, 19, 20, 23, 26, 28, 30, 37, 72, 73, 74, 75, 76, 84, 149, 180, 217, 256, 269, 286], "set_camera": [3, 4, 7, 14, 17, 23, 24, 25, 26, 30, 33, 37, 42, 46, 49, 51, 58, 62, 63, 72, 73, 74, 75, 76, 79, 270, 271], "ensur": [3, 8, 27, 29, 223, 226, 229, 232, 241, 244, 248, 258, 261, 270], "camera": [3, 4, 5, 7, 8, 9, 14, 23, 24, 25, 26, 29, 30, 33, 35, 37, 42, 46, 51, 52, 57, 58, 59, 60, 63, 65, 68, 73, 75, 76, 81, 163, 169, 175, 177, 179, 184, 189, 215, 217, 218, 248, 250, 256, 265, 269, 270, 271, 286], "optim": [3, 100, 107, 109, 153, 163, 169, 180, 196, 217, 230, 261], "24": [3, 23, 164, 166, 216, 218, 233, 261, 264, 267, 269, 277, 278, 286], "00": [3, 25, 72, 169, 170], "4": [3, 5, 7, 9, 11, 13, 14, 17, 19, 20, 22, 23, 24, 26, 29, 37, 40, 41, 45, 49, 51, 53, 54, 55, 56, 57, 58, 60, 61, 68, 69, 70, 73, 74, 75, 76, 78, 80, 84, 87, 106, 109, 123, 125, 126, 136, 137, 139, 145, 149, 162, 163, 164, 199, 216, 217, 218, 224, 227, 239, 248, 249, 250, 251, 255, 256, 257, 261, 264, 266, 267, 268, 269, 270, 272, 277, 280, 282, 286], "34": [3, 261, 285], "focal_point": [3, 7, 17, 23, 24, 25, 26, 30, 37, 72, 73, 75, 79, 270], "view_up": [3, 7, 23, 24, 25, 26, 30, 37, 72, 73, 75, 79, 250, 270], "place": [3, 4, 34, 39, 45, 49, 57, 60, 65, 98, 99, 103, 137, 140, 143, 146, 155, 162, 208, 248, 255, 258, 268, 280, 286], "bloomington": 3, "IN": [3, 288], "home": [3, 88, 235, 253, 286], "headquart": 3, "39": [3, 4, 76, 277, 278], "3175": 3, "025": [3, 248], "radiu": [3, 14, 16, 20, 30, 47, 48, 49, 54, 57, 60, 65, 68, 72, 73, 74, 76, 84, 163, 248, 261, 264, 267, 268], "002": [3, 26, 30], "sphere_actor": [3, 4, 9, 19, 20, 32, 33, 79, 248], "blue_medium": 3, "also": [3, 13, 14, 17, 22, 23, 25, 27, 28, 29, 31, 33, 42, 54, 55, 56, 58, 59, 65, 68, 72, 84, 87, 89, 90, 91, 92, 94, 95, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 115, 116, 118, 120, 121, 122, 123, 124, 125, 126, 127, 129, 130, 131, 132, 133, 134, 135, 137, 139, 140, 143, 145, 146, 149, 155, 157, 158, 161, 162, 163, 166, 167, 169, 170, 171, 172, 174, 175, 177, 178, 180, 182, 184, 185, 188, 189, 192, 195, 196, 203, 205, 206, 208, 209, 216, 217, 218, 220, 222, 225, 227, 228, 230, 231, 232, 233, 234, 236, 237, 238, 239, 240, 242, 243, 245, 250, 251, 255, 261, 268, 270, 286, 287], "text": [3, 4, 9, 10, 13, 22, 23, 24, 26, 27, 30, 34, 37, 38, 43, 48, 50, 72, 73, 74, 75, 76, 81, 85, 105, 112, 126, 152, 155, 160, 162, 164, 171, 197, 216, 217, 223, 229, 238, 241, 244, 248, 257, 268, 270, 271, 280, 281, 283, 284, 285, 286, 287], "text_actor": 3, "text_3d": [3, 4, 271], "indiana": 3, "42": [3, 25, 277, 282], "31": [3, 25, 54, 216, 218, 272, 278, 286], "03": [3, 216, 239, 248, 264, 272, 278, 285], "white": [3, 4, 25, 248, 270], "004": [3, 30], "model": [3, 5, 6, 8, 12, 65, 66, 67, 68, 69, 70, 85, 99, 101, 102, 104, 106, 122, 125, 132, 135, 138, 141, 144, 145, 147, 153, 161, 163, 164, 169, 172, 175, 179, 181, 184, 187, 192, 195, 199, 203, 205, 208, 210, 214, 253, 256, 260, 261, 283, 284, 286], "satellit": [3, 171], "circl": [3, 31, 39, 44, 47, 49, 173, 216, 268], "satellite_filenam": 3, "satellite_obj": 3, "obj": [3, 10, 13, 22, 27, 28, 34, 70, 85, 88, 169, 252, 257, 266, 268, 286], "load_polydata": [3, 17, 70, 85, 271], "satellite_actor": 3, "get_actor_from_polydata": [3, 17, 271], "75": [3, 13, 22, 27, 34, 43, 257, 280], "005": [3, 4, 26, 30], "timer_callback": [3, 4, 6, 8, 12, 14, 16, 19, 20, 23, 24, 26, 28, 29, 30, 33, 35, 37, 41, 70, 72, 73, 74, 75, 76, 84, 270], "function": [3, 4, 9, 13, 14, 17, 21, 22, 24, 26, 27, 28, 29, 30, 32, 33, 34, 35, 37, 41, 49, 50, 56, 58, 60, 63, 65, 67, 68, 69, 74, 76, 81, 84, 85, 87, 88, 101, 108, 115, 120, 122, 131, 132, 137, 141, 147, 149, 153, 158, 160, 162, 163, 165, 167, 172, 173, 175, 179, 180, 181, 182, 184, 185, 186, 187, 188, 189, 192, 193, 195, 202, 204, 206, 207, 208, 211, 216, 217, 220, 224, 226, 227, 228, 229, 230, 231, 232, 234, 236, 239, 242, 243, 245, 248, 250, 251, 254, 255, 258, 261, 264, 265, 266, 267, 268, 269, 270, 277, 278, 280, 281, 283, 284, 285, 286, 287], "statement": [3, 65], "when": [3, 10, 11, 20, 23, 25, 26, 28, 30, 34, 48, 49, 50, 53, 56, 57, 65, 66, 69, 105, 120, 122, 133, 134, 139, 140, 143, 148, 149, 152, 162, 164, 166, 169, 171, 172, 176, 177, 179, 183, 184, 188, 189, 194, 202, 206, 213, 215, 216, 217, 222, 226, 227, 229, 230, 232, 236, 238, 241, 242, 244, 245, 248, 250, 251, 253, 255, 261, 268, 270, 277, 278, 279, 280, 283, 284, 285, 286, 287], "certain": [3, 14, 48, 59, 134, 137, 140, 143, 158, 218, 235, 250, 258, 266], "event": [3, 10, 14, 22, 28, 34, 70, 79, 99, 131, 139, 140, 143, 146, 149, 171, 173, 174, 176, 182, 185, 188, 191, 216, 217, 245, 250, 262, 265, 266, 268, 270, 280, 281, 288], "happen": [3, 14, 20, 25, 36, 139, 145, 164, 188, 191, 197, 206, 208, 216, 224, 227, 233, 236, 242, 270, 287], "base": [3, 17, 34, 53, 56, 58, 59, 60, 61, 63, 64, 67, 68, 69, 73, 74, 75, 76, 81, 84, 87, 88, 100, 101, 105, 106, 107, 108, 112, 114, 116, 117, 125, 126, 143, 147, 152, 156, 162, 163, 164, 167, 169, 170, 171, 172, 175, 182, 183, 192, 201, 213, 215, 216, 217, 218, 223, 234, 236, 237, 238, 241, 244, 245, 246, 248, 249, 250, 251, 253, 255, 256, 258, 260, 261, 262, 266, 268, 269, 270, 271, 281, 283, 285], "so": [3, 13, 14, 16, 22, 25, 29, 32, 33, 34, 37, 43, 49, 54, 61, 65, 67, 73, 75, 84, 85, 88, 101, 103, 104, 105, 106, 107, 108, 109, 112, 117, 118, 119, 120, 121, 122, 124, 126, 131, 134, 140, 143, 144, 146, 149, 152, 158, 159, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 180, 181, 182, 183, 185, 187, 191, 192, 196, 200, 204, 206, 207, 208, 209, 210, 212, 213, 216, 217, 227, 228, 231, 233, 237, 239, 240, 242, 243, 248, 249, 266, 267, 270, 287], "continu": [3, 20, 33, 56, 65, 107, 110, 112, 115, 120, 125, 137, 143, 146, 160, 162, 167, 170, 172, 188, 207, 209, 217, 220, 226, 228, 234, 241, 243, 285, 286], "while": [3, 9, 48, 99, 101, 103, 104, 106, 107, 108, 109, 110, 112, 118, 120, 127, 134, 169, 171, 175, 176, 178, 179, 180, 181, 184, 188, 192, 200, 202, 206, 208, 209, 210, 211, 212, 216, 217, 218, 222, 226, 227, 229, 234, 241, 243, 250, 251, 268, 269, 286], "less": [3, 20, 37, 139, 140, 142, 145, 169, 188, 197, 233, 236, 261, 270], "than": [3, 11, 13, 25, 104, 108, 116, 125, 133, 142, 143, 145, 146, 149, 152, 162, 164, 171, 184, 188, 193, 196, 197, 199, 211, 227, 233, 241, 242, 244, 248, 251, 255, 261, 266, 267, 269, 270, 280], "450": [3, 49, 85, 268, 284], "def": [3, 4, 6, 8, 9, 10, 11, 12, 13, 14, 16, 19, 20, 22, 23, 24, 26, 27, 28, 29, 30, 33, 34, 35, 37, 39, 41, 42, 43, 46, 48, 49, 50, 51, 56, 60, 63, 70, 72, 73, 74, 75, 76, 80, 84, 109, 118, 139, 250, 255, 265, 266], "_obj": [3, 4, 6, 8, 11, 12, 14, 16, 19, 20, 23, 24, 26, 29, 30, 33, 35, 37, 39, 41, 49, 72, 73, 74, 75, 76, 84, 268], "_event": [3, 4, 6, 8, 11, 12, 14, 16, 19, 20, 22, 23, 24, 26, 27, 29, 30, 33, 35, 37, 70, 72, 73, 74, 75, 76, 84, 265], "cnt": [3, 4, 13, 14, 16, 19, 20, 23, 26, 28, 30, 37, 72, 73, 74, 75, 76, 84, 256], "render": [3, 4, 6, 8, 9, 10, 11, 12, 14, 16, 19, 20, 21, 22, 23, 24, 26, 27, 28, 29, 30, 33, 34, 35, 37, 40, 41, 42, 48, 58, 59, 64, 68, 69, 70, 72, 73, 74, 75, 76, 78, 81, 85, 87, 88, 92, 100, 102, 104, 106, 107, 108, 109, 111, 114, 115, 117, 118, 120, 121, 122, 125, 126, 133, 135, 138, 140, 141, 145, 152, 160, 161, 162, 164, 167, 171, 181, 187, 196, 199, 200, 210, 211, 213, 218, 224, 227, 230, 233, 236, 239, 242, 245, 246, 248, 256, 260, 261, 266, 268, 270, 271, 277, 280, 283, 284, 285, 286, 288], "azimuth": [3, 4, 9, 16, 19, 20, 24, 28, 29, 35, 42, 46, 49, 51, 70, 150, 267, 270, 271], "300": [3, 14, 19, 22, 24, 26, 27, 33, 39, 40, 41, 43, 45, 48, 49, 50, 75, 78, 268, 270, 283], "679": [3, 207, 216, 286], "314": 3, "35": [3, 22, 27, 54, 66, 76, 248, 264, 281, 284], "zoom": [3, 4, 11, 13, 17, 20, 22, 24, 30, 36, 270, 271], "01": [3, 4, 9, 16, 20, 29, 34, 74, 76, 217, 218, 248, 272, 286], "1500": [3, 45], "550": [3, 85, 286], "575": [3, 4, 286], "180": [3, 4, 16, 39, 40, 41, 49, 57, 60, 268, 280], "rm": [3, 9, 29, 270, 271], "750": [3, 49], "8": [3, 10, 14, 20, 23, 24, 27, 30, 32, 33, 36, 37, 40, 41, 43, 45, 48, 49, 56, 57, 58, 60, 61, 65, 66, 67, 68, 69, 73, 75, 76, 78, 80, 87, 125, 126, 136, 162, 163, 164, 169, 170, 216, 217, 218, 248, 250, 251, 261, 264, 265, 266, 269, 270, 272, 277, 278, 281, 282, 286, 287], "10000": [3, 11, 31, 73, 139, 248], "1100": 3, "07": [3, 4, 125, 126, 162, 163, 164, 216, 217, 218, 239, 251, 272, 282], "exit": [3, 4, 9, 14, 16, 19, 20, 23, 24, 26, 28, 30, 33, 35, 37, 72, 73, 74, 75, 76, 84, 270, 271, 281], "watch": [3, 4, 14, 169, 171], "new": [3, 4, 13, 14, 17, 18, 29, 56, 64, 65, 66, 67, 68, 78, 81, 84, 99, 103, 109, 110, 113, 116, 122, 123, 125, 126, 127, 129, 130, 132, 136, 139, 145, 152, 153, 157, 162, 164, 166, 167, 169, 170, 171, 173, 176, 180, 181, 185, 188, 189, 191, 192, 194, 196, 201, 205, 206, 207, 208, 209, 213, 216, 217, 218, 220, 225, 226, 228, 229, 231, 235, 237, 238, 240, 243, 245, 248, 253, 255, 256, 259, 265, 266, 267, 268, 269, 270, 278, 280, 281, 282, 283, 284, 285, 286, 287], "take": [3, 4, 14, 24, 34, 37, 56, 58, 59, 65, 68, 88, 127, 133, 139, 140, 145, 149, 152, 155, 162, 169, 171, 176, 179, 189, 193, 210, 215, 218, 222, 226, 236, 242, 243, 245, 248, 249, 250, 253, 265, 268, 269, 270, 287], "add_timer_callback": [3, 4, 6, 8, 12, 14, 16, 19, 20, 23, 24, 26, 28, 29, 30, 33, 35, 37, 41, 70, 72, 73, 74, 75, 76, 84, 270, 271], "viz_earth_anim": 3, "specif": [4, 11, 22, 28, 56, 65, 73, 74, 75, 76, 87, 105, 109, 112, 118, 120, 124, 126, 130, 131, 133, 139, 140, 142, 148, 152, 162, 164, 171, 188, 215, 216, 217, 223, 224, 234, 236, 245, 250, 251, 253, 264, 265, 268, 270, 287, 288], "locat": [4, 34, 58, 76, 133, 139, 160], "math": [4, 29, 33, 106, 108, 138, 159, 161, 169, 228, 267], "16k": 4, "resolut": [4, 16, 26, 27, 30, 42, 57, 60, 65, 68, 79, 133, 226, 248, 264, 270, 278], "maximum": [4, 65, 78, 140, 197, 241, 248, 249, 250, 251, 256, 266, 268, 270], "detail": [4, 65, 68, 81, 85, 99, 107, 110, 125, 126, 132, 137, 140, 143, 145, 146, 149, 152, 162, 163, 164, 201, 222, 228, 234, 242, 243, 245, 248, 251, 266, 287], "earth_fil": 4, "1_earth_16k": 4, "make": [4, 10, 11, 12, 14, 16, 22, 25, 29, 39, 47, 49, 52, 53, 57, 58, 60, 61, 63, 64, 81, 87, 88, 99, 102, 103, 104, 105, 106, 108, 109, 111, 114, 116, 117, 119, 122, 126, 127, 131, 132, 135, 139, 141, 143, 144, 145, 146, 155, 156, 158, 161, 162, 163, 164, 165, 169, 170, 171, 174, 175, 182, 183, 186, 188, 189, 191, 192, 196, 197, 209, 211, 212, 217, 222, 224, 225, 227, 229, 230, 231, 232, 233, 234, 237, 239, 240, 242, 243, 244, 245, 250, 251, 252, 265, 268, 269, 280, 286, 287], "sure": [4, 12, 22, 57, 99, 102, 103, 104, 106, 108, 111, 114, 116, 117, 119, 122, 127, 212, 216, 228, 250, 251, 287], "orient": [4, 10, 27, 48, 49, 51, 65, 73, 74, 75, 76, 84, 107, 109, 118, 120, 126, 225, 248, 249, 250, 251, 264, 267, 268, 269], "chang": [4, 10, 11, 13, 14, 19, 20, 22, 26, 27, 28, 30, 37, 42, 48, 53, 54, 55, 57, 61, 63, 65, 68, 70, 73, 107, 112, 118, 124, 127, 134, 139, 140, 144, 145, 149, 152, 158, 160, 162, 164, 166, 169, 171, 172, 173, 174, 175, 176, 177, 178, 182, 185, 189, 192, 196, 213, 216, 217, 222, 228, 229, 231, 235, 239, 244, 245, 248, 249, 251, 255, 265, 268, 269, 270, 277, 279, 280, 282, 283, 284, 285, 286, 287], "defin": [4, 6, 8, 11, 12, 14, 16, 19, 20, 24, 27, 29, 30, 32, 33, 34, 37, 41, 42, 48, 58, 59, 65, 66, 67, 68, 69, 70, 73, 74, 75, 76, 79, 84, 109, 133, 139, 140, 162, 164, 167, 209, 216, 225, 235, 239, 242, 243, 245, 248, 253, 256, 259, 265, 268, 269, 283, 284, 285], "convert": [4, 41, 107, 133, 140, 143, 162, 175, 178, 184, 188, 189, 192, 216, 218, 250, 251, 256, 268, 269, 271, 285], "geograph": [4, 33, 267], "latitud": [4, 248, 264, 267], "longitud": [4, 248, 264, 267], "degre": [4, 61, 72, 73, 74, 84, 99, 106, 175, 177, 192, 222, 250, 251, 268], "radian": [4, 84, 268], "spheric": [4, 27, 58, 84, 104, 116, 125, 186, 217, 243, 248, 250, 267], "lastli": [4, 18, 84, 171, 229], "cartesian": [4, 267], "latlong_coordin": 4, "lat": 4, "lon": 4, "degrees_to_radian": 4, "pi": [4, 14, 23, 26, 60, 63, 74, 109, 260, 267], "phi": [4, 32, 33, 34, 42, 46, 65, 66, 67, 248, 264, 267], "theta": [4, 32, 33, 34, 42, 46, 65, 66, 67, 248, 264, 267], "now": [4, 9, 13, 22, 27, 28, 29, 32, 33, 34, 37, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 56, 57, 58, 59, 60, 61, 62, 65, 66, 67, 68, 70, 73, 74, 75, 76, 84, 85, 105, 109, 110, 112, 116, 117, 118, 120, 121, 124, 126, 131, 136, 139, 141, 142, 143, 145, 148, 149, 151, 152, 154, 155, 160, 164, 165, 166, 171, 173, 174, 175, 178, 179, 180, 182, 183, 184, 186, 187, 190, 192, 196, 199, 202, 204, 206, 208, 214, 217, 222, 225, 227, 228, 231, 233, 236, 240, 242, 243, 244, 267, 287], "sin": [4, 14, 23, 26, 29, 30, 37, 60, 63, 74, 109, 250, 267], "co": [4, 14, 23, 29, 30, 37, 60, 63, 70, 74, 109, 250, 267, 287], "flip": [4, 101, 175, 256, 280, 285, 286], "return": [4, 11, 14, 20, 22, 23, 24, 25, 26, 27, 29, 33, 34, 37, 42, 48, 56, 58, 59, 60, 63, 65, 68, 69, 84, 85, 105, 109, 139, 179, 184, 193, 214, 216, 217, 227, 228, 230, 233, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 286], "some": [4, 9, 10, 14, 22, 24, 25, 27, 28, 29, 30, 32, 33, 34, 36, 37, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 55, 56, 58, 59, 66, 67, 68, 69, 72, 73, 74, 75, 76, 81, 84, 85, 100, 101, 102, 103, 109, 110, 112, 118, 120, 122, 130, 133, 134, 136, 137, 139, 140, 141, 142, 143, 145, 146, 148, 149, 152, 154, 155, 158, 160, 162, 164, 166, 169, 170, 171, 172, 173, 174, 175, 177, 178, 180, 182, 183, 184, 186, 188, 191, 192, 193, 195, 196, 197, 198, 200, 201, 202, 204, 206, 207, 208, 209, 211, 212, 215, 216, 217, 222, 224, 227, 228, 229, 230, 231, 233, 234, 235, 236, 238, 239, 242, 243, 245, 246, 248, 258, 280, 282, 283, 284, 286], "sever": [4, 49, 125, 133, 136, 139, 140, 164, 213, 229, 243, 279], "big": [4, 171, 239], "citi": 4, "around": [4, 11, 14, 24, 29, 57, 74, 84, 137, 140, 159, 169, 170, 171, 176, 178, 182, 185, 192, 196, 206, 209, 211, 216, 239, 242, 246, 248, 250, 260, 261, 262, 267, 269, 270], "locationon": 4, "40": [4, 24, 42, 43, 44, 48, 54, 60, 66, 67, 72, 268, 277], "730610": 4, "73": [4, 278], "935242": 4, "york": 4, "u": [4, 14, 29, 34, 37, 65, 66, 67, 68, 73, 74, 75, 87, 88, 96, 110, 125, 126, 128, 148, 152, 168, 169, 170, 172, 202, 218, 219, 232], "locationtwo": 4, "916668": 4, "116": [4, 282], "383331": 4, "beij": 4, "china": 4, "locationthre": 4, "48": [4, 23, 261, 277], "864716": 4, "349014": 4, "pari": 4, "franc": 4, "set": [4, 5, 7, 8, 12, 13, 14, 17, 18, 22, 25, 27, 28, 29, 36, 40, 41, 42, 43, 45, 46, 48, 49, 51, 52, 54, 57, 59, 60, 61, 63, 65, 66, 67, 68, 72, 73, 74, 75, 76, 78, 79, 81, 85, 105, 115, 120, 126, 145, 149, 163, 171, 172, 175, 177, 183, 185, 186, 187, 191, 194, 196, 198, 201, 204, 208, 212, 215, 217, 218, 221, 224, 227, 233, 236, 245, 246, 248, 249, 250, 251, 255, 256, 261, 264, 265, 266, 268, 269, 270, 281, 283, 286, 287], "radii": [4, 9, 10, 11, 14, 15, 19, 20, 32, 33, 34, 42, 46, 53, 56, 60, 65, 66, 67, 72, 73, 74, 76, 78, 79, 80, 84, 163, 248, 261], "indic": [4, 32, 33, 74, 76, 84, 122, 179, 181, 249, 250, 253, 256, 261, 262, 264, 268, 269], "its": [4, 9, 13, 14, 20, 22, 25, 27, 42, 43, 46, 54, 57, 63, 68, 73, 75, 84, 87, 101, 105, 109, 112, 115, 120, 121, 131, 132, 138, 140, 143, 146, 152, 170, 171, 173, 185, 188, 201, 203, 210, 212, 217, 224, 225, 226, 227, 229, 231, 232, 233, 234, 236, 237, 238, 239, 240, 242, 245, 248, 250, 251, 255, 265, 268, 270, 288], "nyc_actor": 4, "n40": 4, "7128": 4, "n": [4, 10, 29, 31, 74, 80, 139, 162, 164, 177, 248, 249, 250, 251, 261, 264, 266, 267, 268, 269, 287], "74": 4, "0060": 4, "w": [4, 26, 37, 84, 139, 140, 162, 164, 248, 251, 257, 266, 269], "04": [4, 217, 218, 272, 281], "paris_actor": 4, "n48": 4, "8566": 4, "3522": 4, "e": [4, 22, 23, 26, 30, 45, 58, 62, 65, 84, 85, 87, 89, 90, 91, 92, 94, 95, 97, 113, 123, 129, 143, 157, 158, 162, 163, 167, 209, 210, 216, 217, 218, 220, 236, 248, 249, 250, 251, 253, 258, 261, 268, 269, 270, 281, 287], "beijing_actor": 4, "n39": 4, "9042": 4, "4074": 4, "06": [4, 26, 30, 125, 126, 162, 163, 164, 216, 217, 218], "85": [4, 14, 42, 278], "which": [4, 6, 10, 11, 13, 14, 22, 23, 24, 25, 26, 28, 29, 30, 32, 33, 34, 35, 36, 37, 46, 49, 56, 59, 62, 65, 68, 73, 75, 76, 78, 79, 80, 84, 87, 100, 104, 105, 107, 109, 110, 112, 115, 117, 119, 120, 121, 122, 124, 125, 126, 127, 130, 131, 132, 133, 134, 135, 136, 137, 139, 140, 141, 142, 143, 144, 145, 146, 149, 152, 155, 156, 158, 159, 160, 161, 162, 163, 164, 169, 171, 172, 173, 174, 175, 176, 177, 178, 181, 182, 183, 185, 188, 189, 191, 192, 193, 196, 197, 198, 200, 202, 206, 207, 209, 211, 212, 216, 217, 222, 223, 224, 226, 228, 229, 231, 234, 236, 237, 238, 239, 241, 242, 243, 244, 245, 246, 248, 249, 250, 251, 255, 258, 261, 262, 264, 265, 266, 267, 268, 269, 270, 287], "act": [4, 24, 112, 198, 216, 248, 268, 269], "angl": [4, 14, 26, 30, 37, 48, 49, 51, 109, 158, 216, 228, 248, 251, 267, 268, 269, 270, 271], "fly": [4, 152], "over": [4, 68, 78, 98, 114, 116, 124, 170, 225, 232, 237, 256, 268, 287], "7": [4, 14, 17, 23, 24, 34, 37, 54, 55, 57, 60, 65, 74, 75, 76, 87, 125, 126, 145, 162, 163, 164, 184, 216, 217, 218, 248, 251, 266, 268, 269, 272, 274, 278, 285, 286, 287], "200": [4, 10, 11, 16, 19, 22, 23, 27, 30, 33, 37, 43, 45, 46, 47, 49, 50, 51, 63, 171, 240, 266, 268], "015": 4, "pitch": [4, 267, 270, 271], "250": [4, 13, 43, 45, 48, 49, 57, 125, 281], "350": [4, 49, 283], "985": 4, "425": 4, "525": [4, 170, 286], "011": 4, "700": [4, 72, 218, 286], "820": [4, 241], "930": 4, "1000": [4, 20, 28, 33, 35, 40, 41, 42, 60, 79, 80, 242], "initi": [4, 5, 6, 8, 9, 12, 14, 22, 23, 24, 26, 28, 30, 35, 36, 37, 41, 49, 53, 55, 56, 57, 58, 59, 60, 62, 63, 73, 75, 76, 85, 89, 100, 104, 105, 106, 131, 143, 149, 162, 163, 169, 185, 196, 217, 223, 233, 244, 245, 251, 262, 266, 267, 268, 270, 271, 273, 280, 286], "viz_earth_coordin": 4, "displai": [5, 6, 10, 13, 17, 22, 24, 25, 26, 27, 30, 36, 37, 49, 65, 68, 72, 73, 74, 75, 87, 143, 150, 152, 158, 159, 163, 182, 183, 216, 218, 225, 231, 237, 240, 246, 248, 249, 262, 266, 268, 271, 285], "fetch_gltf": [5, 6, 7, 8, 12, 179, 271], "read_viz_gltf": [5, 6, 7, 8, 12, 271], "setbackground": 5, "retriev": [5, 6, 8, 12, 236, 262, 265], "duck": [5, 184], "filenam": [5, 6, 7, 8, 12, 14, 18, 248, 253, 256, 257, 265, 268, 270], "get": [5, 6, 7, 8, 10, 12, 13, 17, 20, 22, 23, 28, 29, 34, 35, 37, 42, 48, 53, 65, 68, 72, 73, 75, 84, 87, 98, 99, 125, 133, 145, 164, 170, 171, 216, 217, 218, 230, 236, 239, 242, 245, 246, 248, 250, 251, 252, 255, 256, 258, 261, 263, 264, 266, 268, 269, 270, 280, 286], "method": [5, 6, 8, 11, 12, 13, 22, 25, 27, 29, 37, 42, 43, 48, 52, 53, 55, 62, 65, 68, 72, 73, 74, 75, 76, 81, 84, 101, 103, 105, 107, 110, 112, 121, 122, 125, 126, 133, 134, 136, 137, 139, 140, 141, 143, 145, 146, 148, 149, 152, 162, 164, 166, 169, 172, 173, 175, 178, 179, 184, 191, 196, 200, 201, 202, 211, 214, 217, 218, 224, 227, 229, 230, 233, 236, 248, 250, 251, 255, 259, 261, 266, 269, 270, 280, 284, 285, 286], "note": [5, 8, 11, 12, 23, 25, 26, 39, 48, 49, 53, 56, 61, 89, 90, 91, 92, 94, 95, 97, 113, 123, 129, 157, 167, 169, 203, 220, 242, 248, 250, 251, 252, 255, 261, 266, 267, 269, 270, 272, 287], "alwai": [5, 54, 57, 65, 84, 105, 107, 109, 110, 112, 115, 118, 133, 137, 169, 170, 189, 248, 287], "manual": [5, 58, 59, 84, 126, 146, 176, 179, 185, 191, 194, 204, 206, 287], "polydata": [5, 17, 70, 122, 175, 179, 180, 193, 217, 257, 269, 271, 280, 286], "appli": [5, 8, 12, 13, 14, 17, 20, 28, 45, 68, 72, 73, 74, 75, 76, 84, 118, 139, 169, 171, 172, 173, 175, 183, 188, 193, 195, 203, 205, 208, 210, 212, 218, 226, 229, 242, 245, 248, 249, 256, 257, 258, 260, 264, 265, 266, 269, 270, 271], "materi": [5, 34, 66, 67, 129, 167, 170, 179, 214, 256, 271, 283, 285, 286, 288], "afterward": [5, 227], "experiment": [5, 87, 279], "smooth": [5, 29, 59, 68, 148, 161, 163, 164, 172, 182, 236, 242, 246, 248], "mesh": [5, 65, 68, 171, 175, 195, 203, 218, 256, 267], "apply_norm": [5, 8, 12, 256], "gltf_obj": [5, 6, 7, 8, 12], "all": [5, 7, 8, 10, 11, 13, 14, 16, 22, 27, 28, 32, 33, 34, 39, 42, 46, 47, 49, 50, 51, 55, 58, 59, 61, 65, 68, 69, 70, 72, 73, 74, 75, 76, 81, 84, 87, 88, 92, 94, 95, 97, 99, 105, 107, 109, 113, 118, 123, 124, 126, 127, 129, 131, 132, 133, 139, 140, 142, 145, 149, 152, 153, 157, 158, 160, 161, 162, 163, 167, 169, 170, 171, 176, 178, 179, 180, 181, 183, 184, 185, 186, 187, 188, 190, 191, 196, 197, 198, 202, 205, 210, 212, 213, 214, 216, 217, 218, 220, 221, 224, 229, 241, 242, 244, 245, 246, 247, 248, 249, 250, 251, 253, 256, 261, 263, 264, 268, 269, 270, 283, 285, 286, 287, 288], "list": [5, 7, 14, 23, 24, 25, 27, 28, 36, 41, 42, 43, 46, 48, 49, 50, 53, 54, 61, 66, 67, 74, 76, 84, 96, 103, 126, 128, 132, 139, 142, 145, 146, 168, 169, 170, 171, 175, 193, 219, 247, 248, 250, 251, 253, 255, 256, 257, 258, 260, 265, 266, 267, 268, 269, 270, 272, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288], "setactivecamera": 5, "1280": [5, 7], "720": [5, 7, 69, 70, 80, 85, 264, 286], "viz_gltf": 5, "interpolationtest": [6, 184], "main_timelin": [6, 183], "contain": [6, 11, 13, 14, 20, 22, 24, 27, 29, 37, 49, 54, 56, 58, 60, 61, 65, 84, 87, 88, 89, 96, 115, 126, 128, 131, 132, 140, 143, 168, 175, 181, 183, 184, 210, 216, 218, 219, 247, 250, 251, 255, 256, 257, 260, 261, 263, 265, 266, 267, 269, 270, 271, 273, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286], "timelin": [6, 8, 12, 52, 53, 55, 58, 60, 61, 63, 81, 130, 172, 175, 177, 180, 187, 190, 192, 193, 198, 208, 210, 211, 213, 214, 215, 270, 271, 286], "main_anim": [6, 256, 271], "No": [6, 8, 12, 59, 111, 114, 117, 119, 147, 153, 156, 158, 159, 160, 161, 174, 178, 181, 184, 190, 194, 199, 200, 203, 205, 207, 209, 210, 214, 227, 232, 251, 286], "need": [6, 8, 12, 13, 14, 17, 22, 25, 28, 29, 32, 33, 34, 36, 39, 40, 41, 42, 43, 44, 46, 47, 48, 49, 50, 51, 53, 54, 56, 58, 59, 61, 63, 65, 67, 68, 78, 80, 84, 85, 87, 100, 103, 108, 112, 120, 122, 124, 126, 130, 133, 134, 135, 137, 139, 140, 142, 143, 145, 146, 149, 152, 160, 162, 164, 181, 184, 189, 193, 195, 196, 203, 205, 208, 210, 213, 216, 217, 218, 224, 225, 227, 228, 230, 231, 233, 234, 236, 237, 238, 239, 240, 242, 243, 245, 246, 250, 251, 252, 264, 268, 269, 270, 280, 283, 286], "separ": [6, 8, 12, 54, 84, 105, 107, 112, 118, 121, 126, 145, 160, 164, 174, 179, 180, 185, 192, 213, 216, 217, 229, 238, 253, 261, 266, 286], "updat": [6, 8, 9, 10, 11, 12, 14, 17, 22, 23, 24, 26, 27, 29, 35, 37, 41, 54, 58, 59, 70, 73, 75, 76, 84, 90, 91, 94, 95, 97, 99, 107, 109, 113, 118, 123, 126, 129, 133, 139, 140, 142, 143, 145, 146, 147, 149, 150, 152, 153, 155, 156, 157, 158, 159, 160, 162, 163, 164, 166, 167, 176, 182, 185, 189, 191, 194, 200, 206, 211, 213, 216, 217, 218, 220, 221, 224, 227, 229, 232, 236, 241, 242, 244, 248, 250, 251, 256, 262, 266, 268, 269, 270, 271, 275, 276, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287], "update_anim": [6, 250, 271], "10": [6, 9, 10, 13, 14, 16, 17, 19, 20, 26, 29, 30, 31, 33, 35, 37, 44, 48, 49, 50, 51, 53, 54, 57, 58, 59, 61, 62, 65, 67, 68, 72, 73, 74, 75, 76, 84, 116, 125, 126, 129, 145, 162, 163, 164, 171, 216, 217, 218, 245, 248, 251, 255, 264, 266, 268, 269, 270, 272, 280, 283, 285, 286], "viz_gltf_anim": 6, "paramet": [7, 14, 27, 33, 34, 37, 50, 59, 65, 66, 67, 72, 73, 74, 75, 76, 80, 84, 85, 105, 110, 142, 148, 190, 206, 216, 218, 231, 234, 243, 247, 248, 249, 250, 251, 252, 253, 255, 256, 257, 258, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 277, 280, 281, 282, 283, 285, 286], "later": [7, 37, 54, 55, 57, 112, 118, 132, 139, 170, 178, 179, 222, 225, 228, 230, 231, 233, 242, 255, 265], "cube": [7, 10, 11, 16, 17, 24, 29, 34, 37, 38, 42, 55, 60, 63, 81, 102, 104, 111, 115, 120, 125, 169, 184, 253, 257, 271, 281], "boxtextur": [7, 184, 253], "box_actor": [7, 20, 68, 76, 248, 249], "45": [7, 13, 14, 23, 36, 47, 49, 277], "21": [7, 23, 125, 126, 162, 163, 164, 169, 216, 272, 277, 282, 284], "12": [7, 11, 15, 23, 30, 58, 60, 65, 68, 125, 126, 145, 162, 163, 164, 184, 216, 217, 218, 248, 264, 269, 285, 286], "export_scen": [7, 271], "viz_gltf_export": 7, "read": [7, 13, 29, 32, 33, 35, 101, 103, 104, 105, 107, 109, 110, 112, 115, 118, 120, 121, 124, 126, 133, 136, 139, 141, 145, 150, 159, 161, 169, 170, 171, 173, 175, 184, 190, 218, 224, 252, 253, 256, 266, 270], "look": [8, 25, 29, 65, 100, 101, 105, 108, 112, 116, 117, 118, 120, 121, 122, 133, 137, 139, 142, 143, 145, 160, 161, 170, 171, 175, 179, 184, 191, 192, 197, 200, 207, 209, 210, 223, 225, 232, 236, 242, 243, 245, 248, 287], "khronoo": 8, "sampl": [8, 35, 175, 179, 184, 187, 193, 224, 236, 250, 253, 270, 286], "choos": [8, 12, 16, 25, 27, 43, 48, 49, 78, 80, 122, 133, 164, 231, 237, 251, 253, 262, 268], "morphstresstest": [8, 184], "addition": [8, 12, 65, 226, 229, 237, 238, 241], "might": [8, 12, 53, 56, 59, 65, 189, 216, 237, 251, 287], "work": [8, 11, 12, 25, 29, 65, 78, 79, 87, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 109, 110, 112, 114, 115, 116, 117, 118, 119, 120, 121, 122, 124, 127, 130, 131, 132, 134, 136, 139, 140, 143, 145, 147, 148, 149, 151, 153, 155, 158, 160, 161, 164, 166, 169, 170, 171, 172, 173, 174, 175, 176, 178, 179, 180, 183, 184, 187, 189, 193, 194, 196, 197, 200, 202, 203, 205, 206, 207, 209, 222, 224, 225, 226, 227, 228, 229, 230, 232, 233, 234, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 248, 266, 267, 279, 281, 282, 283, 284, 286, 287], "intend": [8, 12, 68, 160, 182, 193, 195, 197, 203, 206, 225, 248, 284], "morph_timelin": 8, "name": [8, 12, 14, 16, 22, 23, 24, 30, 37, 42, 56, 62, 68, 125, 126, 130, 139, 162, 163, 164, 169, 171, 179, 183, 184, 196, 204, 216, 217, 218, 222, 237, 245, 247, 248, 249, 250, 251, 253, 255, 256, 261, 264, 265, 266, 267, 268, 269, 270, 280, 282, 286, 287, 288], "want": [8, 12, 13, 16, 22, 25, 29, 32, 57, 59, 65, 68, 80, 122, 133, 145, 148, 164, 169, 170, 171, 173, 175, 176, 216, 228, 236, 239, 240, 245, 256, 264, 265, 266, 267, 270, 285, 287], "If": [8, 12, 13, 22, 29, 36, 44, 49, 53, 65, 78, 80, 85, 96, 105, 110, 124, 128, 133, 139, 140, 142, 146, 149, 162, 168, 171, 172, 188, 189, 196, 204, 219, 224, 227, 233, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 268, 269, 270, 287], "It": [8, 12, 13, 17, 23, 25, 28, 37, 56, 65, 89, 107, 112, 120, 124, 125, 133, 140, 143, 148, 156, 158, 160, 161, 163, 164, 166, 167, 169, 170, 171, 172, 184, 185, 188, 191, 197, 202, 203, 208, 213, 216, 217, 218, 221, 226, 229, 234, 239, 240, 245, 246, 248, 250, 251, 255, 261, 264, 268, 273, 285, 287], "store": [8, 12, 23, 24, 25, 29, 36, 42, 43, 59, 68, 73, 75, 78, 84, 85, 139, 141, 145, 148, 175, 184, 188, 190, 196, 211, 216, 218, 246, 251, 253, 261, 266, 268], "anim_0": [8, 12], "anim_1": [8, 12], "etc": [8, 12, 22, 32, 84, 105, 126, 160, 169, 171, 176, 218, 242, 251, 253, 261, 268, 281], "morph_anim": [8, 256, 271], "thewav": 8, "call": [8, 10, 11, 12, 14, 16, 19, 25, 26, 30, 35, 43, 49, 58, 70, 73, 75, 84, 120, 135, 136, 137, 139, 152, 156, 164, 166, 170, 171, 180, 185, 188, 189, 191, 206, 216, 229, 230, 231, 233, 245, 246, 248, 249, 250, 255, 261, 263, 265, 266, 267, 270, 277, 284, 285, 286, 287], "update_morph": [8, 256, 271], "onc": [8, 25, 29, 49, 54, 62, 84, 109, 110, 111, 112, 121, 145, 158, 170, 171, 174, 185, 196, 198, 199, 202, 216, 217, 232, 250, 268, 270, 280, 287], "move": [8, 11, 13, 20, 22, 24, 29, 30, 33, 57, 59, 74, 84, 105, 109, 110, 115, 118, 166, 169, 171, 188, 197, 202, 205, 207, 212, 216, 224, 227, 232, 242, 251, 268, 279, 283, 286, 287], "initialis": [8, 12, 24, 39, 40, 41, 42, 46, 47, 49, 50, 51, 69, 70, 256, 280], "timestamp": [8, 53, 54, 56, 58, 59, 61, 145, 203, 205, 208, 218, 250, 256], "fit": [8, 23, 88, 133, 152, 228, 239, 242, 268, 270, 288], "perfectli": [8, 68, 152, 178, 203], "manag": [8, 9, 10, 11, 12, 13, 34, 35, 39, 40, 41, 47, 48, 50, 55, 56, 57, 61, 63, 69, 70, 73, 74, 75, 97, 98, 99, 123, 131, 136, 139, 140, 145, 146, 148, 154, 164, 165, 170, 173, 176, 177, 179, 182, 183, 184, 185, 188, 197, 206, 212, 214, 216, 222, 227, 230, 232, 233, 235, 239, 242, 243, 245, 262, 266, 268, 270, 278, 279, 280, 282, 286, 287], "again": [8, 59, 65, 162, 169, 170, 171, 176, 209, 216, 230, 233, 236, 252, 287], "option": [8, 9, 12, 25, 29, 42, 43, 46, 62, 65, 78, 80, 84, 87, 101, 105, 112, 116, 122, 126, 146, 154, 169, 175, 183, 186, 201, 211, 216, 217, 226, 239, 244, 245, 248, 249, 250, 251, 252, 253, 255, 256, 257, 258, 260, 261, 262, 264, 265, 266, 269, 270, 271, 280, 281, 283, 286, 287], "plai": [8, 12, 21, 32, 58, 61, 62, 65, 81, 158, 160, 162, 176, 180, 189, 209, 216, 217, 250, 268, 270, 271, 286], "auto": [8, 12, 146, 251], "20": [8, 9, 12, 13, 14, 16, 20, 24, 25, 26, 29, 30, 37, 42, 49, 51, 54, 55, 57, 58, 61, 68, 74, 99, 164, 170, 171, 216, 217, 218, 248, 250, 264, 266, 268, 269, 270, 272, 277, 280, 283], "viz_morph": 8, "goal": [9, 32, 33, 35, 59, 87, 131, 132, 135, 137, 141, 144, 156, 162, 163, 164, 216, 217, 218, 221, 224, 225, 232], "demo": [9, 20, 29, 33, 35, 59, 67, 71, 117, 119, 122, 125, 127, 129, 157, 162, 163, 167, 200, 218, 241, 245, 280, 283, 284, 285, 286], "differ": [9, 10, 11, 13, 19, 22, 29, 34, 38, 42, 43, 48, 52, 55, 59, 65, 66, 67, 68, 73, 75, 78, 81, 84, 103, 105, 106, 107, 109, 112, 115, 122, 124, 125, 131, 132, 137, 139, 141, 143, 145, 152, 162, 164, 166, 172, 173, 176, 178, 180, 183, 187, 191, 193, 194, 196, 207, 209, 211, 212, 216, 218, 227, 236, 237, 238, 239, 242, 245, 248, 249, 252, 253, 267, 269, 270], "thread": [9, 133, 139, 164, 166, 266, 270], "particular": [9, 84, 101, 109, 118, 120, 140, 146, 162, 177, 288], "main": [9, 22, 40, 41, 55, 58, 60, 66, 78, 79, 80, 101, 103, 104, 105, 106, 110, 114, 117, 121, 133, 137, 139, 140, 143, 145, 162, 164, 183, 190, 193, 196, 216, 217, 224, 226, 227, 237, 244, 250, 256, 268, 271, 287], "A": [9, 21, 25, 26, 29, 30, 33, 35, 37, 40, 41, 42, 46, 54, 56, 59, 65, 68, 73, 81, 84, 96, 121, 126, 128, 130, 132, 134, 137, 139, 140, 152, 158, 162, 164, 165, 168, 171, 189, 196, 216, 218, 219, 226, 246, 248, 249, 250, 251, 252, 253, 256, 260, 261, 263, 264, 265, 266, 268, 269, 270, 288], "b": [9, 26, 27, 33, 36, 99, 136, 139, 164, 230, 233, 234, 248, 249, 251, 255, 260, 261, 264, 269, 287], "print": [9, 17, 22, 23, 25, 85, 87, 139, 170, 173, 233, 270], "c": [9, 14, 26, 65, 68, 87, 89, 90, 91, 92, 94, 95, 97, 113, 123, 129, 139, 145, 157, 158, 164, 167, 169, 170, 184, 197, 220, 248, 251, 253, 270, 287, 288], "remov": [9, 28, 29, 74, 90, 95, 97, 112, 145, 146, 150, 152, 163, 164, 172, 194, 206, 207, 216, 217, 248, 250, 251, 254, 255, 265, 268, 269, 270, 271, 275, 277, 278, 279, 280, 283, 284, 285, 286, 287], "element": [9, 13, 34, 39, 40, 41, 42, 46, 47, 49, 50, 51, 65, 69, 70, 84, 99, 101, 103, 105, 107, 115, 126, 131, 134, 137, 140, 143, 145, 146, 152, 155, 162, 173, 174, 188, 191, 197, 209, 216, 217, 226, 229, 232, 238, 248, 251, 256, 258, 261, 266, 267, 270, 271, 281, 284], "ui": [9, 10, 13, 14, 19, 20, 22, 23, 24, 26, 27, 29, 30, 34, 37, 38, 39, 40, 41, 42, 43, 44, 46, 47, 49, 50, 51, 70, 72, 73, 74, 75, 76, 81, 85, 89, 97, 99, 101, 103, 105, 107, 112, 113, 118, 120, 121, 122, 123, 124, 125, 126, 127, 131, 152, 155, 157, 162, 167, 170, 171, 172, 178, 191, 194, 197, 209, 216, 217, 223, 226, 229, 232, 238, 258, 269, 271, 273, 278, 280, 281, 282, 283, 284, 285, 286], "prepar": [9, 32, 33, 48, 169, 171, 223, 242, 243, 270, 280], "draw": [9, 29, 47, 49, 137, 141, 160, 162, 164, 165, 166, 170, 173, 176, 191, 194, 196, 197, 202, 216, 224, 227, 248, 268, 284, 286], "xyz": [9, 10, 19, 20, 23, 55, 68, 84, 183, 217, 250, 251, 262, 264, 269], "100": [9, 10, 11, 14, 19, 30, 33, 39, 41, 42, 45, 47, 49, 51, 56, 67, 75, 107, 116, 171, 236, 240, 244, 248, 250, 252, 253, 257, 266, 268, 269, 279], "usual": [9, 13, 16, 28, 62, 66, 178, 216, 236, 245, 246, 248, 251, 270], "block": [9, 50, 68, 70, 85, 105, 133, 136, 139, 149, 164, 265, 268, 284, 285], "messag": [9, 10, 13, 19, 20, 22, 23, 24, 26, 27, 30, 39, 49, 70, 72, 73, 74, 75, 76, 85, 139, 224, 255, 268, 271, 286], "reset": [9, 29, 270], "tb": [9, 19, 20, 23, 24, 26, 30, 37, 70, 72, 73, 74, 75, 76, 85], "textblock2d": [9, 10, 13, 19, 20, 22, 23, 24, 26, 27, 30, 34, 37, 39, 43, 48, 49, 50, 70, 72, 73, 74, 75, 76, 85, 101, 103, 110, 126, 173, 216, 229, 241, 244, 271, 281], "bold": [9, 19, 20, 22, 23, 24, 26, 27, 30, 248, 268, 271], "resetcamera": 9, "consol": 9, "print_count": 9, "rang": [9, 14, 23, 24, 26, 29, 31, 33, 34, 35, 37, 54, 55, 57, 66, 67, 73, 74, 75, 76, 84, 197, 248, 249, 251, 260, 261, 264, 269], "rcounter": 9, "d": [9, 26, 31, 37, 126, 130, 159, 164, 248, 249, 267, 268], "up": [9, 13, 19, 20, 24, 25, 29, 36, 39, 49, 54, 65, 66, 67, 68, 76, 84, 133, 162, 169, 170, 171, 217, 227, 230, 233, 236, 242, 250, 255, 268, 269, 270, 277, 283, 287], "str": [9, 10, 13, 19, 20, 23, 32, 33, 66, 67, 73, 74, 75, 76, 79, 247, 248, 249, 250, 251, 252, 253, 255, 256, 257, 258, 259, 263, 264, 265, 266, 268, 269, 270, 278], "sleep": [9, 80, 139, 266], "05": [9, 16, 19, 20, 34, 125, 126, 162, 163, 164, 216, 217, 218, 248], "is_don": [9, 270, 271], "break": [9, 13, 35, 124, 145, 164, 228], "rotate_camera": 9, "lock_curr": [9, 270, 271], "release_curr": [9, 270, 271], "els": [9, 10, 12, 14, 22, 23, 27, 29, 33, 35, 37, 42, 44, 48, 65, 68, 78, 80, 84, 105, 217, 248, 249, 251, 254], "ax": [9, 10, 16, 23, 72, 73, 74, 75, 76, 115, 162, 225, 249, 267, 270, 271], "increas": [9, 10, 11, 24, 25, 33, 37, 65, 68, 73, 74, 75, 76, 84, 92, 94, 95, 97, 107, 113, 123, 133, 157, 212, 269, 270, 277, 278, 279, 280, 281, 282, 283, 284], "add_remove_ax": 9, "current_ax": 9, "none": [9, 11, 13, 16, 27, 33, 35, 49, 53, 56, 70, 139, 184, 247, 248, 249, 250, 251, 252, 253, 255, 256, 257, 258, 261, 263, 264, 265, 266, 268, 269, 270, 286], "pass": [9, 37, 68, 69, 70, 80, 84, 105, 106, 108, 114, 137, 139, 141, 143, 148, 149, 150, 162, 170, 171, 206, 216, 232, 233, 236, 239, 242, 243, 245, 248, 255, 266, 268, 269, 283, 286, 287], "thread_a": 9, "target": [9, 32, 33, 78, 79, 218, 250, 256], "thread_b": 9, "thread_c": 9, "loop": [9, 13, 29, 54, 63, 80, 84, 163, 189, 216, 217, 245, 248, 250, 256, 268, 271, 286], "wait": [9, 78, 136, 139, 169, 228, 231, 270, 271], "finish": [9, 110, 112, 115, 124, 130, 143, 155, 158, 162, 164, 172, 180, 181, 201, 222, 234, 239, 242, 243, 270], "join": [9, 13, 32, 33, 41, 65, 68, 79, 85, 89, 90, 91, 92, 94, 95, 96, 97, 113, 123, 128, 129, 157, 167, 168, 170, 216, 219, 220], "viz_multithread": 9, "present": [10, 13, 30, 84, 137, 139, 140, 146, 164, 166, 216, 227, 239, 245, 261], "3d": [10, 11, 13, 21, 22, 24, 27, 29, 31, 34, 36, 37, 65, 68, 69, 81, 88, 89, 90, 91, 92, 94, 95, 96, 97, 99, 110, 113, 123, 128, 129, 131, 136, 142, 157, 158, 162, 163, 164, 167, 168, 171, 213, 216, 217, 218, 219, 220, 224, 242, 245, 248, 249, 251, 252, 257, 258, 262, 267, 269, 280, 281, 284], "world": [10, 11, 21, 22, 25, 68, 73, 75, 81, 84, 107, 118, 169, 170, 246, 248, 249, 262], "ar": [10, 11, 13, 14, 16, 22, 23, 25, 26, 27, 29, 30, 31, 33, 34, 39, 40, 41, 42, 43, 44, 46, 47, 48, 49, 50, 51, 54, 56, 59, 61, 62, 65, 66, 68, 73, 75, 76, 78, 84, 85, 87, 88, 89, 90, 91, 92, 94, 95, 96, 97, 98, 100, 103, 107, 108, 113, 114, 117, 118, 119, 120, 121, 122, 123, 125, 126, 127, 128, 129, 131, 133, 134, 137, 139, 140, 142, 143, 145, 146, 148, 149, 152, 155, 157, 158, 160, 162, 163, 164, 167, 168, 169, 171, 172, 183, 184, 188, 190, 196, 198, 202, 206, 207, 208, 213, 216, 217, 218, 219, 220, 222, 224, 226, 227, 231, 232, 234, 236, 241, 242, 245, 246, 248, 249, 250, 251, 253, 255, 257, 258, 261, 262, 263, 265, 267, 268, 269, 270, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288], "part": [10, 11, 29, 59, 65, 67, 84, 96, 107, 116, 126, 128, 130, 132, 133, 162, 168, 170, 171, 189, 196, 206, 216, 217, 218, 219, 221, 222, 228, 230, 233, 239, 240, 243, 245, 246, 248, 251, 263, 268, 285, 287], "singl": [10, 11, 34, 54, 57, 62, 73, 104, 107, 109, 110, 112, 115, 125, 126, 140, 150, 177, 178, 180, 189, 217, 233, 241, 242, 245, 248, 250, 256, 257, 258, 261, 262, 268, 269, 270, 277, 282], "like": [10, 11, 13, 18, 22, 37, 65, 84, 92, 94, 95, 97, 99, 112, 113, 118, 123, 124, 126, 127, 129, 131, 132, 134, 137, 143, 145, 149, 157, 160, 161, 164, 167, 170, 175, 192, 198, 199, 207, 208, 209, 213, 217, 218, 220, 225, 227, 233, 236, 239, 246, 255, 268, 269, 270, 287], "bundl": [10, 11, 21, 22, 81], "few": [10, 11, 84, 102, 112, 114, 126, 138, 140, 146, 160, 170, 171, 175, 196, 197, 200, 205, 232, 235, 251], "reduc": [10, 11, 145, 169, 215, 248], "speed": [10, 11, 24, 37, 58, 88, 138, 167, 169, 186, 189, 217, 230, 250, 268, 270, 271, 285], "thei": [10, 22, 32, 33, 49, 65, 66, 68, 84, 121, 126, 132, 134, 143, 146, 149, 152, 158, 160, 164, 170, 171, 172, 175, 190, 192, 196, 197, 202, 206, 212, 216, 217, 218, 224, 239, 242, 245, 246, 248, 268, 269, 287], "50": [10, 14, 20, 36, 39, 42, 43, 44, 46, 47, 49, 58, 72, 250, 261, 266, 268, 277], "150": [10, 11, 39, 42, 43, 45, 46, 48, 49, 51, 261, 266, 280], "dtype": [10, 11, 17, 24, 32, 33, 73, 75, 76, 79, 248, 251, 271, 278, 286], "bool": [10, 248, 249, 250, 251, 252, 255, 256, 257, 261, 262, 264, 265, 266, 268, 269, 270], "panel": [10, 13, 14, 22, 27, 34, 39, 45, 54, 61, 62, 115, 126, 131, 140, 143, 146, 155, 162, 173, 176, 180, 182, 186, 202, 206, 207, 216, 217, 232, 250, 268], "panel2d": [10, 13, 14, 22, 27, 34, 39, 45, 49, 103, 131, 134, 137, 140, 143, 146, 149, 162, 173, 182, 216, 271, 284], "400": [10, 14, 28, 34, 39, 42, 43, 45, 47, 49, 50, 51, 78, 79, 268, 285], "right": [10, 13, 14, 22, 25, 27, 29, 34, 39, 48, 49, 51, 57, 78, 134, 136, 138, 140, 143, 152, 162, 169, 175, 216, 225, 228, 229, 230, 239, 248, 268, 269, 270, 279, 286, 287, 288], "text_block": [10, 268, 271], "left": [10, 13, 22, 25, 27, 39, 49, 51, 110, 138, 143, 175, 176, 178, 216, 229, 245, 248, 268, 269, 270, 283], "click": [10, 13, 39, 48, 49, 99, 113, 126, 139, 162, 171, 173, 176, 178, 185, 188, 191, 216, 245, 268, 281], "add_el": [10, 13, 14, 22, 27, 34, 39, 48, 49, 268, 271], "build": [10, 11, 28, 32, 33, 65, 68, 88, 99, 103, 145, 164, 171, 266, 268, 280, 286, 287], "mani": [10, 11, 19, 22, 25, 29, 49, 96, 99, 128, 133, 140, 143, 161, 168, 170, 171, 188, 216, 219, 245, 246, 248, 249, 251, 262, 267, 287], "label_actor": 10, "vector_text": [10, 23, 54, 55, 66, 67, 201, 204, 217, 271, 285, 286], "test": [10, 27, 86, 92, 94, 95, 97, 101, 103, 104, 112, 113, 114, 116, 122, 123, 124, 126, 130, 131, 132, 133, 134, 135, 137, 140, 142, 145, 146, 147, 149, 150, 151, 152, 153, 154, 157, 162, 163, 164, 165, 172, 173, 174, 175, 178, 179, 180, 182, 183, 184, 187, 188, 189, 191, 192, 193, 196, 197, 200, 203, 208, 210, 211, 213, 216, 217, 218, 222, 224, 225, 232, 241, 243, 244, 253, 254, 255, 266, 270, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287], "made": [10, 16, 33, 66, 68, 76, 116, 120, 130, 131, 132, 133, 134, 136, 138, 139, 141, 142, 144, 150, 154, 159, 164, 169, 170, 171, 172, 175, 180, 185, 192, 196, 198, 216, 225, 226, 227, 228, 229, 231, 233, 234, 236, 237, 238, 239, 240, 248, 279], "sqrt": [10, 14, 23, 29, 33], "fury_actor": 10, "access": [10, 11, 13, 18, 22, 84, 88, 111, 116, 125, 126, 130, 139, 161, 163, 164, 174, 261, 266, 269, 270, 280, 282], "memori": [10, 11, 78, 133, 136, 139, 142, 145, 148, 154, 164, 165, 166, 188, 196, 224, 251, 266, 270], "vertic": [10, 11, 16, 17, 20, 23, 24, 26, 27, 29, 30, 37, 48, 49, 51, 68, 73, 74, 75, 76, 84, 109, 118, 152, 155, 156, 158, 160, 162, 167, 175, 180, 192, 195, 217, 218, 240, 248, 249, 256, 258, 262, 264, 265, 267, 268, 269, 270, 280, 285], "vertices_from_actor": [10, 11, 20, 23, 24, 26, 30, 33, 37, 73, 74, 75, 76, 84, 271], "num_vertic": [10, 11, 20, 73, 74, 75, 76, 84], "shape": [10, 11, 13, 16, 20, 22, 25, 27, 29, 33, 38, 44, 45, 50, 69, 73, 74, 75, 76, 81, 84, 125, 172, 173, 174, 176, 178, 179, 182, 184, 188, 202, 206, 207, 209, 212, 216, 225, 248, 249, 250, 251, 256, 257, 258, 261, 264, 267, 268, 269, 270, 271, 280, 286], "num_object": [10, 11, 73, 74, 75, 76, 84], "vcolor": [10, 11, 20, 26, 30, 42, 46], "colors_from_actor": [10, 11, 20, 26, 30, 42, 46, 271], "pickm": 10, "pickingmanag": [10, 248, 271], "callback": [10, 11, 13, 14, 16, 19, 21, 22, 27, 29, 33, 35, 37, 39, 41, 46, 49, 51, 70, 72, 73, 74, 75, 76, 81, 99, 101, 103, 107, 113, 120, 121, 126, 139, 140, 149, 152, 158, 162, 172, 173, 175, 182, 191, 203, 213, 215, 218, 242, 245, 250, 259, 265, 266, 268, 270, 278, 281, 286], "left_click_callback": [10, 13, 268, 271], "event_po": [10, 11, 13], "event_posit": [10, 11, 262, 271], "iren": [10, 11, 13, 166, 262, 266, 268, 270, 271], "picked_info": 10, "vertex_index": 10, "vertex": [10, 16, 37, 68, 70, 125, 169, 183, 185, 195, 196, 205, 210, 213, 217, 218, 248, 256, 260, 262, 265, 269, 286], "calcul": [10, 14, 16, 29, 58, 65, 68, 73, 75, 76, 84, 107, 109, 141, 143, 152, 173, 176, 178, 185, 186, 188, 196, 197, 202, 205, 206, 208, 212, 216, 217, 223, 228, 231, 234, 236, 238, 239, 243, 245, 248, 250, 256, 258, 260, 268, 269, 270], "index": [10, 34, 49, 50, 66, 74, 76, 84, 87, 139, 167, 184, 218, 233, 256, 260, 261, 268, 285], "object_index": [10, 11, 73, 75, 76, 84, 109, 118], "int": [10, 11, 20, 22, 23, 27, 32, 33, 35, 41, 73, 74, 75, 76, 79, 84, 139, 175, 184, 188, 248, 250, 251, 252, 253, 255, 256, 257, 258, 261, 262, 264, 265, 266, 268, 269, 270], "floor": [10, 188], "find": [10, 22, 68, 85, 100, 122, 135, 139, 146, 159, 166, 169, 171, 173, 185, 201, 204, 206, 208, 215, 217, 229, 230, 233, 235, 236, 238, 239, 268, 270, 287], "correspond": [10, 14, 25, 32, 33, 34, 42, 49, 68, 73, 75, 84, 109, 115, 126, 163, 225, 236, 243, 251, 261, 269], "sec": [10, 11, 20, 73, 74, 75, 76, 84, 109, 118], "color_add": 10, "30": [10, 14, 20, 23, 24, 25, 42, 46, 49, 50, 51, 54, 57, 70, 72, 73, 74, 75, 76, 125, 126, 170, 217, 248, 250, 268, 277], "uint8": [10, 11, 133, 248, 269], "tell": [10, 11, 16, 78, 148, 245, 248, 255], "modifi": [10, 23, 109, 131, 137, 139, 173, 175, 179, 181, 182, 184, 185, 191, 192, 212, 213, 216, 226, 251, 256, 267, 268, 286], "update_actor": [10, 11, 20, 23, 24, 26, 30, 33, 37, 42, 46, 73, 74, 75, 76, 271, 283], "face_index": [10, 11], "face": [10, 11, 16, 27, 29, 65, 99, 101, 103, 105, 107, 109, 110, 112, 115, 117, 118, 119, 120, 121, 124, 137, 145, 169, 171, 173, 184, 185, 193, 198, 227, 229, 235, 239, 241, 248, 249, 262, 264, 269, 285], "info": [10, 11, 96, 128, 135, 141, 145, 168, 215, 219, 287], "id": [10, 84, 217, 248, 268, 269, 286], "po": [10, 23, 29, 33, 53, 54, 56, 66, 67, 68, 72, 73, 74, 75, 76, 84, 118, 248, 253], "round": [10, 22, 27, 66, 67, 73, 74, 75, 76, 188, 248, 264], "bind": [10, 11, 158, 160, 162, 196, 203, 224, 227, 236, 256], "addobserv": [10, 13], "leftbuttonpressev": [10, 13, 266], "appear": [10, 11, 22, 54, 101, 139, 166, 171, 216, 217, 218, 229, 241, 251, 269, 270, 283, 285, 286], "1024": [10, 11, 69, 70, 85], "save": [10, 11, 13, 17, 22, 32, 126, 133, 145, 149, 179, 180, 211, 250, 252, 253, 256, 257, 264, 270, 277, 278, 280, 286, 287], "current": [10, 11, 22, 34, 35, 56, 70, 84, 85, 87, 98, 99, 100, 103, 104, 105, 108, 109, 112, 116, 117, 118, 120, 121, 122, 125, 126, 130, 131, 133, 137, 140, 143, 146, 149, 159, 161, 162, 163, 170, 171, 173, 174, 180, 187, 188, 190, 191, 197, 206, 207, 216, 218, 225, 227, 230, 232, 235, 236, 239, 242, 244, 250, 251, 253, 255, 256, 266, 268, 270, 287], "framebuff": [10, 11, 130, 224, 227, 233, 236, 239, 246, 266], "viz_pick": 10, "nonetheless": 11, "too": [11, 39, 49, 104, 132, 137, 152, 170, 171, 175, 176, 182, 184, 216, 243, 255, 283, 284], "abl": [11, 13, 16, 22, 29, 53, 57, 99, 101, 102, 103, 104, 106, 107, 108, 109, 110, 112, 115, 118, 120, 121, 122, 124, 125, 126, 138, 140, 147, 156, 163, 165, 171, 178, 180, 181, 182, 185, 190, 196, 199, 216, 217, 218, 224, 230, 233, 266], "more": [11, 13, 22, 25, 28, 33, 34, 36, 58, 65, 68, 78, 80, 84, 85, 102, 104, 107, 108, 109, 112, 125, 126, 132, 133, 139, 143, 145, 148, 149, 150, 152, 153, 154, 156, 158, 162, 163, 164, 171, 172, 176, 185, 186, 188, 192, 195, 196, 197, 199, 200, 201, 205, 211, 213, 215, 217, 222, 224, 228, 231, 233, 237, 238, 239, 240, 242, 243, 245, 248, 250, 251, 252, 261, 265, 266, 268, 269, 270, 280, 284, 287], "addit": [11, 22, 29, 31, 56, 80, 130, 131, 133, 138, 139, 140, 141, 162, 164, 166, 209, 217, 222, 231, 239, 242, 250, 251, 268, 270, 277, 285, 286, 287], "summari": [11, 25, 236, 243], "thousand": [11, 164, 165, 166, 217], "rectangular": 11, "box": [11, 21, 23, 24, 26, 27, 30, 37, 38, 46, 48, 49, 54, 57, 60, 68, 73, 74, 75, 76, 81, 84, 95, 105, 112, 126, 150, 159, 160, 163, 171, 178, 182, 184, 185, 206, 212, 216, 238, 241, 244, 245, 253, 258, 261, 264, 268, 269, 271, 279, 280, 281, 282], "hover": 11, "mous": [11, 13, 99, 121, 126, 139, 173, 176, 178, 188, 191, 200, 216, 245, 268, 286], "transpar": [11, 36, 248, 249, 250, 252, 270, 277, 278, 281], "everyth": [11, 22, 27, 57, 59, 61, 84, 99, 105, 111, 116, 124, 145, 152, 160, 166, 169, 174, 175, 178, 194, 208, 212, 213, 222, 233, 234, 237, 268, 287], "behind": [11, 106, 108, 109, 134, 150, 162, 164, 228, 229, 245], "num_cub": 11, "50000": 11, "keep": [11, 23, 24, 26, 49, 75, 76, 84, 87, 110, 118, 120, 126, 147, 169, 171, 173, 191, 193, 196, 206, 212, 218, 222, 225, 228, 230, 234, 237, 245, 248, 265, 270, 286, 287], "track": [11, 22, 24, 25, 36, 49, 73, 74, 75, 76, 84, 110, 118, 139, 191, 218, 248, 266, 268, 271, 284, 287], "number": [11, 23, 24, 26, 39, 49, 65, 68, 75, 78, 84, 107, 139, 150, 163, 169, 177, 224, 225, 233, 248, 249, 250, 251, 253, 255, 257, 261, 264, 266, 268, 269, 270, 287], "triangl": [11, 16, 17, 23, 29, 31, 65, 68, 156, 169, 175, 179, 184, 187, 217, 218, 248, 249, 256, 264, 269, 286], "everi": [11, 14, 16, 19, 22, 23, 24, 26, 27, 29, 30, 33, 34, 35, 37, 53, 70, 72, 98, 99, 122, 124, 149, 185, 215, 216, 218, 224, 239, 248, 249, 251, 258, 266, 269, 270, 287], "quad": [11, 192, 202, 216, 268], "ha": [11, 13, 16, 19, 24, 28, 33, 40, 41, 49, 54, 56, 58, 62, 68, 84, 85, 87, 100, 108, 110, 124, 131, 133, 135, 139, 140, 141, 142, 143, 144, 145, 146, 152, 161, 162, 166, 169, 171, 175, 184, 193, 203, 211, 212, 215, 216, 217, 218, 224, 236, 245, 246, 248, 250, 251, 254, 255, 264, 265, 268, 269, 270, 277, 286], "num_fac": 11, "cube_actor": [11, 17, 248], "2d": [11, 21, 31, 65, 81, 88, 99, 131, 142, 163, 164, 170, 184, 189, 216, 227, 242, 245, 248, 249, 257, 258, 262, 268, 269, 270, 281, 284], "rgba": [11, 224, 227, 248, 252, 264, 269, 270, 280], "255": [11, 13, 17, 31, 42, 46, 69, 248, 251, 269, 281], "ones": [11, 14, 59, 62, 63, 65, 74, 76, 133, 159, 245, 251], "98": [11, 25, 279, 283], "198": [11, 280], "texa": 11, "texture_2d": [11, 271], "astyp": 11, "selm": 11, "selectionmanag": [11, 248, 271], "selectable_off": [11, 262, 271], "hover_callback": 11, "region": 11, "inform": [11, 14, 34, 72, 74, 76, 84, 85, 87, 118, 139, 141, 145, 164, 171, 214, 216, 218, 225, 232, 243, 250, 251, 253, 261, 265, 266, 269, 270, 283], "node": [11, 29, 32, 33, 140, 143, 145, 146, 152, 162, 164, 166, 175, 190, 195, 208, 218, 244, 252, 256], "kei": [11, 14, 22, 29, 32, 33, 42, 43, 48, 59, 61, 66, 67, 79, 139, 174, 185, 216, 223, 248, 250, 256, 267, 268], "help": [11, 14, 28, 34, 48, 56, 58, 68, 74, 84, 99, 103, 109, 110, 115, 121, 122, 125, 126, 127, 130, 131, 138, 147, 154, 155, 158, 161, 165, 171, 172, 188, 192, 197, 216, 217, 230, 232, 244, 262, 267, 268, 287], "divid": [11, 29, 65, 66, 162, 216, 270], "color_chang": 11, "add_iren_callback": [11, 245, 270, 271], "viz_select": 11, "skin": [12, 190, 193, 195, 199, 205, 208, 210, 214, 256, 286], "riggedfigur": [12, 184, 208], "well": [12, 25, 27, 65, 107, 120, 131, 133, 134, 137, 143, 145, 146, 149, 155, 172, 174, 184, 194, 196, 199, 202, 209, 213, 217, 218, 222, 227, 230, 233, 236, 239, 245, 246, 250, 270], "skin_timelin": 12, "skin_anim": [12, 256, 271], "after": [12, 13, 14, 16, 18, 19, 22, 28, 35, 41, 48, 57, 59, 73, 74, 75, 78, 84, 87, 100, 102, 103, 104, 110, 112, 114, 115, 117, 118, 124, 125, 133, 134, 140, 143, 145, 146, 148, 149, 158, 159, 162, 163, 164, 169, 170, 171, 175, 178, 181, 182, 183, 191, 193, 194, 195, 197, 206, 208, 209, 212, 216, 223, 227, 230, 232, 233, 236, 238, 239, 241, 242, 244, 245, 251, 254, 266, 268, 282, 286, 287], "process": [12, 22, 26, 34, 59, 68, 78, 79, 80, 84, 88, 105, 107, 126, 136, 139, 140, 145, 158, 162, 164, 166, 171, 188, 223, 236, 242, 245, 257, 265, 268, 285], "bone": [12, 208, 218, 251, 256], "transform": [12, 13, 22, 25, 44, 65, 68, 104, 158, 163, 171, 176, 177, 178, 181, 185, 188, 190, 193, 195, 198, 199, 203, 210, 216, 217, 218, 242, 245, 248, 249, 250, 256, 269, 271, 280, 286], "lenght": 12, "initialise_skin": 12, "befor": [12, 14, 29, 65, 78, 84, 99, 100, 105, 109, 112, 121, 131, 137, 139, 140, 142, 143, 146, 148, 149, 152, 164, 169, 170, 171, 190, 193, 196, 208, 223, 230, 243, 265, 268, 270, 286], "won": [12, 84, 93, 124, 170, 189, 196, 266, 277], "t": [12, 13, 22, 23, 26, 44, 53, 54, 55, 56, 60, 62, 63, 65, 68, 74, 78, 80, 84, 101, 103, 104, 105, 107, 109, 112, 124, 126, 130, 131, 133, 134, 137, 139, 140, 142, 145, 149, 150, 152, 158, 161, 162, 164, 166, 169, 170, 171, 172, 173, 175, 176, 179, 180, 182, 183, 185, 186, 187, 188, 189, 190, 193, 196, 197, 199, 200, 201, 202, 203, 204, 205, 206, 207, 209, 210, 211, 212, 214, 215, 216, 223, 227, 230, 232, 233, 235, 236, 239, 242, 248, 250, 251, 261, 266, 269, 271, 277, 283, 284, 287], "initialize_skin": [12, 256, 271], "update_skin": [12, 256, 271], "viz_skin": 12, "o": [13, 31, 32, 33, 41, 65, 68, 78, 79, 80, 85, 149, 166, 248, 286], "nibabel": [13, 27, 255, 269], "nib": [13, 27], "dipi": [13, 17, 22, 25, 27, 36, 87, 89, 93, 234, 243, 248, 251, 253, 273, 277], "fetch_bundles_2_subject": [13, 22, 25], "fname_t1": 13, "path": [13, 14, 24, 30, 32, 33, 34, 35, 41, 53, 63, 65, 68, 79, 85, 189, 217, 218, 236, 239, 241, 247, 250, 253, 256, 257, 265, 268, 270, 286], "expandus": 13, "exp_bundles_and_map": 13, "bundles_2_subject": 13, "subj_1": [13, 22, 25], "t1_warp": 13, "nii": [13, 27], "gz": [13, 27, 270], "img": [13, 49, 268, 271], "get_fdata": [13, 27, 36, 286], "affin": [13, 22, 25, 27, 36, 248, 249, 269, 277], "hold": [13, 22, 57, 65, 139, 140, 183, 185, 196, 198, 216, 245, 268, 270], "background": [13, 24, 28, 66, 67, 69, 74, 105, 173, 207, 209, 216, 223, 238, 239, 241, 244, 251, 252, 268, 270, 271, 284], "higher": [13, 20, 23, 26, 116, 248, 250, 255, 265, 268], "would": [13, 18, 22, 49, 56, 58, 62, 67, 92, 94, 95, 97, 100, 105, 110, 112, 113, 119, 121, 123, 124, 126, 127, 129, 131, 134, 137, 140, 143, 146, 149, 157, 167, 169, 171, 173, 174, 176, 188, 202, 209, 212, 216, 217, 220, 224, 225, 227, 229, 230, 233, 237, 242, 245, 246, 250, 268, 287], "see": [13, 22, 25, 28, 29, 56, 58, 59, 66, 67, 68, 78, 87, 88, 93, 99, 101, 103, 105, 107, 109, 110, 112, 115, 118, 120, 121, 131, 133, 134, 136, 137, 138, 139, 140, 142, 143, 145, 146, 148, 149, 152, 155, 158, 160, 164, 169, 171, 178, 184, 185, 188, 191, 194, 197, 200, 201, 202, 207, 210, 212, 216, 222, 225, 227, 231, 239, 243, 245, 249, 251, 255, 265, 267, 270, 286], "mean": [13, 22, 24, 29, 33, 59, 73, 74, 75, 76, 78, 84, 126, 131, 137, 140, 143, 158, 160, 162, 169, 230, 233, 246, 248, 250, 258, 260, 269, 287], "std": [13, 171], "value_rang": [13, 194, 216, 248, 251, 286], "resampl": 13, "matrix": [13, 25, 27, 37, 68, 73, 75, 84, 109, 110, 173, 193, 195, 203, 205, 208, 210, 225, 231, 234, 242, 248, 249, 251, 256, 267, 269, 286], "default": [13, 22, 23, 24, 26, 30, 37, 51, 54, 55, 56, 61, 68, 70, 80, 84, 87, 99, 101, 120, 126, 149, 160, 218, 246, 248, 249, 250, 251, 252, 253, 255, 256, 257, 258, 259, 260, 261, 262, 264, 265, 266, 268, 269, 270, 280, 286], "behavior": [13, 28, 125, 131, 133, 136, 139, 142, 164, 166, 226, 239, 241, 261, 265, 266, 270, 281], "middl": [13, 27, 248, 268, 278], "last": [13, 34, 104, 107, 108, 109, 117, 146, 152, 158, 160, 169, 171, 172, 173, 176, 178, 195, 197, 204, 205, 212, 216, 224, 228, 229, 238, 250, 255, 267, 268, 269, 270, 286, 287], "dimens": [13, 161, 248, 251, 257, 258, 264, 266, 269, 270], "slice_actor": 13, "axial": [13, 14, 27], "ani": [13, 17, 29, 56, 58, 59, 84, 88, 89, 90, 91, 92, 94, 95, 97, 103, 104, 107, 109, 110, 112, 113, 115, 118, 120, 121, 123, 124, 126, 127, 129, 131, 133, 134, 137, 140, 143, 145, 146, 152, 157, 162, 164, 167, 169, 170, 171, 172, 173, 183, 187, 188, 191, 196, 202, 203, 209, 212, 216, 217, 218, 220, 223, 226, 230, 232, 233, 235, 237, 239, 248, 250, 251, 253, 269, 270, 287, 288], "given": [13, 28, 35, 100, 117, 118, 127, 162, 169, 218, 228, 248, 249, 250, 251, 252, 253, 255, 256, 259, 261, 265, 266, 267, 268, 269, 270, 286, 287], "howev": [13, 16, 22, 25, 27, 65, 78, 80, 102, 104, 108, 125, 133, 136, 145, 166, 175, 179, 184, 203, 205, 218, 224, 229, 235, 241, 252, 270, 286, 288], "copi": [13, 20, 22, 23, 24, 26, 30, 37, 130, 133, 171, 182, 207, 248, 255, 261, 265, 269], "slice_actor2": 13, "sagitt": [13, 27], "plane": [13, 18, 22, 35, 37, 73, 75, 76, 248, 251, 258, 267], "order": [13, 16, 27, 53, 56, 57, 58, 60, 62, 68, 84, 99, 105, 106, 118, 126, 131, 137, 146, 154, 158, 162, 192, 201, 204, 205, 218, 240, 243, 248, 249, 251, 261, 263, 269, 270, 278, 280, 281, 286], "uncom": [13, 36, 78, 79, 270], "line": [13, 14, 20, 22, 24, 25, 26, 30, 32, 33, 36, 37, 49, 51, 53, 78, 79, 87, 96, 126, 128, 133, 145, 150, 163, 168, 170, 171, 173, 176, 182, 185, 187, 188, 197, 200, 207, 216, 219, 224, 227, 228, 229, 233, 243, 245, 249, 250, 251, 268, 269, 270, 271, 277, 280, 285], "otherwis": [13, 29, 65, 224, 239, 248, 250, 251, 253, 255, 257, 259, 264, 265, 268, 269, 270, 288], "screenshot": [13, 22, 65, 158, 162, 270, 286], "follow": [13, 22, 23, 24, 27, 29, 30, 34, 36, 54, 55, 56, 59, 62, 65, 74, 76, 78, 79, 84, 87, 89, 90, 91, 92, 94, 95, 97, 109, 110, 113, 115, 118, 120, 121, 123, 124, 126, 129, 133, 136, 139, 157, 164, 166, 167, 177, 180, 181, 183, 186, 187, 190, 216, 217, 218, 220, 222, 226, 236, 242, 248, 250, 253, 255, 257, 269, 271, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288], "command": [13, 65, 84, 87, 89, 90, 91, 92, 94, 95, 97, 113, 123, 129, 157, 167, 171, 220, 265, 266, 271, 286, 287], "possibl": [13, 25, 28, 29, 34, 46, 65, 68, 84, 100, 105, 107, 108, 126, 137, 139, 140, 142, 148, 166, 171, 173, 217, 234, 240, 245, 248, 251, 255, 265, 267, 287, 288], "prefer": [13, 54, 65, 263], "non": [13, 29, 54, 163, 164, 169, 183, 217, 218, 236, 260], "standard": [13, 70, 123, 170, 171, 245, 248, 249, 251, 260, 265, 267, 269, 282, 285], "wai": [13, 22, 25, 34, 57, 62, 65, 66, 68, 87, 88, 101, 105, 122, 126, 130, 133, 136, 137, 139, 140, 143, 149, 160, 162, 166, 171, 172, 175, 180, 185, 191, 196, 201, 206, 207, 209, 211, 213, 215, 217, 218, 221, 222, 225, 230, 233, 237, 239, 245, 248, 251, 252, 269, 285, 286, 287, 288], "hsv": [13, 55, 177, 183, 217, 250, 251], "fname_fa": 13, "fa_1x1x1": 13, "notic": [13, 34, 65, 112, 145, 148, 161, 169, 181, 184, 208, 212, 241, 266, 283, 288], "min": [13, 25, 29, 194, 248, 251, 256, 268], "max": [13, 23, 25, 29, 78, 169, 171, 194, 248, 251, 256, 268], "lut": [13, 269, 283], "colormap_lookup_t": [13, 25, 248, 249, 271], "scale_rang": [13, 25, 251], "hue_rang": [13, 25, 251], "saturation_rang": [13, 25, 251], "becaus": [13, 22, 34, 65, 68, 105, 107, 110, 112, 118, 121, 130, 133, 137, 139, 142, 145, 146, 149, 161, 162, 164, 166, 171, 176, 185, 188, 191, 193, 196, 197, 206, 211, 226, 230, 234, 243, 251, 267], "lookup": [13, 248, 249, 251], "tabl": [13, 184, 248, 249, 251], "interpol": [13, 32, 33, 52, 54, 59, 63, 66, 81, 163, 169, 172, 186, 189, 190, 193, 196, 199, 203, 205, 215, 217, 248, 251, 256, 260, 269, 271, 286], "fa_actor": 13, "lookup_colormap": [13, 25, 248, 249], "clear": [13, 25, 65, 66, 68, 102, 171, 223, 231, 248, 260, 270, 271, 285], "slices_lut": 13, "abil": [13, 144, 159, 161, 164, 175, 189, 211, 214, 217, 218, 251, 286], "voxel": [13, 22, 248, 249, 269], "requir": [13, 22, 25, 29, 33, 65, 73, 75, 84, 87, 90, 99, 101, 103, 133, 137, 138, 140, 143, 152, 163, 169, 171, 172, 176, 185, 191, 197, 202, 205, 209, 211, 216, 218, 224, 226, 230, 237, 243, 245, 251, 266, 268, 275, 277, 280, 286, 287], "area": [13, 22, 103, 126, 197, 236, 246, 262], "pipelin": [13, 22, 95, 100, 164, 169, 236, 270, 279, 281, 284], "therefor": [13, 22, 25, 66, 84, 99, 103, 105, 107, 110, 126, 130, 133, 139, 145, 164, 238, 248, 269], "don": [13, 22, 65, 68, 78, 80, 130, 133, 162, 172, 183, 210, 216, 233, 287], "recommend": [13, 22, 56, 87, 133, 141, 161, 250, 287], "appropri": [13, 22, 68, 73, 84, 120, 163, 177, 243, 268], "allow": [13, 22, 29, 59, 65, 68, 78, 103, 105, 110, 126, 133, 136, 137, 139, 142, 143, 146, 155, 162, 164, 165, 177, 183, 198, 204, 213, 215, 217, 218, 225, 228, 231, 239, 251, 262, 266, 268, 270, 278, 280, 284, 285, 286, 287], "show_m": [13, 22, 27, 34], "1200": [13, 22, 27], "ll": [13, 14, 22, 28, 29, 37, 39, 49, 51, 79, 130, 132, 133, 135, 138, 139, 141, 142, 144, 145, 146, 147, 148, 150, 151, 153, 154, 156, 159, 161, 165, 170, 179, 181, 187, 193, 205, 221], "label_posit": 13, "label_valu": 13, "result_posit": 13, "result_valu": 13, "panel_pick": 13, "125": [13, 280], "opac": [13, 19, 22, 27, 32, 34, 36, 52, 62, 65, 68, 78, 79, 80, 81, 85, 217, 225, 248, 249, 250, 264, 268, 269, 271, 277, 283], "55": [13, 22, 27, 40, 41, 277], "disabl": [13, 84, 195, 247, 270, 282], "_ev": 13, "geteventposit": 13, "picker": 13, "j": [13, 20, 66, 67, 73, 74, 76, 156, 157, 171, 261, 266, 284], "k": [13, 26, 29, 62, 73, 76, 87, 89, 90, 91, 92, 94, 95, 96, 97, 113, 123, 128, 129, 157, 167, 168, 219, 220, 248, 249, 267, 269], "getpointijk": 13, "format": [13, 66, 70, 85, 88, 155, 160, 163, 170, 171, 175, 176, 184, 218, 224, 227, 249, 250, 251, 253, 257, 268, 286], "8f": 13, "setinterpol": 13, "By": [13, 24, 25, 34, 51, 80, 84, 171, 223, 248, 251, 269], "becom": [13, 149, 194, 206, 210], "easi": [13, 22, 25, 29, 59, 65, 67, 88, 130, 133, 143, 164, 166, 172, 174, 176, 185, 212, 228, 250], "effici": [13, 65, 109, 125, 130, 143, 164, 172, 176, 200, 216, 248, 251], "project": [13, 27, 37, 89, 90, 91, 92, 94, 95, 96, 97, 98, 99, 102, 103, 104, 106, 107, 108, 111, 113, 114, 116, 117, 119, 122, 123, 125, 126, 127, 128, 129, 130, 133, 157, 162, 163, 164, 167, 168, 169, 170, 171, 175, 189, 216, 217, 218, 219, 220, 221, 222, 223, 224, 227, 228, 230, 233, 236, 239, 240, 242, 248, 249, 251, 267, 270, 271, 280, 283, 287], "perspect": [13, 124, 270], "parallel": [13, 30, 75, 133, 164, 270], "associ": [13, 53, 68, 134, 139, 149, 172, 176, 216, 223, 234, 248, 250, 251, 261, 269], "show_m_mosa": 13, "left_click_callback_mosa": 13, "two": [13, 14, 20, 32, 33, 39, 42, 45, 48, 49, 54, 56, 59, 61, 65, 68, 78, 84, 87, 107, 122, 124, 132, 135, 139, 143, 145, 146, 160, 162, 163, 164, 166, 171, 172, 180, 183, 189, 192, 196, 198, 199, 205, 206, 209, 214, 216, 217, 218, 232, 239, 245, 246, 251, 261, 264, 267, 268, 284, 287], "nest": [13, 284], "grid": [13, 23, 25, 27, 35, 45, 137, 146, 152, 161, 163, 249, 258, 268, 269, 271, 277, 278], "15": [13, 22, 30, 41, 42, 49, 51, 53, 54, 61, 63, 72, 76, 164, 216, 218, 272, 278, 279, 280, 282, 284], "column": [13, 251, 257, 267], "row": [13, 251, 257, 269], "adjust": [13, 22, 143, 222, 223, 226, 229, 231, 234, 237, 244, 269, 286], "those": [13, 34, 53, 59, 65, 121, 136, 139, 145, 164, 171, 205, 223, 235, 239, 242, 245, 251, 266, 268], "dataset": [13, 22, 25, 27, 32, 33, 36, 142, 237], "col": [13, 42, 55, 70], "border": [13, 65, 134, 137, 149, 155, 162, 178, 182, 202, 206, 207, 209, 216, 245, 268, 284], "slice_mosa": 13, "abov": [13, 16, 25, 29, 54, 57, 58, 75, 84, 87, 102, 104, 107, 108, 111, 114, 115, 127, 136, 138, 139, 183, 196, 201, 202, 212, 213, 216, 217, 236, 239, 251, 288], "down": [13, 23, 26, 29, 39, 49, 73, 74, 75, 76, 84, 126, 169, 228, 248, 268], "button": [13, 14, 22, 38, 81, 99, 126, 140, 174, 189, 216, 217, 268, 278, 285, 286], "drag": [13, 140, 155, 162, 176, 185, 191, 216, 268], "out": [13, 53, 56, 58, 68, 70, 99, 102, 103, 104, 105, 106, 108, 109, 110, 111, 112, 114, 116, 117, 118, 119, 120, 121, 122, 127, 131, 133, 140, 143, 147, 149, 152, 158, 162, 169, 171, 172, 173, 176, 178, 181, 184, 191, 193, 195, 196, 200, 203, 204, 205, 206, 209, 210, 215, 221, 224, 227, 229, 233, 236, 238, 239, 242, 248, 250, 251, 255, 258, 268, 270, 272, 283, 288], "scroll": [13, 103, 120, 169, 268], "wheel": [13, 57, 88], "viz_slic": 13, "manipul": [14, 18, 30, 68, 105, 143, 150, 176, 177, 185, 196, 261], "simul": [14, 20, 24, 25, 34, 66, 71, 81, 105, 109, 110, 112, 115, 118, 126, 150, 163, 217, 218, 277, 282, 283, 285, 286], "orbit": [14, 171], "motion": [14, 21, 53, 63, 74, 81, 150, 163, 189, 197, 217, 250, 283], "read_viz_icon": [14, 39, 49, 271, 280], "paus": [14, 61, 62, 189, 217, 250, 268, 271, 286], "pause_button": 14, "button2d": [14, 39, 49, 146, 216, 271, 284], "icon_fnam": [14, 39, 49, 268], "squar": [14, 31, 37, 39, 45, 49, 169, 258, 264, 268, 271, 279, 281], "fname": [14, 39, 49, 250, 252, 253, 257, 270], "pause2": 14, "start_button": 14, "play3": 14, "33": [14, 39, 49, 139, 266, 270], "66": [14, 39, 49, 279], "relev": [14, 112, 145, 162, 226, 243], "planet": 14, "includ": [14, 39, 40, 41, 42, 43, 46, 47, 48, 49, 50, 51, 65, 67, 70, 85, 88, 96, 98, 99, 106, 116, 125, 128, 131, 132, 134, 135, 149, 155, 158, 167, 168, 180, 217, 219, 226, 229, 232, 235, 239, 255, 270, 283, 285, 287, 288], "rel": [14, 60, 84, 146, 149, 152, 178, 217, 248, 270, 287], "planets_data": 14, "8k_mercuri": 14, "earth_dai": 14, "58": [14, 277], "8k_venus_surfac": 14, "9": [14, 24, 53, 54, 57, 58, 61, 65, 66, 67, 68, 76, 84, 87, 125, 126, 129, 145, 162, 163, 164, 167, 172, 175, 184, 216, 217, 218, 248, 251, 258, 265, 268, 269, 272, 281, 282, 283, 285, 287], "243": [14, 282], "11": [14, 42, 46, 66, 67, 125, 126, 162, 163, 164, 170, 171, 216, 217, 218, 269, 272, 277, 285, 286], "8k_mar": 14, "13": [14, 61, 65, 73, 75, 125, 126, 145, 148, 164, 216, 217, 218, 272, 278, 284, 286], "jupit": 14, "16": [14, 29, 33, 34, 37, 42, 46, 54, 65, 68, 87, 125, 126, 148, 162, 163, 164, 216, 217, 248, 258, 266, 268, 269, 286], "41": [14, 34, 277], "8k_saturn": 14, "19": [14, 29, 30, 125, 126, 162, 163, 164, 217, 218], "8k_saturn_ring_alpha": 14, "2k_uranu": 14, "22": [14, 57, 154, 165, 216, 277, 286], "70": [14, 60], "2k_neptun": 14, "8k_sun": 14, "27": [14, 29, 53, 54, 73, 75, 216, 282], "To": [14, 16, 18, 23, 25, 29, 40, 41, 43, 45, 48, 49, 57, 62, 65, 70, 84, 85, 87, 88, 89, 90, 91, 92, 94, 95, 97, 100, 104, 111, 113, 123, 129, 133, 139, 145, 146, 149, 152, 157, 164, 167, 175, 184, 185, 188, 194, 196, 202, 207, 216, 220, 221, 223, 226, 227, 229, 236, 237, 238, 241, 244, 251, 255, 256, 268, 287], "advantag": [14, 136, 139, 155, 218, 245], "previous": [14, 34, 65, 115, 118, 124, 143, 149, 160, 162, 173, 182, 200, 202, 216, 245, 251], "structur": [14, 17, 22, 29, 32, 137, 140, 145, 163, 164, 170, 175, 177, 228, 233, 237, 240, 258, 261, 270, 280], "auxiliari": 14, "respect": [14, 20, 66, 68, 74, 76, 84, 99, 101, 105, 126, 131, 140, 160, 175, 178, 207, 216, 225, 248, 256, 266, 268, 269, 280], "properti": [14, 34, 48, 54, 59, 62, 66, 68, 69, 105, 109, 133, 139, 143, 164, 167, 176, 177, 182, 183, 189, 201, 213, 216, 217, 218, 226, 229, 238, 248, 249, 250, 251, 256, 260, 261, 266, 268, 270, 277, 285], "init_planet": 14, "planet_data": 14, "dict": [14, 46, 56, 61, 247, 250, 251, 256, 257, 260, 267, 268, 270, 280], "dictionari": [14, 22, 42, 43, 54, 58, 85, 139, 187, 214, 251, 253, 256, 260, 267, 268], "planet_actor": 14, "planet_fil": 14, "planet_imag": 14, "map": [14, 21, 22, 25, 34, 46, 65, 68, 81, 163, 165, 166, 169, 218, 248, 249, 251, 253, 257, 267], "assign": [14, 53, 54, 98, 100, 104, 108, 116, 117, 119, 122, 173, 204, 248, 250, 251, 261, 269], "planet_actor_list": 14, "mercury_actor": 14, "venus_actor": 14, "mars_actor": 14, "jupiter_actor": 14, "saturn_actor": 14, "saturn_rings_actor": 14, "uranus_actor": 14, "neptune_actor": 14, "sun_actor": 14, "gravit": 14, "constant": [14, 58, 65, 107, 139, 173, 271], "g": [14, 22, 36, 84, 85, 218, 248, 249, 251, 253, 260, 261, 264, 269, 270, 287], "central": [14, 65, 68], "mass": [14, 75, 84], "sun": [14, 282], "graviti": [14, 73, 74, 75, 76, 126, 169], "multipli": [14, 109, 173, 267, 269], "togeth": [14, 22, 65, 67, 84, 194, 209, 216, 226, 239, 242], "miu": 14, "g_expon": 14, "float_pow": 14, "g_constant": 14, "673": [14, 206, 216, 286], "m_expon": 14, "1073741824": 14, "power": [14, 21, 29, 65, 81, 88, 171, 217], "m_constant": 14, "989": 14, "get_orbit_period": 14, "get_orbital_posit": 14, "orbit_period": 14, "axi": [14, 20, 23, 24, 26, 29, 30, 32, 33, 37, 57, 68, 74, 76, 79, 84, 109, 162, 175, 192, 248, 249, 258, 267, 268, 269, 270, 285], "should": [14, 17, 56, 57, 59, 80, 84, 133, 134, 136, 137, 139, 143, 145, 148, 152, 162, 164, 180, 181, 191, 212, 218, 224, 227, 228, 229, 230, 231, 248, 249, 250, 251, 253, 256, 257, 260, 264, 265, 266, 268, 269, 270, 281, 283, 286, 287], "rotate_axi": 14, "funtction": 14, "better": [14, 25, 42, 46, 51, 58, 63, 68, 73, 75, 76, 88, 100, 124, 125, 127, 133, 139, 141, 145, 148, 164, 169, 171, 172, 211, 222, 238, 239, 240, 242], "60": [14, 23, 58, 116, 248, 270, 277, 281], "update_planet_posit": 14, "r_planet": 14, "pos_planet": 14, "calculate_path": 14, "planet_track": 14, "saturn": 14, "ring": [14, 47, 49, 51, 268], "r_time": 14, "taken": [14, 24, 268], "dai": [14, 100, 106, 127, 134, 171, 229, 236, 239, 242], "itself": [14, 53, 57, 65, 137, 140, 143, 162, 213, 216, 224, 227, 229], "p_data": 14, "saturn_r": 14, "sun_data": 14, "rplanet": 14, "orbit_actor": 14, "linewidth": [14, 20, 24, 25, 26, 30, 33, 37, 248, 249, 261, 271, 277], "control": [14, 28, 31, 38, 49, 53, 54, 55, 58, 61, 62, 65, 68, 74, 76, 81, 115, 126, 142, 164, 169, 171, 172, 178, 180, 183, 186, 189, 201, 217, 224, 225, 248, 250, 264, 268, 286], "valu": [14, 22, 23, 26, 27, 29, 30, 34, 37, 41, 43, 45, 46, 48, 49, 50, 51, 53, 54, 56, 58, 59, 61, 65, 66, 67, 73, 74, 75, 76, 84, 85, 105, 106, 109, 126, 139, 145, 162, 163, 172, 184, 188, 189, 194, 196, 197, 198, 208, 214, 230, 233, 239, 244, 245, 248, 249, 250, 251, 252, 253, 256, 257, 258, 260, 261, 263, 265, 267, 268, 269, 270, 271, 280, 283, 286, 287], "p_actor": 14, "zip": [14, 26, 81, 251], "pos_saturn": 14, "2000": [14, 73, 74, 84], "perform": [14, 34, 37, 39, 42, 48, 49, 65, 68, 73, 75, 78, 80, 84, 88, 108, 116, 125, 129, 130, 131, 133, 137, 139, 142, 145, 162, 164, 177, 196, 198, 216, 225, 261, 266, 283], "action": [14, 39, 49, 129, 133, 162, 164, 216, 220, 235, 238, 283, 286], "start_anim": 14, "i_ren": [14, 39, 41, 49, 268], "_button": [14, 39, 49], "pause_anim": 14, "destroy_tim": [14, 19, 270, 271], "on_left_mouse_button_click": [14, 39, 49, 268, 271], "viz_solar_system_anim": 14, "viz_solar_system": [14, 282], "vtksourc": [15, 179, 181, 269], "prim_sphere_actor": 15, "vtkspheresourc": 15, "vtk_sphere_actor": 15, "viz_spher": 15, "spike": 16, "point": [16, 23, 26, 29, 30, 34, 37, 53, 56, 58, 65, 68, 69, 84, 120, 133, 140, 145, 149, 152, 158, 160, 164, 171, 173, 176, 177, 178, 180, 185, 187, 188, 194, 196, 197, 200, 209, 212, 216, 233, 235, 236, 239, 242, 245, 246, 249, 250, 251, 264, 267, 269, 270, 271, 283], "evenli": [16, 248, 258], "distribut": [16, 24, 27, 67, 88, 162, 167, 224, 246, 248, 255, 258, 285, 288], "connect": [16, 22, 32, 37, 53, 68, 71, 72, 73, 74, 75, 76, 78, 80, 81, 107, 163, 169, 242, 269, 286], "prim_spher": [16, 271], "provid": [16, 22, 25, 29, 34, 36, 53, 55, 59, 65, 88, 99, 105, 125, 126, 131, 134, 137, 143, 149, 162, 170, 189, 223, 226, 235, 238, 246, 248, 250, 251, 255, 258, 261, 262, 264, 265, 266, 267, 268, 269, 270, 280, 288], "symmetric362": [16, 27, 264], "gen_fac": [16, 264], "green": [16, 36, 42, 43, 46, 48, 164, 248, 268], "point_actor": [16, 248], "point_radiu": [16, 30, 248], "vector": [16, 25, 56, 68, 84, 109, 164, 196, 197, 225, 248, 250, 251, 264, 267, 269, 270], "perpendicular": [16, 270], "whether": [16, 65, 152, 171, 197, 202, 206, 212, 246, 248, 250, 251, 261, 264, 268, 270, 287, 288], "repres": [16, 17, 29, 30, 32, 33, 68, 137, 145, 160, 163, 164, 245, 246, 248, 251, 255, 261, 264, 266, 268, 269, 270], "curv": [16, 30, 163, 177, 193, 248, 250, 269], "normals_from_v_f": [16, 271], "light": [16, 34, 65, 66, 68, 70, 102, 104, 106, 169, 175, 196, 204, 215, 218, 260, 265], "bounc": [16, 197], "them": [16, 22, 27, 29, 32, 33, 34, 36, 39, 42, 44, 45, 46, 47, 49, 50, 51, 55, 57, 65, 68, 69, 70, 74, 100, 101, 103, 108, 109, 110, 115, 126, 127, 132, 140, 145, 146, 152, 159, 163, 164, 169, 170, 172, 173, 178, 179, 180, 183, 185, 189, 193, 196, 200, 207, 209, 212, 216, 218, 222, 223, 224, 232, 246, 250, 252, 261, 268, 277, 287], "get_actor_from_primit": [16, 29, 271], "primitive_color": 16, "primitive_actor": 16, "backface_cul": [16, 269], "small": [16, 59, 132, 133, 135, 152, 159, 171, 200, 237, 265, 279, 284], "fun": [16, 169, 170], "user": [16, 19, 59, 64, 70, 77, 80, 84, 88, 99, 103, 105, 106, 111, 114, 116, 122, 124, 125, 126, 127, 132, 133, 135, 139, 140, 143, 145, 162, 164, 166, 174, 176, 182, 189, 206, 209, 211, 215, 216, 223, 224, 237, 245, 246, 251, 255, 266, 268, 286, 287], "millisecond": [16, 19, 23, 24, 26, 30, 33, 37, 70, 78, 266], "applic": [16, 19, 65, 96, 128, 133, 145, 164, 168, 171, 174, 217, 219, 227, 230, 236, 239, 266, 269, 285], "been": [16, 19, 39, 40, 41, 42, 46, 47, 49, 50, 51, 58, 63, 69, 70, 87, 88, 99, 101, 110, 114, 116, 130, 133, 134, 138, 140, 143, 144, 145, 146, 148, 151, 152, 162, 164, 169, 170, 171, 193, 203, 217, 222, 227, 245, 246, 248, 251, 263, 265, 268], "getproperti": [16, 19, 68, 85], "setopac": [16, 19, 85], "viz_spiki": 16, "instead": [16, 18, 29, 54, 59, 78, 105, 118, 136, 140, 143, 158, 169, 175, 176, 183, 188, 189, 192, 193, 196, 198, 200, 201, 204, 205, 209, 211, 212, 213, 217, 250, 255, 266, 270], "other": [16, 17, 20, 22, 56, 58, 60, 61, 65, 68, 78, 80, 99, 103, 107, 109, 122, 124, 131, 132, 133, 134, 137, 139, 140, 141, 143, 144, 145, 146, 149, 152, 155, 156, 160, 164, 167, 169, 171, 172, 173, 174, 175, 176, 177, 180, 181, 189, 192, 193, 196, 199, 201, 211, 213, 225, 226, 229, 231, 232, 233, 237, 238, 239, 243, 248, 251, 261, 265, 269, 270, 285, 288], "geometr": [16, 29, 47, 50, 65, 68, 216], "vtk": [17, 22, 41, 70, 84, 85, 87, 91, 98, 99, 102, 105, 121, 122, 125, 126, 129, 130, 133, 135, 136, 137, 139, 141, 145, 150, 161, 162, 163, 164, 166, 167, 169, 170, 172, 191, 192, 196, 197, 198, 209, 218, 224, 227, 233, 236, 246, 247, 248, 249, 252, 256, 257, 260, 265, 266, 269, 270, 276, 277, 278, 280, 281, 282, 283, 285, 286], "idea": [17, 88, 96, 100, 104, 108, 117, 120, 121, 125, 126, 128, 139, 145, 161, 168, 169, 170, 171, 172, 174, 176, 212, 219, 221, 225, 231, 236, 237, 240, 242, 281], "save_polydata": [17, 271], "lib": [17, 133, 145, 160, 164, 166, 167, 271, 285], "empti": [17, 251, 256, 266, 267, 286, 287], "my_polydata": 17, "my_vertic": 17, "type": [17, 31, 84, 88, 126, 132, 139, 143, 144, 145, 162, 163, 164, 171, 175, 184, 218, 226, 227, 237, 245, 247, 248, 249, 250, 251, 252, 253, 255, 256, 257, 258, 260, 261, 262, 264, 265, 266, 267, 268, 269, 270, 280], "mention": [17, 54, 110, 137, 169, 171, 176, 196, 200, 201, 211, 212, 213, 216, 217, 224, 228, 245, 280], "int64": 17, "my_triangl": 17, "i8": 17, "set_polydata_vertic": [17, 271], "set_polydata_triangl": [17, 271], "file_nam": [17, 257, 268], "my_cub": 17, "cube_polydata": 17, "cube_vertic": 17, "get_polydata_vertic": [17, 271], "set_polydata_color": [17, 271], "get_polydata_color": [17, 271], "viz_surfac": [17, 277], "bmp": [18, 257], "jpeg": [18, 253, 257, 266, 268], "avail": [18, 22, 25, 32, 33, 77, 81, 84, 88, 89, 90, 91, 92, 94, 95, 97, 100, 102, 104, 105, 108, 111, 113, 114, 117, 119, 122, 123, 127, 129, 131, 133, 139, 145, 151, 157, 160, 162, 164, 167, 169, 220, 236, 242, 248, 261, 266, 270], "viz_textur": 18, "level": [19, 29, 169, 171, 224, 228, 248, 251, 260], "insid": [19, 20, 24, 27, 68, 78, 130, 137, 139, 140, 143, 145, 154, 160, 162, 164, 166, 180, 183, 190, 192, 197, 211, 218, 224, 230, 233, 239, 242, 243, 245, 246, 250, 266, 270, 286], "timer_id": [19, 270], "destroi": [19, 76], "replac": [19, 65, 70, 84, 92, 95, 120, 126, 162, 209, 215, 239, 254, 255, 265, 268, 277, 279, 280, 285, 286], "faster": [19, 68, 69, 100, 112, 125, 159, 169, 196, 217], "viz_tim": 19, "demonstr": [20, 23, 25, 27, 34, 39, 42, 43, 44, 46, 47, 48, 49, 51, 53, 70, 84, 115, 117, 119, 124, 126, 137, 138, 143, 158, 162, 163, 217], "collid": [20, 171, 248, 258, 282], "wall": [20, 71, 76, 81, 109, 112, 118, 121, 126], "veloc": [20, 30, 33, 150, 163, 169, 286], "simplic": [20, 171], "forc": [20, 33, 72, 73, 74, 75, 76, 120, 126, 136, 140, 145, 162, 164, 213, 250, 283, 286], "edg": [20, 31, 32, 33, 37, 68, 79, 145, 164, 207, 251], "box_edg": 20, "box_lx": 20, "box_li": 20, "box_lz": 20, "edge1": 20, "edge2": 20, "edge3": 20, "edge4": 20, "edge5": 20, "lower": [20, 23, 65, 108, 216, 229, 250, 255, 268], "num_particl": [20, 24], "ndindex": 20, "distanc": [20, 25, 29, 33, 37, 65, 68, 69, 88, 113, 138, 163, 164, 165, 169, 173, 188, 220, 248, 250, 261, 268, 270, 281, 286], "linalg": [20, 22, 25], "norm": [20, 24, 27, 248, 249, 267], "vel_mag_i": 20, "vel": 20, "vel_mag_j": 20, "equal": [20, 24, 58, 59, 84, 112, 163, 248, 249, 255, 269], "sum": [20, 112, 171, 239, 242, 261, 267], "dt": [20, 23, 56], "where": [20, 25, 26, 57, 62, 68, 84, 87, 99, 109, 112, 118, 126, 133, 135, 137, 139, 145, 152, 163, 164, 171, 173, 175, 178, 194, 205, 210, 213, 221, 222, 223, 224, 232, 248, 249, 251, 252, 253, 260, 261, 263, 267, 268, 269, 270, 287], "randomli": [20, 33, 54, 283], "step": [20, 24, 28, 32, 33, 36, 55, 56, 58, 65, 68, 72, 73, 74, 75, 76, 84, 87, 100, 102, 107, 116, 117, 118, 130, 150, 163, 169, 196, 217, 230, 233, 236, 237, 242, 243, 245, 250, 251, 281, 286, 287], "With": [20, 22, 34, 65, 80, 88, 105, 115, 122, 126, 127, 139, 143, 152, 184, 235, 287], "streamtub": [20, 22, 25, 271, 280], "box_cent": 20, "box_direct": 20, "box_color": 20, "line_actor": [20, 30], "no_vertices_per_spher": 20, "len": [20, 23, 24, 26, 30, 32, 33, 37, 41, 72, 79, 248, 266], "initial_vertic": [20, 23, 24, 26, 30], "reset_clipping_rang": [20, 22, 33, 36, 42, 46, 49, 51, 270, 271], "simple_collis": 20, "bunch": [21, 47, 49, 50, 70, 81], "app": [21, 32, 81], "marker": [21, 28, 59, 81, 130, 136, 137, 157, 164, 165, 271, 284, 287], "interdisciplinari": [21, 81], "journal": [21, 81, 253, 284], "network": [21, 81, 130, 134, 136, 148, 164, 166, 280, 283], "roi": [21, 81, 240, 248, 286], "streamlin": [21, 22, 81, 93, 223, 248, 249, 251, 269, 280], "charg": [21, 81], "particl": [21, 24, 81, 150, 163, 282], "magnet": [21, 26, 81], "electr": [21, 26, 81], "field": [21, 26, 81, 113, 164, 236, 248, 249, 251, 268, 269, 281], "brownian": [21, 81, 150, 163, 283, 286], "video": [21, 81, 98, 99, 139, 164, 171, 183, 204, 217, 250, 266, 270, 284], "fine": [21, 81, 130, 133, 136, 156, 164, 173, 175, 178, 203, 212, 224, 227, 285], "tune": [21, 81, 130, 136, 156, 221, 285], "opengl": [21, 81, 87, 100, 130, 133, 136, 164, 166, 169, 170, 224, 233, 236, 242, 246, 265, 266, 270, 285, 286], "state": [21, 59, 81, 130, 136, 137, 143, 145, 164, 171, 189, 217, 224, 250, 265, 268, 270, 280, 285], "shader": [21, 65, 68, 69, 70, 88, 93, 98, 100, 102, 108, 111, 116, 122, 123, 125, 130, 138, 162, 164, 166, 167, 169, 172, 183, 186, 191, 192, 198, 202, 209, 213, 215, 217, 218, 222, 228, 233, 236, 239, 242, 246, 248, 253, 271, 280, 282, 283, 284, 285, 286], "electromagnet": [21, 81, 283], "wave": [21, 30, 81, 147, 285], "propag": [21, 81, 131, 143, 146, 188, 226, 229, 283], "metric": [21, 65, 68, 81], "tesseract": [21, 81, 218, 286], "hypercub": [21, 81], "collis": [21, 71, 73, 81, 88, 121, 126], "advanc": [21, 81, 88, 140, 222, 261, 283], "brain": [21, 81, 240], "fiber": [21, 81, 277], "odf": [21, 81, 94, 129, 222, 243, 248, 249, 278, 283], "visualis": [21, 81, 132], "fractal": [21, 81, 286], "version": [21, 80, 81, 133, 136, 139, 142, 162, 164, 167, 169, 171, 172, 174, 183, 192, 197, 217, 218, 220, 236, 248, 251, 255, 261, 263, 265, 266, 268, 270, 277, 280, 282, 285, 286, 287], "pbr": [21, 64, 81, 167, 283, 285], "thin": [22, 163], "capabl": [22, 27, 111, 117, 118, 119, 125, 127, 161, 217, 218, 248], "toolkit": [22, 246], "framework": [22, 98, 117, 125, 224], "tailor": 22, "diffus": [22, 234, 237, 240, 260], "modul": [22, 23, 24, 26, 27, 29, 30, 34, 59, 65, 66, 67, 68, 81, 84, 129, 131, 133, 135, 137, 139, 143, 144, 145, 146, 147, 150, 153, 154, 155, 156, 158, 159, 160, 162, 163, 164, 166, 167, 213, 217, 218, 220, 248, 251, 254, 261, 264, 271, 277, 283, 284, 285, 286, 287], "wa": [22, 67, 88, 99, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 114, 115, 116, 117, 118, 119, 120, 121, 122, 124, 125, 126, 127, 131, 133, 134, 135, 137, 138, 139, 140, 141, 142, 143, 145, 146, 147, 148, 149, 150, 152, 156, 158, 161, 163, 164, 166, 169, 170, 171, 172, 173, 174, 175, 176, 178, 179, 181, 182, 184, 185, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 202, 205, 206, 208, 209, 212, 216, 217, 221, 223, 224, 225, 226, 228, 229, 231, 232, 235, 237, 243, 244, 245, 246, 250, 251, 252, 255, 266, 269, 270, 286, 287], "fvtk": [22, 277], "still": [22, 65, 87, 109, 112, 120, 122, 126, 139, 143, 146, 149, 164, 169, 171, 181, 185, 193, 195, 202, 203, 205, 213, 225, 234, 239, 240, 241, 245, 255], "backward": [22, 277, 280], "compat": [22, 88, 97, 113, 129, 164, 165, 166, 197, 226, 235, 277, 280, 281, 283], "comprehens": 22, "fetcher": [22, 33, 70, 79, 175, 216, 271, 280, 283, 286], "read_bundles_2_subject": [22, 25], "disk": [22, 47, 49, 169, 251, 252, 268, 271, 285], "open": [22, 80, 87, 88, 89, 90, 91, 92, 94, 95, 96, 97, 113, 123, 126, 128, 129, 130, 131, 136, 139, 143, 145, 157, 162, 164, 167, 168, 171, 172, 217, 219, 220, 226, 264, 268, 284, 286, 287], "dialog": [22, 118, 126, 268, 280], "snapshot": [22, 271, 279, 285, 286], "slider": [22, 27, 32, 34, 38, 45, 81, 152, 177, 180, 189, 194, 209, 212, 216, 217, 268, 279, 280, 285, 286], "input": [22, 25, 34, 56, 63, 65, 68, 189, 193, 248, 249, 251, 255, 269, 270], "oper": [22, 65, 84, 109, 126, 166, 175, 224, 227, 230, 245, 286], "fa": [22, 25], "t1": [22, 56, 250], "lineslider2d": [22, 27, 34, 45, 48, 49, 51, 115, 180, 229, 271, 280], "widget": [22, 27, 77, 81, 89, 99, 126, 162, 166, 191, 197, 271, 273, 277], "fetch": [22, 27, 34, 39, 40, 41, 42, 43, 44, 46, 47, 48, 49, 50, 51, 152, 162, 216, 218, 237, 253, 277, 286, 287], "output": [22, 65, 70, 102, 108, 111, 114, 117, 119, 122, 125, 127, 163, 171, 202, 209, 233, 241, 245, 257, 263, 269, 270], "af": 22, "arcuat": 22, "fasciculu": 22, "subject": [22, 171, 217], "cst": [22, 25], "cc_1": 22, "bring": [22, 65, 84, 109], "ra": [22, 248], "1mm": [22, 248], "extend": [22, 29, 171, 223], "design": [22, 65, 67, 84, 98, 110, 112, 124, 126, 140, 146, 160, 169, 177, 231, 233, 267], "decid": [22, 23, 26, 30, 98, 99, 104, 107, 112, 115, 117, 118, 119, 120, 121, 125, 126, 131, 134, 137, 138, 140, 143, 144, 146, 152, 156, 162, 169, 173, 175, 178, 179, 181, 190, 205, 226, 233, 237, 244, 269, 270], "space": [22, 25, 55, 65, 68, 69, 104, 132, 135, 144, 158, 161, 162, 163, 169, 184, 248, 250, 251, 261, 267, 269, 284], "world_coord": [22, 262], "nativ": [22, 25, 118, 126, 159, 248, 249, 280], "back": [22, 84, 109, 112, 169, 171, 181, 184, 217, 233, 239, 270, 287], "invers": [22, 169, 203, 256], "transform_streamlin": [22, 25], "inv": [22, 25], "stream_actor": [22, 25], "image_actor_z": 22, "ey": [22, 270], "slicer_opac": 22, "origin": [22, 24, 29, 53, 54, 59, 68, 84, 109, 121, 175, 188, 193, 197, 212, 218, 233, 239, 246, 247, 248, 251, 252, 256, 269, 286, 287], "display_ext": [22, 27, 248, 249, 271], "image_actor_x": 22, "x_midpoint": 22, "image_actor_i": 22, "y_midpoint": 22, "image_actor": [22, 248], "ahead": [22, 171, 221, 223], "line_slider_z": [22, 27], "min_valu": [22, 27, 34, 48, 49, 51, 268], "max_valu": [22, 27, 34, 48, 49, 51, 268], "initial_valu": [22, 27, 34, 48, 49, 51, 268], "text_templ": [22, 27, 34, 48, 49, 51, 268], "0f": [22, 27], "length": [22, 25, 27, 34, 45, 49, 53, 60, 63, 105, 217, 225, 248, 249, 250, 253, 256, 264, 267, 268, 269, 271], "140": [22, 27, 280], "line_slider_x": [22, 27, 48, 49], "line_slider_i": [22, 27, 48, 49], "opacity_slid": 22, "write": [22, 27, 88, 124, 126, 133, 138, 139, 142, 145, 160, 170, 172, 203, 215, 256, 266], "regist": [22, 27, 29, 34, 146, 287], "change_slice_z": [22, 27], "change_slice_x": [22, 27], "change_slice_i": [22, 27], "change_opac": 22, "on_chang": [22, 27, 29, 34, 42, 43, 46, 48, 49, 50, 51, 189, 268, 271, 286], "label": [22, 27, 34, 36, 39, 43, 48, 49, 55, 66, 67, 112, 115, 155, 164, 165, 166, 268, 270, 271, 277, 285, 287], "identifi": [22, 109, 139, 209, 216, 223, 229, 231, 235], "build_label": [22, 27], "font_siz": [22, 27, 29, 34, 37, 42, 43, 46, 48, 49, 50, 72, 73, 74, 75, 76, 85, 248, 268, 271], "18": [22, 23, 25, 27, 29, 42, 49, 53, 72, 73, 75, 151, 164, 170, 268, 278, 281], "font_famili": [22, 27, 42, 46, 248, 268, 271], "arial": [22, 27, 42, 46, 248, 268], "justif": [22, 27, 43, 48, 238, 248, 268, 271, 285], "ital": [22, 27, 248, 268, 271], "shadow": [22, 27, 169, 248, 268, 271], "background_color": [22, 27, 268, 271], "line_slider_label_z": [22, 27], "line_slider_label_x": [22, 27], "line_slider_label_i": [22, 27], "opacity_slider_label": 22, "1030": [22, 27], "120": [22, 27, 42, 184, 280], "38": [22, 27], "screen": [22, 25, 27, 49, 68, 87, 166, 191, 224, 227, 229, 236, 239, 242, 245, 253, 268, 270, 286], "properli": [22, 27, 99, 103, 120, 140, 172, 175, 202, 212, 236], "solut": [22, 27, 100, 105, 133, 134, 136, 137, 139, 142, 146, 152, 164, 223, 226, 230, 233, 236, 239, 248, 266], "issu": [22, 27, 87, 88, 99, 101, 103, 104, 105, 107, 109, 110, 111, 112, 114, 115, 117, 118, 119, 120, 121, 124, 125, 126, 130, 133, 134, 140, 143, 145, 152, 164, 166, 170, 171, 172, 173, 175, 176, 177, 179, 184, 185, 188, 192, 193, 195, 196, 198, 200, 201, 204, 206, 209, 210, 211, 213, 216, 217, 223, 224, 227, 229, 232, 233, 235, 238, 239, 241, 242, 244, 255, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287], "re_align": [22, 27, 34, 268, 271], "getsiz": [22, 27, 34], "win_callback": [22, 27, 34, 270], "size_old": [22, 27, 34], "size_chang": [22, 27, 34], "final": [22, 27, 28, 29, 32, 33, 34, 49, 54, 59, 65, 66, 67, 68, 84, 100, 112, 118, 121, 124, 127, 131, 139, 140, 143, 147, 155, 166, 169, 186, 192, 201, 224, 231, 233, 236, 238, 239, 242, 248, 250, 251, 268, 269, 283, 286], "pleas": [22, 27, 32, 36, 88, 287], "add_window_callback": [22, 27, 34, 270, 271, 280], "bundles_and_3_slic": 22, "del": [22, 27], "viz_advanc": 22, "necessari": [23, 24, 26, 29, 30, 34, 65, 66, 67, 68, 74, 76, 110, 112, 118, 133, 139, 164, 226, 228, 238, 240, 243, 266, 268, 270, 285, 286, 287], "colormap": [23, 27, 32, 33, 36, 55, 79, 89, 163, 183, 189, 242, 245, 248, 249, 269, 271, 273, 277, 281, 284], "being": [23, 33, 68, 76, 87, 102, 104, 120, 127, 137, 138, 139, 146, 152, 169, 177, 194, 196, 198, 201, 204, 213, 215, 217, 227, 230, 233, 236, 245, 250, 268, 269, 277, 280, 286], "plot": [23, 24, 26, 30, 236, 242, 251], "kindli": [23, 26], "onli": [23, 25, 29, 34, 53, 54, 56, 58, 59, 62, 65, 105, 118, 120, 127, 137, 138, 140, 143, 145, 146, 150, 158, 162, 164, 166, 169, 177, 179, 187, 189, 191, 196, 199, 216, 217, 232, 242, 245, 248, 249, 250, 251, 266, 268, 269, 270, 285], "update_surfac": 23, "equat": [23, 56], "cmap_nam": 23, "viridi": [23, 242, 251], "f": [23, 41, 139, 156, 251, 265], "eval": [23, 248], "vstack": [23, 25], "v": [23, 29, 37, 64, 81, 133, 192, 208, 248, 251, 267, 287], "m_v": 23, "ab": [23, 65], "create_colormap": [23, 271, 283], "usag": [23, 84, 88, 141, 171, 230, 232, 237], "float": [23, 24, 39, 49, 65, 68, 70, 162, 188, 248, 249, 250, 251, 256, 257, 258, 260, 261, 264, 265, 266, 268, 269, 270], "begin": [23, 24, 26, 29, 30, 59, 60, 147, 164, 226], "program": [23, 68, 70, 125, 169, 170, 196, 202, 209, 221, 222, 224, 227, 233, 242, 244, 245, 248, 265, 281], "amount": [23, 59, 65, 79, 133, 215, 217, 225, 234, 237, 248, 266], "increment": [23, 26, 30, 268], "iter": [23, 33, 35, 37, 73, 74, 75, 84, 162, 242, 251, 266, 267], "lower_xbound": 23, "bound": [23, 105, 126, 159, 163, 171, 176, 178, 182, 185, 206, 212, 216, 238, 241, 244, 248, 258, 261, 268, 269, 280, 281], "upper_xbound": 23, "upper": [23, 229], "lower_ybound": 23, "upper_ybound": 23, "npoint": [23, 26], "high": [23, 26, 27, 65, 88, 133, 192, 248, 255, 257, 258, 270], "qualiti": [23, 26, 65, 92, 94, 95, 97, 113, 123, 225, 237, 240, 257, 270, 277, 278, 279, 280, 281, 282], "slow": [23, 26, 73, 74, 75, 76, 84, 138, 196, 217, 248], "128": [23, 25, 260, 280], "elev": [23, 29, 270, 271], "linspac": [23, 26, 66], "meshgrid": 23, "reshap": [23, 37, 73, 74, 75, 76, 84, 118, 175, 184, 269, 280], "obtain": [23, 234, 243, 251, 261, 284], "create_surfac": 23, "colormap_nam": 23, "surf": 23, "no_vertices_per_point": [23, 24, 26, 30], "eq1": 23, "eq2": 23, "eq3": 23, "eq4": 23, "variou": [23, 27, 44, 72, 74, 76, 84, 107, 109, 126, 132, 152, 171, 173, 174, 175, 176, 191, 202, 212, 218, 232], "hot": 23, "plasma": [23, 251], "ocean": [23, 171], "append": [23, 32, 33, 37, 39, 41, 49, 73, 74, 75, 76, 79, 103, 179, 265, 268], "configur": [23, 24, 26, 27, 30, 37, 65, 145, 286], "individu": [23, 68, 73, 75, 76, 84, 109, 115, 118, 134, 137, 143, 162, 169, 172, 174, 180, 206, 212, 216, 248, 249, 268, 286], "t_actor": 23, "17": [23, 29, 61, 65, 78, 148, 151, 164, 216, 218, 269, 277, 279], "grid_ui": 23, "gridui": [23, 92, 150, 271, 277, 286], "caption": [23, 248, 268, 278, 286], "caption_offset": [23, 248, 268], "dim": [23, 184, 248, 258, 264, 268, 269], "cell_pad": [23, 248, 258, 268], "aspect_ratio": [23, 248, 258, 268, 269], "rotation_axi": [23, 268], "titl": [23, 26, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 69, 99, 143, 162, 171, 248, 268, 270, 271, 280], "form": [23, 56, 65, 73, 152, 169, 195, 210, 224, 236, 248, 249, 250, 258, 263, 264, 268, 269, 288], "update_surface_actor_color": [23, 271], "viz_animated_surfac": 23, "pedesi": 24, "suspend": 24, "medium": [24, 26, 133, 139], "exhibit": 24, "scipi": [24, 87, 110, 280], "stat": [24, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286], "descript": [24, 26, 30, 36, 37, 84, 125, 126, 149, 152, 162, 163, 164, 216, 217, 218, 234, 239, 263, 265, 287], "total_tim": 24, "discret": [24, 65, 245, 261], "via": [24, 70, 88, 103, 109, 132, 141, 144, 156, 267, 270, 283], "time_step": 24, "num_total_step": 24, "counter_step": 24, "delta": 24, "whose": [24, 30, 65, 163, 248, 253, 258, 261, 268], "varianc": [24, 231, 234], "path_thick": 24, "thick": [24, 248, 249, 261], "asarrai": 24, "tile": 24, "path_actor": 24, "update_path": 24, "rv": 24, "l_particl": 24, "_": [24, 29, 33, 35, 42, 57, 73, 75, 76, 160, 239, 251, 267], "container_actor": 24, "235": [24, 281], "list_particl": 24, "p": [24, 31, 65, 72, 73, 74, 75, 76, 78, 79, 84, 118, 139, 164, 170, 184, 248, 253, 267], "viz_brownian_mot": 24, "dix": 25, "subj_id": 25, "cg": 25, "fraction": [25, 248, 268], "anisotropi": [25, 34, 66, 260, 269, 285], "cingulum": 25, "bundle_n": 25, "176": [25, 280], "118": [25, 280], "52": [25, 277], "113": 25, "76": [25, 280], "56": [25, 277], "bundle1": 25, "mai": [25, 37, 54, 59, 62, 68, 84, 126, 149, 164, 170, 202, 216, 218, 227, 239, 245, 248, 255, 263, 269, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288], "wonder": [25, 103], "knew": [25, 169, 170], "veri": [25, 62, 65, 107, 108, 109, 110, 133, 140, 142, 149, 158, 160, 162, 169, 170, 171, 184, 188, 196, 217], "just": [25, 28, 29, 37, 49, 68, 88, 133, 134, 137, 139, 146, 149, 164, 169, 171, 175, 178, 182, 199, 202, 209, 212, 213, 216, 224, 225, 227, 233, 250, 254, 265, 266, 268, 269, 287], "close": [25, 78, 98, 99, 136, 139, 201, 222, 238, 251, 261, 270, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287], "camera_info": [25, 270, 271], "focal": [25, 54, 183, 250, 270], "view": [25, 54, 80, 169, 171, 189, 250, 251, 267, 270], "stream_actor2": 25, "scalar": [25, 175, 248, 250, 256, 269], "bar": [25, 248, 268, 270, 286], "scalar_bar": [25, 271], "bundle2": 25, "hue": 25, "red": [25, 26, 30, 42, 43, 46, 48, 72, 248, 270], "satur": 25, "lut_cmap": 25, "stream_actor3": 25, "bar2": 25, "bundle3": 25, "orang": [25, 43, 48], "stream_actor4": 25, "bundle4": 25, "blue": [25, 26, 30, 36, 42, 43, 46, 48, 72, 141, 209, 248, 251, 261, 268, 270], "black": [25, 171, 239, 286], "stream_actor5": 25, "bar3": 25, "bundle5": 25, "case": [25, 29, 34, 39, 49, 56, 65, 68, 84, 100, 103, 109, 127, 143, 145, 152, 163, 164, 171, 176, 194, 197, 232, 238, 239, 245, 250, 251, 261, 268, 269, 280], "per": [25, 53, 65, 104, 178, 197, 248, 249, 250, 252, 257, 269, 270], "insert": [25, 37, 265, 268], "rgb": [25, 43, 184, 248, 249, 250, 251, 260, 261, 264, 268, 269, 270, 283], "stream_actor6": 25, "bundle6": 25, "drawn": [25, 65, 137, 160, 173, 227, 248, 249, 268, 269], "width": [25, 31, 85, 101, 105, 112, 126, 139, 173, 217, 224, 227, 233, 245, 248, 250, 258, 268, 269, 270, 271, 286], "regardless": 25, "realism": 25, "enabl": [25, 59, 76, 88, 95, 125, 132, 144, 238, 247, 250, 270, 277, 279, 286], "depth_cu": [25, 248, 277], "shrink": [25, 244, 248], "scheme": [25, 29], "best": [25, 56, 127, 140, 171, 176, 248, 287], "stream_actor7": 25, "bundle7": 25, "shade": [25, 65, 67, 70, 119, 125, 172, 218, 248, 260], "fake_tub": [25, 33, 37, 248, 277], "stream_actor8": 25, "bundle8": 25, "fulli": [25, 84, 88, 239, 248, 249, 251], "challeng": [25, 100, 102, 107, 108, 145, 169, 221, 223, 226, 229, 232, 235, 244], "techniqu": [25, 59, 65, 68, 106, 119, 122, 152, 188, 222, 235, 246, 266], "stream_actor9": 25, "bundle9": 25, "yet": [25, 109, 112, 155, 159, 162, 170, 180, 189, 193, 221, 225, 233], "much": [25, 65, 100, 110, 125, 171, 175, 176, 217, 228, 230, 243, 248, 270], "geometri": [25, 29, 57, 68, 69, 98, 100, 125, 186, 192, 213, 215, 217, 218, 248, 264, 265, 286], "computation": [25, 125], "expens": [25, 125, 133, 164], "larg": [25, 33, 97, 113, 123, 129, 130, 133, 138, 143, 157, 177, 184, 220, 225, 246, 251, 280, 281, 282, 283, 284, 286], "approxim": [25, 248], "describ": [25, 34, 84, 87, 131, 137, 140, 145, 164, 216, 227, 230, 236, 239, 247, 250, 251, 253, 268, 270, 281], "stream_actor10": 25, "bundle10": 25, "viz_bundl": 25, "linearli": [26, 61, 250], "polar": [26, 267], "sinusoid": 26, "through": [26, 59, 66, 67, 68, 78, 84, 88, 98, 100, 102, 105, 124, 125, 126, 136, 163, 164, 169, 170, 171, 172, 212, 223, 224, 227, 244, 246, 266, 268, 283, 286, 287], "homogen": [26, 251, 267, 269], "isotrop": [26, 260], "dissipationless": 26, "vacuum": 26, "oscil": [26, 74], "orthogon": [26, 225], "phase": [26, 30], "wavenumb": 26, "abscissa": 26, "angular": [26, 30], "frequenc": [26, 30], "update_coordin": [26, 30], "ang_frq": 26, "phase_angl": [26, 30], "800": [26, 29, 30, 39, 46, 47, 48, 49, 50, 51, 78], "wavelength": 26, "incre_tim": [26, 30], "angular_frq": [26, 30], "yellow": [26, 43, 48, 207, 209], "tip_length": [26, 30, 248, 264], "tip_radiu": [26, 30, 248, 264], "012": [26, 30], "shaft_radiu": [26, 30, 248, 264], "pt": [26, 30, 248, 268, 269], "wave_actor1": 26, "xx": 26, "yy": 26, "zz": 26, "pts2": 26, "colors2": 26, "wave_actor2": 26, "vertices2": 26, "vcolors2": 26, "no_vertices_per_point2": 26, "initial_vertices2": 26, "160": [26, 58, 280], "time_incr": 26, "viz_emwav": 26, "viz_emwave_anim": 26, "viewer": [27, 218], "odf_slic": [27, 271, 277, 283], "get_spher": 27, "reconst": [27, 36], "shm": [27, 36], "sh_to_sf_matrix": 27, "fetch_viz_dmri": [27, 271], "fetch_viz_icon": [27, 39, 40, 41, 42, 43, 46, 47, 48, 49, 50, 51, 271], "read_viz_dmri": [27, 271], "fix_winding_ord": [27, 249, 271], "express": [27, 84, 170, 248, 249, 254, 255, 288], "harmon": [27, 104, 116, 125, 243, 248], "sh": [27, 139, 248, 249], "coeffici": [27, 72, 125, 248, 249, 260], "fodf_img": 27, "fodf": 27, "grid_shap": 27, "low": [27, 78, 80, 133, 164, 169, 224, 248, 251, 257, 283], "sf": [27, 248, 249], "b_low": 27, "onto": [27, 224, 267], "sphere_low": 27, "repulsion100": [27, 264], "return_inv": 27, "radial_scal": [27, 248, 249], "global_cm": [27, 248, 249], "odf_actor_z": 27, "b_matrix": [27, 248], "coron": 27, "odf_actor_i": 27, "odf_actor_x": 27, "dynam": [27, 73, 100, 107, 125, 145, 162, 164, 217, 222, 244, 245, 249, 280], "sphere_high": 27, "fix": [27, 76, 84, 100, 101, 103, 105, 107, 110, 111, 113, 118, 120, 121, 132, 136, 137, 139, 140, 149, 152, 154, 159, 162, 164, 165, 166, 169, 170, 171, 174, 175, 176, 177, 179, 183, 184, 188, 192, 196, 201, 204, 205, 210, 211, 212, 215, 216, 217, 218, 223, 229, 239, 241, 250, 251, 274, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286], "three": [27, 29, 49, 54, 73, 75, 99, 105, 126, 141, 144, 145, 158, 163, 164, 166, 169, 216, 242, 244, 245, 251, 269, 286], "clockwis": [27, 249, 260, 267, 269], "wind": [27, 269, 280], "awai": [27, 169, 269, 270], "b_high": 27, "combobox": [27, 38, 81, 101, 103, 105, 113, 115, 126, 223, 226, 268, 281], "dure": [27, 58, 63, 84, 93, 103, 107, 124, 125, 127, 130, 131, 137, 146, 152, 162, 163, 169, 170, 184, 204, 221, 222, 226, 232, 237, 241, 244, 246, 270, 280, 284], "execut": [27, 73, 75, 76, 84, 133, 139, 145, 164, 171, 202, 209, 215, 233, 250, 263, 265, 266, 286], "sphere_dict": 27, "combobox2d": [27, 43, 48, 99, 101, 105, 107, 110, 126, 229, 271, 281, 286], "item": [27, 42, 43, 48, 53, 103, 248, 250, 251, 268, 271], "combo": [27, 112, 126, 268], "slice_along_axi": [27, 249, 271], "yaxi": [27, 249], "xaxi": [27, 249], "change_spher": 27, "selected_text": [27, 43, 48, 268, 271], "update_spher": [27, 249, 271], "odf_slicer_3d": 27, "viz_fiber_odf": 27, "sometim": [28, 126, 139, 164, 207, 209, 266], "about": [28, 58, 65, 74, 76, 84, 85, 87, 96, 99, 107, 110, 128, 132, 133, 139, 141, 145, 150, 156, 158, 160, 161, 164, 168, 171, 172, 175, 177, 185, 188, 190, 200, 212, 215, 216, 219, 222, 225, 230, 232, 233, 234, 236, 238, 242, 245, 246, 253, 255, 261, 266, 270, 280, 284, 286, 287], "special": [28, 34, 101, 109, 163, 164, 283, 284, 288], "effect": [28, 66, 67, 75, 93, 112, 122, 125, 142, 145, 160, 162, 164, 169, 242, 245, 248, 265], "shader_apply_effect": [28, 271], "remove_observer_from_actor": [28, 271], "proce": [28, 84, 228], "actor_no_depth_test": 28, "marker_opac": [28, 248], "actor_normal_blend": 28, "actor_add_blend": 28, "actor_sub_blend": 28, "actor_mul_blend": 28, "must": [28, 54, 56, 57, 59, 62, 84, 115, 133, 139, 145, 162, 164, 166, 217, 227, 248, 250, 253, 259, 260, 261, 265, 268, 288], "enter": [28, 171, 268, 287], "topic": [28, 98, 120, 150, 215], "pre": [28, 131, 166, 216, 268, 286], "built": [28, 84, 166, 170, 218], "gl_function": 28, "instanc": [28, 59, 84, 125, 133, 140, 145, 146, 164, 166, 194, 266, 268, 270], "context": [28, 133, 139, 164, 166, 227, 233, 246, 247, 266, 270], "gl_set_normal_blend": [28, 271], "composit": [28, 216, 245], "id_observ": [28, 265], "gl_reset_blend": [28, 271], "gl_disable_blend": [28, 271], "gl_disable_depth": [28, 271], "gl_enable_depth": [28, 271], "gl_set_additive_blend": [28, 271], "gl_set_subtractive_blend": [28, 271], "gl_set_multiplicative_blend": [28, 271], "result": [28, 32, 33, 37, 58, 67, 108, 109, 133, 134, 139, 140, 142, 164, 170, 171, 175, 188, 202, 226, 228, 229, 239, 242, 244, 245, 253, 259, 265, 269, 270], "no_depth_test": 28, "viz_fine_tuning_gl_context": 28, "self": [29, 35, 139, 258, 268, 286], "similar": [29, 42, 84, 100, 109, 110, 140, 169, 172, 174, 197, 207, 212, 216, 242, 248, 251, 287], "recurs": [29, 143], "implement": [29, 65, 67, 68, 84, 98, 99, 100, 101, 102, 104, 105, 106, 107, 108, 109, 110, 111, 112, 115, 119, 121, 122, 124, 125, 126, 127, 131, 132, 133, 135, 136, 137, 138, 139, 140, 141, 146, 147, 149, 150, 152, 159, 161, 163, 164, 166, 169, 170, 171, 173, 183, 185, 188, 189, 191, 193, 194, 196, 197, 201, 204, 205, 207, 209, 210, 212, 213, 214, 217, 218, 222, 223, 224, 226, 227, 228, 232, 233, 234, 236, 238, 239, 242, 243, 245, 246, 248, 251, 265, 266, 267, 272, 281, 284, 286], "sierpinski": 29, "tetrahedron": [29, 264, 280], "tetrix": 29, "menger": 29, "spong": 29, "moselei": 29, "snowflak": 29, "hardcod": 29, "repeat_primit": [29, 218, 248, 271, 286], "ground": 29, "rule": [29, 130, 131, 146, 171, 221, 285], "comput": [29, 34, 36, 65, 66, 68, 88, 99, 104, 125, 130, 133, 145, 164, 169, 170, 171, 176, 180, 217, 222, 227, 246, 248, 258, 260, 269, 280], "depth": [29, 65, 162, 224, 248, 250, 270], "prevent": [29, 120, 139, 146, 286], "infinit": [29, 162], "assum": [29, 133, 248, 249, 255, 268], "smaller": [29, 68, 171, 184], "ideal": [29, 100, 137, 239, 242, 245], "alloc": [29, 224, 227, 230, 251], "upfront": 29, "achiev": [29, 53, 88, 106, 109, 111, 112, 118, 122, 125, 130, 133, 136, 139, 140, 164, 216], "binari": [29, 112, 175, 218, 248, 253, 257, 288], "tree": [29, 143, 162, 232, 244, 245], "ari": 29, "formula": [29, 108, 243, 267], "found": [29, 84, 105, 107, 109, 110, 112, 115, 118, 120, 121, 124, 125, 126, 142, 158, 162, 163, 164, 165, 166, 171, 172, 178, 180, 181, 191, 193, 197, 209, 213, 216, 217, 218, 229, 234, 236, 240, 243, 245, 251, 252, 253, 255, 263, 267, 269, 270], "represent": [29, 37, 65, 68, 125, 132, 133, 138, 142, 144, 150, 159, 162, 163, 164, 218, 248, 261, 285], "sub": [29, 60, 99, 101, 103, 105, 107, 109, 110, 112, 115, 118, 120, 121, 124, 125, 126, 140, 143, 158, 162, 163, 169, 171, 216, 217, 218, 250, 268], "child": [29, 57, 84, 143, 152, 162, 218, 229, 250, 256], "skip": [29, 251, 253, 254, 255], "frac": 29, "entri": [29, 251, 255], "leaf": 29, "exactli": [29, 65, 137, 169, 171, 224, 228, 236, 239], "without": [29, 73, 75, 80, 87, 88, 109, 136, 139, 141, 145, 149, 164, 166, 185, 189, 191, 209, 218, 225, 227, 228, 229, 233, 236, 248, 250, 251, 252, 258, 270, 283, 285, 286, 287, 288], "overhead": 29, "classic": 29, "natur": [29, 30, 88, 143, 158, 244], "dimension": [29, 37, 163, 249, 286], "extens": [29, 95, 253, 257, 265, 268, 271, 279, 280], "At": [29, 84, 169, 173, 217, 218, 224, 229, 242, 255], "offset": [29, 84, 107, 137, 143, 241, 244, 251, 256, 258, 268, 269, 286], "prim_tetrahedron": [29, 271, 286], "gen_cent": 29, "dist": [29, 65, 287], "idx": [29, 41, 73, 75, 76, 266], "halv": 29, "divis": [29, 188], "correct": [29, 49, 59, 143, 166, 179, 206, 208, 212, 225, 228, 231, 240, 241, 242, 256, 269, 270, 278, 280, 286], "depend": [29, 30, 60, 63, 65, 66, 90, 95, 133, 139, 146, 152, 154, 158, 164, 171, 176, 185, 216, 217, 237, 241, 248, 250, 261, 269, 275, 277, 279], "pretti": [29, 171, 228, 242, 245], "bounds_min": 29, "bounds_max": 29, "corner": [29, 134, 140, 143, 152, 162, 175, 197, 216, 229, 268, 269], "accord": [29, 34, 73, 75, 139, 161, 172, 173, 174, 176, 202, 217, 229, 238, 244, 248, 251, 258, 268, 269, 270, 284, 287], "consid": [29, 137, 171, 173, 189, 200, 238, 248, 249, 250, 251, 261, 267, 269], "side": [29, 68, 143, 152, 177, 217, 246, 248, 258, 264, 268, 270, 283], "prim_box": [29, 271], "think": [29, 65, 133, 143, 161, 171, 173, 202, 212, 222, 246], "quit": [29, 102, 107, 108, 110, 120, 125, 133, 138, 161, 166, 208], "interest": [29, 66, 67, 96, 117, 128, 134, 140, 141, 158, 168, 170, 217, 219, 224, 236, 239, 247], "koch": 29, "showmgr": 29, "nice": [29, 175], "my": [29, 101, 103, 104, 105, 107, 109, 110, 112, 115, 118, 120, 121, 124, 125, 126, 127, 130, 133, 135, 136, 137, 138, 139, 141, 142, 143, 144, 145, 146, 147, 150, 151, 152, 153, 154, 155, 156, 158, 159, 160, 161, 162, 163, 164, 165, 166, 171, 172, 173, 174, 175, 178, 180, 184, 191, 197, 200, 209, 212, 216, 217, 218, 221, 222, 223, 225, 226, 227, 228, 229, 230, 232, 233, 234, 235, 236, 237, 239, 240, 242, 244, 245, 246, 286], "machin": [29, 133, 171, 252, 278, 287], "lag": [29, 130, 189, 217], "could": [29, 58, 59, 63, 67, 103, 119, 122, 124, 136, 139, 142, 143, 150, 152, 154, 155, 164, 166, 169, 170, 171, 173, 174, 185, 191, 200, 208, 212, 216, 224, 227, 230, 233, 236, 242, 245, 264, 269, 287], "bump": [29, 280], "switch": [29, 32, 126, 131, 162, 171, 176, 216, 229, 256, 268], "radiobutton": [29, 46, 120, 271, 282], "shape_choos": 29, "pad": [29, 42, 46, 226, 248, 258, 268, 271], "checked_label": [29, 42, 46, 48, 268], "choose_shap": 29, "radio": [29, 38, 81, 126, 268, 282, 285], "basic": [29, 68, 100, 108, 115, 117, 121, 135, 137, 169, 170, 171, 173, 176, 217, 218, 222, 239, 240, 242, 264, 268, 280, 283], "movement": [29, 68, 191, 244, 268], "littl": [29, 33, 133, 134, 201, 217, 287], "mode": [29, 33, 73, 74, 75, 76, 78, 105, 124, 173, 174, 184, 187, 188, 207, 216, 218, 238, 250, 251, 253, 256, 261, 268, 270], "document": [29, 34, 88, 94, 95, 97, 98, 102, 107, 113, 120, 121, 123, 124, 125, 126, 127, 129, 131, 132, 133, 134, 135, 136, 141, 145, 151, 154, 157, 161, 164, 165, 167, 170, 171, 172, 175, 192, 213, 217, 220, 224, 231, 236, 274, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 288], "viz_fract": 29, "tend": [30, 236], "acceler": [30, 233, 284], "antiparallel": 30, "along": [30, 35, 68, 101, 105, 109, 137, 143, 152, 162, 169, 170, 173, 174, 175, 178, 182, 189, 200, 202, 206, 207, 209, 221, 225, 248, 249, 250, 255, 258, 267, 268, 285], "helic": [30, 150, 163, 261], "under": [30, 75, 87, 88, 96, 98, 99, 128, 131, 168, 171, 216, 217, 218, 219, 223, 251, 283, 286], "influenc": 30, "radius_particl": 30, "08": [30, 125, 126, 162, 163, 164, 216, 217, 218, 272, 279, 283, 285], "initial_veloc": 30, "09": [30, 126, 162, 163, 164, 216, 217, 218, 272, 281, 285], "acc": 30, "due": [30, 98, 99, 107, 120, 125, 140, 143, 145, 163, 164, 171, 178, 179, 188, 206, 207, 208, 235, 241, 286], "color_arrow": 30, "color_particl": 30, "charge_actor": 30, "m1": 30, "m2": 30, "coor_1": 30, "coor_2": 30, "coor": 30, "cyan": 30, "viz_helical_mot": 30, "There": [31, 62, 87, 103, 115, 120, 121, 122, 126, 133, 163, 169, 171, 184, 187, 212, 218, 234, 248, 251, 252, 280], "nine": 31, "diamond": 31, "pentagon": [31, 167, 248, 264, 285], "hexagon": [31, 120], "heptagon": 31, "cross": [31, 107, 270], "plu": [31, 261], "marker_symbol": 31, "h": [31, 139, 248, 257, 261, 266], "s6": [31, 248], "choic": [31, 56, 70, 211, 248, 261, 268], "uniform": [31, 68, 70, 80, 108, 172, 180, 183, 196, 198, 204, 215, 242], "nodes_actor": [31, 248], "edge_width": [31, 248], "edge_color": [31, 248], "valid": [31, 206, 250, 261], "nodes_3d_actor": [31, 248], "ones_lik": 31, "viz_mark": 31, "overview": [32, 112], "complex": [32, 33, 59, 107, 137, 171, 176, 189, 212, 224, 246], "shown": [32, 49, 50, 84, 108, 111, 116, 122, 127, 163, 176, 209, 216, 255, 261, 268], "citat": [32, 33], "pjoin": [32, 33, 79], "cmap": [32, 33, 79, 251, 278], "fetch_viz_wiki_nw": [32, 33, 79, 271], "folder": [32, 33, 79, 241, 253, 266, 268, 280, 287], "categories_fil": [32, 33, 79], "edges_fil": [32, 33, 79], "positions_fil": [32, 33, 79], "sort": [32, 33, 79, 140, 162, 170, 250, 270], "loadtxt": [32, 33, 79], "categori": [32, 33, 66, 79, 93, 223], "attribut": [32, 33, 59, 68, 140, 146, 162, 183, 184, 217, 218, 225, 229, 250, 251, 262, 265, 270, 277, 280, 287], "category2index": [32, 33, 79], "enumer": [32, 33, 37, 41, 66, 73, 75, 76, 79], "uniqu": [32, 33, 79, 166, 167, 266, 285, 286], "index2categori": [32, 33, 79], "categorycolor": [32, 79], "distinguishable_colormap": [32, 33, 55, 79, 271], "nb_color": [32, 33, 55, 79, 251], "OF": [32, 288], "cours": [32, 67, 98, 164, 169, 170, 236], "edgesposit": [32, 79], "edgescolor": [32, 79], "averag": [32, 33, 79, 256], "readi": [32, 33, 34, 65, 84, 109, 114, 121, 160, 166, 199, 201, 217, 228, 230, 231, 242, 243, 245, 287], "lines_actor": [32, 33, 79], "creation": [32, 33, 68, 176, 182, 185, 216, 217, 222, 225, 265, 286], "journal_network": 32, "improv": [32, 65, 88, 97, 98, 108, 113, 116, 118, 125, 126, 129, 130, 133, 135, 136, 138, 139, 142, 145, 148, 149, 154, 164, 165, 167, 170, 171, 185, 189, 196, 198, 201, 216, 217, 218, 220, 222, 223, 225, 232, 235, 236, 238, 246, 270, 278, 280, 281, 283, 285, 286, 287], "interactivi": 32, "viz_network": 32, "algorithm": [33, 68, 69, 100, 102, 104, 107, 109, 112, 117, 125, 138, 148, 156, 159, 161, 163, 164, 166, 169, 170, 225, 230, 248, 251, 261, 280], "layout": [33, 38, 81, 130, 131, 134, 136, 137, 146, 148, 152, 158, 160, 162, 164, 166, 167, 248, 271, 279, 280, 284, 285, 286], "simpler": [33, 68, 73, 215, 224, 227, 279], "displac": [33, 109, 188, 218], "compute_bound": [33, 271], "heurist": 33, "vertices_count": 33, "networkx": 33, "packag": [33, 87, 88, 91, 156, 164, 171, 247, 251, 255, 263, 276, 287], "nx": 33, "view_siz": 33, "random_geometric_graph": 33, "arang": [33, 74, 76], "category_color": 33, "endpoint": 33, "edges_color": 33, "lod": [33, 37, 248], "new_layout_tim": 33, "edges_list": 33, "max_iter": 33, "vertex_initial_posit": 33, "500": [33, 34, 39, 47, 48, 49, 50, 74, 76, 80, 265, 285], "viscos": 33, "alpha": [33, 109, 132, 164, 248, 255, 283], "0005": [33, 74, 76], "deltat": 33, "sphere_geometri": 33, "geometry_length": 33, "iterationcount": 33, "nonloc": 33, "repulst": 33, "vertex1": 33, "vertex2": 33, "x1": [33, 249], "y1": [33, 249], "z1": [33, 249], "x2": [33, 249], "y2": [33, 249], "z2": [33, 249], "rx": 33, "ry": 33, "rz": 33, "fx": 33, "fy": 33, "fz": 33, "attract": 33, "vfrom": 33, "vto": 33, "_timer": 33, "spheres_posit": 33, "edges_posit": 33, "bit": [33, 107, 121, 124, 143, 158, 159, 161, 170, 171, 178, 212, 217, 287], "farther": 33, "max_iteract": 33, "multi_sampl": [33, 217, 250, 270, 286], "viz_animated_network": 33, "viz_network_anim": [33, 218, 286], "physic": [34, 64, 67, 72, 73, 74, 76, 84, 88, 99, 105, 107, 109, 110, 115, 120, 123, 126, 167, 169, 218, 260, 267, 282, 283, 285], "fetch_viz_cubemap": [34, 271], "read_viz_cubemap": [34, 271], "load_cubemap_textur": [34, 271], "normals_from_actor": [34, 66, 271], "tangents_from_direction_of_anisotropi": [34, 66, 271], "tangents_to_actor": [34, 66, 271], "change_slice_metal": 34, "pbr_param": 34, "metal": [34, 66, 67, 218, 260], "change_slice_rough": 34, "rough": [34, 66, 67, 161, 218, 260], "change_slice_anisotropi": 34, "change_slice_anisotropy_direction_x": 34, "doa": 34, "tangent": [34, 56, 66, 193, 199, 250, 269], "change_slice_anisotropy_direction_i": 34, "change_slice_anisotropy_direction_z": 34, "change_slice_anisotropy_rot": 34, "anisotropy_rot": [34, 66, 260], "change_slice_coat_strength": 34, "coat_strength": [34, 66, 260], "change_slice_coat_rough": 34, "coat_rough": [34, 66, 260], "change_slice_base_ior": 34, "base_ior": [34, 66, 260], "change_slice_coat_ior": 34, "coat_ior": [34, 66, 260], "least": [34, 56, 142, 165, 169, 170, 224, 234], "reposit": [34, 126, 178, 206, 216, 241, 286], "resiz": [34, 44, 101, 103, 105, 131, 134, 140, 143, 146, 149, 152, 162, 173, 216, 229, 232, 238, 241, 266, 268, 271, 284, 286], "control_panel": 34, "skybox": [34, 169, 253, 270, 271, 286], "repositori": [34, 103, 105, 107, 109, 110, 112, 115, 118, 120, 121, 124, 133, 164, 175, 179, 184, 187, 253, 261, 263], "compos": [34, 49, 180, 189, 217, 261, 264, 268], "cubemap": 34, "handl": [34, 49, 54, 55, 58, 62, 68, 84, 105, 107, 109, 160, 171, 172, 175, 182, 184, 185, 194, 197, 213, 216, 217, 250, 268, 271, 279, 286], "extract": [34, 132, 135, 146, 149, 175, 195, 218, 250, 256, 266, 282, 284], "plausibl": [34, 66], "popul": [34, 233, 236, 268], "64": [34, 55, 169], "manifest_pbr": [34, 66, 271], "setup": [34, 74, 90, 146, 230, 233, 236, 241, 245, 275, 287], "1920": [34, 37], "1080": [34, 37], "easili": [34, 105, 125, 126, 133, 140, 143, 162, 164, 216, 217], "And": [34, 59, 67, 114, 133, 169, 177, 183, 192, 196, 217, 233, 245, 250], "slider_label_metal": 34, "slider_label_rough": 34, "slider_label_anisotropi": 34, "slider_label_anisotropy_rot": 34, "slider_label_anisotropy_direction_x": 34, "slider_label_anisotropy_direction_i": 34, "slider_label_anisotropy_direction_z": 34, "slider_label_coat_strength": 34, "coat": [34, 66, 260, 285], "strength": [34, 66, 260], "slider_label_coat_rough": 34, "slider_label_base_ior": 34, "ior": [34, 66], "slider_label_coat_ior": 34, "95": [34, 169], "86": [34, 278], "77": [34, 280], "68": [34, 55, 278], "59": [34, 277], "32": [34, 66, 67, 68, 171, 277, 279], "23": [34, 54, 85, 125, 126, 165, 166, 217, 269, 277], "14": [34, 54, 61, 125, 126, 145, 162, 163, 164, 216, 218, 251, 269, 277, 283, 286], "slider_slice_metal": 34, "195": [34, 280, 283], "1f": [34, 48, 49, 51, 268], "slider_slice_rough": 34, "slider_slice_anisotropi": 34, "slider_slice_anisotropy_rot": 34, "slider_slice_coat_strength": 34, "slider_slice_coat_rough": 34, "within": [34, 65, 66, 84, 102, 104, 108, 111, 115, 124, 125, 126, 143, 171, 223, 268, 270], "cover": [34, 154, 178, 189, 202], "slider_slice_anisotropy_direction_x": 34, "slider_slice_anisotropy_direction_i": 34, "slider_slice_anisotropy_direction_z": 34, "refract": [34, 66, 167, 260, 285], "slider_slice_base_ior": 34, "02f": [34, 66], "slider_slice_coat_ior": 34, "handler": [34, 253, 259, 265], "44": [34, 264, 268, 269, 277], "consequ": [34, 145, 164], "captur": [34, 191, 216, 239, 242], "helper": [34, 56, 76, 143, 192, 207, 216, 242, 271, 286], "window_callback": 34, "viz_pbr_interact": [34, 286], "rectangl": [35, 47, 49, 162, 173, 209, 216, 238, 268, 271, 281], "cv2": 35, "videocaptur": 35, "wrap": [35, 65, 152, 155, 223, 268, 284], "opencv": [35, 211], "__init__": [35, 139, 247, 248, 249, 250, 251, 255, 256, 258, 261, 262, 266, 268, 270, 271], "fp": [35, 65, 73, 74, 75, 76, 116, 169, 192, 217, 250, 286], "cap_prop_fp": 35, "frame": [35, 59, 65, 78, 84, 95, 108, 158, 246, 248, 250, 266, 270, 279], "cap_prop_frame_count": 35, "yield": [35, 251], "get_fram": 35, "isfram": 35, "dur": 35, "cvtcolor": 35, "color_bgr2rgb": 35, "releas": [35, 78, 116, 148, 185, 255, 266, 268, 270, 271], "videoplay": 35, "video_gener": 35, "current_video_fram": 35, "initialize_scen": 35, "show_manag": [35, 39, 40, 41, 42, 45, 46, 47, 49, 50, 51, 53], "1st": 35, "plane_actor": 35, "isinst": 35, "ndarrai": [35, 56, 218, 248, 249, 250, 251, 252, 256, 257, 261, 264, 265, 267, 268, 269, 270], "texture_upd": [35, 271], "interv": [35, 84, 139, 232, 245, 266], "frame_dur": 35, "video_url": 35, "http": [35, 40, 41, 56, 58, 67, 78, 87, 89, 90, 91, 92, 94, 95, 97, 113, 123, 126, 129, 133, 136, 139, 151, 157, 160, 164, 167, 220, 251, 252, 265, 266, 267, 270, 279, 287], "commondatastorag": 35, "googleapi": 35, "com": [35, 40, 41, 67, 87, 126, 139, 160, 251, 266, 267, 287], "gtv": 35, "bucket": 35, "bigbuckbunni": 35, "mp4": [35, 211, 217, 250, 286], "vp": 35, "viz_play_video": 35, "probabilist": 36, "csa": 36, "corpu": 36, "callosum": 36, "seed": 36, "default_spher": 36, "read_stanford_label": 36, "peaks_from_model": [36, 248], "csaodfmodel": 36, "try": [36, 70, 88, 99, 107, 112, 120, 122, 124, 125, 127, 132, 135, 136, 138, 146, 150, 159, 161, 169, 171, 176, 177, 182, 187, 191, 192, 198, 201, 204, 205, 209, 213, 216, 217, 224, 228, 236, 238, 239, 242, 287], "local": [36, 80, 171, 197, 248, 263, 268, 283, 287], "localtrack": 36, "thresholdtissueclassifi": 36, "thresholdstoppingcriterion": 36, "except": [36, 58, 70, 109, 133, 203, 255], "importerror": 36, "stopping_criterion": 36, "local_track": 36, "line_color": [36, 271], "complet": [36, 89, 90, 91, 92, 94, 95, 97, 99, 105, 108, 112, 113, 114, 116, 118, 120, 123, 129, 134, 140, 157, 167, 170, 174, 185, 194, 220, 223, 224, 226, 229, 232, 235, 238, 239, 241, 244, 248, 253, 287], "refer": [36, 54, 73, 74, 75, 76, 84, 138, 158, 162, 170, 174, 176, 178, 185, 200, 205, 216, 246, 251, 261, 266, 268, 270, 284], "hardi_img": 36, "gtab": 36, "labels_img": 36, "white_matt": 36, "csa_model": 36, "sh_order": 36, "csa_peak": 36, "relative_peak_threshold": 36, "min_separation_angl": 36, "mask": [36, 248], "classifi": [36, 236], "gfa": 36, "seed_mask": 36, "seeds_from_mask": 36, "densiti": [36, 236, 246], "step_siz": 36, "streamlines_actor": 36, "r": [36, 87, 109, 140, 162, 164, 248, 249, 251, 260, 261, 264, 267, 269, 270, 287], "decim": [36, 66, 67, 268], "surface_opac": 36, "surface_color": 36, "seedroi_actor": 36, "contour_from_roi": [36, 271], "pop": [36, 55, 57, 152], "contour_from_roi_tutori": 36, "viz_roi_contour": [36, 286], "four": [37, 53], "unfold": 37, "eight": 37, "wirefram": [37, 65, 269], "p_color": 37, "e_color": 37, "dtheta": 37, "smoother": [37, 65, 175, 191, 218, 238, 248], "02": [37, 74, 76, 125, 126, 162, 163, 164, 270, 272, 279, 280], "4d": [37, 248, 249, 269], "verts4d": 37, "verts3d": 37, "altern": [37, 100, 102, 104, 108, 125, 171, 237, 248, 255, 281], "rotate4d": 37, "xy": [37, 65, 70, 248, 258, 267, 269], "zw": 37, "imaginari": [37, 251], "rotation4d_xi": 37, "rotation4d_zw": 37, "projected_marix": 37, "vert": [37, 264, 269], "rotated_3d": 37, "dot": [37, 61, 68, 187, 205, 252, 257, 269, 270, 271, 286], "proj_mat4d": 37, "projeced_mat3d": 37, "proj": 37, "connect_point": 37, "len_vert": 37, "point_vert": 37, "no_vertic": 37, "initial_vert": 37, "lines_vert": 37, "initial_lin": 37, "950": 37, "viz_tesseract": 37, "drawpanel": [38, 81, 178, 206, 212, 216, 253, 271, 286], "card": [38, 81, 158, 160, 162, 268], "listbox": [38, 45, 49, 81, 268, 271, 279, 284], "figur": [38, 48, 81, 105, 109, 110, 112, 118, 120, 122, 131, 143, 147, 152, 169, 172, 181, 193, 195, 196, 203, 205, 208, 210, 224, 236, 239, 242, 252, 271], "check": [38, 48, 81, 87, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 114, 115, 116, 117, 118, 119, 120, 121, 122, 124, 125, 126, 127, 135, 138, 139, 141, 144, 145, 146, 147, 150, 153, 156, 159, 161, 162, 163, 164, 169, 170, 171, 197, 200, 206, 209, 221, 225, 227, 228, 230, 231, 232, 239, 245, 248, 250, 253, 261, 266, 268, 269, 270, 272, 283, 286, 287], "tab": [38, 81, 105, 112, 123, 126, 171, 268, 271, 282, 286], "api": [39, 42, 46, 47, 49, 50, 51, 84, 88, 105, 120, 123, 125, 126, 146, 149, 152, 164, 169, 170, 171, 175, 177, 179, 181, 198, 201, 217, 218, 224, 239, 242, 246, 277, 281, 282, 286], "icon": [39, 40, 41, 42, 43, 44, 46, 47, 48, 49, 50, 51, 155, 162, 174, 191, 216, 223, 253, 268, 280, 283, 286], "put": [39, 49, 65, 68, 222, 251, 286, 287], "integ": [39, 49, 188, 248, 251, 261], "pixel": [39, 49, 68, 169, 188, 252, 268, 269, 270], "me": [39, 49, 98, 99, 100, 105, 107, 109, 116, 117, 118, 121, 124, 127, 130, 131, 138, 139, 141, 147, 152, 161, 169, 170, 171, 172, 175, 178, 188, 197, 200, 224, 227, 229, 233, 234, 239, 242, 244, 245], "text2": [39, 49], "percentag": [39, 49, 250, 268], "button_exampl": [39, 49], "stop2": [39, 49], "icon_fil": [39, 49], "second_button_exampl": [39, 49], "change_text_callback": [39, 49], "force_rend": [39, 41, 49], "change_icon_callback": [39, 49], "next_icon": [39, 49, 268, 271], "on_left_mouse_button_press": [39, 49, 268, 271], "current_s": [39, 40, 41, 42, 43, 44, 45, 46, 47, 49, 50, 51, 69, 70], "viz_button": 39, "img_url": [40, 41], "raw": [40, 41, 133], "githubusercont": [40, 41], "gl": [40, 41, 87, 88, 89, 90, 91, 92, 94, 95, 97, 113, 123, 125, 126, 129, 130, 136, 139, 145, 148, 151, 154, 157, 158, 160, 162, 163, 164, 165, 166, 167, 169, 170, 173, 174, 216, 217, 218, 220, 270, 280, 283, 287], "commun": [40, 41, 88, 89, 90, 91, 92, 94, 95, 96, 97, 113, 123, 128, 129, 130, 131, 145, 157, 164, 165, 166, 167, 168, 169, 171, 219, 220, 239, 286], "asset": [40, 41], "logo": [40, 41, 164, 286], "bodi": [40, 41, 57, 73, 74, 107, 162, 268, 271], "free": [40, 41, 84, 88, 89, 90, 91, 92, 94, 95, 96, 97, 113, 123, 128, 129, 131, 133, 157, 164, 167, 168, 170, 171, 218, 219, 220, 288], "unifi": [40, 41, 88, 171, 288], "softwar": [40, 41, 87, 88, 89, 90, 91, 92, 94, 95, 96, 97, 98, 99, 113, 123, 125, 126, 128, 129, 157, 162, 163, 167, 168, 169, 170, 171, 211, 213, 216, 217, 218, 219, 220, 284, 288], "librari": [40, 41, 67, 71, 78, 80, 81, 87, 88, 89, 90, 91, 92, 94, 95, 96, 97, 113, 123, 128, 129, 131, 132, 133, 145, 157, 158, 167, 168, 170, 171, 175, 219, 220, 224, 246, 257, 280, 284, 285], "scientif": [40, 41, 88, 89, 90, 91, 92, 94, 95, 96, 97, 113, 123, 128, 129, 157, 163, 164, 167, 168, 172, 219, 220, 241, 246, 261, 286], "card2d": [40, 41, 134, 155, 158, 160, 162, 271], "image_path": [40, 41, 268], "title_text": [40, 41, 268], "body_text": [40, 41, 268], "image_scal": [40, 41, 268], "bg_color": [40, 41, 268, 270, 271], "294": [40, 41, 126], "bg_opac": [40, 41, 268], "border_width": [40, 41, 149, 268, 271], "border_color": [40, 41, 268, 271], "card_ui": [40, 41], "viz_card": 40, "sprite": [41, 160, 162, 257, 285], "sheet": [41, 160, 162, 163, 257, 261, 285], "load_sprite_sheet": [41, 271], "save_imag": [41, 271, 280], "tempfil": 41, "temporarydirectori": 41, "intemporarydirectori": 41, "target_fp": 41, "frame_tim": 41, "sprite_sheet": 41, "imgur": 41, "0ykftbq": 41, "current_sprite_idx": 41, "vtk_sprite": 41, "delai": [41, 158, 287], "_evt": 41, "set_img": [41, 268, 271], "getrenderwindow": [41, 236], "getinteractor": 41, "getinteractorstyl": 41, "vtkimagedata": [41, 162, 248, 257, 269, 285], "sprite_to_vtk": 41, "tdir": 41, "sprite_path": 41, "compression_qu": [41, 257], "as_vtktyp": [41, 257], "viz_card_sprite_sheet": 41, "checkbox": [42, 115, 120, 126, 271, 280, 282, 285], "visibl": [42, 48, 51, 182, 212, 227, 246, 248, 249, 256, 268, 270, 286], "360": [42, 46, 63, 268], "symmetr": [42, 248, 249, 286], "uncheck": [42, 48, 268], "sym_diff": [42, 48], "l1": [42, 48], "l2": [42, 48], "symmetric_differ": [42, 48], "set_figure_visibl": [42, 48], "figure_dict": [42, 48], "setvis": [42, 48, 49, 51, 248, 271], "invis": [42, 48], "update_color": 42, "color_arrai": [42, 269], "toggl": [42, 49, 174, 216, 217, 268, 271], "toggle_color": [42, 46], "elif": [42, 48], "check_box": 42, "color_toggl": [42, 46], "viz_checkbox": 42, "viz_check_box": 42, "vertical_justif": [43, 48, 226, 248, 268, 271], "top": [43, 48, 51, 57, 103, 125, 143, 158, 169, 175, 191, 248, 268, 269], "rock": [43, 48], "violet": [43, 48], "indigo": [43, 48], "compon": [43, 60, 65, 68, 99, 101, 103, 105, 110, 112, 118, 120, 121, 124, 126, 131, 180, 216, 217, 223, 229, 238, 244, 246, 256, 267, 268, 269, 286], "color_combobox": [43, 48], "placehold": [43, 48, 140, 162, 263, 268], "chosen": [43, 67, 164, 170, 216, 251], "change_color": [43, 48], "whenev": [43, 102, 171, 174, 176, 178, 182, 189, 194, 207, 209, 216, 245, 250], "combobox_ui": 43, "viz_combobox": 43, "fetch_viz_new_icon": [44, 216, 271, 286], "drawing_canva": 44, "560": [44, 286], "650": [44, 49, 286], "isn": [44, 107, 170, 182, 212, 239], "canva": [44, 173, 174, 176, 178, 191, 217, 252, 268], "current_mod": [44, 268, 271], "draw_shap": [44, 268, 271], "shape_typ": [44, 268], "current_posit": [44, 268], "275": [44, 126, 282], "shape_list": 44, "viz_drawpanel": 44, "gridlayout": [45, 131, 134, 140, 143, 146, 160, 162, 271, 286], "cell": [45, 248, 258, 269, 279], "arrang": [45, 131, 216, 248], "fashion": [45, 146, 162, 258, 260], "panel_1": 45, "panel_2": 45, "listbox_1": 45, "listbox2d": [45, 49, 50, 112, 118, 126, 232, 271, 280, 281, 286], "third": [45, 48, 103, 105, 125, 126, 133, 138, 139, 164, 211, 224, 283], "listbox_2": 45, "rect_grid": 45, "position_offset": [45, 258], "square_grid": 45, "cell_shap": [45, 248, 258, 268], "diagonal_grid": 45, "diagon": [45, 248, 258, 267], "ui_layout": 45, "viz_layout": 45, "viz_radio_button": 46, "rect": [47, 49, 248, 258, 268], "rectangle2d": [47, 49, 105, 134, 137, 149, 162, 173, 202, 209, 216, 271], "solid": [47, 49, 68, 164], "disk2d": [47, 49, 178, 188, 216, 271, 280], "outer_radiu": [47, 49, 268, 271], "inner": [47, 49, 248, 268], "inner_radiu": [47, 49, 268, 271], "viz_shap": 47, "tab_ui": 48, "tabui": [48, 115, 229, 271, 286], "49": [48, 54, 277, 280], "94": [48, 279], "nb_tab": [48, 268], "draggabl": [48, 268], "content": [48, 143, 162, 238, 241, 248, 258, 268, 269, 270], "ring_slid": [48, 49, 51], "ringslider2d": [48, 49, 51, 115, 185, 216, 244, 271], "horizont": [48, 49, 51, 126, 155, 158, 160, 162, 167, 248, 258, 268, 270, 285], "text_align": [48, 51, 268], "cube_x": [48, 49], "cube_i": [48, 49], "rotate_cub": [48, 49, 51], "previous_angl": [48, 49, 51], "previous_valu": [48, 49, 51, 268, 271], "rotation_angl": [48, 49, 51], "rotatex": [48, 49, 51], "translate_cube_x": [48, 49], "translate_cube_i": [48, 49], "on_collaps": 48, "task": [48, 65, 98, 99, 100, 102, 104, 106, 108, 109, 111, 114, 116, 119, 121, 122, 125, 126, 127, 131, 134, 137, 140, 142, 143, 145, 146, 149, 155, 158, 160, 162, 163, 164, 173, 181, 216, 223, 229, 232, 235, 242, 245], "activ": [48, 84, 120, 124, 127, 174, 191, 216, 239, 242, 250, 268, 278], "collaps": [48, 115, 140, 143, 268, 286], "hide_actor": 48, "active_tab_idx": 48, "set_vis": [48, 49, 50, 51, 226, 229, 268, 271], "sm": 48, "viz": [48, 89, 171, 251, 273, 277, 280], "viz_tab": 48, "imagecontainer2d": [49, 271, 284], "img_path": [49, 268], "home3": 49, "circular": [49, 51, 137, 139, 140, 143, 146, 152, 162, 266], "linear": [49, 51, 54, 55, 58, 61, 112, 180, 186, 196, 217, 224, 227, 248, 250], "740": [49, 286], "similarli": [49, 51, 281], "translat": [49, 51, 54, 56, 60, 61, 68, 84, 126, 139, 172, 174, 176, 178, 193, 194, 195, 196, 203, 206, 207, 212, 216, 217, 218, 227, 236, 256, 271, 283], "range_slider_x": 49, "rangeslid": [49, 97, 271, 280], "line_width": [49, 268, 271], "handle_sid": [49, 268], "range_slider_cent": [49, 268, 271], "value_slider_cent": [49, 268, 271], "range_precis": [49, 268], "value_precis": [49, 268], "range_slider_i": 49, "fill": [49, 132, 135, 144, 161, 163, 217, 221, 251, 261, 263, 284], "hide": [49, 50, 140, 211, 218, 250, 268, 270, 271, 277], "hide_all_exampl": [49, 50], "multiselect": [49, 50, 152, 268], "display_el": [49, 50], "viz_ui": [49, 278, 280], "welcome_text": 50, "welcom": [50, 88, 101, 103, 105, 107, 109, 110, 112, 115, 118, 120, 121, 124, 125, 126, 135, 138, 141, 144, 147, 150, 153, 156, 159, 161, 162, 163, 164, 227, 233, 242, 246, 287], "bye_text": 50, "bye": 50, "fury_text": [50, 54], "listbox_exampl": 50, "viz_listbox": 50, "viz_ui_listbox": 50, "five": [51, 129, 171, 283], "bottom": [51, 134, 140, 143, 162, 175, 248, 268, 269], "630": [51, 187, 218, 286], "hor_line_slider_text_top": 51, "230": 51, "hor_line_slider_text_bottom": 51, "ver_line_slider_text_left": 51, "ver_line_slider_text_right": 51, "translate_cube_v": 51, "translate_cube_hor": 51, "viz_slid": 51, "viz_ui_slid": 51, "keyfram": [52, 81, 169, 175, 180, 183, 186, 190, 192, 193, 196, 198, 215, 217, 250, 286], "introduct": [52, 81, 170, 217], "spline": [52, 54, 58, 81, 177, 189, 199, 217, 248, 250], "arm": [52, 81, 201, 217], "robot": [52, 81, 84, 109, 201, 217], "hierarch": [52, 60, 81, 162, 198, 204, 210, 217, 218, 250, 286], "bezier": [52, 81, 217, 250], "custom": [52, 63, 70, 76, 81, 125, 140, 152, 158, 160, 169, 189, 190, 192, 199, 205, 217, 224, 239, 245, 248, 250, 254, 265, 268, 269, 270, 286], "cubic_bezier_interpol": [53, 271], "wide": [53, 99, 248, 258], "quaternion": [53, 58, 73, 75, 84, 110, 180, 183, 192, 217, 250, 267], "destin": [53, 246], "departur": 53, "cp": 53, "keyframe_1": 53, "out_cp": [53, 250], "keyframe_2": 53, "in_cp": [53, 250], "pts_actor": 53, "cps_actor": 53, "cline_actor": 53, "add_actor": [53, 54, 55, 56, 58, 59, 61, 62, 63, 250, 271], "consist": [53, 58, 59, 76, 185, 191, 211, 216, 222, 240, 243, 251, 268], "depart": 53, "set_posit": [53, 54, 56, 57, 58, 59, 60, 62, 250, 268, 271], "set_position_interpol": [53, 54, 56, 58, 61, 63, 250, 271], "add_anim": [53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 250, 270, 271], "viz_keyframe_animation_bezier_1": 53, "set_position_keyfram": [53, 54, 61, 62, 250, 271], "in_control_point": 53, "out_control_point": 53, "vis_point": 53, "vis_cp": 53, "playback": [53, 54, 61, 62, 172, 180, 186, 213, 217, 250, 268], "playback_panel": [53, 54, 55, 60, 61, 62, 183, 250, 271], "viz_keyframe_animation_bezier_2": 53, "viz_bezier_interpol": 53, "explain": [54, 55, 59, 88, 126, 127, 130, 131, 156, 171, 186, 192, 201, 204, 215, 217, 224, 237, 243, 246, 255, 287], "cameraanim": [54, 271], "cubic_spline_interpol": [54, 58, 271], "But": [54, 105, 136, 139, 143, 145, 164, 166, 169, 171, 176, 179, 188, 196, 204, 205, 217, 227, 236, 269], "why": [54, 58, 65, 103, 139, 140, 171, 173, 188, 217, 224, 227, 233, 237], "ask": [54, 139, 170, 171, 172, 173, 209, 243], "detect": [54, 84, 107, 126, 138, 163, 245], "text_anim": 54, "29": [54, 216, 218, 269, 272, 277, 280], "set_opac": [54, 249, 250, 271], "set_scal": [54, 250, 271], "cubic": [54, 58, 76, 177, 199, 217, 248, 250], "sinc": [54, 56, 58, 59, 63, 65, 68, 69, 84, 87, 98, 100, 114, 116, 124, 138, 139, 169, 170, 175, 184, 193, 196, 217, 222, 228, 234, 240, 241, 243, 246, 255, 270], "done": [54, 57, 58, 62, 63, 84, 99, 103, 105, 110, 111, 112, 114, 124, 125, 126, 137, 139, 140, 143, 149, 152, 159, 161, 162, 163, 164, 192, 193, 197, 206, 209, 211, 217, 224, 239, 245, 270, 286, 287], "camera_anim": 54, "camera_posit": 54, "camera_focal_posit": 54, "set_camera_foc": 54, "set_camera_focal_keyfram": 54, "set_focal_keyfram": [54, 250, 271], "set_focal_interpol": [54, 250, 271], "animat": 54, "viz_keyframe_animation_camera": 54, "viz_camera": 54, "hsv_color_interpol": [55, 271], "lab_color_interpol": [55, 271], "step_interpol": [55, 271], "xyz_color_interpol": [55, 271], "cubes_po": 55, "static": [55, 60, 131, 158, 162, 189, 244, 245, 250, 268, 286], "linear_text": 55, "lab_text": 55, "lab": [55, 171, 177, 183, 217, 250, 251], "37": [55, 277, 283], "hsv_text": 55, "xyz_text": 55, "step_text": 55, "list_of_actor": 55, "anim_linear_color": 55, "anim_lab_color": 55, "anim_hsv_color": 55, "anim_xyz_color": 55, "anim_step_color": 55, "distinguish": [55, 180, 251, 267], "set_color": [55, 250, 271], "set_color_interpol": [55, 63, 250, 271], "viz_keyframe_animation_color": 55, "viz_color_interpol": 55, "argument": [56, 63, 80, 84, 105, 106, 126, 215, 250, 255, 264, 267, 268, 283, 286], "khrono": [56, 170, 175, 179, 187, 246, 253, 265], "org": [56, 58, 67, 78, 89, 90, 91, 92, 94, 95, 97, 99, 103, 105, 107, 109, 110, 112, 113, 115, 118, 120, 121, 123, 124, 129, 133, 136, 139, 157, 164, 167, 220, 251, 265, 266, 267], "gltftutori": 56, "gltftutorial_007_anim": 56, "html": [56, 78, 87, 133, 139, 171, 265, 267, 287], "cubicsplin": [56, 193], "previouspoint": 56, "previoustang": 56, "nextpoint": 56, "nexttang": 56, "interpolationvalu": 56, "t2": 56, "t3": 56, "tan_cubic_spline_interpol": [56, 271], "interpolated_valu": 56, "ok": [56, 145, 239], "spline_interpol": [56, 61, 271], "closur": [56, 189, 217], "get_timestamps_from_keyfram": [56, 271], "in_tang": [56, 250], "out_tang": [56, 250], "incomplet": [56, 110, 120, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286], "behaviour": [56, 252], "deal": [56, 133, 139, 145, 216, 227, 239, 245], "miss": [56, 125, 172, 202, 203, 232, 233, 277, 280, 284, 285, 286], "zeros_lik": 56, "get_previous_timestamp": [56, 271], "get_next_timestamp": [56, 271], "surround": [56, 137], "t0": [56, 250], "get_time_tau": [56, 271], "time_delta": 56, "setter": [56, 134], "custom_field": 56, "p0": 56, "tan_0": 56, "p1": 56, "tan_1": 56, "3051798": 56, "640117": 56, "motion_path_r": [56, 63, 250, 271], "keyframe_data": 56, "in_tan": 56, "out_tan": 56, "viz_keyframe_custom_interpol": 56, "viz_custom_interpol": 56, "road": [57, 233], "construct": [57, 133, 135, 164, 200, 217, 251, 266, 269], "car": 57, "body_actor": 57, "car_anim": 57, "wheel_cent": 57, "wheel_direct": 57, "wheel_posit": 57, "cylind": [57, 60, 64, 74, 76, 81, 84, 85, 115, 121, 129, 264, 271, 283, 286], "cap": [57, 68, 74, 76, 84, 248, 250, 264], "wheels_anim": 57, "wheel_anim": 57, "set_rot": [57, 58, 250, 271], "radar": 57, "shaft": [57, 60, 248, 264], "radar_shaft": 57, "radar_shaft_anim": 57, "radar_anim": 57, "add_child_anim": [57, 60, 250, 271], "relat": [57, 99, 105, 120, 136, 139, 140, 142, 143, 145, 146, 149, 159, 164, 171, 175, 196, 223, 224, 225, 226, 231, 238, 243, 245, 246, 251, 265, 268, 270, 284], "attach": [57, 62, 84, 121, 183, 224, 227, 233, 236], "matter": [57, 251], "viz_keyframe_hierarchical_anim": 57, "viz_hierarchical_anim": 57, "minim": [58, 186], "respons": [58, 62, 73, 75, 118, 120, 131, 139, 145, 164, 186, 217, 233, 250, 266, 270], "interpolation_funct": 58, "feed": [58, 171], "44434": 58, "ve": [58, 63, 130, 133, 136, 139, 142, 145, 151, 154, 159, 164, 165, 166, 169, 190, 222], "set_": [58, 62], "_interpol": 58, "slerp": [58, 180, 183, 193, 196, 215, 217, 271], "reed": 58, "en": [58, 67, 164, 267], "wikipedia": [58, 67, 236, 245, 267], "wiki": [58, 67, 96, 128, 168, 170, 219, 246, 253, 265, 267, 286], "viz_keyframe_interpol": 58, "viz_interpol": [58, 59], "care": [59, 133, 226], "simpli": [59, 84, 110, 146, 227], "anyth": [59, 85, 169, 216, 217, 225, 231, 236, 251, 261, 287], "temperatur": [59, 250], "simplifi": [59, 80, 136, 215, 228, 286], "encod": [59, 78, 80, 218, 253, 255, 259, 265, 266, 267], "almost": [59, 114, 137, 140, 149, 152, 160, 169, 170, 175, 192, 198, 250], "quick": [59, 152, 162, 182, 194, 199, 208], "viz_keyframe_animation_introduct": 59, "viz_introduct": 59, "set_actor_origin": [60, 271], "main_arm": 60, "sub_arm": 60, "joint_1": 60, "joint_2": 60, "main_arm_anim": 60, "child_arm_anim": 60, "drill_anim": 60, "joint": [60, 74, 76, 120, 126, 205, 256], "rot_main_arm": 60, "rot_sub_arm": 60, "rot_dril": 60, "drill": 60, "evalu": [60, 63, 65, 109, 118, 121, 125, 126, 162, 163, 164, 189, 232, 250, 254, 266, 269, 283], "set_rotation_interpol": [60, 63, 250, 271], "is_evalu": [60, 63, 250], "observ": [60, 63, 84, 124, 125, 162, 251, 259, 265, 269], "parent": [60, 84, 143, 146, 170, 180, 183, 210, 216, 218, 223, 250, 256], "viz_robot_arm": 60, "viz_robot_arm_anim": 60, "position_keyfram": 61, "pos_dot": 61, "sphere_linear": 61, "linear_anim": 61, "linear_interpol": [61, 271], "larger": [61, 244, 270], "sphere_splin": 61, "spline_anim": 61, "5th": [61, 74, 76, 107], "reflect": [61, 67, 119, 167, 175, 250, 260, 285], "viz_keyframe_animation_splin": 61, "viz_spline_interpol": 61, "hi": [62, 124, 130, 131, 132, 133, 145, 170], "learn": [62, 102, 133, 159, 161, 169, 170, 171, 174, 200, 222, 239, 245, 246, 251], "stop": [62, 78, 79, 80, 87, 163, 217, 224, 227, 250, 266, 268, 271], "playbackpanel": [62, 180, 183, 189, 211, 217, 271, 286], "accordingli": [62, 84, 140, 162, 173, 223, 268], "support": [62, 70, 73, 75, 85, 87, 89, 90, 91, 92, 94, 95, 97, 102, 103, 104, 106, 108, 111, 113, 114, 116, 123, 124, 125, 126, 127, 129, 134, 137, 140, 146, 148, 150, 152, 155, 157, 160, 162, 164, 167, 172, 179, 181, 183, 184, 187, 193, 194, 195, 199, 204, 214, 216, 217, 218, 220, 248, 249, 251, 257, 265, 268, 270, 277, 280, 283, 284, 285, 286, 287], "_keyfram": 62, "That": [62, 139, 169, 171, 211, 228, 233, 236, 239], "earlier": [62, 140, 143, 150, 209, 212, 227, 255], "viz_keyframe_animation_timelin": 62, "viz_timelin": 62, "pos_ev": 63, "color_ev": 63, "rotation_ev": 63, "scale_ev": 63, "extra": [63, 84, 132, 156, 171, 194, 238, 270], "doe": [63, 126, 139, 140, 146, 172, 180, 184, 196, 203, 205, 211, 212, 224, 225, 250, 251, 253, 261, 280, 282, 285], "set_interpol": [63, 250, 271], "viz_keyframe_animation_evalu": 63, "viz_using_time_equ": 63, "intern": [64, 81, 120, 160, 171, 182, 203, 211, 216], "convent": [64, 81, 84, 125, 245, 261, 267], "sdf": [64, 79, 81, 102, 104, 117, 125, 129, 164, 220, 222, 228, 231, 235, 243, 271, 281, 283, 286], "principl": [64, 81, 88, 139, 167, 216, 260, 285, 286], "brdf": [64, 81, 88, 167, 285], "vari": [64, 81, 191, 241, 283], "impostor": [64, 81, 136, 164, 192], "billboard": [64, 81, 97, 165, 186, 196, 198, 211, 213, 215, 217, 227, 236, 239, 242, 271, 280, 283, 286], "polygon": [64, 65, 69, 81, 116, 122, 125, 201, 248, 269, 271, 286], "engin": [65, 66, 71, 81, 88, 99, 105, 107, 115, 123, 126, 134, 169, 170, 171, 172, 270, 282, 283], "quadrilater": 65, "come": [65, 133, 169, 224, 227, 233, 268], "cost": [65, 224, 248], "decreas": [65, 175, 269, 270, 282], "compromis": [65, 88, 162, 225], "real": [65, 80, 111, 140, 162, 164, 169, 171, 177, 192, 246, 251, 271], "most": [65, 98, 104, 112, 121, 146, 147, 164, 171, 173, 188, 197, 206, 216, 218, 222, 225, 240, 243, 272], "becam": [65, 176, 255], "popular": [65, 251], "game": [65, 88, 170, 172], "quota": 65, "sign": [65, 68, 69, 88, 113, 164, 165, 220, 281, 286], "mathemat": [65, 68, 108], "boundari": [65, 68, 174, 176, 216, 223, 226, 268], "outsid": [65, 146, 285], "neg": [65, 258, 270], "hart1996": [65, 68], "purpos": [65, 66, 67, 88, 134, 140, 141, 162, 231, 237, 243, 288], "word": [65, 107, 109], "either": [65, 84, 88, 101, 140, 146, 160, 211, 216, 218, 246, 253, 261], "definit": [65, 72, 74, 76, 84, 101, 225, 228, 231, 234, 243], "exemplifi": 65, "suitabl": [65, 164, 204], "compose_shad": [65, 68, 271], "import_fury_shad": [65, 68, 271], "represent_actor_as_wirefram": [65, 271], "glyph": [65, 95, 160, 222, 243, 248, 264, 269, 278, 279, 286], "spheres_actor": 65, "recent": [65, 133, 156, 159, 272], "viz_regular_spher": 65, "explor": [65, 119, 125, 142, 232, 235, 238, 243], "understand": [65, 67, 98, 100, 102, 106, 107, 108, 110, 111, 118, 125, 132, 135, 137, 138, 141, 143, 161, 163, 170, 171, 175, 216, 223, 228, 233, 236, 239, 246], "interconnect": 65, "viz_low_res_wirefram": 65, "clean": [65, 68, 87, 114, 152, 208, 214, 239, 245, 287], "viz_hi_res_wirefram": 65, "As": [65, 93, 101, 104, 110, 116, 126, 131, 132, 133, 139, 143, 145, 146, 152, 155, 160, 171, 172, 173, 175, 176, 178, 179, 180, 185, 190, 195, 196, 197, 200, 202, 203, 205, 206, 209, 212, 216, 217, 224, 227, 228, 229, 230, 231, 238, 239, 241, 243, 245, 246, 250], "evid": 65, "directli": [65, 118, 160, 162, 169, 189, 196, 198, 209, 213, 217, 218, 242, 245, 246, 250, 252, 286], "impact": [65, 238], "luckili": 65, "deliv": 65, "known": [65, 163, 171, 216, 222], "suit": [65, 171, 285], "instruct": [65, 172, 224, 245, 278, 281, 286], "billboards_actor": 65, "viz_billboards_wirefram": 65, "know": [65, 84, 88, 131, 133, 170, 171, 172, 174, 218, 222, 228, 245, 246], "sd_sphere": 65, "frag": [65, 68], "sphere_radiu": 65, "const": 65, "sphere_dist": 65, "sdsphere": 65, "sdf_eval": 65, "fragoutput0": [65, 68, 70], "vec4": [65, 68, 70, 256], "discard": [65, 68, 206, 287], "declar": [65, 224, 227, 245, 248, 265], "fs_dec": [65, 68, 248], "fs_impl": [65, 248], "viz_billboards_circl": 65, "even": [65, 124, 125, 139, 145, 146, 149, 169, 195, 217, 228, 245, 250, 287, 288], "essenti": [65, 135, 164, 218, 227, 233, 253, 261, 268], "gradient": 65, "deriv": [65, 267, 288], "central_diffs_norm": [65, 68], "central_diff": [65, 68], "sd_sphere_norm": 65, "vec3": [65, 68, 70, 256], "blinn": [65, 68, 169], "phong": [65, 68, 169, 260], "illumin": [65, 68, 251], "blinn_phong_model": [65, 68], "fragment": [65, 68, 70, 125, 217, 239, 242, 248, 260, 265], "smoothstep": 65, "antialias": [65, 68, 271], "absolut": [65, 143, 162, 268], "compens": 65, "abs_dist": 65, "absdist": 65, "centraldiffsnorm": [65, 68], "0001": [65, 68], "attenu": 65, "factor": [65, 217, 239, 248, 249, 258, 261, 268, 270, 286], "light_attenu": 65, "lightattenu": [65, 68], "blinnphongillummodel": [65, 68], "lightcolor0": [65, 68, 196, 201, 204], "diffusecolor": [65, 68], "specularpow": [65, 68], "specularcolor": [65, 68], "ambientcolor": [65, 68], "frag_output": 65, "recreat": 65, "viz_billboards_spher": 65, "hart": [65, 68], "john": [65, 68], "trace": [65, 68, 87, 88, 197], "rai": [65, 68, 88, 98, 100, 102, 104, 125], "implicit": [65, 68, 224], "1996": [65, 68], "527": [65, 68, 285], "545": [65, 68, 286], "viz_billboard_sdf_spher": 65, "aim": [66, 88, 133, 134, 137, 146, 226, 230, 232], "graphic": [66, 88, 126, 164, 169, 170, 222, 227, 230, 246], "conduct": [66, 130, 131], "dielectr": [66, 260], "illustr": [66, 240, 251], "showcas": [66, 67, 87, 107, 112, 115, 116, 125, 159], "subset": [66, 177, 180], "constrain": 66, "material_param": [66, 67], "produc": [66, 67, 139, 166, 253, 261], "num_valu": 66, "mp": 66, "param": [66, 248, 251, 258, 268], "interpret": [66, 67, 124, 145, 164, 251], "guid": [66, 67, 244], "l": [66, 248, 261, 269, 270], "26": [66, 67, 73, 75, 76, 125, 126, 139, 162, 163, 164, 272, 277], "affect": [66, 192, 206, 241], "num": 66, "ior_param": 66, "iorp": 66, "viz_pbr_spher": 66, "bidirect": [67, 167, 285], "bidirectional_reflectance_distribution_funct": 67, "introduc": [67, 170, 226, 232, 238, 265], "brent": 67, "burlei": 67, "siggraph": [67, 164], "2012": 67, "blog": [67, 104, 113, 120, 121, 125, 126, 137, 138, 140, 143, 154, 155, 156, 161, 162, 163, 164, 171, 203, 217, 281, 282, 283, 284, 285, 286, 287], "selfshadow": 67, "public": [67, 169, 287], "s2012": 67, "although": [67, 133, 138, 139, 164, 222, 232, 237], "strictli": [67, 161], "merl": 67, "www": [67, 139, 164, 251, 252, 267], "exchang": [67, 221], "research": [67, 88, 107, 141, 142, 156, 158, 159, 170, 176, 233], "databas": 67, "moreov": [67, 125, 251], "carefulli": [67, 238], "limit": [67, 78, 125, 126, 138, 149, 179, 181, 188, 189, 218, 235, 239, 242, 268, 278, 286, 288], "blend": [67, 239, 242, 270], "layer": [67, 100, 260], "give": [67, 87, 133, 145, 148, 164, 166, 171, 197, 202, 209, 217, 218, 236, 240, 245, 251, 255, 267, 270, 280], "intuit": 67, "usabl": [67, 224], "subsurfac": [67, 260], "specular": [67, 196, 260], "specular_tint": [67, 260], "anisotrop": [67, 167, 260, 285], "sheen": [67, 260], "sheen_tint": [67, 260], "clearcoat": [67, 260], "clearcoat_gloss": [67, 260], "manifest_principl": [67, 271], "tint": [67, 260], "gloss": [67, 260], "viz_principled_spher": 67, "henc": [68, 84, 107, 110, 120, 126, 189, 250], "attribute_to_actor": [68, 271], "shader_to_actor": [68, 70, 202, 271], "cylinders_8": 68, "cylinders_16": 68, "cylinders_32": 68, "viz_poly_cylind": 68, "setrepresentationtowirefram": 68, "viz_poly_cylinder_geom": 68, "march": [68, 98, 100, 102, 104, 125], "intersect": 68, "link": [68, 76, 84, 125, 126, 137, 141, 145, 162, 163, 164, 179, 216, 217, 218, 241, 265, 267, 277, 278, 286], "rep_direct": 68, "rep_cent": 68, "rep_radii": 68, "rep_height": 68, "vs_dec": [68, 248], "vertexmcvsoutput": 68, "centermcvsoutput": 68, "directionvsoutput": 68, "heightvsoutput": 68, "radiusvsoutput": 68, "vs_impl": [68, 248], "vertexmc": [68, 70], "templat": [68, 154, 265, 268, 278], "decl_cod": [68, 70, 265], "impl_cod": [68, 70, 265], "occupi": [68, 126, 152, 251], "fs_vars_dec": 68, "mat4": 68, "mcvcmatrix": 68, "vec_to_vec_rot_mat": 68, "glsl": [68, 102, 108, 169, 177, 180, 196, 217, 265], "sd_cylind": 68, "sdf_map": 68, "sdcylind": 68, "rot": 68, "vec2vecrotmat": 68, "cast_rai": 68, "ray_march": 68, "piec": [68, 145], "previou": [68, 99, 110, 112, 126, 132, 137, 140, 145, 170, 171, 180, 183, 200, 217, 221, 232, 243, 250, 251, 256, 268], "sdf_cylinder_frag_impl": 68, "ro": 68, "rd": 68, "ld": 68, "castrai": 68, "viz_sdf_cylind": 68, "shortest": 69, "rate": [69, 95, 108, 158, 248, 279], "compar": [69, 112, 139, 169, 171, 225, 237, 253, 255], "tradit": [69, 116], "raymarch": [69, 116, 125, 222, 225, 228, 235, 243], "sdfactor": 69, "toru": [69, 102, 116, 125, 248], "ellipsoid": [69, 116, 125, 222, 231, 234, 235, 239, 243, 249, 271, 283], "capsul": [69, 283], "viz_sdfactor": 69, "add_shader_callback": [70, 271], "utah": [70, 209], "teapot": 70, "fib": [70, 85, 257], "ply": [70, 85, 257], "stl": [70, 85, 257], "xml": [70, 85, 257], "get_polymapper_from_polydata": [70, 85, 271], "get_actor_from_polymapp": [70, 85, 271], "mapper": [70, 141], "getmapp": [70, 265], "vtkshader": 70, "vertex_shader_code_decl": 70, "myvertexvc": 70, "vertex_shader_code_impl": 70, "fragment_shader_code_decl": 70, "fragment_shader_code_impl": 70, "vec2": [70, 256], "iresolut": 70, "uv": [70, 218], "xyx": 70, "pot": 70, "shader_callback": [70, 284], "_caller": [70, 265], "calldata": [70, 265], "setuniformf": 70, "valueerror": 70, "textblock": [70, 73, 74, 75, 150, 268], "hello": [70, 85, 99, 101, 103, 105, 107, 109, 110, 112, 115, 118, 120, 121, 124, 170, 171, 221, 222, 227, 230, 236, 239, 242, 245, 246, 248, 270], "viz_shad": 70, "ball": [71, 73, 81, 109, 120, 126, 132, 138, 144, 163, 261, 283], "domino": [71, 81, 283], "chain": [71, 81, 121, 126, 216, 261], "brick": [71, 76, 81, 109, 112, 115, 118, 121, 126], "wreck": [71, 81, 109, 120, 126, 283], "pybullet": [72, 73, 74, 75, 76, 105, 107, 109, 115, 118, 120, 126, 282, 283], "confirm": [72, 121], "client": [72, 73, 75, 78, 79, 84, 133, 139, 164, 271], "red_radiu": 72, "blue_radiu": 72, "red_ball_actor": 72, "red_ball_col": 72, "createcollisionshap": [72, 73, 74, 75, 76, 84], "geom_spher": [72, 73, 76, 84], "red_bal": 72, "createmultibodi": [72, 73, 74, 75, 76, 84], "basemass": [72, 73, 75, 76, 84], "basecollisionshapeindex": [72, 73, 75, 76, 84], "baseposit": [72, 73, 74, 75, 76, 84], "baseorient": [72, 73, 74, 75, 76, 84], "blue_ball_actor": 72, "blue_ball_col": 72, "blue_bal": 72, "restitut": [72, 73, 75, 76, 84], "changedynam": [72, 73, 75, 76, 84], "sync": [72, 74, 76, 105, 107, 118, 232], "sync_actor": [72, 73, 74], "multibodi": [72, 73, 74, 75, 76, 84, 118], "orn": [72, 73, 74, 75, 76, 84, 118], "getbasepositionandorient": [72, 73, 74, 75, 76, 84, 118], "orn_deg": [72, 73, 74, 84], "geteulerfromquaternion": [72, 73, 74, 84], "setorient": [72, 73, 74, 84], "apply_forc": [72, 73, 75, 76, 84], "78": 72, "89": [72, 278, 284], "red_po": 72, "red_orn": 72, "blue_po": 72, "blue_orn": 72, "applyexternalforc": [72, 73, 75, 76, 84], "forceobj": [72, 73, 75, 76, 84], "40000": 72, "posobj": [72, 73, 75, 76, 84], "flag": [72, 73, 75, 76, 78, 84, 134, 149, 152, 162, 202, 251, 268, 271, 285, 286, 287], "world_fram": [72, 73, 75, 76, 84], "getcontactpoint": 72, "contact": 72, "stepsimul": [72, 73, 74, 75, 76, 84], "viz_ball_collid": 72, "beign": 73, "thrown": [73, 107, 216, 286], "gui": [73, 75, 84, 131, 134, 137, 140, 143, 146, 149, 152, 155, 158, 160, 171, 250], "si": [73, 84], "unit": [73, 84, 88, 132, 135, 189, 192, 213, 217, 232, 251, 264, 269, 278, 283], "setgrav": [73, 74, 75, 76, 84], "easier": [73, 75, 88, 109, 124, 139, 143, 162, 166, 192, 217, 224, 227, 251, 287], "tweak": [73, 75, 112, 134, 138, 143, 162, 226, 244, 245], "ball_radiu": [73, 76], "ball_color": [73, 76], "ball_mass": [73, 76], "ball_posit": 73, "ball_orient": 73, "base_s": [73, 75], "base_color": [73, 75], "base_posit": [73, 75], "base_orient": [73, 75], "wall_height": [73, 76], "wall_width": 73, "brick_mass": 73, "brick_siz": [73, 76, 84], "ball_actor": [73, 76, 84], "ball_col": [73, 84], "multi": [73, 74, 84, 193, 214, 218, 268], "friction": [73, 74, 76, 84, 120], "lateralfrict": [73, 75, 76, 84], "base_actor": [73, 74, 75, 76], "base_col": [73, 75, 76], "geom_box": [73, 74, 75, 76], "halfext": [73, 74, 75, 76], "half": [73, 75, 169, 171], "actual": [73, 75, 105, 131, 134, 137, 149, 171, 185, 191, 203, 206, 241, 250, 251, 252], "nb_brick": [73, 76, 84], "brick_cent": [73, 76, 84, 118], "brick_direct": [73, 76, 84], "57": [73, 75, 76, 277], "brick_orn": [73, 76, 84, 118], "brick_color": [73, 76, 84], "brick_col": [73, 76, 84], "int8": [73, 75], "logic": [73, 76, 102, 140], "center_po": [73, 75, 76, 84], "brick_actor": [73, 76], "base_po": [73, 75, 76], "ball_po": [73, 84], "major": [73, 75, 89, 90, 91, 92, 94, 95, 97, 100, 103, 107, 109, 110, 112, 113, 114, 115, 118, 120, 121, 123, 124, 129, 132, 135, 152, 157, 167, 220, 232, 235, 240, 251, 255, 269], "accur": [73, 75, 108, 217, 286], "3x3": [73, 75, 84, 225, 245], "sync_brick": [73, 76, 84, 118], "rot_mat": [73, 74, 75, 76, 84, 118], "getmatrixfromquaternion": [73, 74, 75, 76, 84, 118], "getdifferencequaternion": [73, 74, 75, 76, 84, 118], "inaccur": 73, "approach": [73, 104, 111, 122, 125, 133, 140, 148, 164, 173, 176, 188, 194, 197, 198, 202, 211, 212, 217, 232, 239, 242, 266], "avg": [73, 74, 75, 76], "fpss": [73, 74, 75, 76], "nsim": [73, 74, 75, 76], "680": [73, 74, 75, 76, 217, 286], "46": [73, 75, 277], "79": [73, 75, 278], "frame_r": [73, 74, 75, 76, 270, 271], "ball_orn": [73, 84], "130": [73, 74, 76, 280], "viz_brick_wal": 73, "n_link": [74, 76, 84], "dx_link": [74, 76], "segment": [74, 76, 121, 208, 250, 284, 286], "link_mass": [74, 76, 84], "base_mass": [74, 76, 84], "joint_frict": [74, 76], "rad": [74, 268], "link_shap": [74, 76], "geom_cylind": [74, 76], "collisionframeposit": [74, 76], "base_shap": [74, 76, 84], "visualshapeid": [74, 76, 84], "linkcollisionshapeindic": [74, 76, 84], "linkvisualshapeindic": [74, 76, 84], "linkposit": [74, 76, 84], "linkorient": [74, 76, 84], "linkinertialframeposit": [74, 76, 84], "linkinertialframeorn": [74, 76, 84], "jointtyp": [74, 76, 84], "joint_spher": [74, 76], "linkdirect": [74, 76, 84], "link_radii": [74, 76], "link_height": [74, 76, 84], "rope_actor": [74, 76, 84], "rope": [74, 76, 84, 120], "linkmass": [74, 76, 84], "linkinertialframeorient": [74, 76, 84], "linkparentindic": [74, 76, 84], "linkjointtyp": [74, 76, 84], "linkjointaxi": [74, 76, 84], "stiff": [74, 120], "among": [74, 109, 120, 167, 211, 285], "friction_vec": [74, 76], "control_mod": [74, 76], "position_control": [74, 76], "getnumjoint": [74, 76, 84], "setjointmotorcontrolmultidof": [74, 76], "targetposit": [74, 76], "targetveloc": [74, 76], "positiongain": [74, 76], "velocitygain": [74, 76], "constraint": [74, 76, 107], "root_robe_c": [74, 76], "createconstraint": [74, 76], "joint_fix": [74, 76], "traj": 74, "inject": 74, "amplitude_x": 74, "amplitude_i": 74, "freq": 74, "coupl": [74, 107, 112, 120, 131, 134, 234], "sync_joint": [74, 84], "actor_list": [74, 76, 84], "getlinkst": [74, 76, 84], "offer": [74, 76, 133, 136, 244, 248], "4th": [74, 76, 105], "freq_sim": 74, "240": [74, 126, 281], "trajectori": 74, "ux": [74, 145, 164], "pivot": [74, 185], "getquaternionfromeul": 74, "changeconstraint": 74, "jointchildframeorient": 74, "maxforc": 74, "viz_chain": 74, "seri": [75, 88, 96, 128, 168, 171, 219, 270, 277, 287], "physicsclientid": 75, "number_of_domino": 75, "domino_mass": 75, "domino_s": 75, "domino_cent": 75, "domino_direct": 75, "domino_orn": 75, "domino_color": 75, "domino_col": 75, "centers_list": 75, "99": [75, 184, 280], "domino_actor": 75, "sync_domino": 75, "domino1_po": 75, "domino1_orn": 75, "viz_domino": 75, "handi": 76, "wall_length": 76, "wall_breadth": 76, "cylindr": [76, 286], "nxnxn": [76, 121], "int16": [76, 251], "desir": [76, 84, 105, 164, 202, 226, 236, 248, 251, 257, 258, 270], "hing": 76, "ball_shap": 76, "28": [76, 125, 126, 139, 162, 163, 164, 217, 218, 269, 277, 285], "base_orn": 76, "brick_vertic": 76, "brick_sec": 76, "chain_vertic": 76, "chain_sec": 76, "sync_chain": 76, "tool": [76, 96, 118, 128, 130, 139, 142, 145, 168, 171, 219, 236, 261, 271, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287], "viz_wrecking_bal": 76, "server": [77, 78, 79, 80, 81, 84, 87, 133, 139, 164, 271], "turn": [77, 81, 104, 146, 184, 227, 242, 248, 268], "webrtc": [77, 78, 81, 130, 133, 145, 164, 266, 286], "mjpeg": [77, 78, 81, 164, 266], "serv": [78, 248, 261], "web": [78, 80, 164, 287], "browser": [78, 80, 87, 152, 164, 266], "robust": [78, 80, 226], "live": [78, 80, 88, 248], "latenc": [78, 80, 133], "ngrok": [78, 133, 164], "instal": [78, 80, 88, 89, 90, 91, 92, 94, 95, 97, 113, 123, 129, 145, 157, 167, 188, 220, 251, 277, 278, 280, 281, 284, 285, 286, 287], "aiortc": [78, 80, 154], "pip": [78, 80, 87, 88, 89, 90, 91, 92, 94, 95, 97, 113, 123, 129, 157, 167, 220, 279, 287], "ffmpeg": [78, 80], "linux": [78, 80, 87, 88, 133, 281], "apt": [78, 80], "libavdevic": [78, 80], "dev": [78, 80, 87, 171, 287], "libavfilt": [78, 80], "libopu": [78, 80], "libvpx": [78, 80], "pkg": [78, 80], "config": [78, 80], "brew": [78, 80], "opu": [78, 80], "multiprocess": [78, 79, 136, 139, 145, 164, 266], "sy": [78, 139, 253, 259, 265], "furystreamcli": [78, 79, 139, 271], "furystreaminteract": [78, 139, 271], "maco": [78, 79, 80, 87, 94, 133, 142, 148, 164, 188, 278], "set_start_method": [78, 79], "spawn": [78, 79], "webrtc_avail": 78, "web_serv": [78, 271], "web_server_raw_arrai": [78, 79, 271], "__name__": [78, 79], "__main__": [78, 79], "use_raw_arrai": [78, 79, 266], "rawarrai": [78, 130, 136, 139, 266], "sharedmemori": [78, 136, 139, 142, 145, 266], "featur": [78, 95, 103, 105, 111, 113, 114, 115, 116, 122, 126, 130, 131, 143, 153, 155, 158, 160, 162, 163, 164, 165, 166, 169, 171, 185, 188, 192, 194, 200, 201, 206, 207, 212, 216, 217, 226, 227, 238, 241, 243, 244, 248, 249, 272, 279, 281, 285, 286], "doc": [78, 84, 87, 105, 126, 133, 145, 163, 169, 170, 173, 187, 190, 218, 239, 248, 265, 267, 270, 277, 278, 279, 280, 283, 286, 287], "share": [78, 101, 103, 105, 107, 109, 110, 112, 115, 118, 124, 126, 135, 136, 138, 139, 141, 144, 145, 147, 148, 150, 153, 156, 159, 161, 164, 221, 266], "version_info": 78, "window_s": [78, 79, 80], "max_window_s": [78, 139, 266], "sent": [78, 156, 169, 187, 196, 198], "ms_stream": [78, 266], "ms_interact": [78, 266], "send": [78, 84, 89, 90, 91, 92, 94, 95, 97, 113, 123, 129, 130, 144, 157, 167, 180, 188, 196, 198, 217, 220, 261, 287], "queue": [78, 139, 266], "max_queue_s": [78, 266], "stream_interact": 78, "arg": [78, 79, 87, 255, 264, 266], "img_manag": [78, 79], "image_buff": [78, 79, 266], "info_buff": [78, 79, 145, 266], "circular_queu": [78, 266], "head_tail_buff": [78, 266], "buffer": [78, 133, 139, 158, 184, 190, 217, 218, 224, 246, 251, 253, 256, 259, 265, 266, 271], "_buffer": 78, "8000": [78, 80, 133, 266], "localhost": [78, 266], "image_buffer_nam": [78, 266], "info_buffer_nam": [78, 266], "head_tail_buffer_nam": [78, 266], "buffer_nam": [78, 266], "m": [78, 79, 130, 132, 133, 136, 139, 145, 147, 159, 162, 169, 170, 221, 222, 225, 228, 234, 240, 248, 250, 261, 264, 266, 287], "url": [78, 134, 162, 164, 181, 218, 253, 266, 268, 271, 283, 284], "htttp": 78, "wise": [78, 133], "kill": [78, 136, 139], "resourc": [78, 125, 133, 136, 139, 142, 145, 148, 149, 164, 250, 266], "cleanup": [78, 79, 139, 162, 266, 271], "viz_interact": 78, "streamer": [79, 130, 136], "milesecond": [79, 266], "viz_no_interact": 79, "port": [80, 266], "greater": [80, 236, 241, 255, 266, 270], "asyncio": [80, 166, 175, 266], "platform": [80, 167, 220, 285, 286], "time_sleep": 80, "environ": [80, 110, 133, 152, 164], "wsl": 80, "async": [80, 136, 139, 266], "await": 80, "get_event_loop": 80, "run_until_complet": 80, "viz_widget": 80, "auto_examples_python": 81, "auto_examples_jupyt": 81, "193": [83, 280], "star": [83, 89, 90, 91, 92, 94, 95, 97, 113, 123, 129, 157, 167, 220, 264, 280, 281], "148": [83, 280], "fork": [83, 133, 136, 171, 287], "commit": [83, 126, 130, 133, 136, 139, 142, 145, 148, 245, 263, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287], "offici": [84, 103, 105, 107, 109, 110, 112, 115, 118, 120, 121, 124, 127, 133, 136, 169, 170, 171, 287], "driven": [84, 88, 287], "statu": [84, 184, 235, 242, 268, 287], "unless": [84, 126, 251, 268, 269, 270], "shutdown": 84, "gravity_x": 84, "gravity_i": 84, "gravity_z": 84, "criterion": 84, "fulfil": 84, "snippet": [84, 109, 118, 131, 141], "lateral_frict": 84, "damp": 84, "inertial_po": 84, "inertial_orn": 84, "roll": [84, 196, 267, 270, 271], "coeff": 84, "linkindex": 84, "extern": [84, 126, 130, 256, 285], "applyexternaltorqu": 84, "Not": [84, 171, 225, 228, 231, 243, 282], "explicitli": [84, 120, 188, 269, 277], "pair": [84, 233, 236, 244, 267], "enablecol": 84, "setcollisionfilterpair": 84, "feel": [84, 169, 171], "section": [84, 175, 235, 239, 241, 251, 265, 283, 286], "rotatewxyz": 84, "said": [84, 103, 105, 107, 109, 112, 115, 126, 145, 170, 172, 228, 245], "procedur": [84, 107], "firstli": [84, 112, 160, 171, 212, 229], "nb_object": 84, "object_cent": 84, "object_direct": 84, "object_orient": 84, "object_color": 84, "object_collis": 84, "further": [84, 109, 120, 124, 140, 224, 240, 244, 251, 287], "brick_actor_singl": 84, "getdifferencefromquarternion": 84, "tupl": [84, 248, 249, 250, 251, 253, 255, 258, 260, 261, 262, 263, 264, 266, 267, 268, 269, 270], "subtract": [84, 109, 270], "gimbal": 84, "lock": [84, 139, 266, 270, 271], "lead": [84, 146, 239, 261, 283, 284, 287], "unwant": [84, 283], "spin": [84, 115, 118, 270], "experienc": [84, 169, 233, 246], "advis": [84, 105, 169, 172, 288], "urdf": 84, "root": [84, 223, 229, 287], "hierarchi": [84, 210, 218], "freedom": 84, "regular": [84, 173, 248, 254, 255, 264, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286], "inerti": 84, "princip": [84, 251], "inertia": 84, "nb_link": 84, "suppos": [84, 101, 120, 145, 164, 239], "linkheight": 84, "linkradii": 84, "queri": [84, 150, 171, 283], "suzann": [85, 184, 283, 286], "blender": [85, 169, 170, 171, 208, 213], "directori": [85, 87, 156, 253, 263, 265, 268, 270, 287], "path_suzann": 85, "soon": [87, 122, 137, 140, 149, 152, 162, 217, 228, 231], "life": [87, 124, 133, 169, 170, 227], "decemb": [87, 170], "31st": 87, "2019": [87, 272, 280], "mandatori": [87, 139, 154, 169, 266], "aiohttp": [87, 175, 266], "pygltflib": [87, 175, 184, 256], "matplotlib": [87, 160, 242, 247, 248, 249, 251, 252, 278], "termin": [87, 89, 90, 91, 92, 94, 95, 97, 113, 123, 129, 157, 167, 170, 220, 270, 286], "forg": [87, 89, 90, 91, 92, 94, 95, 97, 113, 123, 129, 157, 167, 220], "channel": [87, 214, 216, 248, 251, 252, 256, 270], "latest": [87, 239, 282, 286], "clone": [87, 171, 287], "repo": [87, 102, 171, 287], "git": [87, 170, 263, 287], "txt": [87, 90, 275, 280, 286, 287], "enjoi": [87, 96, 124, 128, 134, 168, 219], "get_info": [87, 271, 277], "pytest": [87, 134, 164, 285, 287], "svv": [87, 287], "test_actor": [87, 279, 284], "test_my_function_nam": 87, "headless": 87, "xvfb": 87, "osx": [87, 277, 278], "xquartz": 87, "1920x1080x24": 87, "null": [87, 233], "bat": 87, "makefil": 87, "readm": [87, 91, 276, 277, 278, 280, 281, 283, 284, 286, 287], "md": [87, 287], "upload_to_gh": 87, "page": [87, 88, 170, 171, 235, 236, 245, 246, 267, 286, 287], "rst": [87, 155, 277, 281, 286, 287], "congratul": [87, 93, 171], "minimalist": [88, 171, 209], "har": 88, "gpu": [88, 125, 133, 137, 164, 169, 177, 196, 217, 248, 284], "precis": 88, "clariti": [88, 229, 235], "address": [88, 143, 149, 152, 153, 158, 226, 229, 232, 237, 238, 240, 241, 243, 244], "grow": [88, 127, 217], "necess": [88, 232], "ecosystem": 88, "cgi": 88, "imageri": 88, "deploi": 88, "everydai": 88, "practic": [88, 145, 164, 169, 171, 222], "clearli": [88, 171, 233], "written": [88, 107, 145, 164, 171, 246, 288], "good": [88, 110, 130, 133, 139, 140, 156, 159, 161, 164, 169, 171, 172, 202, 203, 209, 225, 239, 242, 243, 245, 246, 288], "underli": [88, 140, 161], "collabor": [88, 130, 164, 226], "hope": [88, 233, 234, 239, 243], "fail": [88, 93, 149, 152, 188, 218, 227, 241, 263, 277, 278, 286, 287], "develop": [88, 89, 90, 91, 92, 94, 95, 97, 103, 113, 123, 124, 129, 130, 131, 133, 145, 157, 164, 165, 166, 167, 216, 217, 220, 222, 230, 232, 245, 281, 287], "team": [88, 99, 127, 132, 136, 139, 147, 153, 160, 232, 246, 251], "discord": [88, 89, 90, 91, 92, 94, 95, 96, 97, 113, 123, 128, 129, 157, 167, 168, 170, 171, 219, 220, 283], "chat": 88, "room": 88, "cinemat": 88, "multiplatform": 88, "mac": [88, 277], "super": [88, 217], "integr": [88, 99, 105, 107, 115, 125, 126, 127, 136, 142, 164, 167, 170, 175, 192, 196, 197, 202, 209, 218, 220, 230, 274, 283, 285, 286], "btdf": 88, "latex": [88, 160, 286], "font": [88, 105, 152, 158, 160, 164, 166, 229, 238, 244, 268], "bsd": 88, "who": [88, 93, 127, 133, 145, 164, 236, 251], "involv": [88, 98, 106, 108, 116, 119, 125, 138, 162, 169, 223, 229, 230, 233, 236, 246], "typo": [88, 139, 154, 215, 278, 284, 286], "request": [88, 99, 120, 121, 124, 125, 126, 127, 130, 139, 142, 154, 161, 162, 163, 164, 170, 184, 192, 196, 216, 217, 223, 226, 229, 238, 251, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286], "happi": [89, 90, 91, 92, 94, 95, 97, 113, 123, 129, 157, 167, 169, 170, 171, 220, 245], "announc": [89, 90, 91, 92, 94, 95, 97, 99, 113, 123, 129, 157, 167, 169, 170, 220, 221, 287], "highlight": [89, 90, 91, 92, 94, 95, 97, 113, 123, 129, 157, 167, 206, 207, 216, 220, 232, 285, 287], "split": [89, 273], "upgrad": [89, 90, 91, 92, 94, 95, 97, 113, 123, 129, 157, 167, 186, 220, 287], "conda": [89, 90, 91, 92, 94, 95, 97, 113, 123, 129, 157, 167, 220], "question": [89, 90, 91, 92, 94, 95, 97, 113, 123, 129, 157, 167, 169, 170, 171, 174, 176, 220, 266], "suggest": [89, 90, 91, 92, 94, 95, 97, 102, 107, 109, 113, 123, 129, 144, 147, 154, 157, 167, 175, 180, 188, 190, 191, 193, 197, 205, 209, 212, 213, 220, 222, 230, 243, 248, 251], "mail": [89, 90, 91, 92, 94, 95, 96, 97, 113, 123, 128, 129, 139, 157, 167, 168, 169, 171, 219, 220, 287], "On": [89, 90, 91, 92, 94, 95, 97, 113, 123, 127, 129, 157, 160, 167, 220, 237], "behalf": [89, 90, 91, 92, 94, 95, 97, 113, 123, 129, 157, 167, 220], "serg": [89, 90, 91, 92, 94, 95, 96, 97, 113, 123, 124, 128, 129, 133, 157, 167, 168, 175, 184, 201, 211, 219, 220, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286], "mainten": [90, 91, 123, 129, 157, 167, 220, 243, 274, 275, 276, 287], "codecov": [91, 276, 286], "travi": [91, 129, 274, 276, 277, 278, 279, 283, 287], "stereo": [92, 270, 277], "coverag": [92, 94, 95, 97, 113, 123, 151, 157, 277, 278, 279, 280, 281, 282, 284], "thank": [92, 94, 95, 97, 101, 103, 105, 107, 109, 110, 112, 113, 115, 118, 120, 121, 123, 124, 127, 129, 157, 167, 220, 233, 246, 251], "contributor": [92, 94, 95, 97, 113, 120, 123, 126, 129, 157, 167, 170, 171, 172, 175, 220, 221, 222, 235, 239, 242, 245, 287, 288], "david": [92, 93, 277], "reagan": [92, 277], "eleftherio": [92, 94, 95, 97, 113, 123, 129, 157, 167, 220, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286], "garyfallidi": [92, 94, 95, 97, 113, 123, 129, 157, 167, 220, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286], "jon": [92, 97, 277, 280], "haitz": [92, 97, 277, 280], "legarreta": [92, 97, 277, 280], "gorro\u00f1o": [92, 97, 277, 280], "marc": [92, 97, 113, 167, 277, 280, 281, 285], "alexandr": [92, 97, 113, 167, 277, 280, 281, 285], "c\u00f4t\u00e9": [92, 97, 113, 167, 277, 280, 281, 285], "koudoro": [92, 94, 95, 97, 113, 123, 129, 133, 157, 167, 175, 220, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286], "ohbm": 93, "brainart": 93, "melpomen": 93, "realli": [93, 103, 133, 134, 140, 233, 245, 246, 287], "beauti": [93, 242], "experi": [93, 100, 102, 109, 124, 132, 159, 161, 171, 172, 175, 176, 197, 221, 233, 239, 245, 248], "appveyor": [94, 95, 278, 279], "ci": [94, 149, 151, 152, 164, 167, 220, 278, 281, 285, 286], "ariel": [94, 278], "rokem": [94, 278], "guillaum": [94, 278], "faveli": [94, 278], "kevin": [94, 278], "sitek": [94, 278], "prashil": [94, 278], "scott": [94, 278], "trinkl": [94, 278], "anti": [95, 160, 169, 250, 270, 279], "alias": [95, 160, 169, 250, 270, 279], "nose": [95, 279, 280], "azur": [95, 220, 279, 281, 284, 286], "etienn": [95, 97, 279, 280], "st": [95, 97, 279, 280], "ong": [95, 97, 279, 280], "javier": [95, 97, 123, 129, 157, 167, 180, 192, 220, 279, 280, 282, 283, 284, 285, 286], "guaj": [95, 97, 123, 129, 157, 167, 220, 279, 280, 282, 283, 284, 285, 286], "particip": [96, 128, 131, 168, 170, 171, 219, 221, 230, 243], "2020": [96, 121, 124, 126, 127, 162, 163, 164, 272, 283], "umbrella": [96, 98, 99, 128, 168, 171, 219, 268], "foundat": [96, 98, 99, 125, 126, 128, 162, 163, 168, 169, 171, 216, 217, 218, 219], "graph": [96, 128, 130, 142, 145, 164, 168, 219, 284], "talk": [96, 128, 133, 168, 170, 171, 172, 219, 225, 230, 233, 236, 239, 242], "drop": [96, 126, 128, 168, 171, 219, 268], "Be": [96, 128, 168, 219], "contour_from_label": [97, 271, 280], "huge": [97, 113, 133, 171, 280, 281], "secur": [97, 280], "md5": [97, 280], "sha256": [97, 280], "chencheng0630": [97, 280], "devanshu": [97, 280], "modi": [97, 280], "filipi": [97, 133, 164, 172, 177, 180, 192, 196, 220, 236, 239, 246, 280, 286], "nascimento": [97, 133, 164, 220, 246, 280, 286], "silva": [97, 220, 280, 286], "gottipati": [97, 280], "gautam": [97, 220, 280, 286], "liam": [97, 113, 280, 281], "donohu": [97, 113, 280, 281], "marssi": [97, 280], "naman": [97, 113, 280, 281], "bansal": [97, 113, 280, 281], "nasim": [97, 123, 220, 280, 282, 286], "saransh": [97, 280], "jain": [97, 280], "shreya": [97, 280], "bhujbal": [97, 280], "soham": [97, 99, 113, 123, 126, 127, 129, 220, 280, 281, 282, 283, 286], "biswa": [97, 99, 113, 123, 126, 129, 220, 280, 281, 282, 283, 286], "vivek": [97, 123, 280, 282], "choudhari": [97, 123, 280, 282], "ibrahimani": [97, 280], "lenixlobo": [97, 125, 280], "hei": [98, 100, 102, 104, 106, 108, 111, 114, 116, 117, 119, 122, 127], "everyon": [98, 99, 100, 111, 114, 116, 127, 130, 131, 174, 222, 230, 236, 239, 242, 245, 246], "summer": [98, 124, 127, 130, 131, 132, 169, 171, 184, 221, 246, 284], "psf": [98, 171], "am": [98, 99, 103, 105, 107, 109, 110, 112, 120, 121, 122, 124, 131, 143, 146, 155, 169, 170, 171, 175, 202, 216, 222, 224, 228, 230, 232, 239, 245, 287], "lenix": [98, 113, 123, 125, 129, 281, 282, 283], "lobo": [98, 113, 123, 125, 129, 281, 282, 283], "undergradu": 98, "student": [98, 99, 130, 131, 171], "india": [98, 99], "univers": [98, 99, 169], "pandem": [98, 99], "outbreak": [98, 99], "head": [98, 99, 139, 266, 271, 283], "earli": [98, 99, 132, 170, 217, 234], "had": [98, 99, 100, 101, 105, 107, 109, 112, 118, 120, 121, 124, 126, 131, 132, 133, 134, 137, 138, 139, 140, 143, 146, 149, 152, 156, 160, 161, 169, 170, 171, 172, 173, 174, 175, 178, 184, 185, 187, 188, 191, 193, 195, 196, 198, 199, 200, 202, 203, 205, 206, 209, 212, 221, 222, 233, 234, 235, 239, 242, 243, 245, 246], "confer": [98, 99], "meet": [98, 99, 102, 121, 130, 131, 132, 134, 137, 138, 140, 143, 144, 146, 147, 149, 152, 153, 156, 158, 160, 161, 163, 164, 172, 173, 181, 189, 190, 191, 192, 193, 195, 204, 205, 208, 221, 222, 226, 227, 228, 229, 231, 235, 237, 240, 242, 245, 246, 287], "mentor": [98, 99, 100, 102, 103, 105, 107, 108, 109, 110, 117, 120, 121, 124, 126, 127, 130, 131, 132, 133, 135, 137, 138, 139, 141, 144, 147, 151, 152, 153, 154, 156, 161, 163, 165, 170, 172, 175, 176, 178, 191, 197, 200, 209, 212, 222, 225, 227, 230, 233, 234, 235, 236, 237, 239, 240, 242, 244, 245, 246], "schedul": 98, "wednesdai": [98, 99, 190, 236], "coher": 98, "entir": [98, 99, 107, 133, 228], "lot": [98, 106, 108, 116, 125, 130, 133, 137, 139, 142, 145, 149, 152, 169, 170, 171, 172, 180, 191, 196, 197, 215, 224], "theoret": 98, "concept": [98, 107, 126, 170, 171, 233], "spent": [98, 100, 106, 110, 136, 139, 142, 154, 171, 229], "theori": [98, 150, 161, 164, 288], "2nd": [99, 104], "year": [99, 131, 133, 169, 170, 171, 221, 281, 287], "pursu": [99, 169, 170, 171], "bachelor": [99, 169, 170, 171], "tech": 99, "scienc": [99, 222], "institut": [99, 132, 170], "kolkata": 99, "organ": [99, 130, 133, 139, 164, 169, 170, 171, 240, 261], "sci": [99, 131], "fi": [99, 131], "countri": [99, 133], "lockdown": 99, "were": [99, 102, 103, 104, 105, 106, 107, 109, 110, 112, 115, 117, 119, 120, 122, 125, 126, 131, 134, 137, 139, 143, 146, 149, 152, 155, 156, 158, 159, 160, 162, 163, 164, 169, 170, 171, 173, 175, 184, 188, 193, 194, 197, 200, 202, 206, 207, 208, 209, 217, 226, 227, 228, 238, 241, 255, 270], "core": [99, 132, 139, 143, 146, 153, 217, 266, 271, 284], "discuss": [99, 108, 117, 118, 120, 121, 130, 132, 133, 135, 136, 139, 143, 145, 146, 151, 154, 161, 163, 165, 172, 175, 176, 178, 189, 191, 192, 193, 195, 204, 209, 216, 217, 221, 226, 227, 229, 231, 232, 234, 235, 237, 238, 240, 267], "deadlin": 99, "ourselv": [99, 160], "progress": [99, 101, 107, 109, 110, 112, 115, 118, 120, 121, 124, 125, 135, 138, 141, 144, 147, 150, 153, 156, 159, 161, 164, 221, 229, 230, 235, 239, 241, 245, 253, 268, 286], "remain": [99, 110, 114, 116, 137, 143, 152, 155, 158, 162, 164, 216, 226, 232, 285], "pull": [99, 120, 121, 125, 126, 130, 136, 139, 142, 162, 163, 164, 170, 216, 217, 223, 226, 229, 238, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286], "pend": [99, 110, 120, 232, 240], "review": [99, 100, 131, 137, 140, 153, 154, 155, 158, 165, 170, 172, 201, 211, 216, 218, 222, 223, 225, 228, 231, 235, 237, 239, 240, 241, 242, 243, 245, 261, 283, 284, 287], "date": [99, 125, 126, 162, 163, 164, 216, 217, 218, 239], "focus": [99, 109, 121, 145, 164, 215, 225, 226, 229, 235, 241], "skeleton": [99, 101, 218], "pr": [99, 100, 103, 109, 111, 118, 120, 122, 126, 127, 130, 131, 132, 133, 134, 135, 136, 137, 139, 140, 144, 146, 147, 148, 150, 151, 153, 154, 155, 156, 158, 159, 160, 161, 162, 164, 165, 166, 170, 171, 172, 175, 177, 179, 180, 181, 183, 184, 185, 186, 191, 192, 194, 196, 197, 198, 200, 201, 202, 204, 206, 207, 208, 210, 211, 212, 213, 214, 216, 217, 218, 222, 223, 225, 226, 228, 229, 230, 232, 233, 234, 237, 238, 239, 240, 241, 242, 243, 244, 245, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286], "doubl": [99, 113, 126, 138, 224, 228, 261, 268, 269, 279, 281, 286], "unabl": [99, 171, 282, 283], "thankfulli": [99, 118, 120], "successfulli": [99, 101, 103, 126, 170, 171, 178, 197, 202, 209, 214, 232, 270], "cheer": [99, 127], "volumetr": [100, 117], "stack": [100, 155, 158, 162, 209, 258], "Such": 100, "prior": [100, 117, 171, 191, 197, 236, 242, 288], "directx": 100, "fur": [100, 125], "minor": [100, 111, 130, 134, 143, 149, 152, 165, 228, 234, 255, 283, 286], "bug": [100, 103, 104, 105, 111, 114, 116, 121, 122, 136, 137, 142, 152, 162, 164, 165, 166, 170, 174, 175, 184, 200, 216, 218, 245, 266, 277, 279, 280, 282, 283, 284, 285, 286], "noth": [100, 158, 171, 188, 216, 224], "weekli": [101, 102, 103, 105, 107, 109, 110, 112, 115, 118, 120, 121, 124, 125, 126, 132, 135, 138, 141, 144, 147, 150, 153, 156, 159, 161, 162, 163, 164, 172, 173, 217, 226, 228, 230, 231, 233, 236, 237, 239, 242, 245, 282], "far": [101, 103, 105, 140, 144, 159, 239], "apart": [101, 103, 107, 109, 110, 112, 115, 120, 121, 126, 127, 158], "regard": [101, 103, 105, 107, 110, 112, 115, 118, 120, 121, 124, 149, 152, 171, 229, 238], "proper": [101, 120, 121, 139, 149, 171, 172, 197, 223, 244], "problem": [101, 105, 107, 109, 110, 112, 115, 118, 120, 126, 131, 133, 137, 138, 143, 146, 152, 164, 196, 205, 215, 216, 217, 222, 226, 229, 234, 243, 244, 245, 248, 278, 280], "doesn": [101, 131, 137, 142, 169, 202, 203, 233, 236, 261, 269, 277, 283, 284, 287], "scrollbar": [101, 103, 105, 126, 146, 226, 229, 232, 238, 268], "hopefulli": [101, 103, 140, 143, 146, 149, 152, 158, 160, 162, 243], "excit": [102, 109, 171, 221, 245], "got": [102, 106, 131, 132, 143, 160, 170, 172, 177, 188, 192, 203, 205, 206, 210, 213, 221, 222, 230, 245, 263], "proceed": 102, "branch": [102, 104, 108, 111, 114, 131, 179, 181, 218, 277, 287], "deform": [102, 104, 218], "rid": 102, "slightli": [102, 131], "realist": [102, 104, 218], "thevtk": 102, "confus": [102, 103, 106, 121, 206, 209, 229], "doubt": [102, 171], "immedi": [102, 227, 232], "affili": 103, "countless": 103, "debug": [103, 147, 188, 202, 206, 265, 285], "session": [103, 184, 233, 244], "friendli": [103, 126, 286], "manner": [103, 248, 258], "wrote": [103, 112, 169, 181, 199], "summar": [103, 246], "gif": [103, 104, 106, 164, 204, 211, 217, 250, 286], "unfortun": [103, 124, 125, 143, 145, 164], "didn": [103, 131, 134, 143, 149, 150, 152, 161, 162, 169, 170, 171, 176, 186, 189, 190, 199, 200, 201, 202, 203, 204, 205, 206, 207, 209, 210, 211, 214, 215, 223, 227, 230, 232, 235, 236, 239], "thu": [103, 107, 145, 166, 237, 267], "prioriti": [103, 143, 265, 268, 284], "overshoot": 103, "runtim": [103, 124, 126, 142, 162, 166, 172, 218, 255], "reason": [103, 133, 152, 162, 166, 171, 175, 188, 189, 217, 224, 225, 227, 229, 230, 233, 261], "misplac": 103, "wasn": [103, 104, 112, 143, 158, 169, 171, 173, 176, 182, 185, 187, 188, 202, 230, 232, 233, 242], "post": [104, 120, 133, 139, 144, 145, 155, 164, 171, 209, 216, 217, 218, 242, 245, 284, 285, 286, 287], "slight": [104, 192, 227], "solv": [104, 105, 112, 125, 130, 131, 133, 136, 139, 145, 170, 171, 176, 177, 194, 196, 198, 202, 205, 213, 283], "suspect": 104, "possibli": [104, 137], "long": [104, 112, 140, 143, 184, 269], "simultan": [104, 262], "rather": [104, 108, 138, 159, 161, 248, 267], "highli": [104, 107, 109, 140], "benefici": [104, 132, 135], "realiz": [104, 120, 171], "caus": [104, 130, 133, 140, 142, 166, 175, 177, 193, 205, 208, 223, 226, 229, 241, 286, 288], "lambertian": 104, "eventu": [104, 106, 114, 169, 239], "vtktextactor": [105, 107, 229, 268], "text_scale_mode_non": 105, "text_scale_mode_prop": 105, "text_scale_mode_viewport": 105, "mainli": [105, 109, 112, 120, 121, 123, 129, 157, 167, 216, 220, 245], "couldn": [105, 131, 140, 143, 152, 169, 180, 205], "tri": [105, 107, 122, 124, 135, 138, 141, 146, 150, 169, 170, 171, 173, 175, 176, 178, 180, 182, 185, 188, 196, 197, 198, 200, 202, 205, 207, 212, 213, 216, 218, 234, 245, 286], "maintain": [105, 158, 177, 180, 183, 192, 196, 268], "abstract": [105, 145, 266, 268], "expos": [105, 233, 251, 253, 259, 265], "vtkviewport": [105, 110], "position2": [105, 229], "cannot": [105, 162, 184, 224, 227, 255, 262, 286], "inconsist": [105, 229, 238], "agre": 105, "irrespect": 105, "constructor": [105, 137, 149, 162, 251], "someth": [105, 110, 112, 137, 140, 169, 171, 202, 212, 216, 222, 224, 227, 230, 231, 233, 236, 243, 245, 251, 254, 268, 287], "plan": [105, 109, 111, 118, 136, 177, 179, 222, 223, 224, 226, 227, 229, 230, 231, 232, 233, 236, 237, 239, 240, 242, 245, 246], "getposition2": 105, "upto": [106, 282], "mileston": 106, "toward": [106, 235, 267, 268, 270], "occlus": [106, 270], "complic": [106, 108, 126, 149, 152, 162, 182, 233, 236, 245, 269], "hood": [106, 108], "took": [107, 118, 120, 171, 174, 191, 197, 206, 229, 232, 234, 238, 241], "terminologi": [107, 161], "nevertheless": 107, "rigid": [107, 160], "backend": 107, "frontend": 107, "rest": [107, 138, 170, 234], "un": [107, 109], "confid": 107, "restrict": [108, 169, 176, 268], "expect": [108, 110, 112, 116, 125, 152, 169, 170, 172, 193, 196, 231, 242, 248, 250, 253, 257, 270], "poor": [108, 139], "6th": 109, "period": [109, 118, 124, 125, 127, 130, 131, 159, 161, 171, 250, 255, 266], "own": [109, 138, 140, 170, 171, 239, 242, 265, 268, 270], "jump": [109, 169, 251], "quickli": [109, 216], "transln_vector": 109, "preserv": 109, "gamma": [109, 270], "beta": [109, 255], "get_r": 109, "new_po": 109, "quadrup": 109, "haven": [109, 143], "7th": [110, 171], "thought": [110, 133, 170, 171, 173, 176, 209, 212, 227, 240, 245], "fortun": [110, 130, 131, 136, 137, 139, 140, 142, 149, 166, 223, 232, 235, 242], "_add_to_scen": 110, "inherit": [110, 135, 158, 160, 229], "eager": 110, "clearer": 111, "merg": [111, 114, 117, 121, 125, 136, 137, 140, 143, 146, 148, 151, 152, 153, 155, 158, 159, 160, 161, 162, 166, 170, 175, 179, 181, 183, 184, 186, 187, 188, 201, 202, 206, 207, 208, 214, 216, 217, 218, 228, 231, 232, 240, 241, 265, 280, 283, 286, 287], "8th": 112, "refactor": [112, 126, 142, 149, 157, 160, 164, 174, 239, 242, 243, 283, 284, 286], "aid": 112, "Its": 112, "workaround": [112, 135, 146, 224, 236], "broke": 112, "weird": [112, 121, 241], "month": [112, 125, 171, 230], "anymor": [112, 245], "charact": [112, 126, 164, 166, 171, 268, 283, 284, 287], "search": [112, 159, 169, 171, 194, 209, 227, 270], "extrem": 112, "rhombocuboctahedron": [113, 281], "vtk9": [113, 281], "melina": [113, 123, 281, 282], "raglin": [113, 123, 281, 282], "tushar": [113, 129, 281, 283], "past": [114, 130, 138, 139, 142, 145, 227, 270, 287], "codebas": [114, 116, 138, 140, 206, 232], "sdf_actor": [114, 116], "9th": 115, "uncontrol": [115, 118], "mismatch": [115, 285], "gsoc": [116, 117, 121, 122, 124, 125, 126, 127, 130, 154, 155, 156, 161, 162, 163, 164, 169, 175, 217, 230, 237, 239, 242, 243, 245, 246, 282, 283, 284, 285, 286], "THe": 116, "tremend": [116, 217], "despit": [116, 122, 172], "went": [116, 127, 169, 170, 171, 174, 194, 223], "smoothli": [116, 127, 133, 169, 241], "immers": [117, 125, 171, 251], "Being": 117, "cloud": [117, 246, 248], "10th": 118, "3rd": 118, "todai": [118, 124, 127, 189, 192, 233, 236, 239, 245], "futur": [118, 137, 139, 140, 143, 146, 149, 162, 174, 232, 245, 251, 287], "conveni": 118, "standalon": [118, 120, 126], "discontinu": 118, "gooch": [119, 125], "11th": 120, "lack": [120, 125, 126, 143, 146, 149, 163, 171, 218, 225, 227], "awar": 120, "kept": [120, 170, 212, 217], "wrong": [120, 130, 133, 142, 143, 171, 236], "brows": [120, 124], "forum": [120, 150, 169, 209], "mind": [120, 171, 173, 222], "prism": [120, 157, 167, 248, 264, 281, 284, 285], "brief": [120, 137, 232, 236, 287], "glimps": [120, 221], "fellow": [120, 126, 172, 221, 237, 239, 242, 245], "12th": 121, "smash": 121, "he": [121, 170, 171, 172, 216, 236], "probabl": [121, 134, 137, 142, 143, 145, 146, 148, 172, 222, 236, 242], "formal": 121, "silhouett": 122, "inbuilt": 122, "across": [123, 130, 139, 164, 166, 169, 170, 252, 282], "anousheh": [123, 220, 282, 286], "mark": [124, 127, 287], "altogeth": 124, "grown": 124, "person": [124, 145, 164], "especi": 124, "immens": [124, 127, 244], "mentorship": 124, "love": [124, 169, 171], "contribut": [124, 127, 130, 169, 170, 171, 172, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286], "semest": [124, 170, 232], "filemenu": 124, "submiss": [124, 231], "organis": [125, 126, 132, 162, 163, 216, 217, 218, 268], "overwhelm": [125, 170], "stun": 125, "spheremap": 125, "toon": [125, 127], "nois": [125, 169, 231, 234], "bias": 125, "leverag": 125, "hardwar": 125, "devot": 125, "unsatisfactori": 125, "distort": [125, 142, 145, 164, 239], "priorit": 125, "hand": [125, 131, 160, 162, 170, 237, 245], "flexibl": [125, 265], "hair": 125, "benchmark": [125, 183, 192], "multisdf": 125, "296": 125, "familiar": [125, 127, 169], "267": [125, 281], "websit": [125, 126, 151, 155, 162, 163, 164, 170, 171, 216, 217, 218, 220, 235, 283, 286, 287], "week": [125, 126, 139, 145, 162, 163, 164, 216, 217, 218, 285, 286], "outlin": [125, 160], "commonli": 126, "tradition": 126, "textbox": [126, 268, 284], "term": [126, 134, 170, 171, 236, 255], "246": [126, 281], "navig": [126, 133], "252": [126, 282], "aren": [126, 209], "231": [126, 281], "overflow": [126, 140, 146, 155, 268, 280, 281, 283, 284], "listboxitem2d": [126, 271, 280], "filemenu2d": [126, 271], "tackl": [126, 229], "modif": [126, 130, 133, 164, 196, 223, 226, 255, 288], "accept": [126, 170, 171, 217, 250, 255], "clip": [126, 176, 177, 202, 265, 268, 270, 281, 283], "248": [126, 281], "268": [126, 281], "exhaust": 126, "287": [126, 282], "1xjcg1tl5zrjzdyi8v76leyzt_maxgp0kob7ozixksta": 126, "edit": [126, 169, 213, 268, 287], "usp": [126, 130], "hard": [126, 140, 142, 166, 169, 188, 201, 203, 204], "aspect": [126, 143, 145, 146, 164, 202, 248, 258, 268, 269], "285": 126, "filesystem": 126, "rewritten": [126, 251], "intact": 126, "281": [126, 282], "272": [126, 282], "286": [126, 283], "clippingoverflow": 126, "tabpanel2d": [126, 271], "scrollbarsupd": 126, "journei": [126, 216, 217, 218, 221, 245, 246, 286], "itsopen": 126, "googl": [127, 133, 152, 171, 221, 284], "opportun": [127, 221, 222, 232, 241, 246, 287], "programm": 127, "member": [127, 132, 147, 153, 155, 268], "throughout": [127, 233], "2021": [128, 139, 162, 163, 170, 272, 285, 286], "migrat": [129, 220, 283, 286], "charl": [129, 283], "poirier": [129, 283], "sajag": [129, 132, 157, 163, 167, 283, 284, 285], "swami": [129, 132, 157, 163, 167, 283, 284, 285], "pietro": [129, 283], "astolfi": [129, 283], "sanjai": [129, 283], "marreddi": [129, 283], "ganimtron": [129, 216, 283], "haran2001": [129, 283], "aju100": [129, 283], "aman": [129, 283], "soni": [129, 283], "bruno": [130, 157, 167, 172, 220, 233, 236, 245, 284, 285, 286], "messia": [130, 157, 167, 220, 284, 285, 286], "ph": 130, "brazil": 130, "bond": [130, 131, 138, 141, 150, 163, 261, 284], "paragraph": 130, "stream": [130, 133, 136, 145, 164, 165, 166, 220, 271, 286], "propos": [130, 131, 133, 136, 169, 170, 171, 237, 286, 287], "internet": [130, 139, 145, 164, 169], "spec": 130, "hous": [130, 169], "discov": [130, 133, 136, 154, 171, 175, 192, 201, 223, 226, 244], "432": [130, 136, 154, 164, 165, 285], "422": [130, 136, 137, 284], "antriksh": [131, 157, 162, 167, 220, 284, 285, 286], "misri": [131, 157, 162, 167, 220, 284, 285, 286], "mit": 131, "pune": 131, "primari": [131, 137, 162, 169], "stretch": [131, 132, 162, 163, 164, 216, 218], "seen": [131, 214, 216, 264, 287], "movi": 131, "guardian": 131, "galaxi": 131, "hinder": [131, 235], "introductori": [131, 204, 215], "compli": 131, "windowresizeev": [131, 140, 149, 162], "invok": [131, 140, 143, 166, 182, 213, 248, 266], "partial": [131, 180, 202, 285, 287], "functool": 131, "sophomor": 132, "indian": [132, 170, 171], "technologi": [132, 170, 171], "roorke": [132, 170], "shall": [132, 144, 190, 288], "protein": [132, 135, 144, 147, 163, 261], "richardson": [132, 163, 261], "aka": [132, 144], "ribbon": [132, 135, 138, 141, 147, 150, 153, 159, 162, 163, 271], "diagram": [132, 135, 163], "molecular": [132, 141, 144, 147, 150, 153, 156, 159, 163, 167, 271, 285], "expand": [132, 140, 143, 264, 286], "stick": [132, 138, 144, 163, 271], "wire": [132, 163], "pipe": [132, 139, 163], "plank": [132, 163], "acquaint": [132, 221], "learnt": 132, "vision": 132, "pars": [132, 135], "pdb": [132, 135], "pdbx": [132, 135], "pro": [132, 175], "con": [132, 175], "upon": [132, 153], "docstr": [132, 154, 179, 181, 254, 280, 285, 286, 287], "syntax": [132, 189], "colleg": [132, 170, 171, 184, 191], "courtesi": [132, 147], "covid": 132, "backbon": [132, 163], "1mb0": 132, "carbon": 132, "vtkproteinribbonfilt": [132, 135, 138, 141, 147, 163], "prove": [132, 135, 161, 171, 244], "au": [132, 135, 138, 141, 144, 147, 150, 153, 156, 159, 161], "revoir": [132, 135, 138, 141, 144, 147, 150, 153, 156, 159, 161], "437": [133, 136, 139, 145, 154, 165, 166, 286], "phd": 133, "cheapest": 133, "price": [133, 283], "convinc": 133, "brazilian": 133, "friend": [133, 169, 170], "budget": 133, "scenario": [133, 136, 137, 139, 164, 232], "resid": [133, 164], "bandwidth": [133, 164], "circumv": [133, 164], "gil": [133, 145, 164], "alon": [133, 164], "enough": [133, 139, 164, 169, 170, 236], "cpu": [133, 217], "uncoupl": [133, 164], "believ": [133, 169], "protocol": [133, 139, 164], "myriad": 133, "hangout": 133, "econom": 133, "One": [133, 136, 137, 139, 145, 161, 164, 166, 170, 218, 223, 233, 236, 251, 256, 267], "hardest": 133, "webserv": [133, 266], "technic": [133, 173], "kind": [133, 145, 163, 164, 171, 197, 202, 239, 246, 268], "unnecessari": [133, 145, 163], "duplic": [133, 139, 264, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287], "economi": 133, "trick": [133, 172, 239], "older": [133, 172], "stage": [133, 217, 222, 234, 240], "saw": [133, 136, 172], "l101": 133, "raw_arr_buff": 133, "new_data": 133, "explan": [133, 233, 240], "bad": 133, "demystifi": 133, "sharedctyp": 133, "stupend": 133, "memoryview": 133, "memview": 133, "arr_buff": 133, "arr_buffer_uint8": 133, "new_data_uint8": 133, "cast": [133, 285], "rescu": 133, "arr_uint8_repr": 133, "ctypeslib": 133, "as_arrai": 133, "behav": [133, 164, 166, 195, 250, 268], "spawm": [133, 136], "sai": [133, 169, 172, 254, 268, 287], "uniti": [134, 169, 171], "unreal": [134, 171], "customiz": [134, 137, 226], "css": [134, 137], "getter": 134, "watcher": [134, 137, 140, 162], "monitor": [134, 140, 145, 162, 164], "fatal": 134, "error": [134, 171, 175, 176, 179, 184, 202, 206, 209, 224, 227, 241, 253, 255, 259, 265, 274, 280, 283, 286], "sideeffect": 134, "wherein": [134, 152, 162], "faulthandl": 134, "suppress": 134, "adapt": [134, 146, 162, 213, 286], "preview": [135, 138, 143, 199, 203, 208, 210, 214], "3pgk": 135, "space_filling_model": 135, "myself": [135, 239, 240], "atom": [135, 141, 150, 163, 261], "biopython": 135, "vtkmoleculereaderbas": 135, "unsuccess": [135, 141, 144, 150, 171], "endeavour": 135, "maker": 136, "helio": [136, 145, 148, 151, 164], "hour": [136, 171, 236], "devmessia": [136, 139, 145, 285], "071dab85": 136, "unrel": 136, "subprocess": [136, 139], "popen": [136, 139, 286], "shell": [136, 139], "unlink": [136, 139], "flawless": 136, "issue38119": [136, 266], "cpython": [136, 139], "21516": [136, 139], "monkei": [136, 164, 266], "patch": [136, 164, 266, 283, 285], "meanwhil": [136, 139, 142, 240], "resource_track": [136, 139, 266], "38119": [136, 139], "revolv": [137, 140], "redesign": [137, 217], "cellshap": 137, "filedialog2d": 137, "briefli": [137, 246], "job": [137, 236], "studi": [137, 154, 183, 233], "contour": [137, 277], "meant": [137, 143, 255], "tax": 137, "million": [137, 164], "interestingli": 137, "tripl": [138, 261], "presenc": 138, "interatom": [138, 261], "intrigu": 138, "molecul": [138, 141, 150, 159, 163, 271], "ethan": 138, "ethen": 138, "ethyn": 138, "vtkmolecul": [138, 141, 261], "vtksimplebondperceiv": [138, 141, 163, 261], "vtkmoleculemapp": [138, 141], "vtkperiodict": [138, 141, 261], "great": [138, 171, 173, 176, 209, 222, 246], "crucial": 138, "utilis": 138, "predict": [138, 236], "resolv": [138, 140, 150, 160, 202, 207, 216, 223, 226, 232, 238, 241, 244, 277, 284, 286], "extent": 138, "inabl": 138, "blob": [139, 160, 175], "b1e985": 139, "l20": 139, "mess": [139, 171], "obviou": [139, 152, 237], "mayb": [139, 170, 245, 269], "socket": 139, "abc": [139, 266], "genericimagebuffermanag": [139, 271], "create_mem_resourc": [139, 266, 271], "imagebuffermanag": [139, 266], "load_mem_resourc": [139, 266, 271], "sketch": [139, 165], "abstractmethod": 139, "num_buff": [139, 266], "use_shared_mem": [139, 266], "imagebuffermang": 139, "440a39d427822096679ba384c7d1d9a362dab061": 139, "l491": 139, "info_buffer_s": 139, "_use_shared_mem": 139, "omit": 139, "next_buffer_index": [139, 266, 271], "info_buffer_repr": 139, "buffer_index": [139, 266, 271], "write_into": [139, 266, 271], "np_arr": [139, 266], "buffer_s": 139, "get_current_fram": [139, 266, 271], "image_buffer_repr": 139, "get_jpeg": [139, 266, 271], "image_encod": 139, "tobyt": 139, "async_get_jpeg": [139, 266, 271], "rawarrayimagebuffermanag": [139, 271], "sharedmemimagebuffermanag": [139, 271], "dry": 139, "readabl": [139, 211, 215, 228], "circularqueu": [139, 266], "violat": 139, "tail": [139, 266, 271], "busi": [139, 288], "get_lock": 139, "dosen": 139, "peculiar": 139, "358402e": 139, "weel": [139, 266], "ctrl": [139, 185, 216, 266], "press": [139, 164, 171, 185, 268, 270], "test_stream": 139, "steam": 139, "app_async": 139, "problemat": [139, 152], "mitig": 139, "event_id": [139, 266], "mouse_mov": [139, 266], "mouse_weel": [139, 266], "anywher": 139, "chose": [139, 140, 171], "situat": 139, "realpython": 139, "shared_memori": 139, "shm_a": 139, "command_str": [139, 266, 271], "shm_b": 139, "stdout": 139, "stderr": 139, "nstdout": 139, "nstderr": 139, "l776": 139, "l112": 139, "l296": 139, "souli": 139, "apr": 139, "towardsdatasci": 139, "9062272e6bdc": 139, "jun": 139, "corrupt": [139, 166], "archiv": [139, 171, 263], "msg22935": 139, "388287": 139, "tracker": 139, "msg388287": 139, "bpo": 139, "shmem": 139, "vinay0410": 139, "stuff": [140, 147, 158, 164, 166, 169, 171], "led": [140, 169, 171, 198, 234, 241], "meantim": 140, "primarili": [140, 146, 162, 179], "trigger": [140, 162, 173, 176, 245, 265], "hook": [140, 189, 217, 286], "ambigu": 140, "unmonitor": 140, "automat": [140, 152, 166, 169, 178, 183, 188, 216, 226, 238, 241, 248, 250, 268, 269, 270, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287], "whole": [140, 152, 162, 169, 171, 240, 244], "accordion": [140, 162], "treenode2d": [140, 143, 149, 155], "children": [140, 146, 152, 162], "chow": 140, "panle2d": 140, "retain": [140, 162, 288], "fourth": [141, 269], "chemic": [141, 163], "obelisk": [141, 261], "molecular_viz_vtk": 141, "paper": [141, 156, 157, 159, 161, 163, 284], "potenti": [141, 245], "vtkpdbreader": 141, "endeavor": 141, "vtkpolydata": [141, 144, 163, 257, 269], "confound": 141, "8c670c2": 142, "fall": 142, "silent": 142, "troublesom": 142, "4086": 142, "byte": [142, 251, 256, 266], "independ": [142, 216, 217, 229, 232, 236, 238, 277], "multidimensionalbuff": [142, 266], "max_siz": [142, 266], "uniformtool": 142, "424": [142, 172], "characterist": 142, "usefulli": 142, "convic": 142, "group": [142, 170, 175, 185, 202, 207, 209, 216, 217, 248, 250, 253, 265], "scientist": 142, "minimum": [142, 145, 164, 167, 197, 217, 250, 251, 256, 268, 285], "embed": [142, 145, 164, 253], "pymd": [142, 145, 164], "perfect": [142, 169, 216], "heliospr": 142, "submodul": 143, "conflict": [143, 160, 284, 287], "reveal": 143, "brainstorm": 143, "annoi": 143, "attent": [143, 169, 171, 227, 242], "beyond": [143, 174, 223, 245], "secondli": 143, "fluid": 143, "gone": 143, "guess": [143, 169, 239], "fifth": 144, "calott": [144, 163], "cpk": [144, 261], "mid": 144, "proteinribbonfilt": [144, 271], "hashtag": [145, 164], "social": [145, 164], "insight": [145, 164], "epidem": [145, 164], "spread": [145, 164, 224], "kuramoto": [145, 164], "delet": [145, 164, 173, 174, 216, 243, 253, 281, 287], "di": [145, 164], "diseas": [145, 164], "recomput": [145, 164], "shouldn": [145, 152, 203], "wrapper": [145, 164], "rememb": [145, 169, 287], "unfeas": 145, "hundr": [145, 164, 165, 166, 217], "cugraph": [145, 148, 164], "forceatla": [145, 164], "networkdraw": 145, "weight": [145, 203, 218, 236, 256], "consum": [145, 159, 162, 169, 188, 255, 266], "shmmanagermultiarrai": 145, "pain": 145, "inter": [145, 166], "networklayoutipcservercalc": 145, "networklayoutipcrend": 145, "bore": 145, "_check_and_sync": 145, "mde": [145, 164], "l180": 145, "test_mde_layout": 145, "l43": 145, "until": [145, 165, 169, 236, 242, 255], "atla": [145, 158, 160, 166], "viz_helios_md": 145, "anchor": [145, 248, 268, 271], "forceatlas2": [145, 148, 164], "cuda": [145, 164], "flicker": [145, 164], "a94e22dbc2854ec87b8c934f6cabdf48931dc279": 145, "flaw": [146, 188, 223, 239], "restructur": [146, 162, 192, 215], "indirectli": [146, 238], "circularli": 146, "add_to_scen": [146, 248, 250, 268, 271], "exceed": [146, 179, 197], "came": [146, 169, 170, 173, 174, 236], "till": [146, 170, 171, 217], "sixth": 147, "generalis": [147, 199], "452": [147, 153, 156, 159, 161, 163, 285], "362": [147, 153, 159, 163, 264, 285], "grate": [147, 221], "ipc": [148, 164, 165, 166], "ipclayout": [148, 165], "evolut": 148, "record_posit": 148, "seem": [148, 152, 159, 161, 166, 173, 208, 209, 212, 224, 227, 233, 236, 239, 283], "mostli": [149, 204], "indent": 149, "feedback": [149, 153, 161, 222, 225, 228, 231, 234, 237, 243], "443": [149, 152, 162, 286], "comment": [149, 152, 237, 254, 280, 283, 284, 286], "442": [149, 152, 284], "reus": [149, 228, 248], "has_bord": [149, 268], "wast": [149, 172, 209, 212], "seventh": 150, "add_atom": [150, 271], "462": [150, 153, 159, 163], "discours": [150, 209], "gap": [150, 188], "vtkproperti": 150, "backfacecul": 150, "frontfacecul": 150, "onlin": [151, 164, 251], "tomorrow": [151, 154, 165], "besid": [152, 166, 197, 217], "windowsresizeev": 152, "ignor": [152, 248, 258, 277], "leav": [152, 245, 251, 286, 287], "redon": 152, "is_ui": [152, 271], "wouldn": 152, "mistak": 152, "wrap_overflow": [152, 271], "freetyp": [152, 155, 158, 160, 166], "desktop": 152, "bitmap": [152, 165], "hihgli": 152, "inspir": [152, 169, 170, 171], "difficult": [152, 185, 188, 209, 243], "fortunalt": 152, "eighth": 153, "thursdai": [153, 233, 236], "474": [154, 165, 285], "mehabhalodiya": 154, "tree2d": [155, 158, 162], "mobil": [155, 286], "pose": [155, 203, 218, 256], "troubl": 155, "accordion2d": [155, 158, 162], "spinbox2d": [155, 162], "ninth": 156, "optimis": 156, "solvent": [156, 161, 163], "exclud": [156, 163, 251], "se": 156, "bioconda": 156, "msm": 156, "michel": 156, "sanner": 156, "arthur": 156, "olson": 156, "jean": 156, "claud": 156, "spehner": 156, "475": [156, 163, 284], "fast": [156, 157, 188, 284], "triangular": [157, 248, 264, 269, 284], "amit": [157, 284], "chaudhari": [157, 284], "daniel": [157, 284], "katz": [157, 284], "gurdit": [157, 284], "siyan": [157, 284], "jhalak": [157, 284], "gupta": [157, 284], "loopthrough": [157, 284], "mihir": [157, 284], "praneeth": [157, 167, 171, 172, 175, 216, 220, 284, 285, 286], "shetti": [157, 167, 171, 216, 220, 284, 285, 286], "hariharan": [157, 284], "ayappan": [157, 284], "revers": 158, "chunk": [158, 162], "tenth": 159, "archaic": 159, "tad": 159, "intimid": 159, "never": [159, 169, 216, 227, 246], "domain": [159, 241, 286], "reckon": 159, "brought": [160, 171], "email": [160, 169, 170], "string": [160, 196, 218, 248, 249, 251, 253, 255, 256, 257, 259, 260, 261, 265, 266, 267, 268, 270], "3a4fdea8d23207d67431973fe5df1811605c4132": 160, "artist": 160, "l94": 160, "raster": [160, 170], "patheffectrender": 160, "submit": [160, 222, 228, 230, 235, 240], "gist": 160, "eleventh": 161, "van": [161, 163, 261], "der": [161, 163, 261], "waal": [161, 163, 261], "492": [161, 163], "alien": 161, "fruit": 161, "understood": [161, 239], "vtkmarchingcub": 161, "earliest": 161, "sa": [161, 163], "256": [161, 280, 281], "cool": [161, 251], "lai": [162, 216, 248, 258], "480": [162, 164, 285], "479": [162, 285], "486": [162, 286], "460": [162, 232], "visul": 162, "themselv": 162, "487": 162, "vtkactor2d": [162, 268], "stall": 162, "491": [162, 285], "398": [162, 229, 232], "ratio": [162, 248, 258, 268, 269, 270, 271], "446": [162, 232], "wathcer": 162, "448": 162, "entiti": [162, 169], "compris": 162, "obvious": 162, "heavi": [162, 196, 248, 265], "pattern": [162, 263], "441": [162, 284], "477": [162, 284], "494": 162, "rebas": [162, 214, 223, 226, 232, 241], "schemat": 163, "polypeptid": 163, "\u03b1": 163, "coil": 163, "\u03b2": 163, "strand": 163, "repetit": [163, 216, 286], "strip": [163, 248, 251, 286], "unclear": 163, "filter": [163, 245, 248], "substanc": 163, "typic": 163, "tube": [163, 248, 261, 277], "vtkopenglmoleculemapp": 163, "chemistri": [163, 261], "proport": [163, 169], "triangul": [163, 248, 264], "macromolecular": 163, "euclidean": [163, 250], "dong": 163, "xu": 163, "yang": 163, "zhang": 163, "miscellan": 163, "emwav": 163, "493": [163, 285], "genesi": 163, "misc": 163, "vdw": [163, 261], "effort": 164, "opt": 164, "stadia": 164, "cheap": 164, "reach": [164, 169, 181, 236, 245, 286], "concurr": [164, 166], "emploi": [164, 232], "transfer": 164, "latter": [164, 192], "smothli": 164, "gave": [164, 169, 170, 171], "intel": 164, "hd": 164, "3000": 164, "tun": 164, "finer": 164, "superactor": 164, "host": [164, 266], "heliosnetwork": 164, "consumpt": 164, "489": [164, 166], "476": [164, 284], "tbd": 164, "fake": 164, "demvessia": 164, "demvessiass": 164, "rougier": 164, "2018": [164, 246, 272, 277], "book": [164, 170], "2007": 164, "magnif": [164, 270, 286], "acm": 164, "san": 164, "diego": 164, "california": 164, "doi": [164, 284], "1145": 164, "1281500": 164, "1281665": 164, "484": 165, "pack": 166, "glyp": 166, "fortunelli": 166, "woke": [166, 170], "viz_huge_amount_of_label": 166, "viz_billboad_label": 166, "tricki": 166, "acrro": 166, "timeinterv": 166, "imposs": [166, 217], "approcach": 166, "strang": [166, 184], "mousewheelforwardev": 166, "mousewheelbackwardev": 166, "glitch": 166, "prfuri": 166, "grant": 166, "stand": [167, 285, 287], "rhombicuboctahedron": [167, 264, 271, 280, 285], "anand": [167, 218, 220, 285, 286], "shivam": [167, 170, 172, 189, 192, 213, 218, 220, 285, 286], "meha": [167, 285], "bhalodiya": [167, 285], "prayasj": [167, 285], "moham": [169, 187, 188, 190, 193, 197, 205, 217, 220, 286], "egypt": 169, "2023": [169, 239, 246, 272, 288], "tanta": 169, "2008": [169, 251], "pc": [169, 271], "128mb": 169, "ram": 169, "ran": [169, 172], "xp": 169, "2013": 169, "answer": [169, 171, 203, 205, 236], "english": 169, "arab": 169, "peopl": [169, 246], "speak": 169, "sens": [169, 224], "amaz": [169, 171], "lucki": 169, "2009": 169, "beg": 169, "touch": 169, "sight": 169, "interior": 169, "poli": [169, 182, 192], "human": [169, 251], "curiou": 169, "cryengin": 169, "udk": 169, "terrain": 169, "pyramid": [169, 248, 281], "languag": [169, 170, 171], "harvard": 169, "cs50": 169, "competit": 169, "heard": [169, 170, 171], "senior": [169, 170], "hit": 169, "fog": 169, "taught": 169, "professor": 169, "v1": [169, 250, 251], "pyopengl": 169, "pygam": 169, "pyglm": 169, "disappoint": [169, 171], "publicli": 169, "scratch": [169, 171, 226, 238], "walk": 169, "sound": 169, "intens": [169, 260], "player": [169, 217], "bilinear": 169, "sequenc": [169, 241, 251, 261, 262, 267, 270], "mummyisland": 169, "recogn": [169, 287], "anki": 169, "godot": [169, 171], "glanc": [169, 225], "lumin": 169, "hors": 169, "felt": [169, 170, 171], "fxaa": 169, "fire": 169, "gaussian": [169, 245], "train": 169, "postpon": [169, 172], "bother": 169, "match": [169, 189, 225, 251, 253], "552": [169, 286], "555": [169, 286], "mission": 169, "pm": [169, 170, 171], "cairo": 169, "timezon": 169, "whatsoev": 169, "dashboard": 169, "stori": 169, "promot": [169, 288], "spam": 169, "conclus": 169, "celebr": 169, "shortli": 169, "receiv": [169, 170, 171, 222, 228, 234, 237, 243], "ever": 169, "2024": 170, "product": [170, 235, 270, 288], "industri": 170, "iit": 170, "teach": 170, "compet": 170, "hackathon": 170, "lost": 170, "enjoy": 170, "enthusiast": 170, "told": [170, 175, 239, 242, 243, 245], "motiv": [170, 171, 239], "octob": 170, "hactoberfest": 170, "him": [170, 172], "shortlist": 170, "android": 170, "kotlin": 170, "hadn": 170, "brush": 170, "remark": [170, 171, 221], "ucsc": 170, "lectur": 170, "victor": 170, "gordon": 170, "straight": 170, "loader": [170, 175, 218], "gltfreader": 170, "forgot": [170, 227], "fact": [170, 227], "examin": [170, 251], "somehow": 170, "april": 170, "520": [170, 285], "533": [170, 218, 286], "547": [170, 218, 286], "556": [170, 218, 286], "559": [170, 218, 286], "anxiou": 170, "18th": 170, "reject": [170, 171], "morn": 170, "profil": 170, "dad": 170, "night": 170, "refresh": [170, 171, 268, 286], "site": 170, "shout": 170, "numfocu": 170, "moment": [170, 238], "bless": 170, "gsoc22": [171, 217], "lesson": 171, "javascript": 171, "struggl": [171, 218, 227, 233], "twice": [171, 208, 277], "laptop": 171, "cousin": 171, "brother": 171, "enquir": 171, "academ": 171, "greet": 171, "flood": 171, "whatev": [171, 270], "vacat": [171, 184], "gameplai": 171, "youtub": 171, "brackei": 171, "grab": [171, 197, 268], "ie": [171, 173, 205, 256, 269], "rigidbodi": 171, "replic": [171, 267], "gigabyt": 171, "2g": 171, "megabyt": 171, "inr": 171, "unknown": [171, 188], "playlist": 171, "lightweight": 171, "80": [171, 278], "satisfi": [171, 232], "spend": [171, 176, 204], "exact": [171, 270], "surpris": 171, "wherea": 171, "bulki": 171, "mini": 171, "gdscript": 171, "resembl": 171, "drown": 171, "hacktoberfest": 171, "girlscript": 171, "gssoc": 171, "guidanc": [171, 233], "interview": 171, "flow": 171, "consider": [171, 232], "p5": 171, "creativ": 171, "attempt": 171, "rais": [171, 176, 179, 194, 248, 253, 255, 265, 285], "old": [171, 189, 215, 217, 255, 286], "beginn": [171, 204], "analysi": [171, 226], "comfort": 171, "fascin": 171, "hasn": 171, "engag": 171, "newbi": 171, "skill": [171, 222], "disengag": 171, "energi": 171, "enthusiasm": 171, "arriv": 171, "anxieti": 171, "peak": [171, 271, 277, 283, 285, 286], "alarm": 171, "remind": [171, 172], "straightforward": [172, 245], "verifi": [172, 173, 253, 287], "filip": 172, "attend": [172, 239], "604": 172, "movabl": 173, "unintention": 173, "599": [173, 174, 216, 286], "scan": 173, "actor2d": [173, 209, 271], "cleaner": [174, 252], "aris": [174, 176, 288], "deselect": [174, 185, 216, 268, 271], "keyboard": [174, 268], "shortcut": 174, "clamp": [174, 176, 202, 216, 268], "met": [175, 288], "panda3d": 175, "pyrend": 175, "dataclass": 175, "json": [175, 179, 181, 218, 280], "accident": 175, "darker": 175, "602": [175, 218, 286], "asynchron": [175, 218], "var": 175, "typeerror": [175, 255], "subscript": 175, "weren": [175, 179, 193, 197, 202, 227], "gimp": 175, "vtktextur": [175, 191, 236, 248, 257], "get_accessor_data": 175, "prototyp": [176, 182, 200, 218, 286], "alongsid": [176, 268], "polylin": [176, 182, 185, 188, 194, 197, 209, 212, 216, 248], "quadrant": 176, "li": [176, 248], "th": [177, 250], "612": [177, 286], "613": [177, 286], "seek": [177, 250, 268, 271], "matric": [177, 195, 198, 199, 201, 203, 256], "dig": [177, 224], "newer": 177, "b\u00e9zier": [177, 217, 250], "disappear": 177, "phew": 178, "tediou": 178, "parallelli": 178, "sem": 178, "exam": [178, 235], "off": [178, 188, 212, 248, 270], "aabb": 178, "enhanc": [178, 182, 200, 217, 226, 244, 286], "get_polydata_triangl": [179, 271], "basetextur": 179, "compositetimelin": [180, 183], "617": [180, 217, 286], "mergeabl": [180, 181], "616": [181, 218, 286], "upcom": [182, 221, 223, 226, 232, 235, 240], "left_mouse_click": [182, 216], "sub_timelin": 183, "actors_list": 183, "add_timelin": 183, "unbound": 183, "travel": 184, "load_io": 184, "pil": 184, "pallet": 184, "glb": [184, 218], "bufferview": [184, 256], "khronoosgroup": 184, "boxinterleav": 184, "ye": 184, "speculartest": 184, "animatedcub": 184, "normaltangentmirrortest": 184, "animatedtriangl": 184, "specglossvsmetalrough": 184, "nonetyp": 184, "basecolortextur": [184, 256], "cesiummilktruck": 184, "vc": 184, "waterbottl": 184, "animatedmorphcub": [184, 214], "sponza": 184, "scifihelmet": 184, "iridescencemetallicspher": 184, "corset": 184, "texturelinearinterpolationtest": 184, "simplemesh": 184, "lantern": 184, "texturetransformmultitest": 184, "texturesettingstest": 184, "lightspunctuallamp": 184, "damagedhelmet": 184, "cesiumman": [184, 210], "barramundifish": 184, "metalroughspheresnotextur": 184, "environmenttest": 184, "mosquitoinamb": 184, "boxtexturednonpoweroftwo": 184, "brainstem": [184, 214, 218], "simplemorph": 184, "orientationtest": 184, "boxanim": 184, "stainedglasslamp": 184, "texturetransformtest": 184, "clearcoattest": 184, "iridescencelamp": 184, "dragonattenu": 184, "recursiveskeleton": 184, "riggedsimpl": [184, 203, 205], "textureencodingtest": 184, "2cylinderengin": 184, "normaltangenttest": 184, "iridescencedielectricspher": 184, "texturecoordinatetest": 184, "alphablendmodetest": 184, "trianglewithoutindic": 184, "multiuvtest": 184, "boomboxwithax": 184, "20with": 184, "20space": 184, "sheencloth": 184, "toycar": 184, "materialsvariantssho": 184, "iridescentdishwithol": 184, "vertexcolortest": 184, "sheenchair": 184, "fox": [184, 214, 218], "antiquecamera": 184, "transmissiontest": 184, "transmissionroughnesstest": 184, "boxvertexcolor": 184, "reciprocatingsaw": 184, "morphprimitivestest": 184, "metalroughspher": 184, "gearboxassi": 184, "twosidedplan": 184, "buggi": 184, "simplesparseaccessor": 184, "unlittest": 184, "simpleskin": [184, 199, 203], "flighthelmet": [184, 253], "unicod": 184, "e2": 184, "9d": 184, "a4": 184, "bbtest": 184, "avocado": 184, "glamvelvetsofa": 184, "boombox": 184, "emissivestrengthtest": 184, "attenuationtest": 184, "animatedmorphspher": [184, 214], "iridescencesuzann": 184, "pil_imag": 184, "uri": [184, 256], "glb2gltf": 184, "investig": [185, 188, 191, 195, 213, 223, 224, 226, 229, 241, 246, 252, 286], "preced": [185, 250], "631": [186, 217], "626": [186, 187, 190, 286], "finalis": 187, "permit": [187, 252, 288], "reli": [187, 224, 230, 237, 238, 239, 243, 245], "623": [188, 191, 194, 200, 202, 206, 216, 286], "ubuntu": [188, 277, 281, 286], "on_value_chang": 189, "on_moving_slid": 189, "634": [189, 217, 286], "643": [189, 208, 210, 214, 218, 286], "custominterpol": 189, "mousemoveev": [191, 270], "prop": [191, 250, 256, 268, 269], "mipmapon": 191, "interpolateon": 191, "settl": 191, "reopen": 191, "freehand": [191, 194, 197, 202, 216], "tracer": 191, "rotation_slid": [191, 212, 216, 286], "647": [192, 217, 286], "euler": [192, 250, 267], "renam": [192, 248, 255, 277, 282, 285], "draft": [192, 217, 228, 239], "linearinterpol": 193, "smoothen": [193, 200], "645": [194, 197, 216, 286], "zerodivsionerror": 194, "653": [194, 200, 202, 206, 216], "tr": [195, 256], "invertbindmatric": 195, "globaltransformmatric": 195, "ago": [196, 230], "bigger": [196, 206], "slower": 196, "unbind": 196, "compact": 196, "160k": 196, "encount": [196, 223, 226, 229, 232, 235, 237, 241], "vtkimagetrac": [197, 200], "imagesourc": 197, "pure": [197, 209], "architectur": [197, 216], "partialactor": [198, 201], "imit": 200, "drawback": 200, "overcom": [200, 226], "promis": 200, "drawshap": [202, 207, 212, 216, 271, 286], "analyz": [202, 270], "overlapp": 202, "nearer": 202, "throw": [202, 255, 286], "analyse_snapshot": 202, "inversebindmatrix": 203, "short": [203, 245, 263], "undo": 203, "extrus": [204, 248], "irrad": 205, "invert": [205, 280, 285, 286], "skin_mat": 205, "harder": [206, 227], "674": [206, 216, 286], "redund": [206, 212], "in_progress": [206, 216, 286], "overlap": 207, "mode_panel": [207, 216, 286], "mode_text": [207, 216, 286], "678": [207, 216, 286], "duplicaci": 207, "brighter": [207, 209], "fault": [208, 284, 286], "impress": 208, "elimin": 208, "get_valu": [208, 250, 271], "get_skin_timelin": [208, 214], "grei": [209, 261], "skinmatrix": 210, "inversebindpos": 210, "bonedeform": 210, "currentbonetransform": 210, "parentbonetransform": 210, "parti": 211, "665": [211, 217, 286], "common": [212, 225, 256], "688": [212, 216, 286], "694": [213, 217, 286], "xtanion": [213, 218], "689": [214, 218, 286], "685": [214, 218, 286], "getconsum": 215, "scene_idx": 215, "frustum": [215, 264, 271, 281], "eras": 216, "depict": 216, "wysiwyg": 216, "695": 216, "doodl": 216, "696": 216, "exce": [216, 250, 261], "eveyth": 216, "609": [216, 286], "701": [216, 286], "zerodivisionerror": [216, 286], "2022": [216, 217, 218, 272, 286], "abouagour": 217, "rewind": 217, "blank": 217, "transit": 217, "bottleneck": 217, "690": [217, 286], "687": [217, 286], "changer": 217, "inevit": 217, "692": [217, 286], "massiv": 217, "cleanest": 217, "660": 217, "702": 217, "extrud": 217, "661": [217, 286], "594": [217, 286], "597": [217, 286], "591": [217, 286], "598": [217, 286], "equip": 217, "base64": 218, "bin": [218, 253, 256], "timlelin": 218, "though": 218, "condit": [218, 236, 250, 266, 286, 288], "account": [218, 222, 226, 269, 287], "frequent": 218, "estim": [218, 234, 236, 246], "khronosgroup": [218, 253, 265], "setuptool": [220, 286], "hatch": [220, 286], "dwij": [220, 286], "raj": [220, 286], "hari": [220, 286], "francoi": [220, 286], "rheault": [220, 286], "frank": [220, 286], "cerasoli": [220, 286], "johni": [220, 286], "dara": [220, 286], "agour": [220, 286], "rohit": [220, 286], "kharsan": [220, 286], "sara": [220, 286], "hamza": [220, 286], "siddharth": [220, 286], "sreekar": [220, 286], "chigurupati": [220, 286], "tania": [220, 222, 239, 286], "castillo": [220, 222, 286], "zhiwen": [220, 286], "shi": [220, 286], "maharshigor": [220, 286], "sailesh": [220, 286], "sparshg": [220, 286], "thrill": 221, "catch": [221, 232, 255], "regul": 221, "excel": [221, 267], "virtual": 221, "air": 221, "stai": 221, "breakthrough": 221, "dti": [222, 240], "tensor": [222, 225, 231, 234, 237, 240, 248, 251, 271], "hardi": 222, "former": 222, "guidelin": [222, 246], "meticul": 223, "categor": 223, "499": 223, "spinboxui": 223, "rectifi": 223, "devis": 223, "appeal": 223, "signific": [223, 226, 227], "790": [223, 226], "576": [223, 226, 229], "blogpost": [224, 227, 230, 233, 236, 239, 242, 245, 286], "inde": 224, "stencil": 224, "warn": [224, 233, 247, 255, 277, 282, 283, 284, 285], "vtktextureobject": [224, 227], "allocate2d": [224, 227], "create2d": 224, "create2dfromraw": 224, "nor": [224, 250, 288], "anyon": [224, 236], "color_textur": [224, 227], "setdatatyp": [224, 227], "vtk_unsigned_char": [224, 227, 233], "datatyp": [224, 227], "unsign": [224, 227, 265], "char": [224, 227], "setinternalformat": [224, 227], "vtk_rgba": [224, 227], "setformat": [224, 227], "setminificationfilt": [224, 227], "minfilt": [224, 227], "setmagnificationfilt": [224, 227], "magfilt": [224, 227], "contrast": 224, "allocate3d": [224, 227], "wish": [224, 233, 236, 239, 245], "encapsul": 224, "palat": 224, "strict": [224, 253, 259, 265, 288], "expend": 224, "wors": 224, "accomplish": [224, 232, 242], "forward": [224, 227, 232, 283], "kernel": [224, 236, 245, 246], "luck": [224, 233, 239, 245], "791": [225, 228, 235, 237, 239, 240], "3x1": 225, "tensor_slic": [225, 237, 240, 271, 286], "aros": [226, 229, 244], "unexpect": [226, 281], "furthermor": 226, "562": 226, "731": 226, "author": [226, 241, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287], "portion": [226, 263], "dedic": [226, 235, 239, 244, 264], "stakehold": 226, "everybodi": 227, "admit": 227, "framebufferobject": 227, "textureobject": 227, "caught": 227, "setcontext": [227, 230, 233], "fbo": [227, 230, 233, 236, 246], "vtk_rgb": 227, "spot": 227, "assert": [227, 279], "nullptr": 227, "vtkerrormacro": 227, "push": [227, 287], "realis": [227, 230], "offscreen": [227, 242, 245, 270, 286], "uncertainti": [228, 240], "double_con": 228, "dti_uncertainti": 228, "boundingbox": 229, "settextscalemodetonon": 229, "settextscalemodetoprop": 229, "position1": 229, "misalign": 229, "ongo": [229, 235], "803": [229, 238, 245], "occasion": 229, "malfunct": 229, "cardui": [229, 232], "segreg": 229, "540": [229, 232], "numpy_to_vtk_image_data": [229, 232, 271, 285], "supposedli": [230, 233], "stuck": 230, "appar": [230, 233, 236], "createfbo": 230, "getfboindex": [230, 233], "glgenframebuff": 230, "getcontext": 230, "conclud": [230, 238], "gonna": 230, "addon": 230, "783": [230, 233], "wip": [231, 237, 280, 284, 285, 286], "articl": [231, 287], "amidst": 232, "notabl": 232, "dive": [232, 233, 239], "success": [232, 233, 242, 270], "revisit": 232, "restart": [232, 250, 271], "decis": [232, 238], "obstacl": [232, 237], "eagerli": 232, "comeback": 232, "intric": 233, "recal": 233, "numba": 233, "vtkopenglframebufferobject": 233, "setoffscreenrend": 233, "populateframebuff": 233, "suffer": [233, 239, 245], "getnumberofcolorattach": 233, "synchron": 233, "someon": 233, "torment": 233, "proof": 233, "bumpier": 233, "810": [234, 237, 245], "estimate_sigma": 234, "design_matrix": 234, "tensor_predict": 234, "signal": [234, 236], "refin": 234, "bval": 234, "bvec": 234, "readjust": 234, "812": 235, "roadblock": 235, "bumpi": 236, "simplest": 236, "dug": 236, "deep": [236, 261, 265, 269], "vtkwindowtoimagefilt": 236, "windowtoimagefilt": [236, 271], "setinput": 236, "setinputconnect": 236, "getoutputport": 236, "settextur": 236, "kde": [236, 239, 242, 245, 246], "statist": 236, "parametr": [236, 284, 285], "fundament": 236, "infer": 236, "finit": 236, "econometr": 236, "parzen": 236, "rosenblatt": 236, "emanuel": 236, "murrai": 236, "credit": [236, 287], "famou": 236, "margin": [236, 270], "naiv": 236, "bay": 236, "accuraci": 236, "sentenc": 236, "greener": 236, "clarifi": 237, "auto_font_scal": [238, 268], "justifi": 238, "spinbox": 238, "joaodellagli": 239, "graduat": 239, "capston": 239, "polish": [239, 245], "600x600": 239, "modular": 239, "delic": 239, "ruin": 239, "failur": [239, 241], "804": [239, 242], "818": 240, "724": [240, 286], "difficulti": [240, 241], "improp": 241, "814": 241, "769": [241, 286], "redirect": [241, 284], "spoiler": 242, "recap": 242, "sigma": [242, 245, 255], "worth": 242, "window_to_textur": 242, "texture_to_actor": 242, "colormap_to_textur": 242, "flatten": [242, 251], "onscreen": [242, 245], "ponder": 242, "preprocess": 243, "revis": 243, "deeper": [243, 244], "forese": 243, "goe": [243, 268], "delv": 244, "stem": 244, "began": 244, "seamlessli": 244, "treeui": 244, "debat": 245, "tradeoff": 245, "hidden": 245, "prefix": 245, "effectmanag": 245, "onscreen_manag": 245, "kde_actor": 245, "inferno": [245, 248, 249, 251], "laplacian": 245, "hint": 245, "laplac": 245, "sudden": 245, "grayscal": [245, 248], "blur": 245, "honour": 246, "profession": 246, "webgl": 246, "macro": 246, "spatial": 246, "benefit": [246, 270], "devic": 246, "renderbuff": 246, "init": [247, 268, 271], "verbos": [247, 270, 287], "pkg_path": [247, 263], "warnings_origin": 247, "pad_x_neg": 248, "pad_x_po": 248, "pad_y_neg": 248, "pad_y_po": 248, "pad_z_neg": 248, "pad_z_po": 248, "addposit": [248, 271], "getbound": [248, 271], "getcent": [248, 271], "getlength": [248, 271], "getposit": [248, 271], "getvis": [248, 271], "newinst": [248, 271], "shallowcopi": [248, 271], "kwarg": [248, 250, 255, 266, 267], "vtkprop3d": [248, 258, 269], "borrow": 248, "shallow": [248, 265, 269], "elsewher": 248, "remove_from_scen": [248, 250, 271], "picking_tol": 248, "cut": 248, "vtklookupt": [248, 249], "nearest": 248, "neighbor": [248, 258], "toler": [248, 261], "vtkcellpick": 248, "imageactor": [248, 271], "subdivis": 248, "precomput": 248, "butterfli": 248, "surface_actor": 248, "binar": 248, "contour_assembli": 248, "vtkassembli": 248, "tube_sid": 248, "lod_point": 248, "lod_points_s": 248, "spline_subdiv": 248, "replace_strip": 248, "colour": [248, 269], "trilinear": [248, 269], "opaqu": [248, 249, 270], "lodactor": [248, 271], "straighter": 248, "curvier": 248, "approx_polygon_track": 248, "boolean": [248, 268], "cue": 248, "lookup_t": [248, 251], "colorbar": 248, "vtkscalarbaractor": 248, "colorx": 248, "colori": 248, "colorz": 248, "suppli": 248, "4x4": [248, 249], "amplitud": [248, 249], "plain": 248, "n_coeff": [248, 249], "n_vertic": [248, 249], "odfsliceractor": [248, 271], "evec": 248, "scalar_color": 248, "eigenvalu": 248, "eigenvector": [248, 251], "sphere_valu": 248, "color_fa": 248, "tensor_actor": 248, "peaks_dir": [248, 249], "peaks_valu": 248, "dec": [248, 251], "peak_actor": 248, "magnitud": 248, "peakactor": [248, 271], "peak_dir": 248, "dot_siz": 248, "dot_actor": 248, "deprec": [248, 251, 265, 271, 277, 280, 281, 282, 283, 284, 285, 286], "expireddeprecationerror": [248, 265, 271], "coral": 248, "facet": 248, "sector": [248, 264], "repeat_sourc": [248, 271], "cylinder_actor": 248, "rinner": 248, "router": 248, "cresolut": 248, "rresolut": 248, "outer": [248, 268], "perimet": 248, "radial": 248, "disk_actor": 248, "sq_actor": 248, "rect_actor": 248, "tip": [248, 264], "cone_actor": 248, "tprism_actor": 248, "rcoh_actor": 248, "pent_actor": 248, "actor_pentagon": 248, "octagon": [248, 264, 281], "oct_actor": 248, "frustum_actor": 248, "spq_actor": 248, "gs_prog": 248, "bb_type": 248, "cylindrical_x": 248, "cylindrical_i": 248, "billboard_actor": 248, "align_cent": 248, "array_lik": [248, 251, 267], "text3d": [248, 285], "7777777777777777": [248, 258, 268, 269], "necessarili": [248, 250, 251, 270], "pad_x": [248, 258], "pad_i": [248, 258], "tightest": [248, 258], "nb_row": [248, 257, 258, 269], "nb_col": [248, 257, 258, 269], "pic": 248, "vtkimageactor": 248, "interp": 248, "texture_actor": 248, "arr": [248, 252, 257, 265, 266, 269, 270], "viz_video_on_plan": 248, "vtktexturedactor": 248, "edge_opac": 248, "tensor_ellipsoid": [248, 271], "vtkactor": [249, 250, 256, 261, 265, 268, 269, 285], "x_indic": 249, "y_indic": 249, "z_indic": 249, "inclus": 249, "slice_index": 249, "zaxi": 249, "dwi": 249, "rgb_standard": [249, 251], "cross_sect": [249, 271], "display_cross_sect": [249, 271], "global_opac": [249, 269, 271], "high_rang": [249, 271], "is_rang": [249, 271], "low_rang": [249, 271], "max_cent": [249, 271], "min_cent": [249, 271], "add_static_actor": [250, 271], "add_to_scene_at": [250, 271], "add_update_callback": [250, 271], "callabl": [250, 251, 255, 264, 265, 268], "child_anim": [250, 271], "current_timestamp": [250, 271], "get_color": [250, 271], "get_current_valu": [250, 271], "attrib": 250, "get_keyfram": [250, 271], "get_opac": [250, 271], "get_posit": [250, 271], "get_rot": [250, 271], "as_quat": 250, "get_scal": [250, 271], "is_inside_scene_at": [250, 271], "is_interpolat": [250, 271], "interpolat": 250, "safe": 250, "opposit": [250, 269, 270], "parent_anim": [250, 256, 271], "remove_actor": [250, 271], "remove_anim": [250, 270, 271], "remove_from_scene_at": [250, 271], "set_color_keyfram": [250, 271], "timestamp_1": 250, "color_1": 250, "timestamp_2": 250, "color_2": 250, "color_keyfram": 250, "spline_degre": 250, "1x3": 250, "1x1": 250, "pos_fun": 250, "lambda": 250, "set_keyfram": [250, 271], "update_interpol": 250, "reiniti": 250, "key_frames_simpl": 250, "key_frames_bezi": 250, "pos_keyfram": 250, "set_opacity_interpol": [250, 271], "set_opacity_keyfram": [250, 271], "opacity_1": 250, "opacity_2": 250, "set_scale_keyfram": [250, 271], "position_1": 250, "position_2": 250, "set_rotation_as_vector": [250, 271], "set_scale_interpol": [250, 271], "scale_1": 250, "scale_2": 250, "scale_keyfram": 250, "static_actor": [250, 271], "update_dur": [250, 271], "update_motion_path": [250, 271], "vtkcamera": [250, 256], "get_foc": [250, 271], "get_view_up": [250, 271], "set_foc": [250, 271], "focal_1": 250, "focal_po": 250, "set_view_up": [250, 271], "set_view_up_interpol": [250, 271], "set_view_up_keyfram": [250, 271], "view_up_1": 250, "view_up_2": 250, "current_tim": [250, 268, 271], "include_last": 250, "include_first": 250, "tau": 250, "v0": [250, 272, 287], "consecut": [250, 266], "rgb2space": 250, "space2rgb": 250, "has_playback_panel": [250, 271], "max_peel": [250, 270], "show_panel": 250, "peel": [250, 270], "seek_perc": [250, 271], "percent": 250, "lookupt": [251, 271], "na": 251, "nd": 251, "boi": 251, "undirect": 251, "glu": 251, "mobiu": 251, "crosscap": 251, "roman": 251, "steiner": 251, "homeomorph": 251, "pinkal": 251, "1986": 251, "singular": 251, "visit": 251, "brown": 251, "edu": [251, 267], "cad": 251, "rp2color": 251, "cagatai": 251, "demiralp": 251, "matlab": [251, 267], "boys_standard": 251, "maptlotlib": 251, "pyplot": 251, "jet": 251, "accent": 251, "often": [251, 287], "mislead": 251, "bg": 251, "maxim": 251, "perceptu": 251, "distinct": 251, "percept": 251, "farthest": 251, "greedi": 251, "facilit": 251, "rbg": 251, "75862069": 251, "03448276": 251, "89655172": 251, "17241379": 251, "tim": 251, "holi": 251, "mathwork": 251, "matlabcentr": 251, "fileexchang": 251, "29702": 251, "2010": 251, "feb": 251, "2011": 251, "hexadecim": [251, 280, 281], "hexcod": 251, "hash": [251, 263, 287], "ffffff": 251, "denot": 251, "scikit": 251, "stride": [251, 256, 271], "multidimension": [251, 266], "instanti": 251, "__new__": 251, "style": [251, 253, 270, 271, 280, 287], "fortran": 251, "transpos": 251, "c_contigu": 251, "owndata": 251, "writeabl": 251, "flat": [251, 260, 271], "todo": [251, 268], "flatit": 251, "items": [251, 271], "nbyte": [251, 271], "ndim": [251, 271], "contigu": 251, "impli": [251, 288], "ctype": [251, 271], "unchang": 251, "garbag": 251, "alia": [251, 286], "keyword": [251, 255, 267, 280, 286], "0e": 251, "nan": 251, "5e": 251, "323": 251, "int_": 251, "d50": 251, "d55": 251, "d65": 251, "d75": 251, "NOT": [251, 288], "sensit": 251, "grdevic": 251, "convertcolor": 251, "cie": 251, "xyzcolor": 251, "apertur": 251, "srgb": 251, "iec": 251, "61966": 251, "1999": 251, "colorspac": 251, "fig": 252, "dpi": [252, 257, 270, 286], "flip_up_down": 252, "inch": [252, 257, 270], "matlplotlib": 252, "safest": 252, "savefig": 252, "icar": 252, "univ": 252, "lille1": 252, "fr": 252, "drupal": 252, "1141": 252, "tostring_argb": 252, "stabl": 252, "bytes_or_buff": [253, 259, 265], "decod": [253, 259, 265], "__str__": [253, 259, 265], "repr": [253, 259, 265], "getdefaultencod": [253, 259, 265], "total_length": 253, "progressbar": 253, "fsrc": 253, "fdst": 253, "16384": 253, "stored_sha256": 253, "sha": [253, 280], "checksum": 253, "data_s": 253, "91": [253, 278], "mb": 253, "log": [253, 270], "fetchererror": 253, "draco": 253, "fetech": 253, "informationinterdisciplinari": 253, "suffix_typ": 253, "ext": [253, 277, 287], "suffix": 253, "numer": [253, 269], "skybox_0": 253, "skybox_1": 253, "nc": 253, "px": 253, "ny": 253, "negc": 253, "skybox_posx": 253, "skybox_negi": 253, "skybox_right": 253, "skybox_front": 253, "icomoon": 253, "infin": 253, "dmri": 253, "model_nam": 253, "compil": [254, 255, 286], "func": [254, 255, 264], "markup": 254, "doctest": [254, 255, 287], "have_amodul": 254, "have_bmodul": 254, "scope": [254, 287], "report": [255, 270, 286], "nipi": 255, "copyright": [255, 281, 287, 288], "licens": [255, 287], "runtimeerror": 255, "expir": 255, "deprecationwarn": [255, 277], "version_str": 255, "pkg_version_str": 255, "dev192": 255, "g2551b7f4": 255, "__version__": [255, 287], "version_cmp": 255, "0dev": 255, "version_compar": 255, "warn_class": 255, "error_class": 255, "decor": [255, 271, 280], "warning_class": 255, "old_nam": 255, "new_nam": 255, "arg_in_kwarg": 255, "signatur": 255, "thereof": 255, "relax": 255, "astropi": 255, "sig": 255, "apply_morph_vertic": [256, 271], "apply_skin_matrix": [256, 271], "joint_matric": 256, "actor_index": 256, "skinnig": 256, "join_matric": 256, "generate_tmatrix": [256, 271], "transf": 256, "ransform": 256, "get_acc_data": [256, 271], "acc_id": 256, "accessor": 256, "buffer_arrai": 256, "get_anim": [256, 271], "get_buff_arrai": [256, 271], "buff_id": 256, "d_type": 256, "byte_length": 256, "byte_offset": 256, "byte_strid": 256, "out_arr": 256, "get_joint_actor": [256, 271], "with_transform": 256, "get_materi": [256, 271], "mat_id": 256, "get_matrix_from_sampl": [256, 271], "anim_channel": 256, "sampler": 256, "gltflib": 256, "get_morph_data": [256, 271], "mesh_id": 256, "get_sampler_data": [256, 271], "node_id": 256, "transform_typ": 256, "sampler_data": 256, "get_skin_data": [256, 271], "skin_id": 256, "joint_nod": 256, "inv_bind_matrix": 256, "get_textur": [256, 271], "tex_id": 256, "atextur": 256, "inspect_scen": [256, 271], "scene_id": 256, "load_camera": [256, 271], "camera_id": 256, "transform_mat": 256, "load_mesh": [256, 271], "root_anim": 256, "transverse_anim": [256, 271], "bone_id": 256, "parent_bone_deform": 256, "parent_bone_transform": 256, "transverse_bon": [256, 271], "channel_nam": 256, "transverse_channel": [256, 271], "transverse_nod": [256, 271], "nextnode_id": 256, "is_joint": 256, "gltf2": 256, "tcoord": [256, 265, 269], "topologi": 256, "prim": [256, 280], "comp_typ": 256, "accssor_typ": 256, "objecomp_typ": 256, "byteoffset": 256, "interpolate_on": 257, "mipmap_on": 257, "tif": 257, "tiff": 257, "use_pillow": 257, "pillow": [257, 286], "compression_typ": 257, "deflat": 257, "72": [257, 270, 278], "compress": 257, "lzw": 257, "imageio": 257, "vtp": [257, 283], "color_array_nam": 257, "sheet_path": 257, "compute_posit": [258, 271], "_actor": 258, "lie": 258, "compute_s": [258, 271], "get_cells_shap": [258, 271], "glossi": 260, "anisotropic_direct": 260, "scatter": 260, "principled_param": 260, "ambient_level": 260, "ambient_color": 260, "diffuse_level": 260, "diffuse_color": 260, "specular_level": 260, "specular_color": 260, "specular_pow": 260, "gouraud": 260, "ambient": 260, "atomic_numb": [261, 271], "coord": [261, 262, 264, 268], "atom_nam": 261, "residue_seq": 261, "helix": 261, "is_hetatm": 261, "residu": 261, "heteroatom": 261, "total_num_atom": [261, 271], "total_num_bond": [261, 271], "eg": 261, "coval": 261, "symbol": 261, "atom_color": [261, 271], "atomicnumb": 261, "element_nam": [261, 271], "insensit": 261, "atomic_radiu": [261, 271], "radius_typ": 261, "\u00e5": 261, "atomic_symbol": [261, 271], "atomic_num": 261, "x_coord": 261, "y_coord": 261, "z_coord": 261, "atom1_index": 261, "atom2_index": 261, "bond_ord": 261, "establish": 261, "errat": 261, "atom_index": 261, "belong": [261, 268], "whom": 261, "atom_num": 261, "atom_coordin": 261, "bond_index": 261, "molecule1": 261, "molecule2": 261, "valenc": 261, "hybrid": 261, "aromat": 261, "colormod": 261, "molecule_actor": 261, "corei": 261, "paul": 261, "amino": 261, "acid": 261, "peptid": 261, "instrument": 261, "1953": 261, "621": [261, 286], "627": [261, 286], "atom_scale_factor": 261, "bond_thick": 261, "multiple_bond": 261, "dark": 261, "turner": 261, "chem": 261, "educ": 261, "1971": 261, "407": [261, 280, 284], "rubbon": 261, "anatomi": 261, "taxonomi": 261, "1981": 261, "167": [261, 280], "339": [261, 283], "bbox_actor": 261, "disp_xi": 262, "sc": 262, "pickable_off": [262, 271], "pickable_on": [262, 271], "selectable_on": [262, 271], "update_selection_typ": [262, 271], "commit_hash": 263, "substitut": [263, 265, 288], "archive_subst_hash": 263, "truncat": 263, "hash_from": 263, "hash_str": 263, "func_arg": 264, "superquadr": [264, 271, 280, 281, 283], "big_vertic": 264, "big_triangl": 264, "big_color": 264, "have_tiled_vert": 264, "big_cent": 264, "symmetric642": 264, "symmetric724": 264, "repulsion724": 264, "repulsion200": 264, "sphere_nam": 264, "pyramid_vert": 264, "icosahedron": [264, 280], "icosahedron_vertic": 264, "icosahedron_mesh": 264, "36": [264, 269, 278], "glsl_code": 265, "shader_fil": 265, "glslang": 265, "reimplement": 265, "shader_typ": 265, "valuepass": 265, "keep_default": 265, "replace_first": 265, "replace_al": 265, "shaders_in_vtk": 265, "prim_id": 265, "tag": [265, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287], "caller": 265, "updateshaderev": 265, "vtkcommand": 265, "nightli": 265, "classvtkobject": 265, "func_call1": 265, "func_call2": 265, "removeobserv": 265, "test_valu": 265, "callbacklow": 265, "callbackhigh": 265, "999": 265, "callbackmean": 265, "id_mean": 265, "renderwindow": [265, 270, 271], "overrid": 265, "attr_nam": 265, "whithout_iren_start": 266, "streamclient": 266, "vtkinteractor": 266, "use_asyncio": 266, "showmmanag": 266, "stream_client": 266, "imagemanag": 266, "render_aft": 266, "dequeu": [266, 271], "cqueue_event_id": 266, "mouse_id": 266, "left_btn_press": 266, "left_btn_releas": 266, "middle_btn_press": 266, "middle_btn_releas": 266, "right_btn_press": 266, "right_btn_releas": 266, "cqueue_index_info": 266, "shift": 266, "user_timestamp": 266, "cqueue": 266, "index_info": 266, "unord": 266, "leftbuttonreleaseev": 266, "middlebuttonpressev": 266, "middlebuttonreleaseev": 266, "rightbuttonpressev": 266, "rightbuttonreleaseev": 266, "rtc_server": 266, "image_buffer_manag": 266, "provides_mjpeg": 266, "broadcast": 266, "videostream": 266, "webrtcserv": 266, "recv": [266, 271], "videofram": 266, "queue_head_tail_buff": 266, "queue_buff": 266, "provides_webrtc": 266, "ms_jpeg": 266, "run_app": 266, "queue_head_tail_buffer_nam": 266, "queue_buffer_nam": 266, "avoid_unlink_shared_mem": 266, "image_buffers_nam": 266, "get_start_end": [266, 271], "enqueu": [266, 271], "set_head_tail": [266, 271], "is_unlock": [266, 271], "unlock": [266, 271], "setinterv": 266, "interval_tim": 266, "stackoverflow": 266, "3393612": 266, "queue_siz": 266, "ifram": 266, "return_ifram": [266, 271], "div": 266, "run_command": [266, 271], "ai": 267, "aj": 267, "ak": 267, "sxyz": 267, "christoph": 267, "gohlk": 267, "lfd": 267, "uci": 267, "yaw": [267, 270, 271], "syxz": 267, "allclos": 267, "34786452": 267, "383436184": 267, "_axes2tupl": 267, "inclin": 267, "imagin": 267, "south": 267, "north": 267, "west": 267, "east": 267, "posterior": 267, "anterior": 267, "zenith": 267, "equival": [267, 269], "nomenclatur": 267, "cartes": 267, "spherical_coordinate_system": 267, "mathworld": 267, "wolfram": 267, "sphericalcoordin": 267, "hypotenus": 267, "q": 267, "deliber": 267, "sph2cart": 267, "unusu": 267, "trivial": 267, "0lethetamathrm": 267, "lepi": 267, "pilephimathrm": 267, "tran": 267, "quat": 267, "rotation_mat": 267, "259": [267, 281], "966": 267, "866": 267, "scale_mat": 267, "overal": 268, "left_button_drag": [268, 271], "_panel2d_object": 268, "left_button_press": [268, 271], "panel2d_object": 268, "window_size_chang": 268, "remove_el": [268, 271], "update_border_coord": [268, 271], "update_el": [268, 271], "content_panel": [268, 271], "title_bold": [268, 271], "title_color": [268, 271], "title_font_s": [268, 271], "title_ital": [268, 271], "active_color": [268, 271], "inactive_color": 268, "startup_tab_id": 268, "inact": 268, "uncollaps": 268, "startup": 268, "tab_idx": 268, "collapse_tab_ui": [268, 271], "_tab_comp": 268, "_sub_compon": 268, "select_tab_callback": [268, 271], "update_tab": [268, 271], "imagedata": [268, 271], "vtktexturedactor2d": 268, "rotation_spe": 268, "anticlockwise_rotation_x": [268, 271], "anticlockwise_rotation_i": [268, 271], "clockwise_rotation_x": [268, 271], "clockwise_rotation_i": [268, 271], "key_press_callback": [268, 271], "istyl": 268, "_what": 268, "left_click_callback2": [268, 271], "left_release_callback": [268, 271], "left_release_callback2": [268, 271], "mouse_move_callback": [268, 271], "mouse_move_callback2": [268, 271], "on_left_mouse_button_releas": [268, 271], "on_left_mouse_double_click": [268, 271], "on_left_mouse_button_drag": [268, 271], "on_right_mouse_button_press": [268, 271], "on_right_mouse_button_releas": [268, 271], "on_right_mouse_button_click": [268, 271], "on_right_mouse_double_click": [268, 271], "on_right_mouse_button_drag": [268, 271], "on_middle_mouse_button_press": [268, 271], "on_middle_mouse_button_releas": [268, 271], "on_middle_mouse_button_click": [268, 271], "on_middle_mouse_double_click": [268, 271], "on_middle_mouse_button_drag": [268, 271], "on_key_press": [268, 271], "add_callback": [268, 271], "event_typ": 268, "vtkprop": 268, "handle_ev": [268, 271], "left_button_click_callback": [268, 271], "left_button_release_callback": [268, 271], "middle_button_click_callback": [268, 271], "middle_button_release_callback": [268, 271], "right_button_click_callback": [268, 271], "right_button_release_callback": [268, 271], "dynamic_bbox": 268, "italicis": 268, "cal_size_from_messag": [268, 271], "famili": 268, "update_align": [268, 271], "update_bounding_box": [268, 271], "overlai": 268, "iconnam": 268, "next_icon_id": [268, 271], "cycl": [268, 272], "set_icon": [268, 271], "set_icon_by_nam": [268, 271], "icon_nam": 268, "cursor": 268, "beforehand": 268, "window_left": [268, 271], "window_right": [268, 271], "caret_po": [268, 271], "caret": 268, "add_charact": [268, 271], "edit_mod": [268, 271], "handle_charact": [268, 271], "key_char": 268, "key_press": [268, 271], "_textbox_object": 268, "textboxself": 268, "custominteractorstyl": [268, 270], "left_move_left": [268, 271], "ward": 268, "left_move_right": [268, 271], "move_caret_left": [268, 271], "move_caret_right": [268, 271], "move_left": [268, 271], "move_right": [268, 271], "remove_charact": [268, 271], "render_text": [268, 271], "show_caret": 268, "right_move_left": [268, 271], "right_move_right": [268, 271], "set_messag": [268, 271], "showable_text": [268, 271], "chop": 268, "width_set_text": [268, 271], "newlin": 268, "slide": 268, "default_color": [268, 271], "unpress": 268, "bottom_y_posit": [268, 271], "format_text": [268, 271], "handle_move_callback": [268, 271], "_vtkactor": 268, "_slider": 268, "handle_release_callback": [268, 271], "left_x_posit": [268, 271], "right_x_posit": [268, 271], "top_y_posit": [268, 271], "track_click_callback": [268, 271], "bottom_disk_ratio": [268, 271], "bottom_disk_valu": [268, 271], "coord_to_ratio": [268, 271], "disk_numb": 268, "left_disk_ratio": [268, 271], "left_disk_valu": [268, 271], "ratio_to_coord": [268, 271], "ratio_to_valu": [268, 271], "right_disk_ratio": [268, 271], "right_disk_valu": [268, 271], "top_disk_ratio": [268, 271], "top_disk_valu": [268, 271], "value_to_ratio": [268, 271], "slider_inner_radiu": 268, "slider_outer_radiu": 268, "handle_inner_radiu": 268, "handle_outer_radiu": 268, "mid_track_radiu": [268, 271], "move_handl": [268, 271], "click_posit": 268, "range_slid": [268, 271], "value_slid": [268, 271], "range_slider_handle_move_callback": [268, 271], "_element": 268, "adjac": 268, "selection_text_color": 268, "selection_bg_color": 268, "menu_text_color": 268, "selected_color": 268, "unselected_color": 268, "scroll_bar_active_color": 268, "scroll_bar_inactive_color": 268, "menu_opac": 268, "reverse_scrol": 268, "line_spac": 268, "menu": 268, "selection_box": [268, 271], "drop_down_button": [268, 271, 286], "drop_down_menu": [268, 271], "unselect": 268, "append_item": [268, 271], "menu_toggle_callback": [268, 271], "_combobox": 268, "select_option_callback": [268, 271], "listboxitem": 268, "selected_text_index": [268, 271], "text_color": 268, "background_opac": 268, "castabl": 268, "clear_select": [268, 271], "down_button_callback": [268, 271], "_list_box": 268, "scroll_click_callback": [268, 271], "_rect_obj": 268, "scroll_drag_callback": [268, 271], "rect_obj": 268, "scroll_release_callback": [268, 271], "range_select": 268, "multi_select": 268, "up_button_callback": [268, 271], "update_scrollbar": [268, 271], "list_box": 268, "left_button_click": [268, 271], "_list_box_item": 268, "directory_path": 268, "extension1": 268, "extension2": 268, "directory_click_callback": [268, 271], "get_all_file_nam": [268, 271], "all_file_nam": 268, "get_directory_nam": [268, 271], "current_directori": 268, "directory_nam": 268, "get_file_nam": [268, 271], "scroll_callback": [268, 271], "_filemenu_item": 268, "slot": 268, "set_slot_color": [268, 271], "cal_bounding_box": [268, 271], "clamp_posit": [268, 271], "new_cent": 268, "is_select": [268, 271], "left_button_releas": [268, 271], "selection_chang": [268, 271], "update_shape_posit": [268, 271], "center_posit": 268, "is_dragg": 268, "draggbl": 268, "cal_min_boundary_dist": [268, 271], "clamp_mouse_posit": [268, 271], "mouse_posit": 268, "handle_mouse_click": [268, 271], "handle_mouse_drag": [268, 271], "resize_shap": [268, 271], "show_rotation_slid": [268, 271], "update_button_icon": [268, 271], "update_shape_select": [268, 271], "selected_shap": 268, "current_time_str": [268, 271], "hh": 268, "mm": 268, "ss": [268, 271], "final_tim": [268, 271], "play_onc": [268, 271], "body_color": 268, "maintain_aspect": 268, "title_box": [268, 271], "body_box": [268, 271], "wrap_width": 268, "overflow_postfix": 268, "postfix": 268, "mid_ptr": 268, "vtk_object": 269, "inp": 269, "vtkalgorithmoutput": 269, "poly_mapp": 269, "polydatamapp": [269, 271], "poly_data": 269, "vtk_point": 269, "vtkpoint": 269, "vtk_color": 269, "vtkdataarrai": 269, "unsigned_char": 269, "rgb_arrai": 269, "is_coord": 269, "vtk_cell": 269, "vtkcellarrai": 269, "vtk_imag": 269, "input_arrai": 269, "1d": 269, "color_is_scalar": 269, "line_polydata": 269, "nx3": 269, "nx2": 269, "field_nam": 269, "as_vtk": 269, "field_data": 269, "array_typ": 269, "vtkarraytyp": 269, "primitives_count": 269, "array_nam": 269, "vtkpolydatamapp": 269, "prim_count": 269, "mx3": 269, "nx4": 269, "cull": 269, "backfac": 269, "active_scalar": 269, "transformed_act": 269, "aff": 269, "transformed_pt": 269, "routin": 269, "contrari": 269, "largest": 269, "cell_width": 269, "cell_height": 269, "vtkobject": 269, "norm_arrai": 269, "veric": 269, "ccw": 269, "new_triangl": 269, "corrected_triangl": 269, "as_vtk_typ": 269, "all_arrai": 269, "pts_len": 269, "polici": 269, "predefin": 269, "vtkopenglrender": 270, "vtkrender": 270, "setviewup": 270, "camera_direct": [270, 271], "viewplanenorm": 270, "obliqu": 270, "dolli": [270, 271], "fxaa_off": [270, 271], "fxaa_on": [270, 271], "get_camera": [270, 271], "last_render_tim": [270, 271], "proj_typ": 270, "reset_camera_tight": [270, 271], "margin_factor": 270, "tightli": 270, "rm_all": [270, 271], "gamma_correct": 270, "rescal": 270, "png_magnifi": 270, "interactor_styl": 270, "occlusion_ratio": 270, "magnifi": 270, "vtkinteractorstyl": 270, "trackbal": 270, "vtkinteractorstyletrackballcamera": 270, "vtkinteractorstyleimag": 270, "sequenti": 270, "crystaley": 270, "anaglyph": 270, "glass": 270, "interlac": 270, "checkerboard": 270, "aliaz": 270, "ration": 270, "vtkrenderwindowinteractor": 270, "vtkrenderwindow": 270, "iren_callback": 270, "acquir": 270, "play_ev": [270, 271], "play_events_from_fil": [270, 271], "record_ev": [270, 271], "temporari": 270, "record_events_to_fil": [270, 271], "release_lock": [270, 271], "save_screenshot": [270, 271], "200x200": 270, "400x400": 270, "desired_fp": 270, "cam_po": 270, "cam_foc": 270, "cam_view": 270, "path_numb": 270, "n_frame": 270, "az_ang": 270, "screen_clip": 270, "az_angl": 270, "win": 270, "render_window": 270, "stealth": 270, "im": 270, "find_object": 270, "strel": 270, "colors_found": 270, "reportsnapshot": 270, "renwin": 270, "stereo_typ": 270, "gl_state": 270, "vtkopenglst": 270, "redefin": 270, "enable_warn": 271, "disable_warn": 271, "peak_slic": [271, 277, 286], "triangularpr": 271, "pentagonalpr": 271, "octagonalpr": 271, "get_values_from_keyfram": 271, "lerp": 271, "euclidean_dist": 271, "color_interpol": 271, "cc": 271, "boys2rgb": 271, "orient2rgb": 271, "get_cmap": 271, "hex_to_rgb": 271, "rgb2hsv": 271, "hsv2rgb": 271, "xyz_from_rgb": 271, "rgb_from_xyz": 271, "xyz2rgb": 271, "rgb2xyz": 271, "get_xyz_coord": 271, "xyz2lab": 271, "lab2xyz": 271, "rgb2lab": 271, "lab2rgb": 271, "matplotlib_figure_to_numpi": 271, "data_dir": 271, "update_progressbar": [271, 286], "copyfileobj_withprogress": 271, "check_sha": 271, "fetch_data": 271, "list_gltf_sample_model": 271, "skip_r": 271, "doctest_skip_pars": 271, "argsdeprecationwarn": 271, "_leading_whit": 271, "cmp_pkg_version": 271, "is_bad_vers": 271, "deprecate_with_vers": 271, "deprecated_param": 271, "write_scen": 271, "write_nod": 271, "write_mesh": 271, "write_camera": 271, "get_prim": 271, "write_materi": 271, "write_accessor": 271, "write_bufferview": 271, "write_buff": 271, "load_text": 271, "horizontallayout": 271, "verticallayout": 271, "xlayout": 271, "ylayout": 271, "zlayout": 271, "idtypearrai": 271, "floatarrai": 271, "doublearrai": 271, "stringarrai": 271, "unsignedchararrai": 271, "algorithmoutput": 271, "renderwindowinteractor": 271, "interactoreventrecord": 271, "interactorstyl": 271, "proppick": 271, "pointpick": 271, "cellpick": 271, "worldpointpick": 271, "hardwareselector": 271, "polydatamapper2d": 271, "assembli": 271, "datasetmapp": 271, "texturedactor2d": 271, "textactor": 271, "textactor3d": 271, "property2d": 271, "vectortext": 271, "scalarbaractor": 271, "openglrender": 271, "interactorstyleimag": 271, "interactorstyletrackballactor": 271, "interactorstyletrackballcamera": 271, "interactorstyleus": 271, "cleanpolydata": 271, "polydatanorm": 271, "contourfilt": 271, "tubefilt": 271, "glyph3d": 271, "trianglefilt": 271, "splinefilt": 271, "transformpolydatafilt": 271, "renderlargeimag": 271, "loopsubdivisionfilt": 271, "butterflysubdivisionfilt": 271, "outlinefilt": 271, "linearextrusionfilt": 271, "texturemaptoplan": 271, "spheresourc": 271, "cylindersourc": 271, "arrowsourc": 271, "conesourc": 271, "disksourc": 271, "texturedspheresourc": 271, "regularpolygonsourc": 271, "dataobject": 271, "cellarrai": 271, "polyvertex": 271, "unstructuredgrid": 271, "datasetattribut": 271, "matrix4x4": 271, "matrix3x3": 271, "imageflip": 271, "imagereslic": 271, "imagemaptocolor": 271, "imagereader2factori": 271, "pngreader": 271, "bmpreader": 271, "jpegread": 271, "tiffread": 271, "plyread": 271, "stlreader": 271, "objread": 271, "mniobjectread": 271, "polydataread": 271, "xmlpolydataread": 271, "pngwriter": 271, "bmpwriter": 271, "jpegwrit": 271, "tiffwrit": 271, "plywrit": 271, "stlwriter": 271, "mniobjectwrit": 271, "polydatawrit": 271, "xmlpolydatawrit": 271, "simplebondperceiv": 271, "periodict": 271, "openglmoleculemapp": 271, "vtk_version": 271, "manifest_standard": [271, 285], "ptabl": 271, "add_bond": 271, "get_atomic_numb": 271, "set_atomic_numb": 271, "get_atomic_posit": 271, "set_atomic_posit": 271, "get_bond_ord": 271, "set_bond_ord": 271, "get_all_atomic_numb": 271, "get_all_bond_ord": 271, "get_all_atomic_posit": 271, "deep_copy_molecul": 271, "compute_bond": 271, "sphere_cpk": 271, "ball_stick": 271, "bounding_box": 271, "pkg_info": 271, "pkg_commit_hash": 271, "faces_from_sphere_vertic": 271, "repeat_primitive_funct": 271, "prim_squar": 271, "prim_superquadr": 271, "prim_icosahedron": 271, "prim_rhombicuboctahedron": 271, "prim_star": 271, "prim_triangularpr": 271, "prim_pentagonalpr": 271, "prim_octagonalpr": 271, "prim_frustum": 271, "prim_cylind": 271, "prim_arrow": 271, "prim_con": 271, "shaders_dir": 271, "load_shad": 271, "replace_shader_in_actor": 271, "async_app": 271, "callback_stream_cli": 271, "interaction_callback": 271, "_cqueue_event_id": 271, "_cqueue_index_info": 271, "_cqueue": 271, "set_weel": 271, "set_mous": 271, "set_mouse_click": 271, "get_app": 271, "rtcserver": 271, "genericmultidimensionalbuff": 271, "rawarraymultidimensionalbuff": 271, "sharedmemmultidimensionalbuff": 271, "genericcircularqueu": 271, "arraycircularqueu": 271, "sharedmemcircularqueu": 271, "intervaltimerthread": 271, "intervaltim": 271, "remove_shm_from_resource_track": 271, "check_port_is_avail": 271, "_tuple2ax": 271, "euler_matrix": 271, "sphere2cart": 271, "cart2spher": 271, "apply_transform": 271, "transform_from_matrix": 271, "textbox2d": [271, 283, 284, 286], "linedoubleslider2d": [271, 280], "clip_overflow": 271, "check_overflow": 271, "cal_bounding_box_2d": 271, "rotate_2d": 271, "set_input": 271, "numpy_to_vtk_point": 271, "numpy_to_vtk_color": 271, "numpy_to_vtk_cel": [271, 285], "map_coordinates_3d_4d": 271, "lines_to_vtk_polydata": 271, "get_polydata_lin": 271, "get_polydata_tcoord": 271, "get_polydata_norm": 271, "get_polydata_tang": 271, "get_polydata_field": 271, "add_polydata_numeric_field": 271, "set_polydata_primitives_count": 271, "get_polydata_primitives_count": 271, "primitives_count_to_actor": 271, "primitives_count_from_actor": 271, "set_polydata_norm": 271, "set_polydata_tang": 271, "set_polydata_tcoord": 271, "update_polydata_norm": 271, "apply_affine_to_actor": 271, "apply_affin": 271, "asbyt": 271, "vtk_matrix_to_numpi": 271, "numpy_to_vtk_matrix": 271, "get_bounding_box_s": 271, "get_grid_cells_posit": 271, "shallow_copi": 271, "rgb_to_vtk": 271, "normalize_v3": 271, "triangle_ord": 271, "change_vertices_ord": 271, "tangents_from_actor": 271, "array_from_actor": 271, "normals_to_actor": 271, "get_bound": 271, "color_check": 271, "analyze_scen": 271, "analyze_snapshot": 271, "enable_stereo": 271, "gl_get_current_st": 271, "gl_enable_blend": 271, "gl_set_additive_blending_white_background": 271, "release_context": 271, "186": [277, 280], "github_tool": [277, 287], "61": [277, 283], "nf": [277, 280, 281], "filterwarn": 277, "codaci": 277, "rank": 277, "47": [277, 285], "tensorsliceractor": 277, "enforc": 277, "enh": [277, 283, 285], "exercis": 277, "peaksliceractor": 277, "43": 277, "peaks_slic": [277, 283], "elementwis": 277, "crash": 277, "numpy_vtk": 277, "badg": 277, "honor": 277, "miniconda": [277, 279], "voxsz": 277, "vtk6": 277, "sphinx_galleri": 277, "master": [277, 280, 283, 287], "reorient": 277, "sierra": 277, "ananoda": 277, "164": [278, 280, 282], "github_stat": [278, 279, 280, 281, 282, 283, 284, 285, 286], "53": 278, "88": 278, "69": 278, "83": 278, "87": 278, "bot": 278, "67": 278, "62": 278, "x64": 278, "84": 278, "test_order_transpar": 278, "63": 278, "65": 278, "169": [279, 281], "109": 279, "112": 279, "110": 279, "107": 279, "106": 279, "104": [279, 280], "105": 279, "103": 279, "101": 279, "102": 279, "npt_assert_equ": 279, "97": 279, "92": 279, "96": 279, "153": 280, "227": 280, "210": 280, "225": 280, "223": 280, "218": 280, "220": 280, "213": [280, 286], "215": 280, "207": 280, "206": 280, "203": 280, "namanb009": 280, "windowtitlefix": 280, "204": 280, "190": 280, "201": 280, "181": 280, "192": 280, "189": 280, "194": 280, "182": 280, "177": 280, "191": 280, "173": 280, "165": 280, "154": 280, "sep": 280, "132": 280, "163": 280, "spell": 280, "157": 280, "145": 280, "144": 280, "restructuredtext": 280, "143": 280, "139": 280, "136": 280, "134": 280, "129": 280, "131": 280, "126": 280, "124": 280, "python2": 280, "pickl": 280, "events_count": 280, "serial": 280, "115": 280, "135": 280, "137": 280, "152": 280, "219": 280, "occur": 280, "217": 280, "179": 280, "212": 280, "133": 280, "214": 280, "211": [280, 284], "187": 280, "te": 280, "209": 280, "202": 280, "199": 280, "175": 280, "185": 280, "170": 280, "rhombi": 280, "171": 280, "156": 280, "155": 280, "122": 280, "178": 280, "188": 280, "166": [280, 286], "184": 280, "183": 280, "star2d": 280, "tests_primit": 280, "54": [280, 284], "174": 280, "108": 280, "172": 280, "151": 280, "162": 280, "168": 280, "158": 280, "71": 280, "expans": 280, "161": 280, "121": 280, "sha2": 280, "sha3": 280, "147": 280, "146": 280, "142": 280, "markdown": 280, "81": [280, 285], "117": 280, "123": 280, "119": 280, "266": 281, "241": 281, "265": 281, "262": 281, "263": 281, "127": 281, "233": 281, "261": 281, "249": 281, "258": 281, "ssl": 281, "certif": 281, "245": 281, "244": 281, "238": 281, "237": 281, "264": 281, "247": 281, "138": 281, "51": 281, "253": 281, "hang": 281, "254": 281, "251": 281, "226": 281, "197": 281, "216": 281, "utiltii": 281, "288": 282, "292": 282, "289": 282, "284": 282, "208": 282, "283": 282, "282": 282, "279": 282, "solarsystem": 282, "273": 282, "276": 282, "19th": 282, "juli": 282, "260": 282, "270": 282, "236": 282, "205": 282, "269": 282, "242": 282, "271": 282, "280": 282, "278": 282, "277": 282, "388": 283, "389": 283, "asymmetr": 283, "370": 283, "385": 283, "387": 283, "382": 283, "383": 283, "376": 283, "phenomena": 283, "374": 283, "373": 283, "368": 283, "343": 283, "353": 283, "346": 283, "351": 283, "modelsuzann": 283, "348": 283, "341": 283, "342": 283, "340": 283, "oauth": 283, "token": 283, "header": 283, "337": 283, "clip_overflow_text": 283, "336": 283, "334": 283, "332": 283, "328": 283, "329": 283, "319": 283, "311": 283, "python35": 283, "307": 283, "304": 283, "306": 283, "302": 283, "303": 283, "reader": 283, "bf": 283, "295": 283, "364": 283, "379": [283, 286], "361": 283, "352": 283, "372": 283, "369": 283, "363": 283, "366": 283, "357": 283, "vulner": [283, 284], "rce": [283, 284], "359": 283, "312": 283, "310": 283, "335": 283, "_opac": 283, "345": 283, "338": 283, "315": 283, "authent": 283, "308": 283, "309": 283, "333": 283, "32bit": 283, "239": 283, "318": 283, "313": 283, "274": 283, "297": 283, "298": 283, "466": 284, "bib": 284, "464": 284, "dan": 284, "459": 284, "430": 284, "456": 284, "455": 284, "bibtex": 284, "454": 284, "451": 284, "447": 284, "438": 284, "420": 284, "stochast": 284, "444": 284, "440": [284, 287], "356": 284, "436": 284, "434": 284, "426": 284, "vtkeventid": 284, "394": 284, "test_util": 284, "415": 284, "sk": 284, "orcid": 284, "413": 284, "nanohub": 284, "412": 284, "386": 284, "joss": 284, "371": 284, "408": 284, "parenthesi": 284, "406": 284, "unus": 284, "405": 284, "399": 284, "317": 284, "355": 284, "393": 284, "396": 284, "421": 284, "416": 284, "445": 284, "410": 284, "bulletlist": 284, "429": 284, "453": 284, "439": 284, "403": 284, "411": 284, "417": 284, "pep": [284, 287], "414": 284, "409": 284, "375": 284, "blacklist": 284, "danger": 284, "395": 284, "358": 284, "523": 285, "536": 285, "vtk_9_plu": 285, "535": 285, "532": 285, "503": 285, "534": 285, "update_user_matrix": 285, "509": 285, "507": 285, "524": 285, "521": 285, "518": 285, "519": 285, "515": 285, "516": 285, "514": 285, "513": 285, "mesa": [285, 286], "506": 285, "504": 285, "470": 285, "496": 285, "498": 285, "488": 285, "449": 285, "python3": [285, 287], "433": 285, "526": 285, "vtktextactor3d": 285, "431": 285, "457": 285, "468": 285, "467": 285, "505": 285, "512": 285, "flock": 285, "boid": 285, "511": 285, "404": 285, "469": 285, "324": 285, "1835": 286, "782": 286, "codespel": 286, "587": 286, "781": 286, "779": 286, "741": 286, "unneed": 286, "778": 286, "777": 286, "771": 286, "770": 286, "766": 286, "767": 286, "677": 286, "765": 286, "764": 286, "748": 286, "ex": 286, "754": 286, "760": 286, "fdata": 286, "761": 286, "762": 286, "get_data": 286, "756": 286, "747": 286, "744": 286, "710": 286, "734": 286, "736": 286, "727": 286, "478": 286, "502": 286, "739": 286, "tput": 286, "737": 286, "726": 286, "735": 286, "precommit": 286, "728": 286, "730": 286, "pyproject": 286, "toml": 286, "729": 286, "725": 286, "721": 286, "723": 286, "722": 286, "719": 286, "718": 286, "717": 286, "712": 286, "segfault": 286, "706": 286, "seg": 286, "697": 286, "693": 286, "699": 286, "698": 286, "667": 286, "686": 286, "684": 286, "691": 286, "683": 286, "682": 286, "681": 286, "672": 286, "675": 286, "676": 286, "671": 286, "670": 286, "666": 286, "669": 286, "620": 286, "663": 286, "656": 286, "662": 286, "654": 286, "659": 286, "655": 286, "648": 286, "649": 286, "646": 286, "641": 286, "644": 286, "638": 286, "639": 286, "gha": 286, "intervent": 286, "637": 286, "632": 286, "bugfix": [286, 287], "610": 286, "633": 286, "624": 286, "625": 286, "622": 286, "619": 286, "611": 286, "614": 286, "615": 286, "607": 286, "606": 286, "608": 286, "605": 286, "week1": 286, "501": 286, "off_focu": 286, "601": 286, "593": 286, "arraysequ": 286, "581": 286, "595": 286, "589": 286, "586": 286, "590": 286, "584": 286, "582": 286, "580": 286, "574": 286, "561": 286, "577": 286, "570": 286, "569": 286, "572": 286, "571": 286, "567": 286, "theme": 286, "566": 286, "footer": 286, "551": 286, "ac": 286, "565": 286, "563": 286, "564": 286, "557": 286, "544": 286, "542": 286, "nearli": 286, "537": 286, "713": 286, "pydata": 286, "776": 286, "732": 286, "772": 286, "82": 286, "354": 286, "grammat": 286, "708": 286, "745": 286, "743": 286, "709": 286, "463": 286, "738": 286, "664": 286, "642": 286, "316": 286, "714": 286, "upsidedown": 286, "716": 286, "603": 286, "705": 286, "stress": 286, "435": 286, "rtmp": 286, "704": 286, "419": 286, "htc": 286, "vive": 286, "657": 286, "618": 286, "418": 286, "553": 286, "588": 286, "596": 286, "585": 286, "vtkbillboardtextactor": 286, "546": 286, "528": 286, "529": 286, "530": 286, "test_materi": 286, "554": 286, "573": 286, "541": 286, "548": 286, "549": 286, "helica": 286, "greatli": 287, "appreci": 287, "troubleshoot": 287, "reproduc": [287, 288], "whoever": 287, "pep8": 287, "narrow": 287, "volunt": 287, "your_name_her": 287, "remot": 287, "checkout": 287, "unittest": 287, "flake8": 287, "virtualenv": 287, "pypi": 287, "outstand": 287, "shortlog": 287, "nse": 287, "mailmap": 287, "release0": 287, "release_not": 287, "autom": 287, "cd": 287, "histori": 287, "uncommit": 287, "skim": 287, "vx": 287, "forget": 287, "strongli": 287, "editor": 287, "incident": [287, 288], "resum": 287, "g58ad5f7": 287, "58ad5f7": 287, "letter": 287, "twine": 287, "upload": 287, "extran": 287, "dfx": 287, "sdist": 287, "bdist_wheel": 287, "substanti": 287, "trunk": 287, "maint": 287, "upstream": 287, "rw": 287, "strategi": 287, "spuriou": 287, "fear": 287, "trembl": 287, "reserv": 288, "redistribut": 288, "disclaim": 288, "neither": 288, "endors": 288, "permiss": 288, "BY": 288, "THE": 288, "holder": 288, "AND": 288, "AS": 288, "OR": 288, "warranti": 288, "BUT": 288, "TO": 288, "merchant": 288, "FOR": 288, "NO": 288, "BE": 288, "liabl": 288, "indirect": 288, "exemplari": 288, "consequenti": 288, "damag": 288, "procur": 288, "servic": 288, "loss": 288, "profit": 288, "interrupt": 288, "ON": 288, "liabil": 288, "contract": 288, "tort": 288, "neglig": 288, "IF": 288, "SUCH": 288}, "objects": {"": [[247, 0, 0, "-", "fury"]], "fury": [[248, 0, 0, "-", "actor"], [249, 0, 0, "-", "actors"], [250, 0, 0, "-", "animation"], [251, 0, 0, "-", "colormap"], [252, 0, 0, "-", "convert"], [253, 0, 0, "-", "data"], [254, 0, 0, "-", "decorators"], [255, 0, 0, "-", "deprecator"], [247, 5, 1, "", "disable_warnings"], [247, 5, 1, "", "enable_warnings"], [247, 5, 1, "", "get_info"], [256, 0, 0, "-", "gltf"], [257, 0, 0, "-", "io"], [258, 0, 0, "-", "layout"], [259, 0, 0, "-", "lib"], [260, 0, 0, "-", "material"], [261, 0, 0, "-", "molecular"], [262, 0, 0, "-", "pick"], [263, 0, 0, "-", "pkg_info"], [264, 0, 0, "-", "primitive"], [265, 0, 0, "-", "shaders"], [266, 0, 0, "-", "stream"], [267, 0, 0, "-", "transform"], [268, 0, 0, "-", "ui"], [269, 0, 0, "-", "utils"], [270, 0, 0, "-", "window"]], "fury.actor": [[248, 1, 1, "", "Container"], [248, 5, 1, "", "arrow"], [248, 5, 1, "", "axes"], [248, 5, 1, "", "billboard"], [248, 5, 1, "", "box"], [248, 5, 1, "", "cone"], [248, 5, 1, "", "contour_from_label"], [248, 5, 1, "", "contour_from_roi"], [248, 5, 1, "", "cube"], [248, 5, 1, "", "cylinder"], [248, 5, 1, "", "disk"], [248, 5, 1, "", "dot"], [248, 5, 1, "", "dots"], [248, 5, 1, "", "ellipsoid"], [248, 5, 1, "", "figure"], [248, 5, 1, "", "frustum"], [248, 5, 1, "", "grid"], [248, 5, 1, "", "label"], [248, 5, 1, "", "line"], [248, 5, 1, "", "markers"], [248, 5, 1, "", "octagonalprism"], [248, 5, 1, "", "odf_slicer"], [248, 5, 1, "", "peak"], [248, 5, 1, "", "peak_slicer"], [248, 5, 1, "", "pentagonalprism"], [248, 5, 1, "", "point"], [248, 5, 1, "", "rectangle"], [248, 5, 1, "", "rhombicuboctahedron"], [248, 5, 1, "", "scalar_bar"], [248, 5, 1, "", "sdf"], [248, 5, 1, "", "slicer"], [248, 5, 1, "", "sphere"], [248, 5, 1, "", "square"], [248, 5, 1, "", "streamtube"], [248, 5, 1, "", "superquadric"], [248, 5, 1, "", "surface"], [248, 5, 1, "", "tensor_slicer"], [248, 5, 1, "", "text_3d"], [248, 5, 1, "", "texture"], [248, 5, 1, "", "texture_2d"], [248, 5, 1, "", "texture_on_sphere"], [248, 5, 1, "", "texture_update"], [248, 5, 1, "", "triangularprism"], [248, 5, 1, "", "vector_text"]], "fury.actor.Container": [[248, 2, 1, "", "AddPosition"], [248, 2, 1, "", "GetBounds"], [248, 2, 1, "", "GetCenter"], [248, 2, 1, "", "GetLength"], [248, 2, 1, "", "GetPosition"], [248, 2, 1, "", "GetVisibility"], [248, 2, 1, "", "NewInstance"], [248, 2, 1, "", "SetPosition"], [248, 2, 1, "", "SetVisibility"], [248, 2, 1, "", "ShallowCopy"], [248, 2, 1, "", "__init__"], [248, 2, 1, "", "add"], [248, 2, 1, "", "add_to_scene"], [248, 3, 1, "", "anchor"], [248, 2, 1, "", "clear"], [248, 4, 1, "", "items"], [248, 3, 1, "", "padding"], [248, 2, 1, "", "remove_from_scene"], [248, 2, 1, "", "update"]], "fury.actors": [[249, 0, 0, "-", "odf_slicer"], [249, 0, 0, "-", "peak"], [249, 0, 0, "-", "tensor"]], "fury.actors.odf_slicer": [[249, 1, 1, "", "OdfSlicerActor"]], "fury.actors.odf_slicer.OdfSlicerActor": [[249, 2, 1, "", "__init__"], [249, 2, 1, "", "display"], [249, 2, 1, "", "display_extent"], [249, 2, 1, "", "set_opacity"], [249, 2, 1, "", "slice_along_axis"], [249, 2, 1, "", "update_sphere"]], "fury.actors.peak": [[249, 1, 1, "", "PeakActor"]], "fury.actors.peak.PeakActor": [[249, 2, 1, "", "__init__"], [249, 4, 1, "", "cross_section"], [249, 2, 1, "", "display_cross_section"], [249, 2, 1, "", "display_extent"], [249, 4, 1, "", "global_opacity"], [249, 4, 1, "", "high_ranges"], [249, 4, 1, "", "is_range"], [249, 4, 1, "", "linewidth"], [249, 4, 1, "", "low_ranges"], [249, 4, 1, "", "max_centers"], [249, 4, 1, "", "min_centers"]], "fury.actors.tensor": [[249, 5, 1, "", "tensor_ellipsoid"]], "fury.animation": [[250, 0, 0, "-", "animation"], [250, 0, 0, "-", "helpers"], [250, 0, 0, "-", "interpolator"], [250, 0, 0, "-", "timeline"]], "fury.animation.animation": [[250, 1, 1, "", "Animation"], [250, 1, 1, "", "CameraAnimation"]], "fury.animation.animation.Animation": [[250, 2, 1, "", "__init__"], [250, 4, 1, "id0", "actors"], [250, 2, 1, "", "add"], [250, 2, 1, "", "add_actor"], [250, 2, 1, "", "add_child_animation"], [250, 2, 1, "", "add_static_actor"], [250, 2, 1, "", "add_to_scene"], [250, 2, 1, "", "add_to_scene_at"], [250, 2, 1, "", "add_update_callback"], [250, 4, 1, "", "child_animations"], [250, 4, 1, "", "current_timestamp"], [250, 4, 1, "", "duration"], [250, 2, 1, "", "get_color"], [250, 2, 1, "", "get_current_value"], [250, 2, 1, "", "get_keyframes"], [250, 2, 1, "", "get_opacity"], [250, 2, 1, "", "get_position"], [250, 2, 1, "", "get_rotation"], [250, 2, 1, "", "get_scale"], [250, 2, 1, "", "get_value"], [250, 2, 1, "", "is_inside_scene_at"], [250, 2, 1, "", "is_interpolatable"], [250, 3, 1, "", "length"], [250, 4, 1, "id2", "loop"], [250, 3, 1, "", "motion_path_res"], [250, 4, 1, "", "parent_animation"], [250, 2, 1, "", "remove_actor"], [250, 2, 1, "", "remove_actors"], [250, 2, 1, "", "remove_animations"], [250, 2, 1, "", "remove_from_scene"], [250, 2, 1, "", "remove_from_scene_at"], [250, 2, 1, "", "set_color"], [250, 2, 1, "", "set_color_interpolator"], [250, 2, 1, "", "set_color_keyframes"], [250, 2, 1, "", "set_interpolator"], [250, 2, 1, "", "set_keyframe"], [250, 2, 1, "", "set_keyframes"], [250, 2, 1, "", "set_opacity"], [250, 2, 1, "", "set_opacity_interpolator"], [250, 2, 1, "", "set_opacity_keyframes"], [250, 2, 1, "", "set_position"], [250, 2, 1, "", "set_position_interpolator"], [250, 2, 1, "", "set_position_keyframes"], [250, 2, 1, "", "set_rotation"], [250, 2, 1, "", "set_rotation_as_vector"], [250, 2, 1, "", "set_rotation_interpolator"], [250, 2, 1, "", "set_scale"], [250, 2, 1, "", "set_scale_interpolator"], [250, 2, 1, "", "set_scale_keyframes"], [250, 4, 1, "", "static_actors"], [250, 4, 1, "", "timeline"], [250, 2, 1, "", "update_animation"], [250, 2, 1, "", "update_duration"], [250, 2, 1, "", "update_motion_path"]], "fury.animation.animation.CameraAnimation": [[250, 2, 1, "", "__init__"], [250, 4, 1, "id3", "camera"], [250, 2, 1, "", "get_focal"], [250, 2, 1, "", "get_view_up"], [250, 3, 1, "", "length"], [250, 3, 1, "", "loop"], [250, 3, 1, "", "motion_path_res"], [250, 2, 1, "", "set_focal"], [250, 2, 1, "", "set_focal_interpolator"], [250, 2, 1, "", "set_focal_keyframes"], [250, 2, 1, "", "set_view_up"], [250, 2, 1, "", "set_view_up_interpolator"], [250, 2, 1, "", "set_view_up_keyframes"], [250, 2, 1, "", "update_animation"]], "fury.animation.helpers": [[250, 5, 1, "", "euclidean_distances"], [250, 5, 1, "", "get_next_timestamp"], [250, 5, 1, "", "get_previous_timestamp"], [250, 5, 1, "", "get_time_tau"], [250, 5, 1, "", "get_timestamps_from_keyframes"], [250, 5, 1, "", "get_values_from_keyframes"], [250, 5, 1, "", "lerp"]], "fury.animation.interpolator": [[250, 5, 1, "", "color_interpolator"], [250, 5, 1, "", "cubic_bezier_interpolator"], [250, 5, 1, "", "cubic_spline_interpolator"], [250, 5, 1, "", "hsv_color_interpolator"], [250, 5, 1, "", "lab_color_interpolator"], [250, 5, 1, "", "linear_interpolator"], [250, 5, 1, "", "slerp"], [250, 5, 1, "", "spline_interpolator"], [250, 5, 1, "", "step_interpolator"], [250, 5, 1, "", "tan_cubic_spline_interpolator"], [250, 5, 1, "", "xyz_color_interpolator"]], "fury.animation.timeline": [[250, 1, 1, "", "Timeline"]], "fury.animation.timeline.Timeline": [[250, 2, 1, "", "__init__"], [250, 2, 1, "", "add_animation"], [250, 2, 1, "", "add_to_scene"], [250, 4, 1, "id4", "animations"], [250, 4, 1, "", "current_timestamp"], [250, 4, 1, "", "duration"], [250, 4, 1, "", "has_playback_panel"], [250, 3, 1, "", "length"], [250, 4, 1, "id5", "loop"], [250, 2, 1, "", "pause"], [250, 4, 1, "", "paused"], [250, 2, 1, "", "play"], [250, 3, 1, "", "playback_panel"], [250, 4, 1, "", "playing"], [250, 2, 1, "", "record"], [250, 2, 1, "", "remove_from_scene"], [250, 2, 1, "", "restart"], [250, 2, 1, "", "seek"], [250, 2, 1, "", "seek_percent"], [250, 4, 1, "", "speed"], [250, 2, 1, "", "stop"], [250, 4, 1, "", "stopped"], [250, 2, 1, "", "update"], [250, 2, 1, "", "update_duration"]], "fury.colormap": [[251, 3, 1, "id0", "T"], [251, 3, 1, "id15", "base"], [251, 5, 1, "", "boys2rgb"], [251, 5, 1, "", "cc"], [251, 5, 1, "", "colormap_lookup_table"], [251, 5, 1, "", "create_colormap"], [251, 3, 1, "id14", "ctypes"], [251, 3, 1, "id2", "data"], [251, 5, 1, "", "distinguishable_colormap"], [251, 3, 1, "id3", "dtype"], [251, 3, 1, "id4", "flags"], [251, 3, 1, "id5", "flat"], [251, 5, 1, "", "get_cmap"], [251, 5, 1, "", "get_xyz_coords"], [251, 5, 1, "", "hex_to_rgb"], [251, 5, 1, "", "hsv2rgb"], [251, 3, 1, "id6", "imag"], [251, 3, 1, "id9", "itemsize"], [251, 5, 1, "", "lab2rgb"], [251, 5, 1, "", "lab2xyz"], [251, 5, 1, "", "line_colors"], [251, 3, 1, "id10", "nbytes"], [251, 3, 1, "id11", "ndim"], [251, 5, 1, "", "orient2rgb"], [251, 3, 1, "id7", "real"], [251, 5, 1, "", "rgb2hsv"], [251, 5, 1, "", "rgb2lab"], [251, 5, 1, "", "rgb2xyz"], [251, 5, 1, "", "rgb_from_xyz"], [251, 3, 1, "id12", "shape"], [251, 3, 1, "id8", "size"], [251, 5, 1, "", "ss"], [251, 3, 1, "id13", "strides"], [251, 5, 1, "", "xyz2lab"], [251, 5, 1, "", "xyz2rgb"], [251, 5, 1, "", "xyz_from_rgb"]], "fury.convert": [[252, 5, 1, "", "matplotlib_figure_to_numpy"]], "fury.data": [[253, 5, 1, "", "DATA_DIR"], [253, 0, 0, "-", "fetcher"]], "fury.data.fetcher": [[253, 5, 1, "", "check_sha"], [253, 5, 1, "", "copyfileobj_withprogress"], [253, 5, 1, "", "fetch_data"], [253, 5, 1, "", "fetch_gltf"], [253, 5, 1, "", "fetch_viz_cubemaps"], [253, 5, 1, "", "fetch_viz_dmri"], [253, 5, 1, "", "fetch_viz_icons"], [253, 5, 1, "", "fetch_viz_models"], [253, 5, 1, "", "fetch_viz_new_icons"], [253, 5, 1, "", "fetch_viz_textures"], [253, 5, 1, "", "fetch_viz_wiki_nw"], [253, 5, 1, "", "list_gltf_sample_models"], [253, 5, 1, "", "read_viz_cubemap"], [253, 5, 1, "", "read_viz_dmri"], [253, 5, 1, "", "read_viz_gltf"], [253, 5, 1, "", "read_viz_icons"], [253, 5, 1, "", "read_viz_models"], [253, 5, 1, "", "read_viz_textures"], [253, 5, 1, "", "update_progressbar"]], "fury.decorators": [[254, 5, 1, "", "SKIP_RE"], [254, 5, 1, "", "doctest_skip_parser"]], "fury.deprecator": [[255, 1, 1, "", "ArgsDeprecationWarning"], [255, 1, 1, "", "ExpiredDeprecationError"], [255, 5, 1, "", "_LEADING_WHITE"], [255, 5, 1, "", "cmp_pkg_version"], [255, 5, 1, "", "deprecate_with_version"], [255, 5, 1, "", "deprecated_params"], [255, 5, 1, "", "is_bad_version"]], "fury.deprecator.ArgsDeprecationWarning": [[255, 2, 1, "", "__init__"]], "fury.deprecator.ExpiredDeprecationError": [[255, 2, 1, "", "__init__"]], "fury.gltf": [[256, 5, 1, "", "export_scene"], [256, 5, 1, "", "get_prim"], [256, 1, 1, "", "glTF"], [256, 5, 1, "", "write_accessor"], [256, 5, 1, "", "write_buffer"], [256, 5, 1, "", "write_bufferview"], [256, 5, 1, "", "write_camera"], [256, 5, 1, "", "write_material"], [256, 5, 1, "", "write_mesh"], [256, 5, 1, "", "write_node"], [256, 5, 1, "", "write_scene"]], "fury.gltf.glTF": [[256, 2, 1, "", "__init__"], [256, 2, 1, "", "actors"], [256, 2, 1, "", "apply_morph_vertices"], [256, 2, 1, "", "apply_skin_matrix"], [256, 2, 1, "", "generate_tmatrix"], [256, 2, 1, "", "get_acc_data"], [256, 2, 1, "", "get_animations"], [256, 2, 1, "", "get_buff_array"], [256, 2, 1, "", "get_joint_actors"], [256, 2, 1, "", "get_materials"], [256, 2, 1, "", "get_matrix_from_sampler"], [256, 2, 1, "", "get_morph_data"], [256, 2, 1, "", "get_sampler_data"], [256, 2, 1, "", "get_skin_data"], [256, 2, 1, "", "get_texture"], [256, 2, 1, "", "initialize_skin"], [256, 2, 1, "", "inspect_scene"], [256, 2, 1, "", "load_camera"], [256, 2, 1, "", "load_mesh"], [256, 2, 1, "", "main_animation"], [256, 2, 1, "", "morph_animation"], [256, 2, 1, "", "skin_animation"], [256, 2, 1, "", "transverse_animations"], [256, 2, 1, "", "transverse_bones"], [256, 2, 1, "", "transverse_channels"], [256, 2, 1, "", "transverse_node"], [256, 2, 1, "", "update_morph"], [256, 2, 1, "", "update_skin"]], "fury.io": [[257, 5, 1, "", "load_cubemap_texture"], [257, 5, 1, "", "load_image"], [257, 5, 1, "", "load_polydata"], [257, 5, 1, "", "load_sprite_sheet"], [257, 5, 1, "", "load_text"], [257, 5, 1, "", "save_image"], [257, 5, 1, "", "save_polydata"]], "fury.layout": [[258, 1, 1, "", "GridLayout"], [258, 1, 1, "", "HorizontalLayout"], [258, 1, 1, "", "Layout"], [258, 1, 1, "", "VerticalLayout"], [258, 1, 1, "", "XLayout"], [258, 1, 1, "", "YLayout"], [258, 1, 1, "", "ZLayout"]], "fury.layout.GridLayout": [[258, 2, 1, "", "__init__"], [258, 2, 1, "", "compute_positions"], [258, 2, 1, "", "compute_sizes"], [258, 2, 1, "", "get_cells_shape"]], "fury.layout.HorizontalLayout": [[258, 2, 1, "", "__init__"], [258, 2, 1, "", "compute_positions"]], "fury.layout.Layout": [[258, 2, 1, "", "__init__"], [258, 2, 1, "", "apply"], [258, 2, 1, "", "compute_positions"]], "fury.layout.VerticalLayout": [[258, 2, 1, "", "__init__"], [258, 2, 1, "", "compute_positions"]], "fury.layout.XLayout": [[258, 2, 1, "", "__init__"], [258, 2, 1, "", "apply"], [258, 2, 1, "", "compute_positions"], [258, 2, 1, "", "get_cells_shape"]], "fury.layout.YLayout": [[258, 2, 1, "", "__init__"], [258, 2, 1, "", "apply"], [258, 2, 1, "", "compute_positions"], [258, 2, 1, "", "get_cells_shape"]], "fury.layout.ZLayout": [[258, 2, 1, "", "__init__"], [258, 2, 1, "", "apply"], [258, 2, 1, "", "compute_positions"], [258, 2, 1, "", "get_cells_shape"]], "fury.lib": [[259, 3, 1, "", "Actor"], [259, 3, 1, "", "Actor2D"], [259, 3, 1, "", "AlgorithmOutput"], [259, 3, 1, "", "ArrowSource"], [259, 3, 1, "", "Assembly"], [259, 3, 1, "", "BMPReader"], [259, 3, 1, "", "BMPWriter"], [259, 3, 1, "", "ButterflySubdivisionFilter"], [259, 3, 1, "", "Camera"], [259, 3, 1, "", "CellArray"], [259, 3, 1, "", "CellPicker"], [259, 3, 1, "", "CleanPolyData"], [259, 3, 1, "", "Command"], [259, 3, 1, "", "ConeSource"], [259, 3, 1, "", "ContourFilter"], [259, 3, 1, "", "CylinderSource"], [259, 3, 1, "id0", "DataObject"], [259, 3, 1, "", "DataSetAttributes"], [259, 3, 1, "", "DataSetMapper"], [259, 3, 1, "", "DiskSource"], [259, 3, 1, "", "DoubleArray"], [259, 3, 1, "", "FloatArray"], [259, 3, 1, "", "Follower"], [259, 3, 1, "", "Glyph3D"], [259, 3, 1, "", "HardwareSelector"], [259, 3, 1, "", "IdTypeArray"], [259, 3, 1, "", "ImageActor"], [259, 3, 1, "", "ImageData"], [259, 3, 1, "", "ImageFlip"], [259, 3, 1, "", "ImageMapToColors"], [259, 3, 1, "", "ImageReader2Factory"], [259, 3, 1, "", "ImageReslice"], [259, 3, 1, "", "InteractorEventRecorder"], [259, 3, 1, "", "InteractorStyle"], [259, 3, 1, "", "InteractorStyleImage"], [259, 3, 1, "", "InteractorStyleTrackballActor"], [259, 3, 1, "", "InteractorStyleTrackballCamera"], [259, 3, 1, "", "InteractorStyleUser"], [259, 3, 1, "", "JPEGReader"], [259, 3, 1, "", "JPEGWriter"], [259, 3, 1, "", "LODActor"], [259, 3, 1, "", "LinearExtrusionFilter"], [259, 3, 1, "", "LookupTable"], [259, 3, 1, "", "LoopSubdivisionFilter"], [259, 3, 1, "", "MNIObjectReader"], [259, 3, 1, "", "MNIObjectWriter"], [259, 3, 1, "", "Matrix3x3"], [259, 3, 1, "", "Matrix4x4"], [259, 3, 1, "", "Molecule"], [259, 3, 1, "", "OBJReader"], [259, 3, 1, "", "OpenGLMoleculeMapper"], [259, 3, 1, "", "OpenGLRenderer"], [259, 3, 1, "", "OutlineFilter"], [259, 3, 1, "", "PLYReader"], [259, 3, 1, "", "PLYWriter"], [259, 3, 1, "", "PNGReader"], [259, 3, 1, "", "PNGWriter"], [259, 3, 1, "", "PeriodicTable"], [259, 3, 1, "", "PointPicker"], [259, 3, 1, "", "Points"], [259, 3, 1, "", "PolyData"], [259, 3, 1, "", "PolyDataMapper"], [259, 3, 1, "", "PolyDataMapper2D"], [259, 3, 1, "", "PolyDataNormals"], [259, 3, 1, "", "PolyDataReader"], [259, 3, 1, "", "PolyDataWriter"], [259, 3, 1, "", "PolyVertex"], [259, 3, 1, "", "Polygon"], [259, 3, 1, "", "PropPicker"], [259, 3, 1, "", "Property2D"], [259, 3, 1, "", "ProteinRibbonFilter"], [259, 3, 1, "", "RegularPolygonSource"], [259, 3, 1, "", "RenderLargeImage"], [259, 3, 1, "", "RenderWindow"], [259, 3, 1, "", "RenderWindowInteractor"], [259, 3, 1, "", "Renderer"], [259, 3, 1, "", "STLReader"], [259, 3, 1, "", "STLWriter"], [259, 3, 1, "", "ScalarBarActor"], [259, 3, 1, "", "Shader"], [259, 3, 1, "", "SimpleBondPerceiver"], [259, 3, 1, "", "Skybox"], [259, 3, 1, "", "SphereSource"], [259, 3, 1, "", "SplineFilter"], [259, 3, 1, "", "StringArray"], [259, 3, 1, "", "TIFFReader"], [259, 3, 1, "", "TIFFWriter"], [259, 3, 1, "", "TextActor"], [259, 3, 1, "", "TextActor3D"], [259, 3, 1, "", "Texture"], [259, 3, 1, "", "TextureMapToPlane"], [259, 3, 1, "", "TexturedActor2D"], [259, 3, 1, "", "TexturedSphereSource"], [259, 3, 1, "", "Transform"], [259, 3, 1, "", "TransformPolyDataFilter"], [259, 3, 1, "", "TriangleFilter"], [259, 3, 1, "", "TubeFilter"], [259, 3, 1, "", "UnsignedCharArray"], [259, 3, 1, "", "UnstructuredGrid"], [259, 5, 1, "", "VTK_VERSION"], [259, 3, 1, "", "VectorText"], [259, 3, 1, "", "Volume"], [259, 3, 1, "", "WindowToImageFilter"], [259, 3, 1, "", "WorldPointPicker"], [259, 3, 1, "", "XMLPolyDataReader"], [259, 3, 1, "", "XMLPolyDataWriter"]], "fury.material": [[260, 5, 1, "", "manifest_pbr"], [260, 5, 1, "", "manifest_principled"], [260, 5, 1, "", "manifest_standard"]], "fury.molecular": [[261, 1, 1, "", "Molecule"], [261, 1, 1, "", "PTable"], [261, 5, 1, "", "add_atom"], [261, 5, 1, "", "add_bond"], [261, 5, 1, "", "ball_stick"], [261, 5, 1, "", "bounding_box"], [261, 5, 1, "", "compute_bonding"], [261, 5, 1, "", "deep_copy_molecule"], [261, 5, 1, "", "get_all_atomic_numbers"], [261, 5, 1, "", "get_all_atomic_positions"], [261, 5, 1, "", "get_all_bond_orders"], [261, 5, 1, "", "get_atomic_number"], [261, 5, 1, "", "get_atomic_position"], [261, 5, 1, "", "get_bond_order"], [261, 5, 1, "", "ribbon"], [261, 5, 1, "", "set_atomic_number"], [261, 5, 1, "", "set_atomic_position"], [261, 5, 1, "", "set_bond_order"], [261, 5, 1, "", "sphere_cpk"], [261, 5, 1, "", "stick"]], "fury.molecular.Molecule": [[261, 2, 1, "", "__init__"], [261, 4, 1, "", "total_num_atoms"], [261, 4, 1, "", "total_num_bonds"]], "fury.molecular.PTable": [[261, 2, 1, "", "__init__"], [261, 2, 1, "", "atom_color"], [261, 2, 1, "", "atomic_number"], [261, 2, 1, "", "atomic_radius"], [261, 2, 1, "", "atomic_symbol"], [261, 2, 1, "", "element_name"]], "fury.pick": [[262, 1, 1, "", "PickingManager"], [262, 1, 1, "", "SelectionManager"]], "fury.pick.PickingManager": [[262, 2, 1, "", "__init__"], [262, 2, 1, "", "event_position"], [262, 2, 1, "", "pick"], [262, 2, 1, "", "pickable_off"], [262, 2, 1, "", "pickable_on"]], "fury.pick.SelectionManager": [[262, 2, 1, "", "__init__"], [262, 2, 1, "", "event_position"], [262, 2, 1, "id0", "pick"], [262, 2, 1, "id1", "select"], [262, 2, 1, "", "selectable_off"], [262, 2, 1, "", "selectable_on"], [262, 2, 1, "", "update_selection_type"]], "fury.pkg_info": [[263, 5, 1, "", "pkg_commit_hash"]], "fury.primitive": [[264, 5, 1, "", "faces_from_sphere_vertices"], [264, 5, 1, "", "prim_arrow"], [264, 5, 1, "", "prim_box"], [264, 5, 1, "", "prim_cone"], [264, 5, 1, "", "prim_cylinder"], [264, 5, 1, "", "prim_frustum"], [264, 5, 1, "", "prim_icosahedron"], [264, 5, 1, "", "prim_octagonalprism"], [264, 5, 1, "", "prim_pentagonalprism"], [264, 5, 1, "", "prim_rhombicuboctahedron"], [264, 5, 1, "", "prim_sphere"], [264, 5, 1, "", "prim_square"], [264, 5, 1, "", "prim_star"], [264, 5, 1, "", "prim_superquadric"], [264, 5, 1, "", "prim_tetrahedron"], [264, 5, 1, "", "prim_triangularprism"], [264, 5, 1, "", "repeat_primitive"], [264, 5, 1, "", "repeat_primitive_function"]], "fury.shaders": [[265, 0, 0, "-", "base"]], "fury.shaders.base": [[265, 5, 1, "", "SHADERS_DIR"], [265, 5, 1, "", "add_shader_callback"], [265, 5, 1, "", "attribute_to_actor"], [265, 5, 1, "", "compose_shader"], [265, 5, 1, "", "import_fury_shader"], [265, 5, 1, "", "load"], [265, 5, 1, "", "load_shader"], [265, 5, 1, "", "replace_shader_in_actor"], [265, 5, 1, "", "shader_apply_effects"], [265, 5, 1, "", "shader_to_actor"]], "fury.stream": [[266, 0, 0, "-", "client"], [266, 0, 0, "-", "constants"], [266, 0, 0, "-", "server"], [266, 0, 0, "-", "tools"], [266, 0, 0, "-", "widget"]], "fury.stream.client": [[266, 1, 1, "", "FuryStreamClient"], [266, 1, 1, "", "FuryStreamInteraction"], [266, 5, 1, "", "callback_stream_client"], [266, 5, 1, "", "interaction_callback"]], "fury.stream.client.FuryStreamClient": [[266, 2, 1, "", "__init__"], [266, 2, 1, "", "cleanup"], [266, 2, 1, "", "start"], [266, 2, 1, "", "stop"]], "fury.stream.client.FuryStreamInteraction": [[266, 2, 1, "", "__init__"], [266, 2, 1, "", "cleanup"], [266, 2, 1, "", "start"], [266, 2, 1, "", "stop"]], "fury.stream.constants": [[266, 5, 1, "", "_CQUEUE"], [266, 5, 1, "", "_CQUEUE_EVENT_IDs"], [266, 5, 1, "", "_CQUEUE_INDEX_INFO"]], "fury.stream.server": [[266, 0, 0, "-", "async_app"], [266, 0, 0, "-", "main"]], "fury.stream.server.async_app": [[266, 5, 1, "", "get_app"], [266, 5, 1, "", "pcs"], [266, 5, 1, "", "set_mouse"], [266, 5, 1, "", "set_mouse_click"], [266, 5, 1, "", "set_weel"]], "fury.stream.server.main": [[266, 1, 1, "", "RTCServer"], [266, 5, 1, "", "web_server"], [266, 5, 1, "", "web_server_raw_array"]], "fury.stream.server.main.RTCServer": [[266, 2, 1, "", "__init__"], [266, 2, 1, "", "recv"], [266, 2, 1, "", "release"]], "fury.stream.tools": [[266, 1, 1, "", "ArrayCircularQueue"], [266, 1, 1, "", "GenericCircularQueue"], [266, 1, 1, "", "GenericImageBufferManager"], [266, 1, 1, "", "GenericMultiDimensionalBuffer"], [266, 1, 1, "", "IntervalTimer"], [266, 1, 1, "", "IntervalTimerThreading"], [266, 1, 1, "", "RawArrayImageBufferManager"], [266, 1, 1, "", "RawArrayMultiDimensionalBuffer"], [266, 1, 1, "", "SharedMemCircularQueue"], [266, 1, 1, "", "SharedMemImageBufferManager"], [266, 1, 1, "", "SharedMemMultiDimensionalBuffer"], [266, 5, 1, "", "remove_shm_from_resource_tracker"]], "fury.stream.tools.ArrayCircularQueue": [[266, 2, 1, "", "__init__"], [266, 2, 1, "", "cleanup"], [266, 2, 1, "", "create_mem_resource"], [266, 2, 1, "", "dequeue"], [266, 2, 1, "", "enqueue"], [266, 2, 1, "", "load_mem_resource"]], "fury.stream.tools.GenericCircularQueue": [[266, 2, 1, "", "__init__"], [266, 2, 1, "", "cleanup"], [266, 2, 1, "", "create_mem_resource"], [266, 2, 1, "", "dequeue"], [266, 2, 1, "", "enqueue"], [266, 4, 1, "", "head"], [266, 2, 1, "", "load_mem_resource"], [266, 2, 1, "", "set_head_tail"], [266, 4, 1, "", "tail"]], "fury.stream.tools.GenericImageBufferManager": [[266, 2, 1, "", "__init__"], [266, 2, 1, "", "async_get_jpeg"], [266, 4, 1, "", "buffer_index"], [266, 2, 1, "", "cleanup"], [266, 2, 1, "", "create_mem_resource"], [266, 2, 1, "", "get_current_frame"], [266, 2, 1, "", "get_jpeg"], [266, 2, 1, "", "load_mem_resource"], [266, 4, 1, "", "next_buffer_index"], [266, 2, 1, "", "write_into"]], "fury.stream.tools.GenericMultiDimensionalBuffer": [[266, 2, 1, "", "__init__"], [266, 4, 1, "", "buffer"], [266, 2, 1, "", "cleanup"], [266, 2, 1, "", "create_mem_resource"], [266, 2, 1, "", "get_start_end"], [266, 2, 1, "", "load_mem_resource"]], "fury.stream.tools.IntervalTimer": [[266, 2, 1, "", "__init__"], [266, 2, 1, "", "start"], [266, 2, 1, "", "stop"]], "fury.stream.tools.IntervalTimerThreading": [[266, 2, 1, "", "__init__"], [266, 2, 1, "", "start"], [266, 2, 1, "", "stop"]], "fury.stream.tools.RawArrayImageBufferManager": [[266, 2, 1, "", "__init__"], [266, 2, 1, "", "cleanup"], [266, 2, 1, "", "create_mem_resource"], [266, 2, 1, "", "load_mem_resource"]], "fury.stream.tools.RawArrayMultiDimensionalBuffer": [[266, 2, 1, "", "__init__"], [266, 2, 1, "", "cleanup"], [266, 2, 1, "", "create_mem_resource"], [266, 2, 1, "", "load_mem_resource"]], "fury.stream.tools.SharedMemCircularQueue": [[266, 2, 1, "", "__init__"], [266, 2, 1, "", "cleanup"], [266, 2, 1, "", "create_mem_resource"], [266, 2, 1, "", "dequeue"], [266, 2, 1, "", "enqueue"], [266, 2, 1, "", "is_unlocked"], [266, 2, 1, "", "load_mem_resource"], [266, 2, 1, "", "lock"], [266, 2, 1, "", "unlock"]], "fury.stream.tools.SharedMemImageBufferManager": [[266, 2, 1, "", "__init__"], [266, 2, 1, "", "cleanup"], [266, 2, 1, "", "create_mem_resource"], [266, 2, 1, "", "load_mem_resource"]], "fury.stream.tools.SharedMemMultiDimensionalBuffer": [[266, 2, 1, "", "__init__"], [266, 2, 1, "", "cleanup"], [266, 2, 1, "", "create_mem_resource"], [266, 2, 1, "", "load_mem_resource"]], "fury.stream.widget": [[266, 1, 1, "", "Widget"], [266, 5, 1, "", "check_port_is_available"]], "fury.stream.widget.Widget": [[266, 2, 1, "", "__init__"], [266, 2, 1, "", "cleanup"], [266, 4, 1, "", "command_string"], [266, 2, 1, "", "display"], [266, 2, 1, "", "return_iframe"], [266, 2, 1, "", "run_command"], [266, 2, 1, "", "start"], [266, 2, 1, "", "stop"], [266, 4, 1, "", "url"]], "fury.transform": [[267, 5, 1, "", "_TUPLE2AXES"], [267, 5, 1, "", "apply_transformation"], [267, 5, 1, "", "cart2sphere"], [267, 5, 1, "", "euler_matrix"], [267, 5, 1, "", "rotate"], [267, 5, 1, "", "scale"], [267, 5, 1, "", "sphere2cart"], [267, 5, 1, "", "transform_from_matrix"], [267, 5, 1, "", "translate"]], "fury.ui": [[268, 0, 0, "-", "containers"], [268, 0, 0, "-", "core"], [268, 0, 0, "-", "elements"], [268, 0, 0, "-", "helpers"]], "fury.ui.containers": [[268, 1, 1, "", "GridUI"], [268, 1, 1, "", "ImageContainer2D"], [268, 1, 1, "", "Panel2D"], [268, 1, 1, "", "TabPanel2D"], [268, 1, 1, "", "TabUI"]], "fury.ui.containers.GridUI": [[268, 3, 1, "", "ANTICLOCKWISE_ROTATION_X"], [268, 3, 1, "", "ANTICLOCKWISE_ROTATION_Y"], [268, 3, 1, "", "CLOCKWISE_ROTATION_X"], [268, 3, 1, "", "CLOCKWISE_ROTATION_Y"], [268, 2, 1, "", "__init__"], [268, 2, 1, "", "key_press_callback"], [268, 2, 1, "", "left_click_callback"], [268, 2, 1, "", "left_click_callback2"], [268, 2, 1, "", "left_release_callback"], [268, 2, 1, "", "left_release_callback2"], [268, 2, 1, "", "mouse_move_callback"], [268, 2, 1, "", "mouse_move_callback2"], [268, 2, 1, "", "resize"]], "fury.ui.containers.ImageContainer2D": [[268, 2, 1, "", "__init__"], [268, 3, 1, "", "img"], [268, 2, 1, "", "resize"], [268, 2, 1, "", "scale"], [268, 2, 1, "", "set_img"], [268, 3, 1, "", "size"]], "fury.ui.containers.Panel2D": [[268, 2, 1, "", "__init__"], [268, 2, 1, "", "add_element"], [268, 3, 1, "", "alignment"], [268, 4, 1, "", "border_color"], [268, 4, 1, "", "border_width"], [268, 4, 1, "", "color"], [268, 2, 1, "", "left_button_dragged"], [268, 2, 1, "", "left_button_pressed"], [268, 4, 1, "", "opacity"], [268, 2, 1, "", "re_align"], [268, 2, 1, "", "remove_element"], [268, 2, 1, "", "resize"], [268, 2, 1, "", "set_visibility"], [268, 2, 1, "", "update_border_coords"], [268, 2, 1, "", "update_element"]], "fury.ui.containers.TabPanel2D": [[268, 2, 1, "", "__init__"], [268, 2, 1, "", "add_element"], [268, 4, 1, "", "color"], [268, 3, 1, "", "content_panel"], [268, 2, 1, "", "remove_element"], [268, 2, 1, "", "resize"], [268, 3, 1, "", "text_block"], [268, 4, 1, "", "title"], [268, 4, 1, "", "title_bold"], [268, 4, 1, "", "title_color"], [268, 4, 1, "", "title_font_size"], [268, 4, 1, "", "title_italic"], [268, 2, 1, "", "update_element"]], "fury.ui.containers.TabUI": [[268, 2, 1, "", "__init__"], [268, 2, 1, "", "add_element"], [268, 2, 1, "", "collapse_tab_ui"], [268, 2, 1, "", "left_button_dragged"], [268, 2, 1, "", "left_button_pressed"], [268, 2, 1, "", "remove_element"], [268, 2, 1, "", "select_tab_callback"], [268, 3, 1, "", "tabs"], [268, 2, 1, "", "update_element"], [268, 2, 1, "", "update_tabs"]], "fury.ui.core": [[268, 1, 1, "", "Button2D"], [268, 1, 1, "", "Disk2D"], [268, 1, 1, "", "Rectangle2D"], [268, 1, 1, "", "TextBlock2D"], [268, 1, 1, "", "UI"]], "fury.ui.core.Button2D": [[268, 2, 1, "", "__init__"], [268, 4, 1, "", "color"], [268, 2, 1, "", "next_icon"], [268, 2, 1, "", "next_icon_id"], [268, 2, 1, "", "resize"], [268, 2, 1, "", "scale"], [268, 2, 1, "", "set_icon"], [268, 2, 1, "", "set_icon_by_name"]], "fury.ui.core.Disk2D": [[268, 2, 1, "", "__init__"], [268, 4, 1, "", "color"], [268, 4, 1, "", "inner_radius"], [268, 4, 1, "", "opacity"], [268, 4, 1, "", "outer_radius"]], "fury.ui.core.Rectangle2D": [[268, 2, 1, "", "__init__"], [268, 4, 1, "", "color"], [268, 4, 1, "", "height"], [268, 4, 1, "", "opacity"], [268, 2, 1, "", "resize"], [268, 4, 1, "", "width"]], "fury.ui.core.TextBlock2D": [[268, 2, 1, "", "__init__"], [268, 3, 1, "", "actor"], [268, 4, 1, "", "background_color"], [268, 3, 1, "", "bg_color"], [268, 4, 1, "id4", "bold"], [268, 2, 1, "", "cal_size_from_message"], [268, 4, 1, "id5", "color"], [268, 4, 1, "id6", "font_family"], [268, 4, 1, "id7", "font_size"], [268, 4, 1, "id8", "italic"], [268, 4, 1, "id9", "justification"], [268, 4, 1, "id10", "message"], [268, 3, 1, "", "position"], [268, 2, 1, "", "resize"], [268, 4, 1, "id11", "shadow"], [268, 3, 1, "", "size"], [268, 2, 1, "", "update_alignment"], [268, 2, 1, "", "update_bounding_box"], [268, 4, 1, "id12", "vertical_justification"]], "fury.ui.core.UI": [[268, 2, 1, "", "__init__"], [268, 4, 1, "", "actors"], [268, 2, 1, "", "add_callback"], [268, 2, 1, "", "add_to_scene"], [268, 4, 1, "id0", "center"], [268, 2, 1, "", "handle_events"], [268, 2, 1, "", "key_press_callback"], [268, 2, 1, "", "left_button_click_callback"], [268, 2, 1, "", "left_button_release_callback"], [268, 2, 1, "", "middle_button_click_callback"], [268, 2, 1, "", "middle_button_release_callback"], [268, 2, 1, "", "mouse_move_callback"], [268, 3, 1, "", "on_key_press"], [268, 3, 1, "", "on_left_mouse_button_clicked"], [268, 3, 1, "", "on_left_mouse_button_dragged"], [268, 3, 1, "", "on_left_mouse_button_pressed"], [268, 3, 1, "", "on_left_mouse_button_released"], [268, 3, 1, "", "on_left_mouse_double_clicked"], [268, 3, 1, "", "on_middle_mouse_button_clicked"], [268, 3, 1, "", "on_middle_mouse_button_dragged"], [268, 3, 1, "", "on_middle_mouse_button_pressed"], [268, 3, 1, "", "on_middle_mouse_button_released"], [268, 3, 1, "", "on_middle_mouse_double_clicked"], [268, 3, 1, "", "on_right_mouse_button_clicked"], [268, 3, 1, "", "on_right_mouse_button_dragged"], [268, 3, 1, "", "on_right_mouse_button_pressed"], [268, 3, 1, "", "on_right_mouse_button_released"], [268, 3, 1, "", "on_right_mouse_double_clicked"], [268, 4, 1, "id2", "position"], [268, 2, 1, "", "right_button_click_callback"], [268, 2, 1, "", "right_button_release_callback"], [268, 2, 1, "", "set_visibility"], [268, 4, 1, "id3", "size"]], "fury.ui.elements": [[268, 1, 1, "", "Card2D"], [268, 1, 1, "", "Checkbox"], [268, 1, 1, "", "ComboBox2D"], [268, 1, 1, "", "DrawPanel"], [268, 1, 1, "", "DrawShape"], [268, 1, 1, "", "FileMenu2D"], [268, 1, 1, "", "LineDoubleSlider2D"], [268, 1, 1, "", "LineSlider2D"], [268, 1, 1, "", "ListBox2D"], [268, 1, 1, "", "ListBoxItem2D"], [268, 1, 1, "", "Option"], [268, 1, 1, "", "PlaybackPanel"], [268, 1, 1, "", "RadioButton"], [268, 1, 1, "", "RangeSlider"], [268, 1, 1, "", "RingSlider2D"], [268, 1, 1, "", "TextBox2D"]], "fury.ui.elements.Card2D": [[268, 2, 1, "", "__init__"], [268, 4, 1, "", "body"], [268, 3, 1, "", "body_box"], [268, 4, 1, "", "color"], [268, 3, 1, "", "image"], [268, 2, 1, "", "left_button_dragged"], [268, 2, 1, "", "left_button_pressed"], [268, 2, 1, "", "resize"], [268, 4, 1, "", "title"], [268, 3, 1, "", "title_box"]], "fury.ui.elements.Checkbox": [[268, 2, 1, "", "__init__"], [268, 4, 1, "", "font_size"], [268, 3, 1, "", "labels"], [268, 3, 1, "", "options"], [268, 4, 1, "id15", "padding"]], "fury.ui.elements.ComboBox2D": [[268, 2, 1, "", "__init__"], [268, 2, 1, "", "append_item"], [268, 3, 1, "", "drop_down_button"], [268, 3, 1, "", "drop_down_menu"], [268, 2, 1, "", "left_button_dragged"], [268, 2, 1, "", "left_button_pressed"], [268, 2, 1, "", "menu_toggle_callback"], [268, 2, 1, "", "resize"], [268, 2, 1, "", "select_option_callback"], [268, 4, 1, "", "selected_text"], [268, 4, 1, "", "selected_text_index"], [268, 3, 1, "", "selection_box"], [268, 2, 1, "", "set_visibility"]], "fury.ui.elements.DrawPanel": [[268, 2, 1, "", "__init__"], [268, 2, 1, "", "cal_min_boundary_distance"], [268, 2, 1, "", "clamp_mouse_position"], [268, 4, 1, "", "current_mode"], [268, 2, 1, "", "draw_shape"], [268, 2, 1, "", "handle_mouse_click"], [268, 2, 1, "", "handle_mouse_drag"], [268, 2, 1, "", "left_button_dragged"], [268, 2, 1, "", "left_button_pressed"], [268, 2, 1, "", "resize"], [268, 2, 1, "", "resize_shape"], [268, 2, 1, "", "show_rotation_slider"], [268, 2, 1, "", "update_button_icons"], [268, 2, 1, "", "update_shape_selection"]], "fury.ui.elements.DrawShape": [[268, 2, 1, "", "__init__"], [268, 2, 1, "", "cal_bounding_box"], [268, 4, 1, "", "center"], [268, 2, 1, "", "clamp_position"], [268, 4, 1, "", "is_selected"], [268, 2, 1, "", "left_button_dragged"], [268, 2, 1, "", "left_button_pressed"], [268, 2, 1, "", "left_button_released"], [268, 2, 1, "", "remove"], [268, 2, 1, "", "resize"], [268, 2, 1, "", "rotate"], [268, 2, 1, "", "selection_change"], [268, 2, 1, "", "update_shape_position"]], "fury.ui.elements.FileMenu2D": [[268, 2, 1, "", "__init__"], [268, 2, 1, "", "directory_click_callback"], [268, 3, 1, "", "extensions"], [268, 2, 1, "", "get_all_file_names"], [268, 2, 1, "", "get_directory_names"], [268, 2, 1, "", "get_file_names"], [268, 3, 1, "", "listbox"], [268, 2, 1, "", "resize"], [268, 2, 1, "", "scroll_callback"], [268, 2, 1, "", "set_slot_colors"]], "fury.ui.elements.LineDoubleSlider2D": [[268, 2, 1, "", "__init__"], [268, 3, 1, "", "active_color"], [268, 4, 1, "", "bottom_disk_ratio"], [268, 4, 1, "", "bottom_disk_value"], [268, 4, 1, "", "bottom_y_position"], [268, 2, 1, "", "coord_to_ratio"], [268, 3, 1, "", "default_color"], [268, 2, 1, "", "format_text"], [268, 2, 1, "", "handle_move_callback"], [268, 2, 1, "", "handle_release_callback"], [268, 3, 1, "", "handles"], [268, 4, 1, "", "left_disk_ratio"], [268, 4, 1, "", "left_disk_value"], [268, 4, 1, "", "left_x_position"], [268, 3, 1, "", "length"], [268, 3, 1, "", "line_width"], [268, 2, 1, "", "ratio_to_coord"], [268, 2, 1, "", "ratio_to_value"], [268, 4, 1, "", "right_disk_ratio"], [268, 4, 1, "", "right_disk_value"], [268, 4, 1, "", "right_x_position"], [268, 2, 1, "", "set_position"], [268, 3, 1, "", "shape"], [268, 3, 1, "", "text"], [268, 4, 1, "", "top_disk_ratio"], [268, 4, 1, "", "top_disk_value"], [268, 4, 1, "", "top_y_position"], [268, 3, 1, "", "track"], [268, 2, 1, "", "update"], [268, 2, 1, "", "value_to_ratio"]], "fury.ui.elements.LineSlider2D": [[268, 2, 1, "", "__init__"], [268, 3, 1, "", "active_color"], [268, 4, 1, "", "bottom_y_position"], [268, 3, 1, "", "default_color"], [268, 2, 1, "", "format_text"], [268, 3, 1, "", "handle"], [268, 2, 1, "", "handle_move_callback"], [268, 2, 1, "", "handle_release_callback"], [268, 4, 1, "", "left_x_position"], [268, 3, 1, "", "length"], [268, 3, 1, "", "line_width"], [268, 4, 1, "", "ratio"], [268, 4, 1, "", "right_x_position"], [268, 2, 1, "", "set_position"], [268, 3, 1, "", "shape"], [268, 3, 1, "", "text"], [268, 4, 1, "", "top_y_position"], [268, 3, 1, "", "track"], [268, 2, 1, "", "track_click_callback"], [268, 2, 1, "", "update"], [268, 4, 1, "", "value"]], "fury.ui.elements.ListBox2D": [[268, 2, 1, "", "__init__"], [268, 2, 1, "", "clear_selection"], [268, 2, 1, "", "down_button_callback"], [268, 3, 1, "", "on_change"], [268, 2, 1, "", "resize"], [268, 2, 1, "", "scroll_click_callback"], [268, 2, 1, "", "scroll_drag_callback"], [268, 2, 1, "", "scroll_release_callback"], [268, 2, 1, "", "select"], [268, 2, 1, "", "up_button_callback"], [268, 2, 1, "", "update"], [268, 2, 1, "", "update_scrollbar"]], "fury.ui.elements.ListBoxItem2D": [[268, 2, 1, "", "__init__"], [268, 2, 1, "", "deselect"], [268, 4, 1, "", "element"], [268, 2, 1, "", "left_button_clicked"], [268, 2, 1, "", "resize"], [268, 2, 1, "", "select"]], "fury.ui.elements.Option": [[268, 2, 1, "", "__init__"], [268, 2, 1, "", "deselect"], [268, 3, 1, "", "font_size"], [268, 3, 1, "", "label"], [268, 2, 1, "", "select"], [268, 2, 1, "", "toggle"]], "fury.ui.elements.PlaybackPanel": [[268, 2, 1, "", "__init__"], [268, 4, 1, "", "current_time"], [268, 4, 1, "", "current_time_str"], [268, 4, 1, "", "final_time"], [268, 2, 1, "", "hide"], [268, 2, 1, "", "loop"], [268, 2, 1, "", "pause"], [268, 2, 1, "", "play"], [268, 2, 1, "", "play_once"], [268, 2, 1, "", "show"], [268, 4, 1, "", "speed"], [268, 2, 1, "", "stop"], [268, 4, 1, "", "width"]], "fury.ui.elements.RadioButton": [[268, 2, 1, "", "__init__"], [268, 3, 1, "", "labels"], [268, 3, 1, "", "options"], [268, 3, 1, "", "padding"]], "fury.ui.elements.RangeSlider": [[268, 2, 1, "", "__init__"], [268, 3, 1, "", "range_slider"], [268, 3, 1, "", "range_slider_center"], [268, 2, 1, "", "range_slider_handle_move_callback"], [268, 3, 1, "", "value_slider"], [268, 3, 1, "", "value_slider_center"]], "fury.ui.elements.RingSlider2D": [[268, 2, 1, "", "__init__"], [268, 3, 1, "", "active_color"], [268, 4, 1, "", "angle"], [268, 3, 1, "", "default_color"], [268, 2, 1, "", "format_text"], [268, 3, 1, "", "handle"], [268, 2, 1, "", "handle_move_callback"], [268, 2, 1, "", "handle_release_callback"], [268, 4, 1, "id13", "mid_track_radius"], [268, 2, 1, "", "move_handle"], [268, 4, 1, "id14", "previous_value"], [268, 4, 1, "", "ratio"], [268, 3, 1, "", "text"], [268, 3, 1, "", "track"], [268, 2, 1, "", "track_click_callback"], [268, 2, 1, "", "update"], [268, 4, 1, "", "value"]], "fury.ui.elements.TextBox2D": [[268, 2, 1, "", "__init__"], [268, 3, 1, "", "actor"], [268, 2, 1, "", "add_character"], [268, 3, 1, "", "caret_pos"], [268, 2, 1, "", "edit_mode"], [268, 2, 1, "", "handle_character"], [268, 3, 1, "", "height"], [268, 3, 1, "", "init"], [268, 2, 1, "", "key_press"], [268, 2, 1, "", "left_button_press"], [268, 2, 1, "", "left_move_left"], [268, 2, 1, "", "left_move_right"], [268, 2, 1, "", "move_caret_left"], [268, 2, 1, "", "move_caret_right"], [268, 2, 1, "", "move_left"], [268, 2, 1, "", "move_right"], [268, 2, 1, "", "remove_character"], [268, 2, 1, "", "render_text"], [268, 2, 1, "", "right_move_left"], [268, 2, 1, "", "right_move_right"], [268, 2, 1, "", "set_message"], [268, 2, 1, "", "showable_text"], [268, 3, 1, "", "text"], [268, 3, 1, "", "width"], [268, 2, 1, "", "width_set_text"], [268, 3, 1, "", "window_left"], [268, 3, 1, "", "window_right"]], "fury.ui.helpers": [[268, 5, 1, "", "cal_bounding_box_2d"], [268, 5, 1, "", "check_overflow"], [268, 5, 1, "", "clip_overflow"], [268, 5, 1, "", "rotate_2d"], [268, 5, 1, "", "wrap_overflow"]], "fury.utils": [[269, 5, 1, "", "add_polydata_numeric_field"], [269, 5, 1, "", "apply_affine"], [269, 5, 1, "", "apply_affine_to_actor"], [269, 5, 1, "", "array_from_actor"], [269, 5, 1, "", "asbytes"], [269, 5, 1, "", "change_vertices_order"], [269, 5, 1, "", "color_check"], [269, 5, 1, "", "colors_from_actor"], [269, 5, 1, "", "compute_bounds"], [269, 5, 1, "", "fix_winding_order"], [269, 5, 1, "", "get_actor_from_polydata"], [269, 5, 1, "", "get_actor_from_polymapper"], [269, 5, 1, "", "get_actor_from_primitive"], [269, 5, 1, "", "get_bounding_box_sizes"], [269, 5, 1, "", "get_bounds"], [269, 5, 1, "", "get_grid_cells_position"], [269, 5, 1, "", "get_polydata_colors"], [269, 5, 1, "", "get_polydata_field"], [269, 5, 1, "", "get_polydata_lines"], [269, 5, 1, "", "get_polydata_normals"], [269, 5, 1, "", "get_polydata_primitives_count"], [269, 5, 1, "", "get_polydata_tangents"], [269, 5, 1, "", "get_polydata_tcoord"], [269, 5, 1, "", "get_polydata_triangles"], [269, 5, 1, "", "get_polydata_vertices"], [269, 5, 1, "", "get_polymapper_from_polydata"], [269, 5, 1, "", "is_ui"], [269, 5, 1, "", "lines_to_vtk_polydata"], [269, 5, 1, "", "map_coordinates_3d_4d"], [269, 5, 1, "", "normalize_v3"], [269, 5, 1, "", "normals_from_actor"], [269, 5, 1, "", "normals_from_v_f"], [269, 5, 1, "", "normals_to_actor"], [269, 5, 1, "", "numpy_to_vtk_cells"], [269, 5, 1, "", "numpy_to_vtk_colors"], [269, 5, 1, "", "numpy_to_vtk_image_data"], [269, 5, 1, "", "numpy_to_vtk_matrix"], [269, 5, 1, "", "numpy_to_vtk_points"], [269, 5, 1, "", "primitives_count_from_actor"], [269, 5, 1, "", "primitives_count_to_actor"], [269, 5, 1, "", "remove_observer_from_actor"], [269, 5, 1, "", "repeat_sources"], [269, 5, 1, "", "represent_actor_as_wireframe"], [269, 5, 1, "", "rgb_to_vtk"], [269, 5, 1, "", "rotate"], [269, 5, 1, "", "set_actor_origin"], [269, 5, 1, "", "set_input"], [269, 5, 1, "", "set_polydata_colors"], [269, 5, 1, "", "set_polydata_normals"], [269, 5, 1, "", "set_polydata_primitives_count"], [269, 5, 1, "", "set_polydata_tangents"], [269, 5, 1, "", "set_polydata_tcoords"], [269, 5, 1, "", "set_polydata_triangles"], [269, 5, 1, "", "set_polydata_vertices"], [269, 5, 1, "", "shallow_copy"], [269, 5, 1, "", "tangents_from_actor"], [269, 5, 1, "", "tangents_from_direction_of_anisotropy"], [269, 5, 1, "", "tangents_to_actor"], [269, 5, 1, "", "triangle_order"], [269, 5, 1, "", "update_actor"], [269, 5, 1, "", "update_polydata_normals"], [269, 5, 1, "", "update_surface_actor_colors"], [269, 5, 1, "", "vertices_from_actor"], [269, 5, 1, "", "vtk_matrix_to_numpy"]], "fury.window": [[270, 1, 1, "", "Scene"], [270, 1, 1, "", "ShowManager"], [270, 5, 1, "", "analyze_scene"], [270, 5, 1, "", "analyze_snapshot"], [270, 5, 1, "", "antialiasing"], [270, 5, 1, "", "enable_stereo"], [270, 5, 1, "", "gl_disable_blend"], [270, 5, 1, "", "gl_disable_depth"], [270, 5, 1, "", "gl_enable_blend"], [270, 5, 1, "", "gl_enable_depth"], [270, 5, 1, "", "gl_get_current_state"], [270, 5, 1, "", "gl_reset_blend"], [270, 5, 1, "", "gl_set_additive_blending"], [270, 5, 1, "", "gl_set_additive_blending_white_background"], [270, 5, 1, "", "gl_set_multiplicative_blending"], [270, 5, 1, "", "gl_set_normal_blending"], [270, 5, 1, "", "gl_set_subtractive_blending"], [270, 5, 1, "", "record"], [270, 5, 1, "", "release_context"], [270, 5, 1, "", "show"], [270, 5, 1, "", "snapshot"]], "fury.window.Scene": [[270, 2, 1, "", "__init__"], [270, 2, 1, "", "add"], [270, 2, 1, "", "azimuth"], [270, 2, 1, "", "background"], [270, 2, 1, "", "camera"], [270, 2, 1, "", "camera_direction"], [270, 2, 1, "", "camera_info"], [270, 2, 1, "", "clear"], [270, 2, 1, "", "dolly"], [270, 2, 1, "", "elevation"], [270, 2, 1, "", "fxaa_off"], [270, 2, 1, "", "fxaa_on"], [270, 2, 1, "", "get_camera"], [270, 4, 1, "", "last_render_time"], [270, 2, 1, "", "pitch"], [270, 2, 1, "", "projection"], [270, 2, 1, "", "reset_camera"], [270, 2, 1, "", "reset_camera_tight"], [270, 2, 1, "", "reset_clipping_range"], [270, 2, 1, "", "rm"], [270, 2, 1, "", "rm_all"], [270, 2, 1, "", "roll"], [270, 2, 1, "", "set_camera"], [270, 2, 1, "", "size"], [270, 2, 1, "", "skybox"], [270, 2, 1, "", "yaw"], [270, 2, 1, "", "zoom"]], "fury.window.ShowManager": [[270, 2, 1, "", "__init__"], [270, 2, 1, "", "add_animation"], [270, 2, 1, "", "add_iren_callback"], [270, 2, 1, "", "add_timer_callback"], [270, 2, 1, "", "add_window_callback"], [270, 4, 1, "", "animations"], [270, 2, 1, "", "destroy_timer"], [270, 2, 1, "", "destroy_timers"], [270, 2, 1, "", "exit"], [270, 4, 1, "", "frame_rate"], [270, 2, 1, "", "initialize"], [270, 3, 1, "", "iren"], [270, 2, 1, "", "is_done"], [270, 2, 1, "", "lock"], [270, 2, 1, "", "lock_current"], [270, 2, 1, "", "play_events"], [270, 2, 1, "", "play_events_from_file"], [270, 2, 1, "", "record_events"], [270, 2, 1, "", "record_events_to_file"], [270, 2, 1, "", "release_current"], [270, 2, 1, "", "release_lock"], [270, 2, 1, "", "remove_animation"], [270, 2, 1, "", "render"], [270, 2, 1, "", "save_screenshot"], [270, 3, 1, "", "scene"], [270, 2, 1, "", "start"], [270, 3, 1, "", "style"], [270, 4, 1, "", "timelines"], [270, 2, 1, "", "wait"], [270, 3, 1, "", "window"]]}, "objtypes": {"0": "py:module", "1": "py:class", "2": "py:method", "3": "py:attribute", "4": "py:property", "5": "py:function"}, "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"]}, "titleterms": {"introductori": [0, 81], "furi": [1, 2, 15, 31, 48, 54, 59, 78, 79, 80, 84, 89, 90, 91, 92, 93, 94, 95, 97, 113, 123, 129, 139, 142, 154, 157, 165, 166, 167, 168, 211, 213, 219, 220, 247], "arrow": [1, 248], "actor": [1, 2, 15, 54, 69, 84, 118, 198, 208, 218, 225, 228, 248, 249, 259], "cone": [2, 243, 248], "textur": [3, 18, 248, 259], "sphere": [3, 15, 16, 18, 46, 48, 54, 59, 65, 66, 67, 192, 248], "anim": [3, 8, 12, 14, 23, 26, 33, 52, 54, 57, 58, 59, 60, 61, 63, 81, 158, 171, 172, 183, 190, 193, 195, 197, 198, 199, 201, 210, 211, 213, 218, 250], "earth": 4, "coordin": 4, "convers": 4, "visual": [5, 6, 17, 22, 25, 32, 33, 36, 69, 133, 139, 234, 243], "gltf": [5, 6, 7, 8, 12, 56, 175, 179, 184, 187, 218, 256], "file": [5, 6, 7, 12, 56, 218], "export": [7, 179, 187, 218], "scene": [7, 53, 84, 218, 270], "morph": [8, 214, 218], "multithread": 9, "exampl": [9, 84], "simpl": [10, 13, 47, 84, 218], "pick": [10, 262], "select": [11, 49], "multipl": [11, 84, 111, 205], "object": [11, 80, 84, 125, 126, 162, 163, 164, 216, 217, 218], "skelet": [12, 199, 210, 218], "volum": [13, 25, 259], "slice": 13, "render": [13, 25, 36, 65, 66, 84, 259], "from": [13, 25, 56, 185, 218], "t1": 13, "specif": [13, 25], "valu": [13, 25], "rang": [13, 49], "fa": 13, "your": [13, 25, 230], "colormap": [13, 25, 251], "creat": [13, 54, 58, 62, 84, 187, 200], "mosaic": 13, "solar": 14, "system": [14, 133, 139, 142], "spiki": 16, "surfac": [17, 36, 248], "us": [19, 28, 42, 45, 46, 53, 68, 71, 80, 81, 93, 139, 145, 192], "timer": [19, 84], "collis": [20, 72, 84, 107], "particl": [20, 30], "box": [20, 42, 248], "demo": [21, 34, 81], "advanc": 22, "interact": [22, 34, 78], "2d": 23, "function": [23, 125], "brownian": 24, "motion": [24, 30], "bundl": 25, "metric": 25, "show": [25, 42, 43, 44, 46, 49, 51, 84, 270], "everi": 25, "streamlin": [25, 36], "an": [25, 58], "orient": [25, 110], "color": [25, 42, 46, 48, 55, 70, 177], "point": [25, 248, 259], "default": [25, 58], "differ": [25, 45, 133], "add": 25, "depth": 25, "cue": 25, "fake": 25, "tube": 25, "combin": [25, 30], "electromagnet": 26, "wave": 26, "propag": 26, "brain": [27, 93], "fiber": 27, "odf": 27, "visualis": 27, "fine": 28, "tune": 28, "opengl": 28, "state": 28, "shader": [28, 64, 67, 81, 117, 119, 127, 196, 259, 265], "callback": [28, 43, 84], "fractal": 29, "charg": 30, "magnet": 30, "electr": 30, "field": 30, "marker": [31, 248], "interdisciplinari": 32, "map": 32, "journal": 32, "network": [32, 33, 139, 142, 145], "version": [33, 196], "pbr": [34, 66, 218], "plai": [35, 197], "video": 35, "3d": [35, 169], "world": 35, "roi": 36, "tesseract": 37, "hypercub": 37, "user": [38, 49, 78, 81], "interfac": [38, 49, 81], "element": [38, 45, 81, 268], "button": [39, 42, 46, 49], "text": [39, 49, 54, 226], "card": [40, 41], "figur": [42, 248], "control": [42, 46, 48, 51], "check": [42, 98, 130, 136, 142, 148, 151], "radio": [42, 46], "manag": [42, 43, 44, 46, 49, 51, 84], "combobox": [43, 48, 229], "drawpanel": [44, 173, 174, 207, 268], "layout": [45, 139, 142, 145, 155, 258], "ui": [45, 48, 110, 115, 134, 137, 140, 143, 146, 149, 158, 173, 174, 268], "shape": [47, 49, 185, 194], "tab": [48, 110, 115], "slider": [48, 49, 51], "cube": [48, 49, 51, 248], "index": 48, "0": [48, 89, 90, 91, 92, 94, 95, 97, 113, 123, 129, 157, 167, 220, 221, 222, 246, 273, 277, 278, 279, 281, 283, 285, 286], "checkbox": [48, 268], "For": 48, "cylind": [48, 68, 248], "1": [48, 89, 90, 91, 97, 98, 123, 130, 131, 142, 172, 173, 175, 223, 224, 225, 273, 274, 275, 276, 280, 282, 284], "2": [48, 92, 134, 174, 177, 179, 226, 227, 228, 275, 277], "imag": 49, "panel": 49, "menu": 49, "listbox": 50, "bezier": [53, 180], "interpol": [53, 55, 56, 58, 61, 177, 180, 183, 192, 250], "posit": [53, 56, 58], "cubic": [53, 56, 180], "curv": 53, "paramet": 53, "set": [53, 55, 56, 58, 62, 84], "keyfram": [53, 54, 55, 56, 57, 58, 59, 61, 62, 63, 172, 211, 213], "A": [53, 133, 136, 145, 169, 175], "more": [53, 117, 119, 155, 189], "complex": 53, "camera": [54, 183, 259], "opac": 54, "The": [54, 145, 169, 170, 171, 224, 227, 245, 246], "plan": [54, 235], "main": [54, 266], "timelin": [54, 62, 125, 126, 162, 163, 164, 183, 186, 189, 196, 216, 217, 218, 250], "ad": [54, 84, 140, 181, 186, 205, 208, 215], "static": [54, 218], "50": 54, "make": [56, 68, 180, 228], "custom": [56, 154], "implement": [56, 145, 172, 177, 180, 186, 192, 225, 287], "spline": [56, 61], "data": [56, 133, 190, 237, 253], "same": [56, 198], "one": 56, "you": [56, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 114, 115, 116, 117, 118, 119, 120, 121, 122, 124, 127, 132, 135, 136, 138, 141, 142, 144, 147, 150, 153, 156, 159, 161, 172, 173, 174, 175, 176, 177, 178, 179, 180, 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, 223, 226, 229, 235, 238, 241, 244], "get": [56, 85, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 114, 115, 116, 117, 118, 119, 120, 121, 122, 124, 127, 130, 131, 134, 135, 136, 137, 138, 140, 141, 142, 143, 144, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 158, 159, 160, 161, 165, 166, 169, 172, 173, 174, 175, 176, 177, 178, 179, 180, 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, 222, 223, 225, 226, 228, 229, 231, 232, 234, 235, 237, 238, 240, 241, 243, 244, 287], "hierarch": [57, 201], "what": [58, 59, 62, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 114, 115, 116, 117, 118, 119, 120, 121, 122, 124, 127, 130, 131, 132, 134, 135, 136, 137, 138, 140, 141, 142, 143, 144, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 158, 159, 160, 161, 165, 166, 172, 173, 174, 175, 176, 177, 178, 179, 180, 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, 222, 223, 224, 225, 226, 228, 229, 231, 232, 234, 235, 237, 238, 239, 240, 241, 243, 244], "i": [58, 59, 62, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 114, 115, 116, 117, 118, 119, 120, 121, 122, 124, 127, 130, 131, 132, 134, 135, 136, 137, 138, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 158, 159, 160, 161, 165, 166, 169, 172, 173, 174, 175, 176, 177, 178, 179, 180, 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, 222, 223, 225, 226, 228, 229, 231, 232, 233, 234, 235, 237, 238, 239, 240, 241, 243, 244], "ar": [58, 239], "environ": 58, "chang": [58, 84], "singl": [58, 84, 118, 183], "properti": [58, 84], "introduct": [59, 125], "exactli": 59, "translat": [59, 109, 202, 267], "arm": 60, "robot": 60, "wrap": 61, "up": [61, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 114, 115, 116, 117, 118, 119, 120, 121, 122, 124, 127, 130, 131, 132, 134, 135, 136, 137, 138, 140, 141, 142, 143, 144, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 158, 159, 160, 161, 165, 172, 173, 174, 175, 176, 177, 178, 179, 180, 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, 222, 223, 225, 226, 228, 229, 231, 232, 234, 235, 237, 238, 239, 240, 241, 243, 244], "sdf": [65, 68, 69, 111, 114, 116, 165, 225, 248], "impostor": 65, "billboard": [65, 192, 248], "tradit": 65, "refer": [65, 68, 164, 271], "physic": [66, 71, 75, 81, 118, 121], "base": [66, 196, 200, 265], "principl": 67, "brdf": 67, "polygon": [68, 259], "v": 68, "vari": 70, "integr": [71, 81, 84], "pybullet": [71, 81, 84], "ball": [72, 76, 84, 107, 121], "simul": [72, 73, 74, 75, 76, 84, 107, 120, 121], "brick": [73, 84, 107], "wall": [73, 84, 107], "sync": [73, 75, 84], "chain": [74, 84, 120], "domino": [75, 84], "wreck": [76, 84, 121], "stream": [77, 78, 79, 80, 81, 139, 142, 266], "note": [78, 80, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286], "webrtc": [79, 80, 139, 142], "mjpeg": [79, 80], "widget": [80, 266], "tutori": [81, 115, 120, 121, 204, 215, 237, 240], "blog": [82, 98, 99, 131, 132, 216, 218], "commun": [83, 98, 99, 132, 172, 175, 221, 222, 246], "join": 83, "u": 83, "contributor": 83, "guid": 84, "rigid": 84, "bodi": 84, "dynam": 84, "necessari": 84, "import": [84, 145, 175, 218, 227], "connect": 84, "mode": 84, "disconnect": 84, "graviti": 84, "applic": 84, "forc": [84, 107], "torqu": 84, "enabl": 84, "creation": 84, "initi": 84, "joint": 84, "start": [85, 239, 287], "instal": 87, "depend": 87, "pypi": 87, "conda": 87, "via": [87, 168, 219], "sourc": [87, 124, 170], "test": [87, 139, 181, 186, 202, 205, 206], "run": 87, "offscreen": 87, "popul": 87, "our": 87, "document": [87, 186, 227, 287], "folder": 87, "structur": 87, "build": [87, 239], "about": [88, 169, 170, 224], "overview": [88, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286], "statement": 88, "need": [88, 287], "mission": 88, "featur": [88, 134, 182, 189, 191, 287], "architectur": [88, 207], "licens": [88, 288], "credit": 88, "bug": [88, 139, 143, 146, 193, 195, 206, 287], "report": [88, 164, 287], "support": [88, 158, 185, 201, 203, 205, 210], "releas": [89, 90, 91, 92, 94, 95, 97, 113, 123, 129, 157, 167, 220, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287], "3": [90, 94, 136, 137, 176, 180, 181, 229, 230, 231, 275, 278], "4": [91, 95, 140, 178, 183, 184, 232, 233, 234, 276, 279], "success": 93, "art": 93, "competit": 93, "googl": [96, 125, 126, 128, 162, 163, 164, 168, 216, 217, 218, 219], "summer": [96, 125, 126, 128, 162, 163, 164, 168, 216, 217, 218, 219], "code": [96, 100, 101, 125, 126, 128, 135, 138, 139, 141, 144, 145, 147, 150, 152, 153, 156, 159, 161, 162, 163, 164, 168, 169, 197, 216, 217, 218, 219], "5": [97, 142, 143, 182, 186, 187, 235, 236, 237, 280], "weekli": [98, 130, 131, 136, 142, 148, 151, 216, 218], "welcom": [98, 99, 131, 132], "my": [98, 99, 131, 132, 169, 170, 224], "gsoc": [98, 99, 132, 170, 171, 216, 218, 221, 222], "did": [98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 114, 115, 116, 117, 118, 119, 120, 121, 122, 124, 127, 130, 131, 132, 134, 135, 136, 137, 138, 140, 141, 142, 143, 144, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 158, 159, 160, 161, 165, 166, 172, 173, 174, 175, 176, 177, 178, 179, 180, 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, 222, 223, 225, 226, 228, 229, 231, 232, 234, 235, 237, 238, 239, 240, 241, 243, 244, 245], "do": [98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 114, 115, 116, 117, 118, 119, 120, 121, 122, 124, 127, 130, 131, 132, 134, 135, 136, 137, 138, 140, 141, 142, 143, 144, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 158, 159, 160, 161, 165, 166, 172, 173, 174, 175, 176, 177, 178, 179, 180, 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, 222, 223, 225, 226, 228, 229, 231, 232, 234, 235, 237, 238, 240, 241, 243, 244, 287], "dure": [98, 99, 132, 172, 175], "bond": [98, 99, 132, 172, 175, 221, 222, 246], "period": [98, 99, 132, 172, 175, 221, 222, 246], "come": [98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 114, 115, 116, 117, 118, 119, 120, 121, 122, 124, 127, 130, 131, 132, 134, 135, 136, 137, 138, 140, 141, 142, 143, 144, 146, 147, 148, 150, 151, 152, 153, 154, 155, 156, 158, 159, 160, 161, 165, 172, 173, 174, 175, 176, 177, 178, 179, 180, 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, 222, 223, 225, 226, 228, 229, 231, 232, 234, 235, 237, 238, 240, 241, 243, 244], "next": [98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 114, 115, 116, 117, 118, 119, 120, 121, 122, 124, 127, 130, 131, 132, 134, 135, 136, 137, 138, 140, 141, 142, 143, 144, 145, 146, 147, 148, 150, 151, 152, 153, 154, 155, 156, 158, 159, 160, 161, 165, 172, 173, 174, 175, 176, 177, 178, 179, 180, 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, 222, 223, 224, 225, 226, 228, 229, 231, 232, 234, 235, 237, 238, 240, 241, 243, 244], "week": [98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 114, 115, 116, 117, 118, 119, 120, 121, 122, 124, 127, 130, 131, 132, 134, 135, 136, 137, 138, 140, 141, 142, 143, 144, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 158, 159, 160, 161, 165, 166, 172, 173, 174, 175, 176, 177, 178, 179, 180, 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, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246], "first": [100, 101, 135, 169, 199, 231, 234, 240], "thi": [100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 114, 115, 116, 117, 118, 119, 120, 121, 122, 124, 127, 130, 131, 134, 135, 136, 137, 138, 140, 141, 142, 143, 144, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 158, 159, 160, 161, 165, 166, 172, 173, 174, 175, 176, 177, 178, 179, 180, 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, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246], "stuck": [100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 114, 115, 116, 117, 118, 119, 120, 121, 122, 124, 127, 130, 131, 134, 135, 136, 137, 138, 140, 141, 142, 143, 144, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 158, 159, 160, 161, 165, 166, 172, 173, 174, 175, 176, 177, 178, 179, 180, 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, 222, 223, 225, 226, 228, 229, 231, 232, 234, 235, 237, 238, 240, 241, 243, 244], "anywher": [100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 114, 115, 116, 117, 118, 119, 120, 121, 122, 124, 127, 130, 131, 134, 135, 136, 137, 138, 140, 141, 142, 143, 144, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 158, 159, 160, 161, 165, 166, 172, 173, 174, 175, 176, 177, 178, 179, 180, 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, 222, 223, 225, 226, 228, 229, 231, 232, 234, 235, 237, 238, 240, 241, 243, 244], "raymarch": [102, 104], "combobox2d": [103, 112, 268], "progress": [103, 105, 126, 162, 163, 180, 216, 217, 218], "continu": [104, 108, 152], "textblock2d": [105, 112, 238, 268], "spheric": [106, 108], "harmon": [106, 108], "mai": 107, "reposit": 109, "rotat": [109, 185, 188, 212, 267, 269], "size": 110, "primit": [111, 114, 116, 198, 264], "clip": 112, "overflow": 112, "6": [113, 123, 146, 185, 189, 190, 238, 239, 240, 281, 282], "improv": [114, 174, 179, 204], "tabpanel2d": [115, 268], "merg": 116, "scrollbar": [118, 120, 121], "refactor": [120, 139], "updat": [120, 121, 202, 207], "outlin": 122, "picker": 122, "part": 124, "journei": [124, 169, 170, 171], "end": 124, "unless": 124, "its": 124, "open": [124, 152, 160, 170], "dialog": 124, "save": 124, "2020": [125, 280, 281, 282], "final": [125, 126, 149, 160, 162, 163, 164, 184, 216, 217, 218], "work": [125, 126, 133, 137, 146, 152, 162, 163, 182, 188, 191, 199, 212, 216, 217, 218, 223, 231], "product": [125, 126, 162, 163, 216, 217, 218], "propos": [125, 126, 162, 163, 164, 216, 217, 218], "unsubmit": 125, "complet": [125, 126, 162, 163, 164, 216, 217, 218], "other": [125, 126, 162, 163, 216, 217, 218, 287], "modifi": [126, 217], "showcas": 127, "7": [129, 148, 149, 157, 188, 192, 193, 241, 242, 243, 283, 284], "In": [130, 136, 142, 148, 151], "stadia": 133, "like": 133, "how": [133, 145, 245], "doe": 133, "share": 133, "between": 133, "process": 133, "multiprocess": 133, "rawarrai": 133, "insid": 133, "oper": 133, "addit": 134, "io": [134, 257], "modul": [134, 140, 249, 250, 253, 265, 266, 268], "python": [136, 139, 145], "core": [136, 268], "issu": [136, 139, 178, 189, 202, 226], "adapt": 137, "gridlayout": [137, 258], "second": 138, "solid": 139, "monkei": 139, "patch": 139, "through": 139, "abstract": [139, 164], "class": 139, "namedtupl": 139, "grant": 139, "immut": 139, "avoid": 139, "silent": 139, "most": [139, 145], "relev": 139, "helio": [139, 142, 154, 165, 166], "ref": 139, "tree": 140, "third": 141, "gl": 142, "pr": [142, 143, 149, 152, 187, 188, 231, 235], "437": 142, "superactor": 142, "rebas": 143, "all": [143, 236], "w": 143, "r": 143, "t": 143, "restructur": 143, "tree2d": [143, 146, 149, 152], "fix": [143, 146, 178, 181, 187, 189, 193, 195, 202, 206, 208, 287], "fourth": 144, "algorithm": 145, "ipc": 145, "problem": [145, 176, 224, 227, 230, 233, 236, 239], "block": 145, "behavior": 145, "why": 145, "thread": 145, "good": [145, 227], "solut": 145, "have": 145, "b": 145, "result": 145, "step": 145, "summari": [145, 154], "pull": [145, 160, 218, 287], "request": [145, 160, 218, 287], "fifth": 147, "stall": 149, "finish": [149, 152], "sixth": 150, "8": [151, 152, 167, 191, 195, 196, 244, 245, 285], "cleanup": 152, "seventh": 153, "09": [154, 273], "sphinx": 154, "9": [155, 194, 198, 199, 220, 286], "eighth": 156, "10": [158, 165, 197, 201, 203, 274, 275, 279], "accordion": 158, "sprite": 158, "sheet": 158, "ninth": 159, "11": [160, 166, 200, 204, 205, 276], "tenth": 161, "2021": [164, 283, 284], "bruno": 164, "messia": 164, "font": 165, "remov": 166, "flicker": 166, "effect": 166, "contribut": [168, 219, 287], "2022": [168, 170, 285], "till": 169, "accept": 169, "gsoc22": 169, "littl": [169, 204], "myself": [169, 170], "experi": 169, "develop": [169, 171], "game": [169, 171], "dai": [169, 170], "got": 169, "intro": [170, 171], "pre": 171, "begin": [171, 246], "program": 171, "interest": 171, "opensourc": 171, "21": [171, 273], "22": 171, "basic": [172, 175], "api": [172, 180, 245, 271], "lai": 173, "foundat": 173, "deal": 176, "non": 177, "linear": 177, "clamp": 178, "fetcher": [179, 181, 218, 253], "redesign": 180, "gpu": 180, "side": 180, "doc": 181, "new": [182, 215], "glsl": 183, "loader": [184, 187], "center": 185, "slerp": [186, 250], "unit": 186, "try": [188, 235], "freehand": [188, 200], "draw": [188, 200], "equip": 189, "extract": 190, "polylin": 191, "closur": 192, "group": 194, "transform": [194, 205, 208, 259, 267], "back": 196, "understand": 197, "prototyp": 199, "12": [202, 208, 215], "multi": [203, 210], "node": 203, "skin": [203, 218], "13": [206, 210, 211, 283], "separ": 206, "14": [207, 213, 214], "skeleton": 208, "global": 208, "15": [209, 286], "highlight": 209, "drawshap": [209, 268], "bone": 210, "now": [211, 213], "bit": [211, 213], "easier": [211, 213], "16": 212, "here": 214, "load": [218, 265], "model": 218, "skine": 218, "emiss": 218, "materi": [218, 260], "indic": 218, "khrono": 218, "sampl": 218, "2023": [219, 221, 222, 286], "bound": [221, 222], "spinbox": 223, "textbox": [223, 229], "enhanc": 223, "fbo": 224, "saga": 224, "past": 224, "current": 224, "ellipsoid": [225, 228, 237, 240, 248], "tackl": 226, "justif": [226, 229], "icon": [226, 229], "flaw": [226, 229], "last": [227, 230, 233, 236, 239, 242, 245], "": [227, 230, 233, 236, 239, 242, 245, 246], "effort": [227, 230, 233, 236, 242, 245], "where": [227, 230, 233, 236, 239], "wa": [227, 230, 233, 236, 239, 242], "goal": [227, 230, 233, 236, 239, 242, 245, 246], "adjust": [228, 243], "resolv": 229, "watch": 230, "expect": 230, "uncertainti": [231, 234, 243], "detail": [231, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286], "exam": 232, "prepar": [232, 237], "review": 232, "noth": 233, "ever": 233, "lost": 233, "draft": [234, 240], "dti": 234, "out": 235, "ahead": 235, "road": 236, "lead": 236, "rome": 236, "boundingbox": 238, "thing": 239, "sow": 241, "seed": 241, "treeui": 241, "experiment": 242, "done": 242, "hard": 242, "anoth": 244, "textblockui": 244, "birth": 245, "versatil": 245, "so": [245, 246], "go": 245, "everyth": 246, "project": 246, "get_info": 247, "enable_warn": 247, "disable_warn": 247, "contain": [248, 268], "slicer": 248, "contour_from_roi": 248, "contour_from_label": 248, "streamtub": 248, "line": 248, "scalar_bar": 248, "ax": 248, "odf_slic": [248, 249], "tensor_slic": 248, "peak_slic": 248, "peak": [248, 249], "dot": 248, "disk": 248, "squar": 248, "rectangl": 248, "triangularpr": 248, "rhombicuboctahedron": 248, "pentagonalpr": 248, "octagonalpr": 248, "frustum": 248, "superquadr": 248, "vector_text": 248, "label": 248, "text_3d": 248, "grid": 248, "texture_upd": 248, "texture_on_spher": 248, "texture_2d": 248, "tensor": 249, "odfsliceractor": 249, "peakactor": 249, "tensor_ellipsoid": 249, "helper": [250, 268], "cameraanim": 250, "get_previous_timestamp": 250, "get_next_timestamp": 250, "get_timestamps_from_keyfram": 250, "get_values_from_keyfram": 250, "get_time_tau": 250, "lerp": 250, "euclidean_dist": 250, "spline_interpol": 250, "cubic_spline_interpol": 250, "step_interpol": 250, "linear_interpol": 250, "cubic_bezier_interpol": 250, "color_interpol": 250, "hsv_color_interpol": 250, "lab_color_interpol": 250, "xyz_color_interpol": 250, "tan_cubic_spline_interpol": 250, "colormap_lookup_t": 251, "cc": 251, "ss": 251, "boys2rgb": 251, "orient2rgb": 251, "line_color": 251, "get_cmap": 251, "create_colormap": 251, "distinguishable_colormap": 251, "hex_to_rgb": 251, "rgb2hsv": 251, "hsv2rgb": 251, "xyz_from_rgb": 251, "rgb_from_xyz": 251, "xyz2rgb": 251, "rgb2xyz": 251, "get_xyz_coord": 251, "xyz2lab": 251, "lab2xyz": 251, "rgb2lab": 251, "lab2rgb": 251, "convert": 252, "matplotlib_figure_to_numpi": 252, "data_dir": 253, "update_progressbar": 253, "copyfileobj_withprogress": 253, "check_sha": 253, "fetch_data": 253, "fetch_gltf": 253, "fetch_viz_cubemap": 253, "fetch_viz_icon": 253, "fetch_viz_new_icon": 253, "fetch_viz_wiki_nw": 253, "fetch_viz_model": 253, "fetch_viz_dmri": 253, "fetch_viz_textur": 253, "read_viz_cubemap": 253, "read_viz_icon": 253, "read_viz_model": 253, "read_viz_textur": 253, "read_viz_dmri": 253, "read_viz_gltf": 253, "list_gltf_sample_model": 253, "decor": 254, "skip_r": 254, "doctest_skip_pars": 254, "deprec": 255, "expireddeprecationerror": 255, "argsdeprecationwarn": 255, "_leading_whit": 255, "cmp_pkg_version": 255, "is_bad_vers": 255, "deprecate_with_vers": 255, "deprecated_param": 255, "export_scen": 256, "write_scen": 256, "write_nod": 256, "write_mesh": 256, "write_camera": 256, "get_prim": 256, "write_materi": 256, "write_accessor": 256, "write_bufferview": 256, "write_buff": 256, "load_cubemap_textur": 257, "load_imag": 257, "load_text": 257, "save_imag": 257, "load_polydata": 257, "save_polydata": 257, "load_sprite_sheet": 257, "horizontallayout": 258, "verticallayout": 258, "xlayout": 258, "ylayout": 258, "zlayout": 258, "lib": 259, "command": 259, "lookupt": 259, "idtypearrai": 259, "floatarrai": 259, "doublearrai": 259, "stringarrai": 259, "unsignedchararrai": 259, "algorithmoutput": 259, "skybox": 259, "actor2d": 259, "renderwindow": 259, "renderwindowinteractor": 259, "interactoreventrecord": 259, "windowtoimagefilt": 259, "interactorstyl": 259, "proppick": 259, "pointpick": 259, "cellpick": 259, "worldpointpick": 259, "hardwareselector": 259, "imageactor": 259, "polydatamapp": 259, "polydatamapper2d": 259, "assembli": 259, "datasetmapp": 259, "texturedactor2d": 259, "follow": 259, "textactor": 259, "textactor3d": 259, "property2d": 259, "vectortext": 259, "lodactor": 259, "scalarbaractor": 259, "openglrender": 259, "interactorstyleimag": 259, "interactorstyletrackballactor": 259, "interactorstyletrackballcamera": 259, "interactorstyleus": 259, "cleanpolydata": 259, "polydatanorm": 259, "contourfilt": 259, "tubefilt": 259, "glyph3d": 259, "trianglefilt": 259, "splinefilt": 259, "transformpolydatafilt": 259, "renderlargeimag": 259, "loopsubdivisionfilt": 259, "butterflysubdivisionfilt": 259, "outlinefilt": 259, "linearextrusionfilt": 259, "texturemaptoplan": 259, "spheresourc": 259, "cylindersourc": 259, "arrowsourc": 259, "conesourc": 259, "disksourc": 259, "texturedspheresourc": 259, "regularpolygonsourc": 259, "polydata": 259, "imagedata": 259, "dataobject": 259, "cellarrai": 259, "polyvertex": 259, "unstructuredgrid": 259, "molecul": [259, 261], "datasetattribut": 259, "matrix4x4": 259, "matrix3x3": 259, "imageflip": 259, "imagereslic": 259, "imagemaptocolor": 259, "imagereader2factori": 259, "pngreader": 259, "bmpreader": 259, "jpegread": 259, "tiffread": 259, "plyread": 259, "stlreader": 259, "objread": 259, "mniobjectread": 259, "polydataread": 259, "xmlpolydataread": 259, "pngwriter": 259, "bmpwriter": 259, "jpegwrit": 259, "tiffwrit": 259, "plywrit": 259, "stlwriter": 259, "mniobjectwrit": 259, "polydatawrit": 259, "xmlpolydatawrit": 259, "simplebondperceiv": 259, "proteinribbonfilt": 259, "periodict": 259, "openglmoleculemapp": 259, "vtk_version": 259, "manifest_pbr": 260, "manifest_principl": 260, "manifest_standard": 260, "molecular": 261, "ptabl": 261, "add_atom": 261, "add_bond": 261, "get_atomic_numb": 261, "set_atomic_numb": 261, "get_atomic_posit": 261, "set_atomic_posit": 261, "get_bond_ord": 261, "set_bond_ord": 261, "get_all_atomic_numb": 261, "get_all_bond_ord": 261, "get_all_atomic_posit": 261, "deep_copy_molecul": 261, "compute_bond": 261, "sphere_cpk": 261, "ball_stick": 261, "stick": 261, "ribbon": 261, "bounding_box": 261, "pickingmanag": 262, "selectionmanag": 262, "pkg_info": 263, "pkg_commit_hash": 263, "faces_from_sphere_vertic": 264, "repeat_primitive_funct": 264, "repeat_primit": 264, "prim_squar": 264, "prim_box": 264, "prim_spher": 264, "prim_superquadr": 264, "prim_tetrahedron": 264, "prim_icosahedron": 264, "prim_rhombicuboctahedron": 264, "prim_star": 264, "prim_triangularpr": 264, "prim_pentagonalpr": 264, "prim_octagonalpr": 264, "prim_frustum": 264, "prim_cylind": 264, "prim_arrow": 264, "prim_con": 264, "shaders_dir": 265, "compose_shad": 265, "import_fury_shad": 265, "load_shad": 265, "shader_to_actor": 265, "replace_shader_in_actor": 265, "add_shader_callback": 265, "shader_apply_effect": 265, "attribute_to_actor": 265, "client": 266, "constant": 266, "server": 266, "async_app": 266, "tool": 266, "furystreamcli": 266, "furystreaminteract": 266, "callback_stream_cli": 266, "interaction_callback": 266, "_cqueue_event_id": 266, "_cqueue_index_info": 266, "_cqueue": 266, "pc": 266, "set_weel": 266, "set_mous": 266, "set_mouse_click": 266, "get_app": 266, "rtcserver": 266, "web_server_raw_arrai": 266, "web_serv": 266, "genericmultidimensionalbuff": 266, "rawarraymultidimensionalbuff": 266, "sharedmemmultidimensionalbuff": 266, "genericcircularqueu": 266, "arraycircularqueu": 266, "sharedmemcircularqueu": 266, "genericimagebuffermanag": 266, "rawarrayimagebuffermanag": 266, "sharedmemimagebuffermanag": 266, "intervaltimerthread": 266, "intervaltim": 266, "remove_shm_from_resource_track": 266, "check_port_is_avail": 266, "_tuple2ax": 267, "euler_matrix": 267, "sphere2cart": 267, "cart2spher": 267, "scale": 267, "apply_transform": 267, "transform_from_matrix": 267, "panel2d": 268, "tabui": 268, "imagecontainer2d": 268, "gridui": 268, "rectangle2d": 268, "disk2d": 268, "button2d": 268, "textbox2d": 268, "lineslider2d": 268, "linedoubleslider2d": 268, "ringslider2d": 268, "rangeslid": 268, "option": 268, "radiobutton": 268, "listbox2d": 268, "listboxitem2d": 268, "filemenu2d": 268, "playbackpanel": 268, "card2d": 268, "clip_overflow": 268, "wrap_overflow": 268, "check_overflow": 268, "cal_bounding_box_2d": 268, "rotate_2d": 268, "util": 269, "remove_observer_from_actor": 269, "set_input": 269, "numpy_to_vtk_point": 269, "numpy_to_vtk_color": 269, "numpy_to_vtk_cel": 269, "numpy_to_vtk_image_data": 269, "map_coordinates_3d_4d": 269, "lines_to_vtk_polydata": 269, "get_polydata_lin": 269, "get_polydata_triangl": 269, "get_polydata_vertic": 269, "get_polydata_tcoord": 269, "get_polydata_norm": 269, "get_polydata_tang": 269, "get_polydata_color": 269, "get_polydata_field": 269, "add_polydata_numeric_field": 269, "set_polydata_primitives_count": 269, "get_polydata_primitives_count": 269, "primitives_count_to_actor": 269, "primitives_count_from_actor": 269, "set_polydata_triangl": 269, "set_polydata_vertic": 269, "set_polydata_norm": 269, "set_polydata_tang": 269, "set_polydata_color": 269, "set_polydata_tcoord": 269, "update_polydata_norm": 269, "get_polymapper_from_polydata": 269, "get_actor_from_polymapp": 269, "get_actor_from_polydata": 269, "get_actor_from_primit": 269, "repeat_sourc": 269, "apply_affine_to_actor": 269, "apply_affin": 269, "asbyt": 269, "vtk_matrix_to_numpi": 269, "numpy_to_vtk_matrix": 269, "get_bounding_box_s": 269, "get_grid_cells_posit": 269, "shallow_copi": 269, "rgb_to_vtk": 269, "normalize_v3": 269, "normals_from_v_f": 269, "tangents_from_direction_of_anisotropi": 269, "triangle_ord": 269, "change_vertices_ord": 269, "fix_winding_ord": 269, "vertices_from_actor": 269, "colors_from_actor": 269, "normals_from_actor": 269, "tangents_from_actor": 269, "array_from_actor": 269, "normals_to_actor": 269, "tangents_to_actor": 269, "compute_bound": 269, "update_actor": 269, "get_bound": 269, "represent_actor_as_wirefram": 269, "update_surface_actor_color": 269, "color_check": 269, "is_ui": 269, "set_actor_origin": 269, "window": 270, "showmanag": 270, "record": 270, "antialias": 270, "snapshot": 270, "analyze_scen": 270, "analyze_snapshot": 270, "enable_stereo": 270, "gl_get_current_st": 270, "gl_reset_blend": 270, "gl_enable_depth": 270, "gl_disable_depth": 270, "gl_enable_blend": 270, "gl_disable_blend": 270, "gl_set_additive_blend": 270, "gl_set_additive_blending_white_background": 270, "gl_set_normal_blend": 270, "gl_set_multiplicative_blend": 270, "gl_set_subtractive_blend": 270, "release_context": 270, "histori": 272, "v0": [273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286], "2018": [273, 274, 275, 276], "quick": [273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286], "29": [274, 279], "31": [275, 285], "26": 276, "2019": [277, 278, 279], "03": [277, 283, 284], "08": [277, 278, 282, 284], "02": 278, "04": [280, 286], "01": [280, 285], "07": 281, "20": [281, 282], "type": 287, "write": 287, "submit": 287, "feedback": 287, "guidelin": 287, "publish": 287, "checklist": 287, "befor": 287, "stuff": 287}, "envversion": {"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, "sphinx": 58}, "alltitles": {"Introductory": [[0, "introductory"], [81, "introductory"]], "Fury Arrow Actor": [[1, "fury-arrow-actor"]], "Fury Cone Actor": [[2, "fury-cone-actor"]], "Texture Sphere Animation": [[3, "texture-sphere-animation"]], "Earth Coordinate Conversion": [[4, "earth-coordinate-conversion"]], "Visualizing a glTF file": [[5, "visualizing-a-gltf-file"], [6, "visualizing-a-gltf-file"]], "Exporting scene as a glTF file": [[7, "exporting-scene-as-a-gltf-file"]], "Morphing Animation in a glTF": [[8, "morphing-animation-in-a-gltf"]], "Multithreading Example": [[9, "multithreading-example"]], "Simple picking": [[10, "simple-picking"]], "Selecting multiple objects": [[11, "selecting-multiple-objects"]], "Skeletal Animation in a glTF file": [[12, "skeletal-animation-in-a-gltf-file"]], "Simple volume slicing": [[13, "simple-volume-slicing"]], "Render slices from T1 with a specific value range": [[13, "render-slices-from-t1-with-a-specific-value-range"]], "Render slices from FA with your colormap": [[13, "render-slices-from-fa-with-your-colormap"]], "Create a mosaic": [[13, "create-a-mosaic"]], "Solar System Animation": [[14, "solar-system-animation"]], "FURY sphere Actor": [[15, "fury-sphere-actor"]], "Spiky Sphere": [[16, "spiky-sphere"]], "Visualize surfaces": [[17, "visualize-surfaces"]], "Sphere Texture": [[18, "sphere-texture"]], "Using a timer": [[19, "using-a-timer"]], "Collisions of particles in a box": [[20, "collisions-of-particles-in-a-box"]], "Demos": [[21, "demos"], [81, "demos"]], "Advanced interactive visualization": [[22, "advanced-interactive-visualization"]], "Animated 2D functions": [[23, "animated-2d-functions"]], "Brownian motion": [[24, "brownian-motion"]], "Visualize bundles and metrics on bundles": [[25, "visualize-bundles-and-metrics-on-bundles"]], "Show every streamline with an orientation color": [[25, "show-every-streamline-with-an-orientation-color"]], "Show every point with a value from a volume with default colormap": [[25, "show-every-point-with-a-value-from-a-volume-with-default-colormap"]], "Show every point with a value from a volume with your colormap": [[25, "show-every-point-with-a-value-from-a-volume-with-your-colormap"]], "Show every bundle with a specific color": [[25, "show-every-bundle-with-a-specific-color"]], "Show every streamline of a bundle with a different color": [[25, "show-every-streamline-of-a-bundle-with-a-different-color"]], "Show every point of every streamline with a different color": [[25, "show-every-point-of-every-streamline-with-a-different-color"]], "Add depth cues to streamline rendering": [[25, "add-depth-cues-to-streamline-rendering"]], "Render streamlines as fake tubes": [[25, "render-streamlines-as-fake-tubes"]], "Combine depth cues with fake tubes": [[25, "combine-depth-cues-with-fake-tubes"]], "Render streamlines as tubes": [[25, "render-streamlines-as-tubes"]], "Electromagnetic Wave Propagation Animation": [[26, "electromagnetic-wave-propagation-animation"]], "Brain Fiber ODF Visualisation": [[27, "brain-fiber-odf-visualisation"]], "Fine-tuning the OpenGL state using shader callbacks": [[28, "fine-tuning-the-opengl-state-using-shader-callbacks"]], "Fractals": [[29, "fractals"]], "Motion of a charged particle in a combined magnetic and electric field": [[30, "motion-of-a-charged-particle-in-a-combined-magnetic-and-electric-field"]], "Fury Markers": [[31, "fury-markers"]], "Visualize Interdisciplinary map of the journals network": [[32, "visualize-interdisciplinary-map-of-the-journals-network"]], "Visualize Networks (Animated version)": [[33, "visualize-networks-animated-version"]], "Interactive PBR demo": [[34, "interactive-pbr-demo"]], "Play a video in the 3D world": [[35, "play-a-video-in-the-3d-world"]], "Visualization of ROI Surface Rendered with Streamlines": [[36, "visualization-of-roi-surface-rendered-with-streamlines"]], "Tesseract (Hypercube)": [[37, "tesseract-hypercube"]], "User Interface Elements": [[38, "user-interface-elements"], [81, "user-interface-elements"]], "Buttons & Text": [[39, "buttons-text"]], "Card": [[40, "card"], [41, "card"]], "Figure and Color Control using Check boxes and Radio Buttons": [[42, "figure-and-color-control-using-check-boxes-and-radio-buttons"]], "Show Manager": [[42, "show-manager"], [43, "show-manager"], [44, "show-manager"], [46, "show-manager"], [49, "show-manager"], [51, "show-manager"]], "ComboBox": [[43, "combobox"], [43, "id1"]], "Callbacks": [[43, "callbacks"]], "DrawPanel": [[44, "drawpanel"], [268, "drawpanel"]], "Using Layouts with different UI elements": [[45, "using-layouts-with-different-ui-elements"]], "Sphere Color Control using Radio Buttons": [[46, "sphere-color-control-using-radio-buttons"]], "Sphere and Radio Buttons": [[46, "sphere-and-radio-buttons"]], "Simple Shapes": [[47, "simple-shapes"]], "Tab UI": [[48, "tab-ui"]], "Slider Controls for a Cube for Tab Index 0": [[48, "slider-controls-for-a-cube-for-tab-index-0"]], "CheckBoxes For Cylinder and Sphere for Tab Index 1": [[48, "checkboxes-for-cylinder-and-sphere-for-tab-index-1"]], "Color Combobox for Fury for Tab Index 2": [[48, "color-combobox-for-fury-for-tab-index-2"]], "User Interfaces": [[49, "user-interfaces"]], "Shapes": [[49, "shapes"]], "Image": [[49, "image"]], "Panel with buttons and text": [[49, "panel-with-buttons-and-text"]], "Cube and sliders": [[49, "cube-and-sliders"], [51, "cube-and-sliders"]], "Range Slider": [[49, "range-slider"]], "Select menu": [[49, "select-menu"]], "ListBox": [[50, "listbox"]], "Cube & Slider Control": [[51, "cube-slider-control"]], "Animation": [[52, "animation"], [81, "animation"], [250, "id1"]], "Bezier Interpolator": [[53, "bezier-interpolator"]], "Position interpolation using cubic Bezier curve": [[53, "position-interpolation-using-cubic-bezier-curve"]], "Cubic Bezier curve parameters": [[53, "cubic-bezier-curve-parameters"]], "Setting Cubic Bezier keyframes": [[53, "setting-cubic-bezier-keyframes"]], "A more complex scene scene": [[53, "a-more-complex-scene-scene"]], "Keyframe animation: Camera and opacity": [[54, "keyframe-animation-camera-and-opacity"]], "The Plan": [[54, "the-plan"]], "Creating the main Timeline and adding static actors to it": [[54, "creating-the-main-timeline-and-adding-static-actors-to-it"]], "Creating \u201cFURY\u201d text": [[54, "creating-fury-text"]], "Creating and animating 50 Spheres": [[54, "creating-and-animating-50-spheres"]], "Animating the camera": [[54, "animating-the-camera"]], "Keyframe Color Interpolators": [[55, "keyframe-color-interpolators"]], "Setting color keyframes": [[55, "setting-color-keyframes"]], "Making a custom interpolator": [[56, "making-a-custom-interpolator"]], "Implementing a custom interpolator": [[56, "implementing-a-custom-interpolator"]], "Cubic spline keyframes data same as the one you get from glTF file.": [[56, "cubic-spline-keyframes-data-same-as-the-one-you-get-from-gltf-file"]], "Setting position keyframes": [[56, "setting-position-keyframes"], [58, "setting-position-keyframes"]], "Keyframe hierarchical Animation": [[57, "keyframe-hierarchical-animation"]], "Keyframe animation": [[58, "keyframe-animation"], [63, "keyframe-animation"]], "What is an Animation": [[58, "what-is-an-animation"]], "What are the interpolators": [[58, "what-are-the-interpolators"]], "Creating the environment": [[58, "creating-the-environment"]], "Creating an Animation": [[58, "creating-an-animation"]], "Changing the default interpolator for a single property": [[58, "changing-the-default-interpolator-for-a-single-property"]], "Keyframe animation introduction": [[59, "keyframe-animation-introduction"]], "Animations in FURY": [[59, "animations-in-fury"]], "What exactly is a keyframe": [[59, "what-exactly-is-a-keyframe"]], "What is Keyframe Animation": [[59, "what-is-keyframe-animation"]], "Translating a sphere": [[59, "translating-a-sphere"]], "Arm Robot Animation": [[60, "arm-robot-animation"]], "Keyframes Spline Interpolator": [[61, "keyframes-spline-interpolator"]], "Wrapping animations up!": [[61, "wrapping-animations-up"]], "Timeline and setting keyframes": [[62, "timeline-and-setting-keyframes"]], "What is Timeline?": [[62, "what-is-timeline"]], "Creating a Timeline": [[62, "creating-a-timeline"]], "Setting Keyframes": [[62, "setting-keyframes"]], "Shaders": [[64, "shaders"], [81, "shaders"]], "SDF Impostors on Billboards": [[65, "sdf-impostors-on-billboards"]], "Traditional sphere rendering": [[65, "traditional-sphere-rendering"]], "SDF sphere rendering": [[65, "sdf-sphere-rendering"]], "References": [[65, "references"], [68, "references"], [164, "references"]], "Physically-Based Rendering (PBR) on spheres": [[66, "physically-based-rendering-pbr-on-spheres"]], "Principled BRDF shader on spheres": [[67, "principled-brdf-shader-on-spheres"]], "Make a Cylinder using polygons vs SDF": [[68, "make-a-cylinder-using-polygons-vs-sdf"]], "Cylinder using polygons": [[68, "cylinder-using-polygons"]], "Cylinder using SDF": [[68, "cylinder-using-sdf"]], "Visualize SDF Actor": [[69, "visualize-sdf-actor"]], "Varying Color": [[70, "varying-color"]], "Integrate Physics using pybullet": [[71, "integrate-physics-using-pybullet"], [81, "integrate-physics-using-pybullet"]], "Ball Collision Simulation": [[72, "ball-collision-simulation"], [84, "ball-collision-simulation"]], "Brick Wall Simulation": [[73, "brick-wall-simulation"], [84, "brick-wall-simulation"]], "Syncing Bricks": [[73, "syncing-bricks"]], "Chain Simulation": [[74, "chain-simulation"], [84, "chain-simulation"]], "Domino Physics Simulation": [[75, "domino-physics-simulation"]], "Syncing Dominoes": [[75, "syncing-dominoes"]], "Wrecking Ball Simulation": [[76, "wrecking-ball-simulation"], [84, "wrecking-ball-simulation"]], "Streaming": [[77, "streaming"], [81, "streaming"]], "Streaming FURY with user interaction": [[78, "streaming-fury-with-user-interaction"]], "Notes": [[78, "notes"], [80, "notes"]], "Streaming FURY with WebRTC/MJPEG": [[79, "streaming-fury-with-webrtc-mjpeg"]], "Streaming FURY with WebRTC/MJPEG using the Widget Object": [[80, "streaming-fury-with-webrtc-mjpeg-using-the-widget-object"]], "Tutorials": [[81, "tutorials"]], "Blog": [[82, "blog"]], "Community": [[83, "community"]], "Join Us!": [[83, "join-us"]], "Contributors": [[83, "contributors"]], "FURY - pyBullet Integration Guide": [[84, "fury-pybullet-integration-guide"]], "Simple Rigid Body Dynamics": [[84, "simple-rigid-body-dynamics"]], "Necessary Imports": [[84, "necessary-imports"]], "Connection Mode": [[84, "connection-mode"]], "Disconnection": [[84, "disconnection"]], "Setting Gravity": [[84, "setting-gravity"]], "Creating Objects": [[84, "creating-objects"]], "Changing Object Dynamics": [[84, "changing-object-dynamics"]], "Adding objects to the scene": [[84, "adding-objects-to-the-scene"]], "Application of Force/Torque": [[84, "application-of-force-torque"]], "Enabling collision": [[84, "enabling-collision"]], "Creation of Show Manager": [[84, "creation-of-show-manager"]], "Syncing properties of actors": [[84, "syncing-properties-of-actors"]], "Creation of Timer Callback": [[84, "creation-of-timer-callback"]], "Initiating the simulation": [[84, "initiating-the-simulation"]], "Rendering multiple objects by a single actor": [[84, "rendering-multiple-objects-by-a-single-actor"]], "Rendering objects in FURY": [[84, "rendering-objects-in-fury"]], "Render Pybullet Objects": [[84, "render-pybullet-objects"]], "Syncing objects": [[84, "syncing-objects"]], "Rendering Joints": [[84, "rendering-joints"]], "Examples": [[84, "examples"]], "Brick Wall Simulation(Single Actor)": [[84, "brick-wall-simulation-single-actor"]], "Domino Simulation": [[84, "domino-simulation"]], "Getting Started": [[85, "getting-started"]], "Installation": [[87, "installation"]], "Dependencies": [[87, "dependencies"]], "Installation with PyPi": [[87, "installation-with-pypi"]], "Installation with Conda": [[87, "installation-with-conda"]], "Installation via Source": [[87, "installation-via-source"]], "Test the Installation": [[87, "test-the-installation"]], "Running the Tests": [[87, "running-the-tests"]], "Running the Tests Offscreen": [[87, "running-the-tests-offscreen"]], "Populating our Documentation": [[87, "populating-our-documentation"]], "Folder Structure": [[87, "folder-structure"]], "Building the documentation": [[87, "building-the-documentation"]], "About": [[88, "about"]], "Overview": [[88, "overview"]], "Statement of Need": [[88, "statement-of-need"]], "Mission Statement": [[88, "mission-statement"]], "Features": [[88, "features"]], "Architecture": [[88, "architecture"]], "License": [[88, "license"], [288, "license"]], "Credits": [[88, "credits"]], "Bug reports and support": [[88, "bug-reports-and-support"]], "FURY 0.1.0 Released": [[89, "fury-0-1-0-released"]], "FURY 0.1.3 Released": [[90, "fury-0-1-3-released"]], "FURY 0.1.4 Released": [[91, "fury-0-1-4-released"]], "FURY 0.2.0 Released": [[92, "fury-0-2-0-released"]], "Success on Brain Art Competition using FURY": [[93, "success-on-brain-art-competition-using-fury"]], "FURY 0.3.0 Released": [[94, "fury-0-3-0-released"]], "FURY 0.4.0 Released": [[95, "fury-0-4-0-released"]], "Google Summer of Code": [[96, "google-summer-of-code"], [128, "google-summer-of-code"]], "FURY 0.5.1 Released": [[97, "fury-0-5-1-released"]], "Weekly Check-in #1": [[98, "weekly-check-in-1"]], "Welcome to my GSoC Blog!!!": [[98, "welcome-to-my-gsoc-blog"], [99, "welcome-to-my-gsoc-blog"]], "What did you do during the Community Bonding Period?": [[98, "what-did-you-do-during-the-community-bonding-period"], [99, "what-did-you-do-during-the-community-bonding-period"], [132, "what-did-you-do-during-the-community-bonding-period"], [172, "what-did-you-do-during-the-community-bonding-period"], [175, "what-did-you-do-during-the-community-bonding-period"]], "What is coming up next week?": [[98, "what-is-coming-up-next-week"], [99, "what-is-coming-up-next-week"], [100, "what-is-coming-up-next-week"], [101, "what-is-coming-up-next-week"], [102, "what-is-coming-up-next-week"], [103, "what-is-coming-up-next-week"], [104, "what-is-coming-up-next-week"], [105, "what-is-coming-up-next-week"], [106, "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"], [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"], [122, "what-is-coming-up-next-week"], [124, "what-is-coming-up-next-week"], [127, "what-is-coming-up-next-week"], [132, "what-is-coming-up-next-week"], [135, "what-is-coming-up-next-week"], [138, "what-is-coming-up-next-week"], [141, "what-is-coming-up-next-week"], [142, "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"], [152, "what-is-coming-up-next-week"], [153, "what-is-coming-up-next-week"], [155, "what-is-coming-up-next-week"], [156, "what-is-coming-up-next-week"], [158, "what-is-coming-up-next-week"], [159, "what-is-coming-up-next-week"], [160, "what-is-coming-up-next-week"], [161, "what-is-coming-up-next-week"], [172, "what-is-coming-up-next-week"], [175, "what-is-coming-up-next-week"], [177, "what-is-coming-up-next-week"], [179, "what-is-coming-up-next-week"], [180, "what-is-coming-up-next-week"], [181, "what-is-coming-up-next-week"], [183, "what-is-coming-up-next-week"], [184, "what-is-coming-up-next-week"], [186, "what-is-coming-up-next-week"], [187, "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"], [203, "what-is-coming-up-next-week"], [204, "what-is-coming-up-next-week"], [205, "what-is-coming-up-next-week"], [208, "what-is-coming-up-next-week"], [210, "what-is-coming-up-next-week"], [211, "what-is-coming-up-next-week"], [213, "what-is-coming-up-next-week"], [214, "what-is-coming-up-next-week"], [215, "what-is-coming-up-next-week"]], "First week of coding!!": [[100, "first-week-of-coding"], [101, "first-week-of-coding"]], "What did you do this week?": [[100, "what-did-you-do-this-week"], [101, "what-did-you-do-this-week"], [102, "what-did-you-do-this-week"], [103, "what-did-you-do-this-week"], [104, "what-did-you-do-this-week"], [105, "what-did-you-do-this-week"], [106, "what-did-you-do-this-week"], [107, "what-did-you-do-this-week"], [108, "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"], [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"], [122, "what-did-you-do-this-week"], [124, "what-did-you-do-this-week"], [127, "what-did-you-do-this-week"], [135, "what-did-you-do-this-week"], [136, "what-did-you-do-this-week"], [138, "what-did-you-do-this-week"], [141, "what-did-you-do-this-week"], [142, "what-did-you-do-this-week"], [144, "what-did-you-do-this-week"], [147, "what-did-you-do-this-week"], [150, "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"], [161, "what-did-you-do-this-week"], [172, "what-did-you-do-this-week"], [173, "what-did-you-do-this-week"], [174, "what-did-you-do-this-week"], [175, "what-did-you-do-this-week"], [176, "what-did-you-do-this-week"], [177, "what-did-you-do-this-week"], [178, "what-did-you-do-this-week"], [179, "what-did-you-do-this-week"], [180, "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"], [223, "what-did-you-do-this-week"], [226, "what-did-you-do-this-week"], [229, "what-did-you-do-this-week"], [235, "what-did-you-do-this-week"], [238, "what-did-you-do-this-week"], [241, "what-did-you-do-this-week"], [244, "what-did-you-do-this-week"]], "Did you get stuck anywhere?": [[100, "did-you-get-stuck-anywhere"], [101, "did-you-get-stuck-anywhere"], [102, "did-you-get-stuck-anywhere"], [103, "did-you-get-stuck-anywhere"], [104, "did-you-get-stuck-anywhere"], [105, "did-you-get-stuck-anywhere"], [106, "did-you-get-stuck-anywhere"], [107, "did-you-get-stuck-anywhere"], [108, "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"], [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"], [122, "did-you-get-stuck-anywhere"], [124, "did-you-get-stuck-anywhere"], [127, "did-you-get-stuck-anywhere"], [135, "did-you-get-stuck-anywhere"], [138, "did-you-get-stuck-anywhere"], [141, "did-you-get-stuck-anywhere"], [142, "did-you-get-stuck-anywhere"], [144, "did-you-get-stuck-anywhere"], [147, "did-you-get-stuck-anywhere"], [150, "did-you-get-stuck-anywhere"], [153, "did-you-get-stuck-anywhere"], [156, "did-you-get-stuck-anywhere"], [159, "did-you-get-stuck-anywhere"], [161, "did-you-get-stuck-anywhere"], [172, "did-you-get-stuck-anywhere"], [173, "did-you-get-stuck-anywhere"], [174, "did-you-get-stuck-anywhere"], [175, "did-you-get-stuck-anywhere"], [176, "did-you-get-stuck-anywhere"], [177, "did-you-get-stuck-anywhere"], [178, "did-you-get-stuck-anywhere"], [179, "did-you-get-stuck-anywhere"], [180, "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"], [223, "did-you-get-stuck-anywhere"], [226, "did-you-get-stuck-anywhere"], [229, "did-you-get-stuck-anywhere"], [235, "did-you-get-stuck-anywhere"], [238, "did-you-get-stuck-anywhere"], [241, "did-you-get-stuck-anywhere"], [244, "did-you-get-stuck-anywhere"]], "Raymarching!!": [[102, "raymarching"]], "ComboBox2D Progress!!": [[103, "combobox2d-progress"]], "Raymarching continued": [[104, "raymarching-continued"]], "TextBlock2D Progress!!": [[105, "textblock2d-progress"]], "Spherical harmonics": [[106, "spherical-harmonics"]], "May the Force be with you!!": [[107, "may-the-force-be-with-you"]], "Ball Collision Simulation:": [[107, "ball-collision-simulation"]], "Brick Wall Simulation:": [[107, "brick-wall-simulation"]], "Spherical harmonics, Continued.": [[108, "spherical-harmonics-continued"]], "Translation, Reposition, Rotation.": [[109, "translation-reposition-rotation"]], "Translation:": [[109, "translation"]], "Rotation:": [[109, "rotation"]], "Reposition:": [[109, "reposition"]], "Orientation, Sizing, Tab UI.": [[110, "orientation-sizing-tab-ui"]], "Multiple SDF primitives.": [[111, "multiple-sdf-primitives"]], "ComboBox2D, TextBlock2D, Clipping Overflow.": [[112, "combobox2d-textblock2d-clipping-overflow"]], "FURY 0.6.0 Released": [[113, "fury-0-6-0-released"]], "Improvements in SDF primitives.": [[114, "improvements-in-sdf-primitives"]], "Tab UI, TabPanel2D, Tab UI Tutorial.": [[115, "tab-ui-tabpanel2d-tab-ui-tutorial"]], "Merging SDF primitives.": [[116, "merging-sdf-primitives"]], "More Shaders!!": [[117, "more-shaders"], [119, "more-shaders"]], "Single Actor, Physics, Scrollbars.": [[118, "single-actor-physics-scrollbars"]], "Chain Simulation, Scrollbar Refactor, Tutorial Update.": [[120, "chain-simulation-scrollbar-refactor-tutorial-update"]], "Wrecking Ball Simulation, Scrollbars Update, Physics Tutorials.": [[121, "wrecking-ball-simulation-scrollbars-update-physics-tutorials"]], "Outline Picker": [[122, "outline-picker"]], "FURY 0.6.1 Released": [[123, "fury-0-6-1-released"]], "Part of the Journey is the end unless its Open Source!": [[124, "part-of-the-journey-is-the-end-unless-its-open-source"]], "Open Dialog:": [[124, "open-dialog"]], "Save Dialog:": [[124, "save-dialog"]], "Google Summer of Code 2020 Final Work Product": [[125, "google-summer-of-code-2020-final-work-product"]], "Introduction": [[125, "introduction"]], "Proposed Objectives": [[125, "proposed-objectives"], [126, "proposed-objectives"], [162, "proposed-objectives"], [163, "proposed-objectives"], [164, "proposed-objectives"], [216, "proposed-objectives"], [217, "proposed-objectives"], [218, "proposed-objectives"]], "Unsubmitted Functionalities": [[125, "unsubmitted-functionalities"]], "Objectives Completed": [[125, "objectives-completed"], [126, "objectives-completed"], [162, "objectives-completed"], [163, "objectives-completed"], [164, "objectives-completed"], [216, "objectives-completed"], [217, "objectives-completed"], [218, "objectives-completed"]], "Other Objectives": [[125, "other-objectives"], [126, "other-objectives"], [162, "other-objectives"], [163, "other-objectives"], [216, "other-objectives"], [217, "other-objectives"], [218, "other-objectives"]], "Timeline": [[125, "timeline"], [126, "timeline"], [162, "timeline"], [163, "timeline"], [164, "timeline"], [216, "timeline"], [217, "timeline"], [218, "timeline"], [250, "timeline"]], "Google Summer of Code Final Work Product": [[126, "google-summer-of-code-final-work-product"], [162, "google-summer-of-code-final-work-product"], [163, "google-summer-of-code-final-work-product"], [216, "google-summer-of-code-final-work-product"], [217, "google-summer-of-code-final-work-product"], [218, "google-summer-of-code-final-work-product"]], "Modified Objectives": [[126, "modified-objectives"], [217, "modified-objectives"]], "Objectives in Progress": [[126, "objectives-in-progress"], [162, "objectives-in-progress"], [163, "objectives-in-progress"], [216, "objectives-in-progress"], [217, "objectives-in-progress"], [218, "objectives-in-progress"]], "Shader Showcase": [[127, "shader-showcase"]], "FURY 0.7.0 Released": [[129, "fury-0-7-0-released"], [157, "fury-0-7-0-released"]], "Weekly Check-In #1": [[130, "weekly-check-in-1"]], "What did I do this week?": [[130, "what-did-i-do-this-week"], [131, "what-did-i-do-this-week"], [134, "what-did-i-do-this-week"], [137, "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"], [148, "what-did-i-do-this-week"], [149, "what-did-i-do-this-week"], [151, "what-did-i-do-this-week"], [152, "what-did-i-do-this-week"], [154, "what-did-i-do-this-week"], [155, "what-did-i-do-this-week"], [158, "what-did-i-do-this-week"], [160, "what-did-i-do-this-week"], [165, "what-did-i-do-this-week"], [166, "what-did-i-do-this-week"], [222, "what-did-i-do-this-week"], [225, "what-did-i-do-this-week"], [228, "what-did-i-do-this-week"], [231, "what-did-i-do-this-week"], [232, "what-did-i-do-this-week"], [234, "what-did-i-do-this-week"], [237, "what-did-i-do-this-week"], [240, "what-did-i-do-this-week"], [243, "what-did-i-do-this-week"]], "Did I get stuck anywhere?": [[130, "did-i-get-stuck-anywhere"], [131, "did-i-get-stuck-anywhere"], [134, "did-i-get-stuck-anywhere"], [136, "did-i-get-stuck-anywhere"], [137, "did-i-get-stuck-anywhere"], [140, "did-i-get-stuck-anywhere"], [143, "did-i-get-stuck-anywhere"], [146, "did-i-get-stuck-anywhere"], [148, "did-i-get-stuck-anywhere"], [149, "did-i-get-stuck-anywhere"], [151, "did-i-get-stuck-anywhere"], [152, "did-i-get-stuck-anywhere"], [154, "did-i-get-stuck-anywhere"], [155, "did-i-get-stuck-anywhere"], [158, "did-i-get-stuck-anywhere"], [160, "did-i-get-stuck-anywhere"], [165, "did-i-get-stuck-anywhere"], [166, "did-i-get-stuck-anywhere"], [222, "did-i-get-stuck-anywhere"], [225, "did-i-get-stuck-anywhere"], [228, "did-i-get-stuck-anywhere"], [231, "did-i-get-stuck-anywhere"], [232, "did-i-get-stuck-anywhere"], [234, "did-i-get-stuck-anywhere"], [237, "did-i-get-stuck-anywhere"], [240, "did-i-get-stuck-anywhere"], [243, "did-i-get-stuck-anywhere"]], "What is coming up next?": [[130, "what-is-coming-up-next"], [131, "what-is-coming-up-next"], [134, "what-is-coming-up-next"], [136, "what-is-coming-up-next"], [137, "what-is-coming-up-next"], [140, "what-is-coming-up-next"], [143, "what-is-coming-up-next"], [146, "what-is-coming-up-next"], [148, "what-is-coming-up-next"], [151, "what-is-coming-up-next"], [154, "what-is-coming-up-next"], [165, "what-is-coming-up-next"], [173, "what-is-coming-up-next"], [174, "what-is-coming-up-next"], [176, "what-is-coming-up-next"], [178, "what-is-coming-up-next"], [182, "what-is-coming-up-next"], [185, "what-is-coming-up-next"], [188, "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"], [202, "what-is-coming-up-next"], [206, "what-is-coming-up-next"], [207, "what-is-coming-up-next"], [209, "what-is-coming-up-next"], [212, "what-is-coming-up-next"], [222, "what-is-coming-up-next"], [223, "what-is-coming-up-next"], [225, "what-is-coming-up-next"], [226, "what-is-coming-up-next"], [228, "what-is-coming-up-next"], [229, "what-is-coming-up-next"], [231, "what-is-coming-up-next"], [232, "what-is-coming-up-next"], [234, "what-is-coming-up-next"], [235, "what-is-coming-up-next"], [237, "what-is-coming-up-next"], [238, "what-is-coming-up-next"], [240, "what-is-coming-up-next"], [241, "what-is-coming-up-next"], [243, "what-is-coming-up-next"], [244, "what-is-coming-up-next"]], "Week #1: Welcome to my weekly Blogs!": [[131, "week-1-welcome-to-my-weekly-blogs"]], "Welcome to my GSoC Blog!": [[132, "welcome-to-my-gsoc-blog"]], "A Stadia-like system for data visualization": [[133, "a-stadia-like-system-for-data-visualization"]], "How does it works?": [[133, "how-does-it-works"]], "Sharing data between process": [[133, "sharing-data-between-process"]], "multiprocessing RawArray": [[133, "multiprocessing-rawarray"]], "Multiprocessing inside of different Operating Systems": [[133, "multiprocessing-inside-of-different-operating-systems"]], "Week #2: Feature additions in UI and IO modules": [[134, "week-2-feature-additions-in-ui-and-io-modules"]], "First week of coding!": [[135, "first-week-of-coding"]], "Weekly Check-In #3": [[136, "weekly-check-in-3"]], "A python-core issue": [[136, "a-python-core-issue"]], "Week #3: Adapting GridLayout to work with UI": [[137, "week-3-adapting-gridlayout-to-work-with-ui"]], "Second week of coding!": [[138, "second-week-of-coding"]], "SOLID, monkey patching a python issue and network visualization through WebRTC": [[139, "solid-monkey-patching-a-python-issue-and-network-visualization-through-webrtc"]], "Streaming System": [[139, "streaming-system"]], "Code Refactoring": [[139, "code-refactoring"]], "Abstract class and SOLID": [[139, "abstract-class-and-solid"]], "Using namedtuples to grant immutability and to avoid silent bugs": [[139, "using-namedtuples-to-grant-immutability-and-to-avoid-silent-bugs"]], "Testing": [[139, "testing"]], "Most relevant bugs": [[139, "most-relevant-bugs"]], "Network Layout (Helios-FURY)": [[139, "network-layout-helios-fury"]], "Refs:": [[139, "refs"]], "Week #4: Adding Tree UI to the UI module": [[140, "week-4-adding-tree-ui-to-the-ui-module"]], "Third week of coding!": [[141, "third-week-of-coding"]], "Weekly Check-In #5": [[142, "weekly-check-in-5"]], "fury-gl/fury PR#437: WebRTC streaming system for FURY": [[142, "fury-gl-fury-pr-437-webrtc-streaming-system-for-fury"]], "fury-gl/helios PR 1: Network Layout and SuperActors": [[142, "fury-gl-helios-pr-1-network-layout-and-superactors"]], "Week #5: Rebasing all PRs w.r.t the UI restructuring, Tree2D, Bug Fixes": [[143, "week-5-rebasing-all-prs-w-r-t-the-ui-restructuring-tree2d-bug-fixes"]], "Fourth week of coding!": [[144, "fourth-week-of-coding"]], "Network layout algorithms using IPC": [[145, "network-layout-algorithms-using-ipc"]], "The problem: network layout algorithm implementations with a blocking behavior": [[145, "the-problem-network-layout-algorithm-implementations-with-a-blocking-behavior"]], "Why is using the python threading is not a good solution?": [[145, "why-is-using-the-python-threading-is-not-a-good-solution"]], "IPC using python": [[145, "ipc-using-python"]], "How have I implemented the code for A and B?": [[145, "how-have-i-implemented-the-code-for-a-and-b"]], "Results": [[145, "results"]], "Next steps": [[145, "next-steps"]], "Summary of most important pull-requests:": [[145, "summary-of-most-important-pull-requests"]], "Week #6: Bug fixes, Working on Tree2D UI": [[146, "week-6-bug-fixes-working-on-tree2d-ui"]], "Fifth week of coding!": [[147, "fifth-week-of-coding"]], "Weekly Check-In #7": [[148, "weekly-check-in-7"]], "Week #7: Finalizing the stalling PRs, finishing up Tree2D UI.": [[149, "week-7-finalizing-the-stalling-prs-finishing-up-tree2d-ui"]], "Sixth week of coding!": [[150, "sixth-week-of-coding"]], "Weekly Check-In #8": [[151, "weekly-check-in-8"]], "Week #8: Code Cleanup, Finishing up open PRs, Continuing work on Tree2D": [[152, "week-8-code-cleanup-finishing-up-open-prs-continuing-work-on-tree2d"]], "Seventh week of coding!": [[153, "seventh-week-of-coding"]], "Week #09: Sphinx custom summary": [[154, "week-09-sphinx-custom-summary"]], "FURY/Helios": [[154, "fury-helios"], [165, "fury-helios"], [166, "fury-helios"]], "FURY": [[154, "fury"], [165, "fury"], [166, "fury"]], "Week #9: More Layouts!": [[155, "week-9-more-layouts"]], "Eighth coding week!": [[156, "eighth-coding-week"]], "Week#10: Accordion UI, Support for sprite sheet animations": [[158, "week-10-accordion-ui-support-for-sprite-sheet-animations"]], "Ninth coding week!": [[159, "ninth-coding-week"]], "Week #11: Finalizing open Pull Requests": [[160, "week-11-finalizing-open-pull-requests"]], "Tenth coding week!": [[161, "tenth-coding-week"]], "Google Summer of Code 2021 - Final Report - Bruno Messias": [[164, "google-summer-of-code-2021-final-report-bruno-messias"]], "Abstract": [[164, "abstract"]], "Week #10: SDF Fonts": [[165, "week-10-sdf-fonts"]], "Week #11: Removing the flickering effect": [[166, "week-11-removing-the-flickering-effect"]], "FURY 0.8.0 Released": [[167, "fury-0-8-0-released"]], "Contribute to FURY via Google Summer of Code 2022": [[168, "contribute-to-fury-via-google-summer-of-code-2022"]], "My journey till getting accepted into GSoC22": [[169, "my-journey-till-getting-accepted-into-gsoc22"]], "A Little About Myself": [[169, "a-little-about-myself"]], "My first coding experience": [[169, "my-first-coding-experience"]], "Developing a 3D game": [[169, "developing-a-3d-game"]], "My journey to GSoC22": [[169, "my-journey-to-gsoc22"]], "The day I got accepted": [[169, "the-day-i-got-accepted"]], "My Journey to GSoC 2022": [[170, "my-journey-to-gsoc-2022"]], "About Myself": [[170, "about-myself"]], "Intro to Open-Source and GSoC": [[170, "intro-to-open-source-and-gsoc"]], "The Day": [[170, "the-day"]], "Pre-GSoC Journey": [[171, "pre-gsoc-journey"]], "The Beginning of Programming": [[171, "the-beginning-of-programming"]], "Interest in Game Development and Animation": [[171, "interest-in-game-development-and-animation"]], "Intro to Opensource": [[171, "intro-to-opensource"]], "GSoC - 21": [[171, "gsoc-21"]], "GSoC - 22": [[171, "gsoc-22"]], "Week 1: Implementing a basic Keyframe animation API": [[172, "week-1-implementing-a-basic-keyframe-animation-api"]], "Week 1 - Laying the Foundation of DrawPanel UI": [[173, "week-1-laying-the-foundation-of-drawpanel-ui"]], "Week 2 - Improving DrawPanel UI": [[174, "week-2-improving-drawpanel-ui"]], "Week 1 - A Basic glTF Importer": [[175, "week-1-a-basic-gltf-importer"]], "Week 3 - Dealing with Problems": [[176, "week-3-dealing-with-problems"]], "Week 2: Implementing non-linear and color interpolators": [[177, "week-2-implementing-non-linear-and-color-interpolators"]], "Week 4 - Fixing the Clamping Issue": [[178, "week-4-fixing-the-clamping-issue"]], "Week 2 - Improving Fetcher and Exporting glTF": [[179, "week-2-improving-fetcher-and-exporting-gltf"]], "Week 3: Redesigning the API, Implementing cubic Bezier Interpolator, and making progress on the GPU side!": [[180, "week-3-redesigning-the-api-implementing-cubic-bezier-interpolator-and-making-progress-on-the-gpu-side"]], "Week 3 - Fixing fetcher, adding tests and docs": [[181, "week-3-fixing-fetcher-adding-tests-and-docs"]], "Week 5 - Working on new features": [[182, "week-5-working-on-new-features"]], "Week 4: Camera animation, interpolation in GLSL, and a single Timeline!": [[183, "week-4-camera-animation-interpolation-in-glsl-and-a-single-timeline"]], "Week 4 - Finalizing glTF loader": [[184, "week-4-finalizing-gltf-loader"]], "Week 6 - Supporting Rotation of the Shapes from the Center": [[185, "week-6-supporting-rotation-of-the-shapes-from-the-center"]], "Week 5: Slerp implementation, documenting the Timeline, and adding unit tests": [[186, "week-5-slerp-implementation-documenting-the-timeline-and-adding-unit-tests"]], "Week 5 - Creating PR for glTF exporter and fixing the loader": [[187, "week-5-creating-pr-for-gltf-exporter-and-fixing-the-loader"]], "Week 7 - Working on Rotation PR and Trying Freehand Drawing": [[188, "week-7-working-on-rotation-pr-and-trying-freehand-drawing"]], "Week 6: Fixing the Timeline issues and equipping it with more features": [[189, "week-6-fixing-the-timeline-issues-and-equipping-it-with-more-features"]], "Week 6 - Extracting the animation data": [[190, "week-6-extracting-the-animation-data"]], "Week 8 - Working on the polyline feature": [[191, "week-8-working-on-the-polyline-feature"]], "Week 7: Billboard spheres and implementing interpolators using closures": [[192, "week-7-billboard-spheres-and-implementing-interpolators-using-closures"]], "Week 7 - Fixing bugs in animations": [[193, "week-7-fixing-bugs-in-animations"]], "Week 9 - Grouping and Transforming Shapes": [[194, "week-9-grouping-and-transforming-shapes"]], "Week 8 - Fixing animation bugs": [[195, "week-8-fixing-animation-bugs"]], "Week 8: Back to the shader-based version of the Timeline": [[196, "week-8-back-to-the-shader-based-version-of-the-timeline"]], "Week 10 - Understanding Codes and Playing with Animation": [[197, "week-10-understanding-codes-and-playing-with-animation"]], "Week 9: Animating primitives of the same actor": [[198, "week-9-animating-primitives-of-the-same-actor"]], "Week 9 - First working skeletal animation prototype": [[199, "week-9-first-working-skeletal-animation-prototype"]], "Week 11 - Creating a base for Freehand Drawing": [[200, "week-11-creating-a-base-for-freehand-drawing"]], "Week 10: Supporting hierarchical animating": [[201, "week-10-supporting-hierarchical-animating"]], "Week 12 - Fixing translating issues and updating tests": [[202, "week-12-fixing-translating-issues-and-updating-tests"]], "Week 10 - Multi-node skinning support": [[203, "week-10-multi-node-skinning-support"]], "Week 11: Improving tutorials a little": [[204, "week-11-improving-tutorials-a-little"]], "Week 11 - Multiple transformations support and adding tests": [[205, "week-11-multiple-transformations-support-and-adding-tests"]], "Week 13 - Separating tests and fixing bugs": [[206, "week-13-separating-tests-and-fixing-bugs"]], "Week 14 - Updating DrawPanel architecture": [[207, "week-14-updating-drawpanel-architecture"]], "Week 12 - Adding skeleton as actors and fix global transformation": [[208, "week-12-adding-skeleton-as-actors-and-fix-global-transformation"]], "Week 15 - Highlighting DrawShapes": [[209, "week-15-highlighting-drawshapes"]], "Week 13 - Multi-bone skeletal animation support": [[210, "week-13-multi-bone-skeletal-animation-support"]], "Week 13: Keyframes animation is now a bit easier in FURY": [[211, "week-13-keyframes-animation-is-now-a-bit-easier-in-fury"]], "Week 16 - Working with Rotations!": [[212, "week-16-working-with-rotations"]], "Week 14: Keyframes animation is now a bit easier in FURY": [[213, "week-14-keyframes-animation-is-now-a-bit-easier-in-fury"]], "Week 14 - Morphing is here!": [[214, "week-14-morphing-is-here"]], "Week 12: Adding new tutorials": [[215, "week-12-adding-new-tutorials"]], "GSoC Weekly Blogs": [[216, "gsoc-weekly-blogs"]], "Loading Static glTF models": [[218, "loading-static-gltf-models"]], "Exporting Scene as a glTF": [[218, "exporting-scene-as-a-gltf"]], "Simple Actor Animations": [[218, "simple-actor-animations"]], "Morphing in glTF": [[218, "morphing-in-gltf"]], "Skeletal Animations (Skining)": [[218, "skeletal-animations-skining"]], "PBR and emission materials in glTF": [[218, "pbr-and-emission-materials-in-gltf"]], "Skinning for models with no indices": [[218, "skinning-for-models-with-no-indices"]], "Fetcher for importing glTF files from Khronos-glTF-Samples": [[218, "fetcher-for-importing-gltf-files-from-khronos-gltf-samples"]], "Other Pull Requests": [[218, "other-pull-requests"]], "GSoC weekly blogs": [[218, "gsoc-weekly-blogs"]], "Contribute to FURY via Google Summer of Code 2023": [[219, "contribute-to-fury-via-google-summer-of-code-2023"]], "FURY 0.9.0 Released": [[220, "fury-0-9-0-released"]], "Week 0: Community Bounding Period": [[221, "week-0-community-bounding-period"], [222, "week-0-community-bounding-period"]], "GSoC 2023: Community Bonding Period": [[221, "gsoc-2023-community-bonding-period"], [222, "gsoc-2023-community-bonding-period"]], "Week 1: Working with SpinBox and TextBox Enhancements": [[223, "week-1-working-with-spinbox-and-textbox-enhancements"]], "The FBO Saga - Week 1": [[224, "the-fbo-saga-week-1"]], "This Past Week": [[224, "this-past-week"]], "My Current Problems": [[224, "my-current-problems"]], "What About Next Week?": [[224, "what-about-next-week"]], "Week 1: Ellipsoid actor implemented with SDF": [[225, "week-1-ellipsoid-actor-implemented-with-sdf"]], "Week 2: Tackling Text Justification and Icon Flaw Issues": [[226, "week-2-tackling-text-justification-and-icon-flaw-issues"]], "Week 2: The Importance of (good) Documentation": [[227, "week-2-the-importance-of-good-documentation"]], "This Last Week\u2019s Effort": [[227, "this-last-week-s-effort"], [230, "this-last-week-s-effort"]], "Where the Problem Was": [[227, "where-the-problem-was"], [230, "where-the-problem-was"], [233, "where-the-problem-was"], [236, "where-the-problem-was"], [239, "where-the-problem-was"]], "This Week\u2019s Goals": [[227, "this-week-s-goals"], [230, "this-week-s-goals"], [233, "this-week-s-goals"], [236, "this-week-s-goals"], [239, "this-week-s-goals"], [242, "this-week-s-goals"], [245, "this-week-s-goals"]], "Week 2: Making adjustments to the Ellipsoid Actor": [[228, "week-2-making-adjustments-to-the-ellipsoid-actor"]], "Week 3: Resolving Combobox Icon Flaw and TextBox Justification": [[229, "week-3-resolving-combobox-icon-flaw-and-textbox-justification"]], "Week 3: Watch Your Expectations": [[230, "week-3-watch-your-expectations"]], "Week 3: Working on uncertainty and details of the first PR": [[231, "week-3-working-on-uncertainty-and-details-of-the-first-pr"]], "Week 4: Exam Preparations and Reviewing": [[232, "week-4-exam-preparations-and-reviewing"]], "Week 4: Nothing is Ever Lost": [[233, "week-4-nothing-is-ever-lost"]], "Last Week\u2019s Effort": [[233, "last-week-s-effort"], [236, "last-week-s-effort"], [242, "last-week-s-effort"], [245, "last-week-s-effort"]], "Week 4: First draft of the DTI uncertainty visualization": [[234, "week-4-first-draft-of-the-dti-uncertainty-visualization"]], "Week 5: Trying out PRs and Planning Ahead": [[235, "week-5-trying-out-prs-and-planning-ahead"]], "Week 5: All Roads Lead to Rome": [[236, "week-5-all-roads-lead-to-rome"]], "Week 5: Preparing the data for the Ellipsoid tutorial": [[237, "week-5-preparing-the-data-for-the-ellipsoid-tutorial"]], "Week 6: BoundingBox for TextBlock2D!": [[238, "week-6-boundingbox-for-textblock2d"]], "Week 6: Things are Starting to Build Up": [[239, "week-6-things-are-starting-to-build-up"]], "What I did Last Week": [[239, "what-i-did-last-week"]], "Week 6: First draft of the Ellipsoid tutorial": [[240, "week-6-first-draft-of-the-ellipsoid-tutorial"]], "Week 7: Sowing the seeds for TreeUI": [[241, "week-7-sowing-the-seeds-for-treeui"]], "Week 7: Experimentation Done": [[242, "week-7-experimentation-done"]], "Was it Hard?": [[242, "was-it-hard"]], "Week 7: Adjustments on the Uncertainty Cones visualization": [[243, "week-7-adjustments-on-the-uncertainty-cones-visualization"]], "Week 8: Another week with TextBlockUI": [[244, "week-8-another-week-with-textblockui"]], "Week 8: The Birth of a Versatile API": [[245, "week-8-the-birth-of-a-versatile-api"]], "So how did it go?": [[245, "so-how-did-it-go"]], "The Beginning of Everything - Week 0": [[246, "the-beginning-of-everything-week-0"]], "So it begins\u2026": [[246, "so-it-begins"]], "The Community Bonding Period": [[246, "the-community-bonding-period"]], "The Project\u2019s Goal": [[246, "the-project-s-goal"]], "This Week\u2019s Goal": [[246, "this-week-s-goal"]], "fury": [[247, "module-fury"]], "get_info": [[247, "get-info"]], "enable_warnings": [[247, "enable-warnings"]], "disable_warnings": [[247, "disable-warnings"]], "actor": [[248, "module-fury.actor"]], "Container": [[248, "container"]], "slicer": [[248, "slicer"]], "surface": [[248, "surface"]], "contour_from_roi": [[248, "contour-from-roi"]], "contour_from_label": [[248, "contour-from-label"]], "streamtube": [[248, "streamtube"]], "line": [[248, "line"]], "scalar_bar": [[248, "scalar-bar"]], "axes": [[248, "axes"]], "odf_slicer": [[248, "odf-slicer"]], "tensor_slicer": [[248, "tensor-slicer"]], "peak_slicer": [[248, "peak-slicer"]], "peak": [[248, "peak"]], "dot": [[248, "dot"]], "dots": [[248, "dots"]], "point": [[248, "point"]], "sphere": [[248, "sphere"]], "cylinder": [[248, "cylinder"]], "disk": [[248, "disk"]], "square": [[248, "square"]], "rectangle": [[248, "rectangle"]], "box": [[248, "box"]], "cube": [[248, "cube"]], "arrow": [[248, "arrow"]], "cone": [[248, "cone"]], "triangularprism": [[248, "triangularprism"]], "rhombicuboctahedron": [[248, "rhombicuboctahedron"]], "pentagonalprism": [[248, "pentagonalprism"]], "octagonalprism": [[248, "octagonalprism"]], "frustum": [[248, "frustum"]], "superquadric": [[248, "superquadric"]], "billboard": [[248, "billboard"]], "vector_text": [[248, "vector-text"]], "label": [[248, "label"]], "text_3d": [[248, "text-3d"]], "grid": [[248, "grid"]], "figure": [[248, "figure"]], "texture": [[248, "texture"]], "texture_update": [[248, "texture-update"]], "texture_on_sphere": [[248, "texture-on-sphere"]], "texture_2d": [[248, "texture-2d"]], "sdf": [[248, "sdf"]], "markers": [[248, "markers"]], "ellipsoid": [[248, "ellipsoid"]], "actors": [[249, "module-fury.actors"]], "Module: actors.odf_slicer": [[249, "module-fury.actors.odf_slicer"]], "Module: actors.peak": [[249, "module-fury.actors.peak"]], "Module: actors.tensor": [[249, "module-fury.actors.tensor"]], "OdfSlicerActor": [[249, "odfsliceractor"]], "PeakActor": [[249, "peakactor"]], "tensor_ellipsoid": [[249, "tensor-ellipsoid"]], "animation": [[250, "module-fury.animation"]], "Module: animation.animation": [[250, "module-fury.animation.animation"]], "Module: animation.helpers": [[250, "module-fury.animation.helpers"]], "Module: animation.interpolator": [[250, "module-fury.animation.interpolator"]], "Module: animation.timeline": [[250, "module-fury.animation.timeline"]], "CameraAnimation": [[250, "cameraanimation"]], "get_previous_timestamp": [[250, "get-previous-timestamp"]], "get_next_timestamp": [[250, "get-next-timestamp"]], "get_timestamps_from_keyframes": [[250, "get-timestamps-from-keyframes"]], "get_values_from_keyframes": [[250, "get-values-from-keyframes"]], "get_time_tau": [[250, "get-time-tau"]], "lerp": [[250, "lerp"]], "euclidean_distances": [[250, "euclidean-distances"]], "spline_interpolator": [[250, "spline-interpolator"]], "cubic_spline_interpolator": [[250, "cubic-spline-interpolator"]], "step_interpolator": [[250, "step-interpolator"]], "linear_interpolator": [[250, "linear-interpolator"]], "cubic_bezier_interpolator": [[250, "cubic-bezier-interpolator"]], "slerp": [[250, "slerp"]], "color_interpolator": [[250, "color-interpolator"]], "hsv_color_interpolator": [[250, "hsv-color-interpolator"]], "lab_color_interpolator": [[250, "lab-color-interpolator"]], "xyz_color_interpolator": [[250, "xyz-color-interpolator"]], "tan_cubic_spline_interpolator": [[250, "tan-cubic-spline-interpolator"]], "colormap": [[251, "module-fury.colormap"]], "colormap_lookup_table": [[251, "colormap-lookup-table"]], "cc": [[251, "cc"]], "ss": [[251, "ss"]], "boys2rgb": [[251, "boys2rgb"]], "orient2rgb": [[251, "orient2rgb"]], "line_colors": [[251, "line-colors"]], "get_cmap": [[251, "get-cmap"]], "create_colormap": [[251, "create-colormap"]], "distinguishable_colormap": [[251, "distinguishable-colormap"]], "hex_to_rgb": [[251, "hex-to-rgb"]], "rgb2hsv": [[251, "rgb2hsv"]], "hsv2rgb": [[251, "hsv2rgb"]], "xyz_from_rgb": [[251, "xyz-from-rgb"]], "rgb_from_xyz": [[251, "rgb-from-xyz"]], "xyz2rgb": [[251, "xyz2rgb"]], "rgb2xyz": [[251, "rgb2xyz"]], "get_xyz_coords": [[251, "get-xyz-coords"]], "xyz2lab": [[251, "xyz2lab"]], "lab2xyz": [[251, "lab2xyz"]], "rgb2lab": [[251, "rgb2lab"]], "lab2rgb": [[251, "lab2rgb"]], "convert": [[252, "module-fury.convert"]], "matplotlib_figure_to_numpy": [[252, "matplotlib-figure-to-numpy"]], "data": [[253, "module-fury.data"]], "Module: data.fetcher": [[253, "module-fury.data.fetcher"]], "DATA_DIR": [[253, "data-dir"]], "update_progressbar": [[253, "update-progressbar"]], "copyfileobj_withprogress": [[253, "copyfileobj-withprogress"]], "check_sha": [[253, "check-sha"]], "fetch_data": [[253, "fetch-data"]], "fetch_gltf": [[253, "fetch-gltf"]], "fetch_viz_cubemaps": [[253, "fetch-viz-cubemaps"]], "fetch_viz_icons": [[253, "fetch-viz-icons"]], "fetch_viz_new_icons": [[253, "fetch-viz-new-icons"]], "fetch_viz_wiki_nw": [[253, "fetch-viz-wiki-nw"]], "fetch_viz_models": [[253, "fetch-viz-models"]], "fetch_viz_dmri": [[253, "fetch-viz-dmri"]], "fetch_viz_textures": [[253, "fetch-viz-textures"]], "read_viz_cubemap": [[253, "read-viz-cubemap"]], "read_viz_icons": [[253, "read-viz-icons"]], "read_viz_models": [[253, "read-viz-models"]], "read_viz_textures": [[253, "read-viz-textures"]], "read_viz_dmri": [[253, "read-viz-dmri"]], "read_viz_gltf": [[253, "read-viz-gltf"]], "list_gltf_sample_models": [[253, "list-gltf-sample-models"]], "decorators": [[254, "module-fury.decorators"]], "SKIP_RE": [[254, "skip-re"]], "doctest_skip_parser": [[254, "doctest-skip-parser"]], "deprecator": [[255, "module-fury.deprecator"]], "ExpiredDeprecationError": [[255, "expireddeprecationerror"]], "ArgsDeprecationWarning": [[255, "argsdeprecationwarning"]], "_LEADING_WHITE": [[255, "leading-white"]], "cmp_pkg_version": [[255, "cmp-pkg-version"]], "is_bad_version": [[255, "is-bad-version"]], "deprecate_with_version": [[255, "deprecate-with-version"]], "deprecated_params": [[255, "deprecated-params"]], "gltf": [[256, "module-fury.gltf"]], "glTF": [[256, "id1"]], "export_scene": [[256, "export-scene"]], "write_scene": [[256, "write-scene"]], "write_node": [[256, "write-node"]], "write_mesh": [[256, "write-mesh"]], "write_camera": [[256, "write-camera"]], "get_prim": [[256, "get-prim"]], "write_material": [[256, "write-material"]], "write_accessor": [[256, "write-accessor"]], "write_bufferview": [[256, "write-bufferview"]], "write_buffer": [[256, "write-buffer"]], "io": [[257, "module-fury.io"]], "load_cubemap_texture": [[257, "load-cubemap-texture"]], "load_image": [[257, "load-image"]], "load_text": [[257, "load-text"]], "save_image": [[257, "save-image"]], "load_polydata": [[257, "load-polydata"]], "save_polydata": [[257, "save-polydata"]], "load_sprite_sheet": [[257, "load-sprite-sheet"]], "layout": [[258, "module-fury.layout"]], "Layout": [[258, "id1"]], "GridLayout": [[258, "gridlayout"]], "HorizontalLayout": [[258, "horizontallayout"]], "VerticalLayout": [[258, "verticallayout"]], "XLayout": [[258, "xlayout"]], "YLayout": [[258, "ylayout"]], "ZLayout": [[258, "zlayout"]], "lib": [[259, "module-fury.lib"]], "Command": [[259, "command"]], "LookupTable": [[259, "lookuptable"]], "Points": [[259, "points"]], "IdTypeArray": [[259, "idtypearray"]], "FloatArray": [[259, "floatarray"]], "DoubleArray": [[259, "doublearray"]], "StringArray": [[259, "stringarray"]], "UnsignedCharArray": [[259, "unsignedchararray"]], "AlgorithmOutput": [[259, "algorithmoutput"]], "Renderer": [[259, "renderer"]], "Skybox": [[259, "skybox"]], "Volume": [[259, "volume"]], "Actor2D": [[259, "actor2d"]], "Actor": [[259, "actor"]], "RenderWindow": [[259, "renderwindow"]], "RenderWindowInteractor": [[259, "renderwindowinteractor"]], "InteractorEventRecorder": [[259, "interactoreventrecorder"]], "WindowToImageFilter": [[259, "windowtoimagefilter"]], "InteractorStyle": [[259, "interactorstyle"]], "PropPicker": [[259, "proppicker"]], "PointPicker": [[259, "pointpicker"]], "CellPicker": [[259, "cellpicker"]], "WorldPointPicker": [[259, "worldpointpicker"]], "HardwareSelector": [[259, "hardwareselector"]], "ImageActor": [[259, "imageactor"]], "PolyDataMapper": [[259, "polydatamapper"]], "PolyDataMapper2D": [[259, "polydatamapper2d"]], "Assembly": [[259, "assembly"]], "DataSetMapper": [[259, "datasetmapper"]], "Texture": [[259, "texture"]], "TexturedActor2D": [[259, "texturedactor2d"]], "Follower": [[259, "follower"]], "TextActor": [[259, "textactor"]], "TextActor3D": [[259, "textactor3d"]], "Property2D": [[259, "property2d"]], "Camera": [[259, "camera"]], "VectorText": [[259, "vectortext"]], "LODActor": [[259, "lodactor"]], "ScalarBarActor": [[259, "scalarbaractor"]], "OpenGLRenderer": [[259, "openglrenderer"]], "Shader": [[259, "shader"]], "InteractorStyleImage": [[259, "interactorstyleimage"]], "InteractorStyleTrackballActor": [[259, "interactorstyletrackballactor"]], "InteractorStyleTrackballCamera": [[259, "interactorstyletrackballcamera"]], "InteractorStyleUser": [[259, "interactorstyleuser"]], "CleanPolyData": [[259, "cleanpolydata"]], "PolyDataNormals": [[259, "polydatanormals"]], "ContourFilter": [[259, "contourfilter"]], "TubeFilter": [[259, "tubefilter"]], "Glyph3D": [[259, "glyph3d"]], "TriangleFilter": [[259, "trianglefilter"]], "SplineFilter": [[259, "splinefilter"]], "TransformPolyDataFilter": [[259, "transformpolydatafilter"]], "RenderLargeImage": [[259, "renderlargeimage"]], "LoopSubdivisionFilter": [[259, "loopsubdivisionfilter"]], "ButterflySubdivisionFilter": [[259, "butterflysubdivisionfilter"]], "OutlineFilter": [[259, "outlinefilter"]], "LinearExtrusionFilter": [[259, "linearextrusionfilter"]], "TextureMapToPlane": [[259, "texturemaptoplane"]], "SphereSource": [[259, "spheresource"]], "CylinderSource": [[259, "cylindersource"]], "ArrowSource": [[259, "arrowsource"]], "ConeSource": [[259, "conesource"]], "DiskSource": [[259, "disksource"]], "TexturedSphereSource": [[259, "texturedspheresource"]], "RegularPolygonSource": [[259, "regularpolygonsource"]], "PolyData": [[259, "polydata"]], "ImageData": [[259, "imagedata"]], "DataObject": [[259, "dataobject"], [259, "id1"]], "CellArray": [[259, "cellarray"]], "PolyVertex": [[259, "polyvertex"]], "UnstructuredGrid": [[259, "unstructuredgrid"]], "Polygon": [[259, "polygon"]], "Molecule": [[259, "molecule"], [261, "molecule"]], "DataSetAttributes": [[259, "datasetattributes"]], "Transform": [[259, "transform"]], "Matrix4x4": [[259, "matrix4x4"]], "Matrix3x3": [[259, "matrix3x3"]], "ImageFlip": [[259, "imageflip"]], "ImageReslice": [[259, "imagereslice"]], "ImageMapToColors": [[259, "imagemaptocolors"]], "ImageReader2Factory": [[259, "imagereader2factory"]], "PNGReader": [[259, "pngreader"]], "BMPReader": [[259, "bmpreader"]], "JPEGReader": [[259, "jpegreader"]], "TIFFReader": [[259, "tiffreader"]], "PLYReader": [[259, "plyreader"]], "STLReader": [[259, "stlreader"]], "OBJReader": [[259, "objreader"]], "MNIObjectReader": [[259, "mniobjectreader"]], "PolyDataReader": [[259, "polydatareader"]], "XMLPolyDataReader": [[259, "xmlpolydatareader"]], "PNGWriter": [[259, "pngwriter"]], "BMPWriter": [[259, "bmpwriter"]], "JPEGWriter": [[259, "jpegwriter"]], "TIFFWriter": [[259, "tiffwriter"]], "PLYWriter": [[259, "plywriter"]], "STLWriter": [[259, "stlwriter"]], "MNIObjectWriter": [[259, "mniobjectwriter"]], "PolyDataWriter": [[259, "polydatawriter"]], "XMLPolyDataWriter": [[259, "xmlpolydatawriter"]], "SimpleBondPerceiver": [[259, "simplebondperceiver"]], "ProteinRibbonFilter": [[259, "proteinribbonfilter"]], "PeriodicTable": [[259, "periodictable"]], "OpenGLMoleculeMapper": [[259, "openglmoleculemapper"]], "VTK_VERSION": [[259, "vtk-version"]], "material": [[260, "module-fury.material"]], "manifest_pbr": [[260, "manifest-pbr"]], "manifest_principled": [[260, "manifest-principled"]], "manifest_standard": [[260, "manifest-standard"]], "molecular": [[261, "module-fury.molecular"]], "PTable": [[261, "ptable"]], "add_atom": [[261, "add-atom"]], "add_bond": [[261, "add-bond"]], "get_atomic_number": [[261, "get-atomic-number"]], "set_atomic_number": [[261, "set-atomic-number"]], "get_atomic_position": [[261, "get-atomic-position"]], "set_atomic_position": [[261, "set-atomic-position"]], "get_bond_order": [[261, "get-bond-order"]], "set_bond_order": [[261, "set-bond-order"]], "get_all_atomic_numbers": [[261, "get-all-atomic-numbers"]], "get_all_bond_orders": [[261, "get-all-bond-orders"]], "get_all_atomic_positions": [[261, "get-all-atomic-positions"]], "deep_copy_molecule": [[261, "deep-copy-molecule"]], "compute_bonding": [[261, "compute-bonding"]], "sphere_cpk": [[261, "sphere-cpk"]], "ball_stick": [[261, "ball-stick"]], "stick": [[261, "stick"]], "ribbon": [[261, "ribbon"]], "bounding_box": [[261, "bounding-box"]], "pick": [[262, "module-fury.pick"]], "PickingManager": [[262, "pickingmanager"]], "SelectionManager": [[262, "selectionmanager"]], "pkg_info": [[263, "module-fury.pkg_info"]], "pkg_commit_hash": [[263, "pkg-commit-hash"]], "primitive": [[264, "module-fury.primitive"]], "faces_from_sphere_vertices": [[264, "faces-from-sphere-vertices"]], "repeat_primitive_function": [[264, "repeat-primitive-function"]], "repeat_primitive": [[264, "repeat-primitive"]], "prim_square": [[264, "prim-square"]], "prim_box": [[264, "prim-box"]], "prim_sphere": [[264, "prim-sphere"]], "prim_superquadric": [[264, "prim-superquadric"]], "prim_tetrahedron": [[264, "prim-tetrahedron"]], "prim_icosahedron": [[264, "prim-icosahedron"]], "prim_rhombicuboctahedron": [[264, "prim-rhombicuboctahedron"]], "prim_star": [[264, "prim-star"]], "prim_triangularprism": [[264, "prim-triangularprism"]], "prim_pentagonalprism": [[264, "prim-pentagonalprism"]], "prim_octagonalprism": [[264, "prim-octagonalprism"]], "prim_frustum": [[264, "prim-frustum"]], "prim_cylinder": [[264, "prim-cylinder"]], "prim_arrow": [[264, "prim-arrow"]], "prim_cone": [[264, "prim-cone"]], "shaders": [[265, "module-fury.shaders"]], "Module: shaders.base": [[265, "module-fury.shaders.base"]], "SHADERS_DIR": [[265, "shaders-dir"]], "compose_shader": [[265, "compose-shader"]], "import_fury_shader": [[265, "import-fury-shader"]], "load_shader": [[265, "load-shader"]], "load": [[265, "load"]], "shader_to_actor": [[265, "shader-to-actor"]], "replace_shader_in_actor": [[265, "replace-shader-in-actor"]], "add_shader_callback": [[265, "add-shader-callback"]], "shader_apply_effects": [[265, "shader-apply-effects"]], "attribute_to_actor": [[265, "attribute-to-actor"]], "stream": [[266, "module-fury.stream"]], "Module: stream.client": [[266, "module-fury.stream.client"]], "Module: stream.constants": [[266, "module-fury.stream.constants"]], "Module: stream.server": [[266, "module-fury.stream.server"]], "Module: stream.server.async_app": [[266, "module-fury.stream.server.async_app"]], "Module: stream.server.main": [[266, "module-fury.stream.server.main"]], "Module: stream.tools": [[266, "module-fury.stream.tools"]], "Module: stream.widget": [[266, "module-fury.stream.widget"]], "FuryStreamClient": [[266, "furystreamclient"]], "FuryStreamInteraction": [[266, "furystreaminteraction"]], "callback_stream_client": [[266, "callback-stream-client"]], "interaction_callback": [[266, "interaction-callback"]], "_CQUEUE_EVENT_IDs": [[266, "cqueue-event-ids"]], "_CQUEUE_INDEX_INFO": [[266, "cqueue-index-info"]], "_CQUEUE": [[266, "cqueue"]], "pcs": [[266, "pcs"]], "set_weel": [[266, "set-weel"]], "set_mouse": [[266, "set-mouse"]], "set_mouse_click": [[266, "set-mouse-click"]], "get_app": [[266, "get-app"]], "RTCServer": [[266, "rtcserver"]], "web_server_raw_array": [[266, "web-server-raw-array"]], "web_server": [[266, "web-server"]], "GenericMultiDimensionalBuffer": [[266, "genericmultidimensionalbuffer"]], "RawArrayMultiDimensionalBuffer": [[266, "rawarraymultidimensionalbuffer"]], "SharedMemMultiDimensionalBuffer": [[266, "sharedmemmultidimensionalbuffer"]], "GenericCircularQueue": [[266, "genericcircularqueue"]], "ArrayCircularQueue": [[266, "arraycircularqueue"]], "SharedMemCircularQueue": [[266, "sharedmemcircularqueue"]], "GenericImageBufferManager": [[266, "genericimagebuffermanager"]], "RawArrayImageBufferManager": [[266, "rawarrayimagebuffermanager"]], "SharedMemImageBufferManager": [[266, "sharedmemimagebuffermanager"]], "IntervalTimerThreading": [[266, "intervaltimerthreading"]], "IntervalTimer": [[266, "intervaltimer"]], "remove_shm_from_resource_tracker": [[266, "remove-shm-from-resource-tracker"]], "Widget": [[266, "widget"]], "check_port_is_available": [[266, "check-port-is-available"]], "transform": [[267, "module-fury.transform"]], "_TUPLE2AXES": [[267, "tuple2axes"]], "euler_matrix": [[267, "euler-matrix"]], "sphere2cart": [[267, "sphere2cart"]], "cart2sphere": [[267, "cart2sphere"]], "translate": [[267, "translate"]], "rotate": [[267, "rotate"], [269, "rotate"]], "scale": [[267, "scale"]], "apply_transformation": [[267, "apply-transformation"]], "transform_from_matrix": [[267, "transform-from-matrix"]], "ui": [[268, "module-fury.ui"]], "Module: ui.containers": [[268, "module-fury.ui.containers"]], "Module: ui.core": [[268, "module-fury.ui.core"]], "Module: ui.elements": [[268, "module-fury.ui.elements"]], "Module: ui.helpers": [[268, "module-fury.ui.helpers"]], "Panel2D": [[268, "panel2d"]], "TabPanel2D": [[268, "tabpanel2d"]], "TabUI": [[268, "tabui"]], "ImageContainer2D": [[268, "imagecontainer2d"]], "GridUI": [[268, "gridui"]], "UI": [[268, "id1"]], "Rectangle2D": [[268, "rectangle2d"]], "Disk2D": [[268, "disk2d"]], "TextBlock2D": [[268, "textblock2d"]], "Button2D": [[268, "button2d"]], "TextBox2D": [[268, "textbox2d"]], "LineSlider2D": [[268, "lineslider2d"]], "LineDoubleSlider2D": [[268, "linedoubleslider2d"]], "RingSlider2D": [[268, "ringslider2d"]], "RangeSlider": [[268, "rangeslider"]], "Option": [[268, "option"]], "Checkbox": [[268, "checkbox"]], "RadioButton": [[268, "radiobutton"]], "ComboBox2D": [[268, "combobox2d"]], "ListBox2D": [[268, "listbox2d"]], "ListBoxItem2D": [[268, "listboxitem2d"]], "FileMenu2D": [[268, "filemenu2d"]], "DrawShape": [[268, "drawshape"]], "PlaybackPanel": [[268, "playbackpanel"]], "Card2D": [[268, "card2d"]], "clip_overflow": [[268, "clip-overflow"]], "wrap_overflow": [[268, "wrap-overflow"]], "check_overflow": [[268, "check-overflow"]], "cal_bounding_box_2d": [[268, "cal-bounding-box-2d"]], "rotate_2d": [[268, "rotate-2d"]], "utils": [[269, "module-fury.utils"]], "remove_observer_from_actor": [[269, "remove-observer-from-actor"]], "set_input": [[269, "set-input"]], "numpy_to_vtk_points": [[269, "numpy-to-vtk-points"]], "numpy_to_vtk_colors": [[269, "numpy-to-vtk-colors"]], "numpy_to_vtk_cells": [[269, "numpy-to-vtk-cells"]], "numpy_to_vtk_image_data": [[269, "numpy-to-vtk-image-data"]], "map_coordinates_3d_4d": [[269, "map-coordinates-3d-4d"]], "lines_to_vtk_polydata": [[269, "lines-to-vtk-polydata"]], "get_polydata_lines": [[269, "get-polydata-lines"]], "get_polydata_triangles": [[269, "get-polydata-triangles"]], "get_polydata_vertices": [[269, "get-polydata-vertices"]], "get_polydata_tcoord": [[269, "get-polydata-tcoord"]], "get_polydata_normals": [[269, "get-polydata-normals"]], "get_polydata_tangents": [[269, "get-polydata-tangents"]], "get_polydata_colors": [[269, "get-polydata-colors"]], "get_polydata_field": [[269, "get-polydata-field"]], "add_polydata_numeric_field": [[269, "add-polydata-numeric-field"]], "set_polydata_primitives_count": [[269, "set-polydata-primitives-count"]], "get_polydata_primitives_count": [[269, "get-polydata-primitives-count"]], "primitives_count_to_actor": [[269, "primitives-count-to-actor"]], "primitives_count_from_actor": [[269, "primitives-count-from-actor"]], "set_polydata_triangles": [[269, "set-polydata-triangles"]], "set_polydata_vertices": [[269, "set-polydata-vertices"]], "set_polydata_normals": [[269, "set-polydata-normals"]], "set_polydata_tangents": [[269, "set-polydata-tangents"]], "set_polydata_colors": [[269, "set-polydata-colors"]], "set_polydata_tcoords": [[269, "set-polydata-tcoords"]], "update_polydata_normals": [[269, "update-polydata-normals"]], "get_polymapper_from_polydata": [[269, "get-polymapper-from-polydata"]], "get_actor_from_polymapper": [[269, "get-actor-from-polymapper"]], "get_actor_from_polydata": [[269, "get-actor-from-polydata"]], "get_actor_from_primitive": [[269, "get-actor-from-primitive"]], "repeat_sources": [[269, "repeat-sources"]], "apply_affine_to_actor": [[269, "apply-affine-to-actor"]], "apply_affine": [[269, "apply-affine"]], "asbytes": [[269, "asbytes"]], "vtk_matrix_to_numpy": [[269, "vtk-matrix-to-numpy"]], "numpy_to_vtk_matrix": [[269, "numpy-to-vtk-matrix"]], "get_bounding_box_sizes": [[269, "get-bounding-box-sizes"]], "get_grid_cells_position": [[269, "get-grid-cells-position"]], "shallow_copy": [[269, "shallow-copy"]], "rgb_to_vtk": [[269, "rgb-to-vtk"]], "normalize_v3": [[269, "normalize-v3"]], "normals_from_v_f": [[269, "normals-from-v-f"]], "tangents_from_direction_of_anisotropy": [[269, "tangents-from-direction-of-anisotropy"]], "triangle_order": [[269, "triangle-order"]], "change_vertices_order": [[269, "change-vertices-order"]], "fix_winding_order": [[269, "fix-winding-order"]], "vertices_from_actor": [[269, "vertices-from-actor"]], "colors_from_actor": [[269, "colors-from-actor"]], "normals_from_actor": [[269, "normals-from-actor"]], "tangents_from_actor": [[269, "tangents-from-actor"]], "array_from_actor": [[269, "array-from-actor"]], "normals_to_actor": [[269, "normals-to-actor"]], "tangents_to_actor": [[269, "tangents-to-actor"]], "compute_bounds": [[269, "compute-bounds"]], "update_actor": [[269, "update-actor"]], "get_bounds": [[269, "get-bounds"]], "represent_actor_as_wireframe": [[269, "represent-actor-as-wireframe"]], "update_surface_actor_colors": [[269, "update-surface-actor-colors"]], "color_check": [[269, "color-check"]], "is_ui": [[269, "is-ui"]], "set_actor_origin": [[269, "set-actor-origin"]], "window": [[270, "module-fury.window"]], "Scene": [[270, "scene"]], "ShowManager": [[270, "showmanager"]], "show": [[270, "show"]], "record": [[270, "record"]], "antialiasing": [[270, "antialiasing"]], "snapshot": [[270, "snapshot"]], "analyze_scene": [[270, "analyze-scene"]], "analyze_snapshot": [[270, "analyze-snapshot"]], "enable_stereo": [[270, "enable-stereo"]], "gl_get_current_state": [[270, "gl-get-current-state"]], "gl_reset_blend": [[270, "gl-reset-blend"]], "gl_enable_depth": [[270, "gl-enable-depth"]], "gl_disable_depth": [[270, "gl-disable-depth"]], "gl_enable_blend": [[270, "gl-enable-blend"]], "gl_disable_blend": [[270, "gl-disable-blend"]], "gl_set_additive_blending": [[270, "gl-set-additive-blending"]], "gl_set_additive_blending_white_background": [[270, "gl-set-additive-blending-white-background"]], "gl_set_normal_blending": [[270, "gl-set-normal-blending"]], "gl_set_multiplicative_blending": [[270, "gl-set-multiplicative-blending"]], "gl_set_subtractive_blending": [[270, "gl-set-subtractive-blending"]], "release_context": [[270, "release-context"]], "API Reference": [[271, "api-reference"]], "Release History": [[272, "release-history"]], "Release notes v0.1.0 (2018-09-21)": [[273, "release-notes-v0-1-0-2018-09-21"]], "Quick Overview": [[273, "quick-overview"], [274, "quick-overview"], [275, "quick-overview"], [276, "quick-overview"], [277, "quick-overview"], [278, "quick-overview"], [279, "quick-overview"], [280, "quick-overview"], [281, "quick-overview"], [282, "quick-overview"], [283, "quick-overview"], [284, "quick-overview"], [285, "quick-overview"], [286, "quick-overview"]], "Release notes v0.1.1 (2018-10-29)": [[274, "release-notes-v0-1-1-2018-10-29"]], "Release notes v0.1.2 and v0.1.3 (2018-10-31)": [[275, "release-notes-v0-1-2-and-v0-1-3-2018-10-31"]], "Release notes v0.1.4 (2018-11-26)": [[276, "release-notes-v0-1-4-2018-11-26"]], "Release notes v0.2.0 (2019-03-08)": [[277, "release-notes-v0-2-0-2019-03-08"]], "Details": [[277, "details"], [278, "details"], [279, "details"], [280, "details"], [281, "details"], [282, "details"], [283, "details"], [284, "details"], [285, "details"], [286, "details"]], "Release notes v0.3.0 (2019-08-02)": [[278, "release-notes-v0-3-0-2019-08-02"]], "Release notes v0.4.0 (2019-10-29)": [[279, "release-notes-v0-4-0-2019-10-29"]], "Release notes v0.5.1 (2020-04-01)": [[280, "release-notes-v0-5-1-2020-04-01"]], "Release notes v0.6.0 (2020-07-20)": [[281, "release-notes-v0-6-0-2020-07-20"]], "Release notes v0.6.1 (2020-08-20)": [[282, "release-notes-v0-6-1-2020-08-20"]], "Release notes v0.7.0 (2021/03/13)": [[283, "release-notes-v0-7-0-2021-03-13"]], "Release notes v0.7.1 (2021/08/03)": [[284, "release-notes-v0-7-1-2021-08-03"]], "Release notes v0.8.0 (2022/01/31)": [[285, "release-notes-v0-8-0-2022-01-31"]], "Release notes v0.9.0 (2023/04/15)": [[286, "release-notes-v0-9-0-2023-04-15"]], "Contributing": [[287, "contributing"]], "Types of Contributions": [[287, "types-of-contributions"]], "Report Bugs": [[287, "report-bugs"]], "Fix Bugs": [[287, "fix-bugs"]], "Implement Features": [[287, "implement-features"]], "Write Documentation": [[287, "write-documentation"]], "Submit Feedback": [[287, "submit-feedback"]], "Get Started!": [[287, "get-started"]], "Pull Request Guidelines": [[287, "pull-request-guidelines"]], "Publishing Releases": [[287, "publishing-releases"]], "Checklist before Releasing": [[287, "checklist-before-releasing"]], "Doing the release": [[287, "doing-the-release"]], "Other stuff that needs doing for the release": [[287, "other-stuff-that-needs-doing-for-the-release"]]}, "indexentries": {"disable_warnings() (in module fury)": [[247, "fury.disable_warnings"]], "enable_warnings() (in module fury)": [[247, "fury.enable_warnings"]], "fury": [[247, "module-fury"]], "get_info() (in module fury)": [[247, "fury.get_info"]], "module": [[247, "module-fury"], [248, "module-fury.actor"], [249, "module-fury.actors"], [249, "module-fury.actors.odf_slicer"], [249, "module-fury.actors.peak"], [249, "module-fury.actors.tensor"], [250, "module-fury.animation"], [250, "module-fury.animation.animation"], [250, "module-fury.animation.helpers"], [250, "module-fury.animation.interpolator"], [250, "module-fury.animation.timeline"], [251, "module-fury.colormap"], [252, "module-fury.convert"], [253, "module-fury.data"], [253, "module-fury.data.fetcher"], [254, "module-fury.decorators"], [255, "module-fury.deprecator"], [256, "module-fury.gltf"], [257, "module-fury.io"], [258, "module-fury.layout"], [259, "module-fury.lib"], [260, "module-fury.material"], [261, "module-fury.molecular"], [262, "module-fury.pick"], [263, "module-fury.pkg_info"], [264, "module-fury.primitive"], [265, "module-fury.shaders"], [265, "module-fury.shaders.base"], [266, "module-fury.stream"], [266, "module-fury.stream.client"], [266, "module-fury.stream.constants"], [266, "module-fury.stream.server"], [266, "module-fury.stream.server.async_app"], [266, "module-fury.stream.server.main"], [266, "module-fury.stream.tools"], [266, "module-fury.stream.widget"], [267, "module-fury.transform"], [268, "module-fury.ui"], [268, "module-fury.ui.containers"], [268, "module-fury.ui.core"], [268, "module-fury.ui.elements"], [268, "module-fury.ui.helpers"], [269, "module-fury.utils"], [270, "module-fury.window"]], "addposition() (fury.actor.container method)": [[248, "fury.actor.Container.AddPosition"]], "container (class in fury.actor)": [[248, "fury.actor.Container"]], "getbounds() (fury.actor.container method)": [[248, "fury.actor.Container.GetBounds"]], "getcenter() (fury.actor.container method)": [[248, "fury.actor.Container.GetCenter"]], "getlength() (fury.actor.container method)": [[248, "fury.actor.Container.GetLength"]], "getposition() (fury.actor.container method)": [[248, "fury.actor.Container.GetPosition"]], "getvisibility() (fury.actor.container method)": [[248, "fury.actor.Container.GetVisibility"]], "newinstance() (fury.actor.container method)": [[248, "fury.actor.Container.NewInstance"]], "setposition() (fury.actor.container method)": [[248, "fury.actor.Container.SetPosition"]], "setvisibility() (fury.actor.container method)": [[248, "fury.actor.Container.SetVisibility"]], "shallowcopy() (fury.actor.container method)": [[248, "fury.actor.Container.ShallowCopy"]], "__init__() (fury.actor.container method)": [[248, "fury.actor.Container.__init__"]], "add() (fury.actor.container method)": [[248, "fury.actor.Container.add"]], "add_to_scene() (fury.actor.container method)": [[248, "fury.actor.Container.add_to_scene"]], "anchor (fury.actor.container attribute)": [[248, "fury.actor.Container.anchor"]], "arrow() (in module fury.actor)": [[248, "fury.actor.arrow"]], "axes() (in module fury.actor)": [[248, "fury.actor.axes"]], "billboard() (in module fury.actor)": [[248, "fury.actor.billboard"]], "box() (in module fury.actor)": [[248, "fury.actor.box"]], "clear() (fury.actor.container method)": [[248, "fury.actor.Container.clear"]], "cone() (in module fury.actor)": [[248, "fury.actor.cone"]], "contour_from_label() (in module fury.actor)": [[248, "fury.actor.contour_from_label"]], "contour_from_roi() (in module fury.actor)": [[248, "fury.actor.contour_from_roi"]], "cube() (in module fury.actor)": [[248, "fury.actor.cube"]], "cylinder() (in module fury.actor)": [[248, "fury.actor.cylinder"]], "disk() (in module fury.actor)": [[248, "fury.actor.disk"]], "dot() (in module fury.actor)": [[248, "fury.actor.dot"]], "dots() (in module fury.actor)": [[248, "fury.actor.dots"]], "ellipsoid() (in module fury.actor)": [[248, "fury.actor.ellipsoid"]], "figure() (in module fury.actor)": [[248, "fury.actor.figure"]], "frustum() (in module fury.actor)": [[248, "fury.actor.frustum"]], "fury.actor": [[248, "module-fury.actor"]], "grid() (in module fury.actor)": [[248, "fury.actor.grid"]], "items (fury.actor.container property)": [[248, "fury.actor.Container.items"]], "label() (in module fury.actor)": [[248, "fury.actor.label"]], "line() (in module fury.actor)": [[248, "fury.actor.line"]], "markers() (in module fury.actor)": [[248, "fury.actor.markers"]], "octagonalprism() (in module fury.actor)": [[248, "fury.actor.octagonalprism"]], "odf_slicer() (in module fury.actor)": [[248, "fury.actor.odf_slicer"]], "padding (fury.actor.container attribute)": [[248, "fury.actor.Container.padding"]], "peak() (in module fury.actor)": [[248, "fury.actor.peak"]], "peak_slicer() (in module fury.actor)": [[248, "fury.actor.peak_slicer"]], "pentagonalprism() (in module fury.actor)": [[248, "fury.actor.pentagonalprism"]], "point() (in module fury.actor)": [[248, "fury.actor.point"]], "rectangle() (in module fury.actor)": [[248, "fury.actor.rectangle"]], "remove_from_scene() (fury.actor.container method)": [[248, "fury.actor.Container.remove_from_scene"]], "rhombicuboctahedron() (in module fury.actor)": [[248, "fury.actor.rhombicuboctahedron"]], "scalar_bar() (in module fury.actor)": [[248, "fury.actor.scalar_bar"]], "sdf() (in module fury.actor)": [[248, "fury.actor.sdf"]], "slicer() (in module fury.actor)": [[248, "fury.actor.slicer"]], "sphere() (in module fury.actor)": [[248, "fury.actor.sphere"]], "square() (in module fury.actor)": [[248, "fury.actor.square"]], "streamtube() (in module fury.actor)": [[248, "fury.actor.streamtube"]], "superquadric() (in module fury.actor)": [[248, "fury.actor.superquadric"]], "surface() (in module fury.actor)": [[248, "fury.actor.surface"]], "tensor_slicer() (in module fury.actor)": [[248, "fury.actor.tensor_slicer"]], "text_3d() (in module fury.actor)": [[248, "fury.actor.text_3d"]], "texture() (in module fury.actor)": [[248, "fury.actor.texture"]], "texture_2d() (in module fury.actor)": [[248, "fury.actor.texture_2d"]], "texture_on_sphere() (in module fury.actor)": [[248, "fury.actor.texture_on_sphere"]], "texture_update() (in module fury.actor)": [[248, "fury.actor.texture_update"]], "triangularprism() (in module fury.actor)": [[248, "fury.actor.triangularprism"]], "update() (fury.actor.container method)": [[248, "fury.actor.Container.update"]], "vector_text() (in module fury.actor)": [[248, "fury.actor.vector_text"]], "odfsliceractor (class in fury.actors.odf_slicer)": [[249, "fury.actors.odf_slicer.OdfSlicerActor"]], "peakactor (class in fury.actors.peak)": [[249, "fury.actors.peak.PeakActor"]], "__init__() (fury.actors.odf_slicer.odfsliceractor method)": [[249, "fury.actors.odf_slicer.OdfSlicerActor.__init__"]], "__init__() (fury.actors.peak.peakactor method)": [[249, "fury.actors.peak.PeakActor.__init__"]], "cross_section (fury.actors.peak.peakactor property)": [[249, "fury.actors.peak.PeakActor.cross_section"]], "display() (fury.actors.odf_slicer.odfsliceractor method)": [[249, "fury.actors.odf_slicer.OdfSlicerActor.display"]], "display_cross_section() (fury.actors.peak.peakactor method)": [[249, "fury.actors.peak.PeakActor.display_cross_section"]], "display_extent() (fury.actors.odf_slicer.odfsliceractor method)": [[249, "fury.actors.odf_slicer.OdfSlicerActor.display_extent"]], "display_extent() (fury.actors.peak.peakactor method)": [[249, "fury.actors.peak.PeakActor.display_extent"]], "fury.actors": [[249, "module-fury.actors"]], "fury.actors.odf_slicer": [[249, "module-fury.actors.odf_slicer"]], "fury.actors.peak": [[249, "module-fury.actors.peak"]], "fury.actors.tensor": [[249, "module-fury.actors.tensor"]], "global_opacity (fury.actors.peak.peakactor property)": [[249, "fury.actors.peak.PeakActor.global_opacity"]], "high_ranges (fury.actors.peak.peakactor property)": [[249, "fury.actors.peak.PeakActor.high_ranges"]], "is_range (fury.actors.peak.peakactor property)": [[249, "fury.actors.peak.PeakActor.is_range"]], "linewidth (fury.actors.peak.peakactor property)": [[249, "fury.actors.peak.PeakActor.linewidth"]], "low_ranges (fury.actors.peak.peakactor property)": [[249, "fury.actors.peak.PeakActor.low_ranges"]], "max_centers (fury.actors.peak.peakactor property)": [[249, "fury.actors.peak.PeakActor.max_centers"]], "min_centers (fury.actors.peak.peakactor property)": [[249, "fury.actors.peak.PeakActor.min_centers"]], "set_opacity() (fury.actors.odf_slicer.odfsliceractor method)": [[249, "fury.actors.odf_slicer.OdfSlicerActor.set_opacity"]], "slice_along_axis() (fury.actors.odf_slicer.odfsliceractor method)": [[249, "fury.actors.odf_slicer.OdfSlicerActor.slice_along_axis"]], "tensor_ellipsoid() (in module fury.actors.tensor)": [[249, "fury.actors.tensor.tensor_ellipsoid"]], "update_sphere() (fury.actors.odf_slicer.odfsliceractor method)": [[249, "fury.actors.odf_slicer.OdfSlicerActor.update_sphere"]], "animation (class in fury.animation.animation)": [[250, "fury.animation.animation.Animation"]], "cameraanimation (class in fury.animation.animation)": [[250, "fury.animation.animation.CameraAnimation"]], "timeline (class in fury.animation.timeline)": [[250, "fury.animation.timeline.Timeline"]], "__init__() (fury.animation.animation.animation method)": [[250, "fury.animation.animation.Animation.__init__"]], "__init__() (fury.animation.animation.cameraanimation method)": [[250, "fury.animation.animation.CameraAnimation.__init__"]], "__init__() (fury.animation.timeline.timeline method)": [[250, "fury.animation.timeline.Timeline.__init__"]], "actors (fury.animation.animation.animation attribute)": [[250, "fury.animation.animation.Animation.actors"]], "actors (fury.animation.animation.animation property)": [[250, "id0"]], "add() (fury.animation.animation.animation method)": [[250, "fury.animation.animation.Animation.add"]], "add_actor() (fury.animation.animation.animation method)": [[250, "fury.animation.animation.Animation.add_actor"]], "add_animation() (fury.animation.timeline.timeline method)": [[250, "fury.animation.timeline.Timeline.add_animation"]], "add_child_animation() (fury.animation.animation.animation method)": [[250, "fury.animation.animation.Animation.add_child_animation"]], "add_static_actor() (fury.animation.animation.animation method)": [[250, "fury.animation.animation.Animation.add_static_actor"]], "add_to_scene() (fury.animation.animation.animation method)": [[250, "fury.animation.animation.Animation.add_to_scene"]], "add_to_scene() (fury.animation.timeline.timeline method)": [[250, "fury.animation.timeline.Timeline.add_to_scene"]], "add_to_scene_at() (fury.animation.animation.animation method)": [[250, "fury.animation.animation.Animation.add_to_scene_at"]], "add_update_callback() (fury.animation.animation.animation method)": [[250, "fury.animation.animation.Animation.add_update_callback"]], "animations (fury.animation.timeline.timeline attribute)": [[250, "fury.animation.timeline.Timeline.animations"]], "animations (fury.animation.timeline.timeline property)": [[250, "id4"]], "camera (fury.animation.animation.cameraanimation attribute)": [[250, "fury.animation.animation.CameraAnimation.camera"]], "camera (fury.animation.animation.cameraanimation property)": [[250, "id3"]], "child_animations (fury.animation.animation.animation property)": [[250, "fury.animation.animation.Animation.child_animations"]], "color_interpolator() (in module fury.animation.interpolator)": [[250, "fury.animation.interpolator.color_interpolator"]], "cubic_bezier_interpolator() (in module fury.animation.interpolator)": [[250, "fury.animation.interpolator.cubic_bezier_interpolator"]], "cubic_spline_interpolator() (in module fury.animation.interpolator)": [[250, "fury.animation.interpolator.cubic_spline_interpolator"]], "current_timestamp (fury.animation.animation.animation property)": [[250, "fury.animation.animation.Animation.current_timestamp"]], "current_timestamp (fury.animation.timeline.timeline property)": [[250, "fury.animation.timeline.Timeline.current_timestamp"]], "duration (fury.animation.animation.animation property)": [[250, "fury.animation.animation.Animation.duration"]], "duration (fury.animation.timeline.timeline property)": [[250, "fury.animation.timeline.Timeline.duration"]], "euclidean_distances() (in module fury.animation.helpers)": [[250, "fury.animation.helpers.euclidean_distances"]], "fury.animation": [[250, "module-fury.animation"]], "fury.animation.animation": [[250, "module-fury.animation.animation"]], "fury.animation.helpers": [[250, "module-fury.animation.helpers"]], "fury.animation.interpolator": [[250, "module-fury.animation.interpolator"]], "fury.animation.timeline": [[250, "module-fury.animation.timeline"]], "get_color() (fury.animation.animation.animation method)": [[250, "fury.animation.animation.Animation.get_color"]], "get_current_value() (fury.animation.animation.animation method)": [[250, "fury.animation.animation.Animation.get_current_value"]], "get_focal() (fury.animation.animation.cameraanimation method)": [[250, "fury.animation.animation.CameraAnimation.get_focal"]], "get_keyframes() (fury.animation.animation.animation method)": [[250, "fury.animation.animation.Animation.get_keyframes"]], "get_next_timestamp() (in module fury.animation.helpers)": [[250, "fury.animation.helpers.get_next_timestamp"]], "get_opacity() (fury.animation.animation.animation method)": [[250, "fury.animation.animation.Animation.get_opacity"]], "get_position() (fury.animation.animation.animation method)": [[250, "fury.animation.animation.Animation.get_position"]], "get_previous_timestamp() (in module fury.animation.helpers)": [[250, "fury.animation.helpers.get_previous_timestamp"]], "get_rotation() (fury.animation.animation.animation method)": [[250, "fury.animation.animation.Animation.get_rotation"]], "get_scale() (fury.animation.animation.animation method)": [[250, "fury.animation.animation.Animation.get_scale"]], "get_time_tau() (in module fury.animation.helpers)": [[250, "fury.animation.helpers.get_time_tau"]], "get_timestamps_from_keyframes() (in module fury.animation.helpers)": [[250, "fury.animation.helpers.get_timestamps_from_keyframes"]], "get_value() (fury.animation.animation.animation method)": [[250, "fury.animation.animation.Animation.get_value"]], "get_values_from_keyframes() (in module fury.animation.helpers)": [[250, "fury.animation.helpers.get_values_from_keyframes"]], "get_view_up() (fury.animation.animation.cameraanimation method)": [[250, "fury.animation.animation.CameraAnimation.get_view_up"]], "has_playback_panel (fury.animation.timeline.timeline property)": [[250, "fury.animation.timeline.Timeline.has_playback_panel"]], "hsv_color_interpolator() (in module fury.animation.interpolator)": [[250, "fury.animation.interpolator.hsv_color_interpolator"]], "is_inside_scene_at() (fury.animation.animation.animation method)": [[250, "fury.animation.animation.Animation.is_inside_scene_at"]], "is_interpolatable() (fury.animation.animation.animation method)": [[250, "fury.animation.animation.Animation.is_interpolatable"]], "lab_color_interpolator() (in module fury.animation.interpolator)": [[250, "fury.animation.interpolator.lab_color_interpolator"]], "length (fury.animation.animation.animation attribute)": [[250, "fury.animation.animation.Animation.length"]], "length (fury.animation.animation.cameraanimation attribute)": [[250, "fury.animation.animation.CameraAnimation.length"]], "length (fury.animation.timeline.timeline attribute)": [[250, "fury.animation.timeline.Timeline.length"]], "lerp() (in module fury.animation.helpers)": [[250, "fury.animation.helpers.lerp"]], "linear_interpolator() (in module fury.animation.interpolator)": [[250, "fury.animation.interpolator.linear_interpolator"]], "loop (fury.animation.animation.animation attribute)": [[250, "fury.animation.animation.Animation.loop"]], "loop (fury.animation.animation.animation property)": [[250, "id2"]], "loop (fury.animation.animation.cameraanimation attribute)": [[250, "fury.animation.animation.CameraAnimation.loop"]], "loop (fury.animation.timeline.timeline attribute)": [[250, "fury.animation.timeline.Timeline.loop"]], "loop (fury.animation.timeline.timeline property)": [[250, "id5"]], "motion_path_res (fury.animation.animation.animation attribute)": [[250, "fury.animation.animation.Animation.motion_path_res"]], "motion_path_res (fury.animation.animation.cameraanimation attribute)": [[250, "fury.animation.animation.CameraAnimation.motion_path_res"]], "parent_animation (fury.animation.animation.animation property)": [[250, "fury.animation.animation.Animation.parent_animation"]], "pause() (fury.animation.timeline.timeline method)": [[250, "fury.animation.timeline.Timeline.pause"]], "paused (fury.animation.timeline.timeline property)": [[250, "fury.animation.timeline.Timeline.paused"]], "play() (fury.animation.timeline.timeline method)": [[250, "fury.animation.timeline.Timeline.play"]], "playback_panel (fury.animation.timeline.timeline attribute)": [[250, "fury.animation.timeline.Timeline.playback_panel"]], "playing (fury.animation.timeline.timeline property)": [[250, "fury.animation.timeline.Timeline.playing"]], "record() (fury.animation.timeline.timeline method)": [[250, "fury.animation.timeline.Timeline.record"]], "remove_actor() (fury.animation.animation.animation method)": [[250, "fury.animation.animation.Animation.remove_actor"]], "remove_actors() (fury.animation.animation.animation method)": [[250, "fury.animation.animation.Animation.remove_actors"]], "remove_animations() (fury.animation.animation.animation method)": [[250, "fury.animation.animation.Animation.remove_animations"]], "remove_from_scene() (fury.animation.animation.animation method)": [[250, "fury.animation.animation.Animation.remove_from_scene"]], "remove_from_scene() (fury.animation.timeline.timeline method)": [[250, "fury.animation.timeline.Timeline.remove_from_scene"]], "remove_from_scene_at() (fury.animation.animation.animation method)": [[250, "fury.animation.animation.Animation.remove_from_scene_at"]], "restart() (fury.animation.timeline.timeline method)": [[250, "fury.animation.timeline.Timeline.restart"]], "seek() (fury.animation.timeline.timeline method)": [[250, "fury.animation.timeline.Timeline.seek"]], "seek_percent() (fury.animation.timeline.timeline method)": [[250, "fury.animation.timeline.Timeline.seek_percent"]], "set_color() (fury.animation.animation.animation method)": [[250, "fury.animation.animation.Animation.set_color"]], "set_color_interpolator() (fury.animation.animation.animation method)": [[250, "fury.animation.animation.Animation.set_color_interpolator"]], "set_color_keyframes() (fury.animation.animation.animation method)": [[250, "fury.animation.animation.Animation.set_color_keyframes"]], "set_focal() (fury.animation.animation.cameraanimation method)": [[250, "fury.animation.animation.CameraAnimation.set_focal"]], "set_focal_interpolator() (fury.animation.animation.cameraanimation method)": [[250, "fury.animation.animation.CameraAnimation.set_focal_interpolator"]], "set_focal_keyframes() (fury.animation.animation.cameraanimation method)": [[250, "fury.animation.animation.CameraAnimation.set_focal_keyframes"]], "set_interpolator() (fury.animation.animation.animation method)": [[250, "fury.animation.animation.Animation.set_interpolator"]], "set_keyframe() (fury.animation.animation.animation method)": [[250, "fury.animation.animation.Animation.set_keyframe"]], "set_keyframes() (fury.animation.animation.animation method)": [[250, "fury.animation.animation.Animation.set_keyframes"]], "set_opacity() (fury.animation.animation.animation method)": [[250, "fury.animation.animation.Animation.set_opacity"]], "set_opacity_interpolator() (fury.animation.animation.animation method)": [[250, "fury.animation.animation.Animation.set_opacity_interpolator"]], "set_opacity_keyframes() (fury.animation.animation.animation method)": [[250, "fury.animation.animation.Animation.set_opacity_keyframes"]], "set_position() (fury.animation.animation.animation method)": [[250, "fury.animation.animation.Animation.set_position"]], "set_position_interpolator() (fury.animation.animation.animation method)": [[250, "fury.animation.animation.Animation.set_position_interpolator"]], "set_position_keyframes() (fury.animation.animation.animation method)": [[250, "fury.animation.animation.Animation.set_position_keyframes"]], "set_rotation() (fury.animation.animation.animation method)": [[250, "fury.animation.animation.Animation.set_rotation"]], "set_rotation_as_vector() (fury.animation.animation.animation method)": [[250, "fury.animation.animation.Animation.set_rotation_as_vector"]], "set_rotation_interpolator() (fury.animation.animation.animation method)": [[250, "fury.animation.animation.Animation.set_rotation_interpolator"]], "set_scale() (fury.animation.animation.animation method)": [[250, "fury.animation.animation.Animation.set_scale"]], "set_scale_interpolator() (fury.animation.animation.animation method)": [[250, "fury.animation.animation.Animation.set_scale_interpolator"]], "set_scale_keyframes() (fury.animation.animation.animation method)": [[250, "fury.animation.animation.Animation.set_scale_keyframes"]], "set_view_up() (fury.animation.animation.cameraanimation method)": [[250, "fury.animation.animation.CameraAnimation.set_view_up"]], "set_view_up_interpolator() (fury.animation.animation.cameraanimation method)": [[250, "fury.animation.animation.CameraAnimation.set_view_up_interpolator"]], "set_view_up_keyframes() (fury.animation.animation.cameraanimation method)": [[250, "fury.animation.animation.CameraAnimation.set_view_up_keyframes"]], "slerp() (in module fury.animation.interpolator)": [[250, "fury.animation.interpolator.slerp"]], "speed (fury.animation.timeline.timeline property)": [[250, "fury.animation.timeline.Timeline.speed"]], "spline_interpolator() (in module fury.animation.interpolator)": [[250, "fury.animation.interpolator.spline_interpolator"]], "static_actors (fury.animation.animation.animation property)": [[250, "fury.animation.animation.Animation.static_actors"]], "step_interpolator() (in module fury.animation.interpolator)": [[250, "fury.animation.interpolator.step_interpolator"]], "stop() (fury.animation.timeline.timeline method)": [[250, "fury.animation.timeline.Timeline.stop"]], "stopped (fury.animation.timeline.timeline property)": [[250, "fury.animation.timeline.Timeline.stopped"]], "tan_cubic_spline_interpolator() (in module fury.animation.interpolator)": [[250, "fury.animation.interpolator.tan_cubic_spline_interpolator"]], "timeline (fury.animation.animation.animation property)": [[250, "fury.animation.animation.Animation.timeline"]], "update() (fury.animation.timeline.timeline method)": [[250, "fury.animation.timeline.Timeline.update"]], "update_animation() (fury.animation.animation.animation method)": [[250, "fury.animation.animation.Animation.update_animation"]], "update_animation() (fury.animation.animation.cameraanimation method)": [[250, "fury.animation.animation.CameraAnimation.update_animation"]], "update_duration() (fury.animation.animation.animation method)": [[250, "fury.animation.animation.Animation.update_duration"]], "update_duration() (fury.animation.timeline.timeline method)": [[250, "fury.animation.timeline.Timeline.update_duration"]], "update_motion_path() (fury.animation.animation.animation method)": [[250, "fury.animation.animation.Animation.update_motion_path"]], "xyz_color_interpolator() (in module fury.animation.interpolator)": [[250, "fury.animation.interpolator.xyz_color_interpolator"]], "t (in module fury.colormap)": [[251, "fury.colormap.T"], [251, "id0"]], "base (in module fury.colormap)": [[251, "fury.colormap.base"], [251, "id15"]], "boys2rgb() (in module fury.colormap)": [[251, "fury.colormap.boys2rgb"]], "cc() (in module fury.colormap)": [[251, "fury.colormap.cc"]], "colormap_lookup_table() (in module fury.colormap)": [[251, "fury.colormap.colormap_lookup_table"]], "create_colormap() (in module fury.colormap)": [[251, "fury.colormap.create_colormap"]], "ctypes (in module fury.colormap)": [[251, "fury.colormap.ctypes"], [251, "id14"]], "data (in module fury.colormap)": [[251, "fury.colormap.data"], [251, "id2"]], "distinguishable_colormap() (in module fury.colormap)": [[251, "fury.colormap.distinguishable_colormap"]], "dtype (in module fury.colormap)": [[251, "fury.colormap.dtype"], [251, "id3"]], "flags (in module fury.colormap)": [[251, "fury.colormap.flags"], [251, "id4"]], "flat (in module fury.colormap)": [[251, "fury.colormap.flat"], [251, "id5"]], "fury.colormap": [[251, "module-fury.colormap"]], "get_cmap() (in module fury.colormap)": [[251, "fury.colormap.get_cmap"]], "get_xyz_coords() (in module fury.colormap)": [[251, "fury.colormap.get_xyz_coords"]], "hex_to_rgb() (in module fury.colormap)": [[251, "fury.colormap.hex_to_rgb"]], "hsv2rgb() (in module fury.colormap)": [[251, "fury.colormap.hsv2rgb"]], "imag (in module fury.colormap)": [[251, "fury.colormap.imag"], [251, "id6"]], "itemsize (in module fury.colormap)": [[251, "fury.colormap.itemsize"], [251, "id9"]], "lab2rgb() (in module fury.colormap)": [[251, "fury.colormap.lab2rgb"]], "lab2xyz() (in module fury.colormap)": [[251, "fury.colormap.lab2xyz"]], "line_colors() (in module fury.colormap)": [[251, "fury.colormap.line_colors"]], "nbytes (in module fury.colormap)": [[251, "fury.colormap.nbytes"], [251, "id10"]], "ndim (in module fury.colormap)": [[251, "fury.colormap.ndim"], [251, "id11"]], "orient2rgb() (in module fury.colormap)": [[251, "fury.colormap.orient2rgb"]], "real (in module fury.colormap)": [[251, "fury.colormap.real"], [251, "id7"]], "rgb2hsv() (in module fury.colormap)": [[251, "fury.colormap.rgb2hsv"]], "rgb2lab() (in module fury.colormap)": [[251, "fury.colormap.rgb2lab"]], "rgb2xyz() (in module fury.colormap)": [[251, "fury.colormap.rgb2xyz"]], "rgb_from_xyz() (in module fury.colormap)": [[251, "fury.colormap.rgb_from_xyz"]], "shape (in module fury.colormap)": [[251, "fury.colormap.shape"], [251, "id12"]], "size (in module fury.colormap)": [[251, "fury.colormap.size"], [251, "id8"]], "ss() (in module fury.colormap)": [[251, "fury.colormap.ss"]], "strides (in module fury.colormap)": [[251, "fury.colormap.strides"], [251, "id13"]], "xyz2lab() (in module fury.colormap)": [[251, "fury.colormap.xyz2lab"]], "xyz2rgb() (in module fury.colormap)": [[251, "fury.colormap.xyz2rgb"]], "xyz_from_rgb() (in module fury.colormap)": [[251, "fury.colormap.xyz_from_rgb"]], "fury.convert": [[252, "module-fury.convert"]], "matplotlib_figure_to_numpy() (in module fury.convert)": [[252, "fury.convert.matplotlib_figure_to_numpy"]], "data_dir() (in module fury.data)": [[253, "fury.data.DATA_DIR"]], "check_sha() (in module fury.data.fetcher)": [[253, "fury.data.fetcher.check_sha"]], "copyfileobj_withprogress() (in module fury.data.fetcher)": [[253, "fury.data.fetcher.copyfileobj_withprogress"]], "fetch_data() (in module fury.data.fetcher)": [[253, "fury.data.fetcher.fetch_data"]], "fetch_gltf() (in module fury.data.fetcher)": [[253, "fury.data.fetcher.fetch_gltf"]], "fetch_viz_cubemaps() (in module fury.data.fetcher)": [[253, "fury.data.fetcher.fetch_viz_cubemaps"]], "fetch_viz_dmri() (in module fury.data.fetcher)": [[253, "fury.data.fetcher.fetch_viz_dmri"]], "fetch_viz_icons() (in module fury.data.fetcher)": [[253, "fury.data.fetcher.fetch_viz_icons"]], "fetch_viz_models() (in module fury.data.fetcher)": [[253, "fury.data.fetcher.fetch_viz_models"]], "fetch_viz_new_icons() (in module fury.data.fetcher)": [[253, "fury.data.fetcher.fetch_viz_new_icons"]], "fetch_viz_textures() (in module fury.data.fetcher)": [[253, "fury.data.fetcher.fetch_viz_textures"]], "fetch_viz_wiki_nw() (in module fury.data.fetcher)": [[253, "fury.data.fetcher.fetch_viz_wiki_nw"]], "fury.data": [[253, "module-fury.data"]], "fury.data.fetcher": [[253, "module-fury.data.fetcher"]], "list_gltf_sample_models() (in module fury.data.fetcher)": [[253, "fury.data.fetcher.list_gltf_sample_models"]], "read_viz_cubemap() (in module fury.data.fetcher)": [[253, "fury.data.fetcher.read_viz_cubemap"]], "read_viz_dmri() (in module fury.data.fetcher)": [[253, "fury.data.fetcher.read_viz_dmri"]], "read_viz_gltf() (in module fury.data.fetcher)": [[253, "fury.data.fetcher.read_viz_gltf"]], "read_viz_icons() (in module fury.data.fetcher)": [[253, "fury.data.fetcher.read_viz_icons"]], "read_viz_models() (in module fury.data.fetcher)": [[253, "fury.data.fetcher.read_viz_models"]], "read_viz_textures() (in module fury.data.fetcher)": [[253, "fury.data.fetcher.read_viz_textures"]], "update_progressbar() (in module fury.data.fetcher)": [[253, "fury.data.fetcher.update_progressbar"]], "skip_re() (in module fury.decorators)": [[254, "fury.decorators.SKIP_RE"]], "doctest_skip_parser() (in module fury.decorators)": [[254, "fury.decorators.doctest_skip_parser"]], "fury.decorators": [[254, "module-fury.decorators"]], "argsdeprecationwarning (class in fury.deprecator)": [[255, "fury.deprecator.ArgsDeprecationWarning"]], "expireddeprecationerror (class in fury.deprecator)": [[255, "fury.deprecator.ExpiredDeprecationError"]], "_leading_white() (in module fury.deprecator)": [[255, "fury.deprecator._LEADING_WHITE"]], "__init__() (fury.deprecator.argsdeprecationwarning method)": [[255, "fury.deprecator.ArgsDeprecationWarning.__init__"]], "__init__() (fury.deprecator.expireddeprecationerror method)": [[255, "fury.deprecator.ExpiredDeprecationError.__init__"]], "cmp_pkg_version() (in module fury.deprecator)": [[255, "fury.deprecator.cmp_pkg_version"]], "deprecate_with_version() (in module fury.deprecator)": [[255, "fury.deprecator.deprecate_with_version"]], "deprecated_params() (in module fury.deprecator)": [[255, "fury.deprecator.deprecated_params"]], "fury.deprecator": [[255, "module-fury.deprecator"]], "is_bad_version() (in module fury.deprecator)": [[255, "fury.deprecator.is_bad_version"]], "__init__() (fury.gltf.gltf method)": [[256, "fury.gltf.glTF.__init__"]], "actors() (fury.gltf.gltf method)": [[256, "fury.gltf.glTF.actors"]], "apply_morph_vertices() (fury.gltf.gltf method)": [[256, "fury.gltf.glTF.apply_morph_vertices"]], "apply_skin_matrix() (fury.gltf.gltf method)": [[256, "fury.gltf.glTF.apply_skin_matrix"]], "export_scene() (in module fury.gltf)": [[256, "fury.gltf.export_scene"]], "fury.gltf": [[256, "module-fury.gltf"]], "generate_tmatrix() (fury.gltf.gltf method)": [[256, "fury.gltf.glTF.generate_tmatrix"]], "get_acc_data() (fury.gltf.gltf method)": [[256, "fury.gltf.glTF.get_acc_data"]], "get_animations() (fury.gltf.gltf method)": [[256, "fury.gltf.glTF.get_animations"]], "get_buff_array() (fury.gltf.gltf method)": [[256, "fury.gltf.glTF.get_buff_array"]], "get_joint_actors() (fury.gltf.gltf method)": [[256, "fury.gltf.glTF.get_joint_actors"]], "get_materials() (fury.gltf.gltf method)": [[256, "fury.gltf.glTF.get_materials"]], "get_matrix_from_sampler() (fury.gltf.gltf method)": [[256, "fury.gltf.glTF.get_matrix_from_sampler"]], "get_morph_data() (fury.gltf.gltf method)": [[256, "fury.gltf.glTF.get_morph_data"]], "get_prim() (in module fury.gltf)": [[256, "fury.gltf.get_prim"]], "get_sampler_data() (fury.gltf.gltf method)": [[256, "fury.gltf.glTF.get_sampler_data"]], "get_skin_data() (fury.gltf.gltf method)": [[256, "fury.gltf.glTF.get_skin_data"]], "get_texture() (fury.gltf.gltf method)": [[256, "fury.gltf.glTF.get_texture"]], "gltf (class in fury.gltf)": [[256, "fury.gltf.glTF"]], "initialize_skin() (fury.gltf.gltf method)": [[256, "fury.gltf.glTF.initialize_skin"]], "inspect_scene() (fury.gltf.gltf method)": [[256, "fury.gltf.glTF.inspect_scene"]], "load_camera() (fury.gltf.gltf method)": [[256, "fury.gltf.glTF.load_camera"]], "load_mesh() (fury.gltf.gltf method)": [[256, "fury.gltf.glTF.load_mesh"]], "main_animation() (fury.gltf.gltf method)": [[256, "fury.gltf.glTF.main_animation"]], "morph_animation() (fury.gltf.gltf method)": [[256, "fury.gltf.glTF.morph_animation"]], "skin_animation() (fury.gltf.gltf method)": [[256, "fury.gltf.glTF.skin_animation"]], "transverse_animations() (fury.gltf.gltf method)": [[256, "fury.gltf.glTF.transverse_animations"]], "transverse_bones() (fury.gltf.gltf method)": [[256, "fury.gltf.glTF.transverse_bones"]], "transverse_channels() (fury.gltf.gltf method)": [[256, "fury.gltf.glTF.transverse_channels"]], "transverse_node() (fury.gltf.gltf method)": [[256, "fury.gltf.glTF.transverse_node"]], "update_morph() (fury.gltf.gltf method)": [[256, "fury.gltf.glTF.update_morph"]], "update_skin() (fury.gltf.gltf method)": [[256, "fury.gltf.glTF.update_skin"]], "write_accessor() (in module fury.gltf)": [[256, "fury.gltf.write_accessor"]], "write_buffer() (in module fury.gltf)": [[256, "fury.gltf.write_buffer"]], "write_bufferview() (in module fury.gltf)": [[256, "fury.gltf.write_bufferview"]], "write_camera() (in module fury.gltf)": [[256, "fury.gltf.write_camera"]], "write_material() (in module fury.gltf)": [[256, "fury.gltf.write_material"]], "write_mesh() (in module fury.gltf)": [[256, "fury.gltf.write_mesh"]], "write_node() (in module fury.gltf)": [[256, "fury.gltf.write_node"]], "write_scene() (in module fury.gltf)": [[256, "fury.gltf.write_scene"]], "fury.io": [[257, "module-fury.io"]], "load_cubemap_texture() (in module fury.io)": [[257, "fury.io.load_cubemap_texture"]], "load_image() (in module fury.io)": [[257, "fury.io.load_image"]], "load_polydata() (in module fury.io)": [[257, "fury.io.load_polydata"]], "load_sprite_sheet() (in module fury.io)": [[257, "fury.io.load_sprite_sheet"]], "load_text() (in module fury.io)": [[257, "fury.io.load_text"]], "save_image() (in module fury.io)": [[257, "fury.io.save_image"]], "save_polydata() (in module fury.io)": [[257, "fury.io.save_polydata"]], "gridlayout (class in fury.layout)": [[258, "fury.layout.GridLayout"]], "horizontallayout (class in fury.layout)": [[258, "fury.layout.HorizontalLayout"]], "layout (class in fury.layout)": [[258, "fury.layout.Layout"]], "verticallayout (class in fury.layout)": [[258, "fury.layout.VerticalLayout"]], "xlayout (class in fury.layout)": [[258, "fury.layout.XLayout"]], "ylayout (class in fury.layout)": [[258, "fury.layout.YLayout"]], "zlayout (class in fury.layout)": [[258, "fury.layout.ZLayout"]], "__init__() (fury.layout.gridlayout method)": [[258, "fury.layout.GridLayout.__init__"]], "__init__() (fury.layout.horizontallayout method)": [[258, "fury.layout.HorizontalLayout.__init__"]], "__init__() (fury.layout.layout method)": [[258, "fury.layout.Layout.__init__"]], "__init__() (fury.layout.verticallayout method)": [[258, "fury.layout.VerticalLayout.__init__"]], "__init__() (fury.layout.xlayout method)": [[258, "fury.layout.XLayout.__init__"]], "__init__() (fury.layout.ylayout method)": [[258, "fury.layout.YLayout.__init__"]], "__init__() (fury.layout.zlayout method)": [[258, "fury.layout.ZLayout.__init__"]], "apply() (fury.layout.layout method)": [[258, "fury.layout.Layout.apply"]], "apply() (fury.layout.xlayout method)": [[258, "fury.layout.XLayout.apply"]], "apply() (fury.layout.ylayout method)": [[258, "fury.layout.YLayout.apply"]], "apply() (fury.layout.zlayout method)": [[258, "fury.layout.ZLayout.apply"]], "compute_positions() (fury.layout.gridlayout method)": [[258, "fury.layout.GridLayout.compute_positions"]], "compute_positions() (fury.layout.horizontallayout method)": [[258, "fury.layout.HorizontalLayout.compute_positions"]], "compute_positions() (fury.layout.layout method)": [[258, "fury.layout.Layout.compute_positions"]], "compute_positions() (fury.layout.verticallayout method)": [[258, "fury.layout.VerticalLayout.compute_positions"]], "compute_positions() (fury.layout.xlayout method)": [[258, "fury.layout.XLayout.compute_positions"]], "compute_positions() (fury.layout.ylayout method)": [[258, "fury.layout.YLayout.compute_positions"]], "compute_positions() (fury.layout.zlayout method)": [[258, "fury.layout.ZLayout.compute_positions"]], "compute_sizes() (fury.layout.gridlayout method)": [[258, "fury.layout.GridLayout.compute_sizes"]], "fury.layout": [[258, "module-fury.layout"]], "get_cells_shape() (fury.layout.gridlayout method)": [[258, "fury.layout.GridLayout.get_cells_shape"]], "get_cells_shape() (fury.layout.xlayout method)": [[258, "fury.layout.XLayout.get_cells_shape"]], "get_cells_shape() (fury.layout.ylayout method)": [[258, "fury.layout.YLayout.get_cells_shape"]], "get_cells_shape() (fury.layout.zlayout method)": [[258, "fury.layout.ZLayout.get_cells_shape"]], "actor (in module fury.lib)": [[259, "fury.lib.Actor"]], "actor2d (in module fury.lib)": [[259, "fury.lib.Actor2D"]], "algorithmoutput (in module fury.lib)": [[259, "fury.lib.AlgorithmOutput"]], "arrowsource (in module fury.lib)": [[259, "fury.lib.ArrowSource"]], "assembly (in module fury.lib)": [[259, "fury.lib.Assembly"]], "bmpreader (in module fury.lib)": [[259, "fury.lib.BMPReader"]], "bmpwriter (in module fury.lib)": [[259, "fury.lib.BMPWriter"]], "butterflysubdivisionfilter (in module fury.lib)": [[259, "fury.lib.ButterflySubdivisionFilter"]], "camera (in module fury.lib)": [[259, "fury.lib.Camera"]], "cellarray (in module fury.lib)": [[259, "fury.lib.CellArray"]], "cellpicker (in module fury.lib)": [[259, "fury.lib.CellPicker"]], "cleanpolydata (in module fury.lib)": [[259, "fury.lib.CleanPolyData"]], "command (in module fury.lib)": [[259, "fury.lib.Command"]], "conesource (in module fury.lib)": [[259, "fury.lib.ConeSource"]], "contourfilter (in module fury.lib)": [[259, "fury.lib.ContourFilter"]], "cylindersource (in module fury.lib)": [[259, "fury.lib.CylinderSource"]], "dataobject (in module fury.lib)": [[259, "fury.lib.DataObject"], [259, "id0"]], "datasetattributes (in module fury.lib)": [[259, "fury.lib.DataSetAttributes"]], "datasetmapper (in module fury.lib)": [[259, "fury.lib.DataSetMapper"]], "disksource (in module fury.lib)": [[259, "fury.lib.DiskSource"]], "doublearray (in module fury.lib)": [[259, "fury.lib.DoubleArray"]], "floatarray (in module fury.lib)": [[259, "fury.lib.FloatArray"]], "follower (in module fury.lib)": [[259, "fury.lib.Follower"]], "glyph3d (in module fury.lib)": [[259, "fury.lib.Glyph3D"]], "hardwareselector (in module fury.lib)": [[259, "fury.lib.HardwareSelector"]], "idtypearray (in module fury.lib)": [[259, "fury.lib.IdTypeArray"]], "imageactor (in module fury.lib)": [[259, "fury.lib.ImageActor"]], "imagedata (in module fury.lib)": [[259, "fury.lib.ImageData"]], "imageflip (in module fury.lib)": [[259, "fury.lib.ImageFlip"]], "imagemaptocolors (in module fury.lib)": [[259, "fury.lib.ImageMapToColors"]], "imagereader2factory (in module fury.lib)": [[259, "fury.lib.ImageReader2Factory"]], "imagereslice (in module fury.lib)": [[259, "fury.lib.ImageReslice"]], "interactoreventrecorder (in module fury.lib)": [[259, "fury.lib.InteractorEventRecorder"]], "interactorstyle (in module fury.lib)": [[259, "fury.lib.InteractorStyle"]], "interactorstyleimage (in module fury.lib)": [[259, "fury.lib.InteractorStyleImage"]], "interactorstyletrackballactor (in module fury.lib)": [[259, "fury.lib.InteractorStyleTrackballActor"]], "interactorstyletrackballcamera (in module fury.lib)": [[259, "fury.lib.InteractorStyleTrackballCamera"]], "interactorstyleuser (in module fury.lib)": [[259, "fury.lib.InteractorStyleUser"]], "jpegreader (in module fury.lib)": [[259, "fury.lib.JPEGReader"]], "jpegwriter (in module fury.lib)": [[259, "fury.lib.JPEGWriter"]], "lodactor (in module fury.lib)": [[259, "fury.lib.LODActor"]], "linearextrusionfilter (in module fury.lib)": [[259, "fury.lib.LinearExtrusionFilter"]], "lookuptable (in module fury.lib)": [[259, "fury.lib.LookupTable"]], "loopsubdivisionfilter (in module fury.lib)": [[259, "fury.lib.LoopSubdivisionFilter"]], "mniobjectreader (in module fury.lib)": [[259, "fury.lib.MNIObjectReader"]], "mniobjectwriter (in module fury.lib)": [[259, "fury.lib.MNIObjectWriter"]], "matrix3x3 (in module fury.lib)": [[259, "fury.lib.Matrix3x3"]], "matrix4x4 (in module fury.lib)": [[259, "fury.lib.Matrix4x4"]], "molecule (in module fury.lib)": [[259, "fury.lib.Molecule"]], "objreader (in module fury.lib)": [[259, "fury.lib.OBJReader"]], "openglmoleculemapper (in module fury.lib)": [[259, "fury.lib.OpenGLMoleculeMapper"]], "openglrenderer (in module fury.lib)": [[259, "fury.lib.OpenGLRenderer"]], "outlinefilter (in module fury.lib)": [[259, "fury.lib.OutlineFilter"]], "plyreader (in module fury.lib)": [[259, "fury.lib.PLYReader"]], "plywriter (in module fury.lib)": [[259, "fury.lib.PLYWriter"]], "pngreader (in module fury.lib)": [[259, "fury.lib.PNGReader"]], "pngwriter (in module fury.lib)": [[259, "fury.lib.PNGWriter"]], "periodictable (in module fury.lib)": [[259, "fury.lib.PeriodicTable"]], "pointpicker (in module fury.lib)": [[259, "fury.lib.PointPicker"]], "points (in module fury.lib)": [[259, "fury.lib.Points"]], "polydata (in module fury.lib)": [[259, "fury.lib.PolyData"]], "polydatamapper (in module fury.lib)": [[259, "fury.lib.PolyDataMapper"]], "polydatamapper2d (in module fury.lib)": [[259, "fury.lib.PolyDataMapper2D"]], "polydatanormals (in module fury.lib)": [[259, "fury.lib.PolyDataNormals"]], "polydatareader (in module fury.lib)": [[259, "fury.lib.PolyDataReader"]], "polydatawriter (in module fury.lib)": [[259, "fury.lib.PolyDataWriter"]], "polyvertex (in module fury.lib)": [[259, "fury.lib.PolyVertex"]], "polygon (in module fury.lib)": [[259, "fury.lib.Polygon"]], "proppicker (in module fury.lib)": [[259, "fury.lib.PropPicker"]], "property2d (in module fury.lib)": [[259, "fury.lib.Property2D"]], "proteinribbonfilter (in module fury.lib)": [[259, "fury.lib.ProteinRibbonFilter"]], "regularpolygonsource (in module fury.lib)": [[259, "fury.lib.RegularPolygonSource"]], "renderlargeimage (in module fury.lib)": [[259, "fury.lib.RenderLargeImage"]], "renderwindow (in module fury.lib)": [[259, "fury.lib.RenderWindow"]], "renderwindowinteractor (in module fury.lib)": [[259, "fury.lib.RenderWindowInteractor"]], "renderer (in module fury.lib)": [[259, "fury.lib.Renderer"]], "stlreader (in module fury.lib)": [[259, "fury.lib.STLReader"]], "stlwriter (in module fury.lib)": [[259, "fury.lib.STLWriter"]], "scalarbaractor (in module fury.lib)": [[259, "fury.lib.ScalarBarActor"]], "shader (in module fury.lib)": [[259, "fury.lib.Shader"]], "simplebondperceiver (in module fury.lib)": [[259, "fury.lib.SimpleBondPerceiver"]], "skybox (in module fury.lib)": [[259, "fury.lib.Skybox"]], "spheresource (in module fury.lib)": [[259, "fury.lib.SphereSource"]], "splinefilter (in module fury.lib)": [[259, "fury.lib.SplineFilter"]], "stringarray (in module fury.lib)": [[259, "fury.lib.StringArray"]], "tiffreader (in module fury.lib)": [[259, "fury.lib.TIFFReader"]], "tiffwriter (in module fury.lib)": [[259, "fury.lib.TIFFWriter"]], "textactor (in module fury.lib)": [[259, "fury.lib.TextActor"]], "textactor3d (in module fury.lib)": [[259, "fury.lib.TextActor3D"]], "texture (in module fury.lib)": [[259, "fury.lib.Texture"]], "texturemaptoplane (in module fury.lib)": [[259, "fury.lib.TextureMapToPlane"]], "texturedactor2d (in module fury.lib)": [[259, "fury.lib.TexturedActor2D"]], "texturedspheresource (in module fury.lib)": [[259, "fury.lib.TexturedSphereSource"]], "transform (in module fury.lib)": [[259, "fury.lib.Transform"]], "transformpolydatafilter (in module fury.lib)": [[259, "fury.lib.TransformPolyDataFilter"]], "trianglefilter (in module fury.lib)": [[259, "fury.lib.TriangleFilter"]], "tubefilter (in module fury.lib)": [[259, "fury.lib.TubeFilter"]], "unsignedchararray (in module fury.lib)": [[259, "fury.lib.UnsignedCharArray"]], "unstructuredgrid (in module fury.lib)": [[259, "fury.lib.UnstructuredGrid"]], "vtk_version() (in module fury.lib)": [[259, "fury.lib.VTK_VERSION"]], "vectortext (in module fury.lib)": [[259, "fury.lib.VectorText"]], "volume (in module fury.lib)": [[259, "fury.lib.Volume"]], "windowtoimagefilter (in module fury.lib)": [[259, "fury.lib.WindowToImageFilter"]], "worldpointpicker (in module fury.lib)": [[259, "fury.lib.WorldPointPicker"]], "xmlpolydatareader (in module fury.lib)": [[259, "fury.lib.XMLPolyDataReader"]], "xmlpolydatawriter (in module fury.lib)": [[259, "fury.lib.XMLPolyDataWriter"]], "fury.lib": [[259, "module-fury.lib"]], "fury.material": [[260, "module-fury.material"]], "manifest_pbr() (in module fury.material)": [[260, "fury.material.manifest_pbr"]], "manifest_principled() (in module fury.material)": [[260, "fury.material.manifest_principled"]], "manifest_standard() (in module fury.material)": [[260, "fury.material.manifest_standard"]], "molecule (class in fury.molecular)": [[261, "fury.molecular.Molecule"]], "ptable (class in fury.molecular)": [[261, "fury.molecular.PTable"]], "__init__() (fury.molecular.molecule method)": [[261, "fury.molecular.Molecule.__init__"]], "__init__() (fury.molecular.ptable method)": [[261, "fury.molecular.PTable.__init__"]], "add_atom() (in module fury.molecular)": [[261, "fury.molecular.add_atom"]], "add_bond() (in module fury.molecular)": [[261, "fury.molecular.add_bond"]], "atom_color() (fury.molecular.ptable method)": [[261, "fury.molecular.PTable.atom_color"]], "atomic_number() (fury.molecular.ptable method)": [[261, "fury.molecular.PTable.atomic_number"]], "atomic_radius() (fury.molecular.ptable method)": [[261, "fury.molecular.PTable.atomic_radius"]], "atomic_symbol() (fury.molecular.ptable method)": [[261, "fury.molecular.PTable.atomic_symbol"]], "ball_stick() (in module fury.molecular)": [[261, "fury.molecular.ball_stick"]], "bounding_box() (in module fury.molecular)": [[261, "fury.molecular.bounding_box"]], "compute_bonding() (in module fury.molecular)": [[261, "fury.molecular.compute_bonding"]], "deep_copy_molecule() (in module fury.molecular)": [[261, "fury.molecular.deep_copy_molecule"]], "element_name() (fury.molecular.ptable method)": [[261, "fury.molecular.PTable.element_name"]], "fury.molecular": [[261, "module-fury.molecular"]], "get_all_atomic_numbers() (in module fury.molecular)": [[261, "fury.molecular.get_all_atomic_numbers"]], "get_all_atomic_positions() (in module fury.molecular)": [[261, "fury.molecular.get_all_atomic_positions"]], "get_all_bond_orders() (in module fury.molecular)": [[261, "fury.molecular.get_all_bond_orders"]], "get_atomic_number() (in module fury.molecular)": [[261, "fury.molecular.get_atomic_number"]], "get_atomic_position() (in module fury.molecular)": [[261, "fury.molecular.get_atomic_position"]], "get_bond_order() (in module fury.molecular)": [[261, "fury.molecular.get_bond_order"]], "ribbon() (in module fury.molecular)": [[261, "fury.molecular.ribbon"]], "set_atomic_number() (in module fury.molecular)": [[261, "fury.molecular.set_atomic_number"]], "set_atomic_position() (in module fury.molecular)": [[261, "fury.molecular.set_atomic_position"]], "set_bond_order() (in module fury.molecular)": [[261, "fury.molecular.set_bond_order"]], "sphere_cpk() (in module fury.molecular)": [[261, "fury.molecular.sphere_cpk"]], "stick() (in module fury.molecular)": [[261, "fury.molecular.stick"]], "total_num_atoms (fury.molecular.molecule property)": [[261, "fury.molecular.Molecule.total_num_atoms"]], "total_num_bonds (fury.molecular.molecule property)": [[261, "fury.molecular.Molecule.total_num_bonds"]], "pickingmanager (class in fury.pick)": [[262, "fury.pick.PickingManager"]], "selectionmanager (class in fury.pick)": [[262, "fury.pick.SelectionManager"]], "__init__() (fury.pick.pickingmanager method)": [[262, "fury.pick.PickingManager.__init__"]], "__init__() (fury.pick.selectionmanager method)": [[262, "fury.pick.SelectionManager.__init__"]], "event_position() (fury.pick.pickingmanager method)": [[262, "fury.pick.PickingManager.event_position"]], "event_position() (fury.pick.selectionmanager method)": [[262, "fury.pick.SelectionManager.event_position"]], "fury.pick": [[262, "module-fury.pick"]], "pick() (fury.pick.pickingmanager method)": [[262, "fury.pick.PickingManager.pick"]], "pick() (fury.pick.selectionmanager method)": [[262, "fury.pick.SelectionManager.pick"], [262, "id0"]], "pickable_off() (fury.pick.pickingmanager method)": [[262, "fury.pick.PickingManager.pickable_off"]], "pickable_on() (fury.pick.pickingmanager method)": [[262, "fury.pick.PickingManager.pickable_on"]], "select() (fury.pick.selectionmanager method)": [[262, "fury.pick.SelectionManager.select"], [262, "id1"]], "selectable_off() (fury.pick.selectionmanager method)": [[262, "fury.pick.SelectionManager.selectable_off"]], "selectable_on() (fury.pick.selectionmanager method)": [[262, "fury.pick.SelectionManager.selectable_on"]], "update_selection_type() (fury.pick.selectionmanager method)": [[262, "fury.pick.SelectionManager.update_selection_type"]], "fury.pkg_info": [[263, "module-fury.pkg_info"]], "pkg_commit_hash() (in module fury.pkg_info)": [[263, "fury.pkg_info.pkg_commit_hash"]], "faces_from_sphere_vertices() (in module fury.primitive)": [[264, "fury.primitive.faces_from_sphere_vertices"]], "fury.primitive": [[264, "module-fury.primitive"]], "prim_arrow() (in module fury.primitive)": [[264, "fury.primitive.prim_arrow"]], "prim_box() (in module fury.primitive)": [[264, "fury.primitive.prim_box"]], "prim_cone() (in module fury.primitive)": [[264, "fury.primitive.prim_cone"]], "prim_cylinder() (in module fury.primitive)": [[264, "fury.primitive.prim_cylinder"]], "prim_frustum() (in module fury.primitive)": [[264, "fury.primitive.prim_frustum"]], "prim_icosahedron() (in module fury.primitive)": [[264, "fury.primitive.prim_icosahedron"]], "prim_octagonalprism() (in module fury.primitive)": [[264, "fury.primitive.prim_octagonalprism"]], "prim_pentagonalprism() (in module fury.primitive)": [[264, "fury.primitive.prim_pentagonalprism"]], "prim_rhombicuboctahedron() (in module fury.primitive)": [[264, "fury.primitive.prim_rhombicuboctahedron"]], "prim_sphere() (in module fury.primitive)": [[264, "fury.primitive.prim_sphere"]], "prim_square() (in module fury.primitive)": [[264, "fury.primitive.prim_square"]], "prim_star() (in module fury.primitive)": [[264, "fury.primitive.prim_star"]], "prim_superquadric() (in module fury.primitive)": [[264, "fury.primitive.prim_superquadric"]], "prim_tetrahedron() (in module fury.primitive)": [[264, "fury.primitive.prim_tetrahedron"]], "prim_triangularprism() (in module fury.primitive)": [[264, "fury.primitive.prim_triangularprism"]], "repeat_primitive() (in module fury.primitive)": [[264, "fury.primitive.repeat_primitive"]], "repeat_primitive_function() (in module fury.primitive)": [[264, "fury.primitive.repeat_primitive_function"]], "shaders_dir() (in module fury.shaders.base)": [[265, "fury.shaders.base.SHADERS_DIR"]], "add_shader_callback() (in module fury.shaders.base)": [[265, "fury.shaders.base.add_shader_callback"]], "attribute_to_actor() (in module fury.shaders.base)": [[265, "fury.shaders.base.attribute_to_actor"]], "compose_shader() (in module fury.shaders.base)": [[265, "fury.shaders.base.compose_shader"]], "fury.shaders": [[265, "module-fury.shaders"]], "fury.shaders.base": [[265, "module-fury.shaders.base"]], "import_fury_shader() (in module fury.shaders.base)": [[265, "fury.shaders.base.import_fury_shader"]], "load() (in module fury.shaders.base)": [[265, "fury.shaders.base.load"]], "load_shader() (in module fury.shaders.base)": [[265, "fury.shaders.base.load_shader"]], "replace_shader_in_actor() (in module fury.shaders.base)": [[265, "fury.shaders.base.replace_shader_in_actor"]], "shader_apply_effects() (in module fury.shaders.base)": [[265, "fury.shaders.base.shader_apply_effects"]], "shader_to_actor() (in module fury.shaders.base)": [[265, "fury.shaders.base.shader_to_actor"]], "arraycircularqueue (class in fury.stream.tools)": [[266, "fury.stream.tools.ArrayCircularQueue"]], "furystreamclient (class in fury.stream.client)": [[266, "fury.stream.client.FuryStreamClient"]], "furystreaminteraction (class in fury.stream.client)": [[266, "fury.stream.client.FuryStreamInteraction"]], "genericcircularqueue (class in fury.stream.tools)": [[266, "fury.stream.tools.GenericCircularQueue"]], "genericimagebuffermanager (class in fury.stream.tools)": [[266, "fury.stream.tools.GenericImageBufferManager"]], "genericmultidimensionalbuffer (class in fury.stream.tools)": [[266, "fury.stream.tools.GenericMultiDimensionalBuffer"]], "intervaltimer (class in fury.stream.tools)": [[266, "fury.stream.tools.IntervalTimer"]], "intervaltimerthreading (class in fury.stream.tools)": [[266, "fury.stream.tools.IntervalTimerThreading"]], "rtcserver (class in fury.stream.server.main)": [[266, "fury.stream.server.main.RTCServer"]], "rawarrayimagebuffermanager (class in fury.stream.tools)": [[266, "fury.stream.tools.RawArrayImageBufferManager"]], "rawarraymultidimensionalbuffer (class in fury.stream.tools)": [[266, "fury.stream.tools.RawArrayMultiDimensionalBuffer"]], "sharedmemcircularqueue (class in fury.stream.tools)": [[266, "fury.stream.tools.SharedMemCircularQueue"]], "sharedmemimagebuffermanager (class in fury.stream.tools)": [[266, "fury.stream.tools.SharedMemImageBufferManager"]], "sharedmemmultidimensionalbuffer (class in fury.stream.tools)": [[266, "fury.stream.tools.SharedMemMultiDimensionalBuffer"]], "widget (class in fury.stream.widget)": [[266, "fury.stream.widget.Widget"]], "_cqueue() (in module fury.stream.constants)": [[266, "fury.stream.constants._CQUEUE"]], "_cqueue_event_ids() (in module fury.stream.constants)": [[266, "fury.stream.constants._CQUEUE_EVENT_IDs"]], "_cqueue_index_info() (in module fury.stream.constants)": [[266, "fury.stream.constants._CQUEUE_INDEX_INFO"]], "__init__() (fury.stream.client.furystreamclient method)": [[266, "fury.stream.client.FuryStreamClient.__init__"]], "__init__() (fury.stream.client.furystreaminteraction method)": [[266, "fury.stream.client.FuryStreamInteraction.__init__"]], "__init__() (fury.stream.server.main.rtcserver method)": [[266, "fury.stream.server.main.RTCServer.__init__"]], "__init__() (fury.stream.tools.arraycircularqueue method)": [[266, "fury.stream.tools.ArrayCircularQueue.__init__"]], "__init__() (fury.stream.tools.genericcircularqueue method)": [[266, "fury.stream.tools.GenericCircularQueue.__init__"]], "__init__() (fury.stream.tools.genericimagebuffermanager method)": [[266, "fury.stream.tools.GenericImageBufferManager.__init__"]], "__init__() (fury.stream.tools.genericmultidimensionalbuffer method)": [[266, "fury.stream.tools.GenericMultiDimensionalBuffer.__init__"]], "__init__() (fury.stream.tools.intervaltimer method)": [[266, "fury.stream.tools.IntervalTimer.__init__"]], "__init__() (fury.stream.tools.intervaltimerthreading method)": [[266, "fury.stream.tools.IntervalTimerThreading.__init__"]], "__init__() (fury.stream.tools.rawarrayimagebuffermanager method)": [[266, "fury.stream.tools.RawArrayImageBufferManager.__init__"]], "__init__() (fury.stream.tools.rawarraymultidimensionalbuffer method)": [[266, "fury.stream.tools.RawArrayMultiDimensionalBuffer.__init__"]], "__init__() (fury.stream.tools.sharedmemcircularqueue method)": [[266, "fury.stream.tools.SharedMemCircularQueue.__init__"]], "__init__() (fury.stream.tools.sharedmemimagebuffermanager method)": [[266, "fury.stream.tools.SharedMemImageBufferManager.__init__"]], "__init__() (fury.stream.tools.sharedmemmultidimensionalbuffer method)": [[266, "fury.stream.tools.SharedMemMultiDimensionalBuffer.__init__"]], "__init__() (fury.stream.widget.widget method)": [[266, "fury.stream.widget.Widget.__init__"]], "async_get_jpeg() (fury.stream.tools.genericimagebuffermanager method)": [[266, "fury.stream.tools.GenericImageBufferManager.async_get_jpeg"]], "buffer (fury.stream.tools.genericmultidimensionalbuffer property)": [[266, "fury.stream.tools.GenericMultiDimensionalBuffer.buffer"]], "buffer_index (fury.stream.tools.genericimagebuffermanager property)": [[266, "fury.stream.tools.GenericImageBufferManager.buffer_index"]], "callback_stream_client() (in module fury.stream.client)": [[266, "fury.stream.client.callback_stream_client"]], "check_port_is_available() (in module fury.stream.widget)": [[266, "fury.stream.widget.check_port_is_available"]], "cleanup() (fury.stream.client.furystreamclient method)": [[266, "fury.stream.client.FuryStreamClient.cleanup"]], "cleanup() (fury.stream.client.furystreaminteraction method)": [[266, "fury.stream.client.FuryStreamInteraction.cleanup"]], "cleanup() (fury.stream.tools.arraycircularqueue method)": [[266, "fury.stream.tools.ArrayCircularQueue.cleanup"]], "cleanup() (fury.stream.tools.genericcircularqueue method)": [[266, "fury.stream.tools.GenericCircularQueue.cleanup"]], "cleanup() (fury.stream.tools.genericimagebuffermanager method)": [[266, "fury.stream.tools.GenericImageBufferManager.cleanup"]], "cleanup() (fury.stream.tools.genericmultidimensionalbuffer method)": [[266, "fury.stream.tools.GenericMultiDimensionalBuffer.cleanup"]], "cleanup() (fury.stream.tools.rawarrayimagebuffermanager method)": [[266, "fury.stream.tools.RawArrayImageBufferManager.cleanup"]], "cleanup() (fury.stream.tools.rawarraymultidimensionalbuffer method)": [[266, "fury.stream.tools.RawArrayMultiDimensionalBuffer.cleanup"]], "cleanup() (fury.stream.tools.sharedmemcircularqueue method)": [[266, "fury.stream.tools.SharedMemCircularQueue.cleanup"]], "cleanup() (fury.stream.tools.sharedmemimagebuffermanager method)": [[266, "fury.stream.tools.SharedMemImageBufferManager.cleanup"]], "cleanup() (fury.stream.tools.sharedmemmultidimensionalbuffer method)": [[266, "fury.stream.tools.SharedMemMultiDimensionalBuffer.cleanup"]], "cleanup() (fury.stream.widget.widget method)": [[266, "fury.stream.widget.Widget.cleanup"]], "command_string (fury.stream.widget.widget property)": [[266, "fury.stream.widget.Widget.command_string"]], "create_mem_resource() (fury.stream.tools.arraycircularqueue method)": [[266, "fury.stream.tools.ArrayCircularQueue.create_mem_resource"]], "create_mem_resource() (fury.stream.tools.genericcircularqueue method)": [[266, "fury.stream.tools.GenericCircularQueue.create_mem_resource"]], "create_mem_resource() (fury.stream.tools.genericimagebuffermanager method)": [[266, "fury.stream.tools.GenericImageBufferManager.create_mem_resource"]], "create_mem_resource() (fury.stream.tools.genericmultidimensionalbuffer method)": [[266, "fury.stream.tools.GenericMultiDimensionalBuffer.create_mem_resource"]], "create_mem_resource() (fury.stream.tools.rawarrayimagebuffermanager method)": [[266, "fury.stream.tools.RawArrayImageBufferManager.create_mem_resource"]], "create_mem_resource() (fury.stream.tools.rawarraymultidimensionalbuffer method)": [[266, "fury.stream.tools.RawArrayMultiDimensionalBuffer.create_mem_resource"]], "create_mem_resource() (fury.stream.tools.sharedmemcircularqueue method)": [[266, "fury.stream.tools.SharedMemCircularQueue.create_mem_resource"]], "create_mem_resource() (fury.stream.tools.sharedmemimagebuffermanager method)": [[266, "fury.stream.tools.SharedMemImageBufferManager.create_mem_resource"]], "create_mem_resource() (fury.stream.tools.sharedmemmultidimensionalbuffer method)": [[266, "fury.stream.tools.SharedMemMultiDimensionalBuffer.create_mem_resource"]], "dequeue() (fury.stream.tools.arraycircularqueue method)": [[266, "fury.stream.tools.ArrayCircularQueue.dequeue"]], "dequeue() (fury.stream.tools.genericcircularqueue method)": [[266, "fury.stream.tools.GenericCircularQueue.dequeue"]], "dequeue() (fury.stream.tools.sharedmemcircularqueue method)": [[266, "fury.stream.tools.SharedMemCircularQueue.dequeue"]], "display() (fury.stream.widget.widget method)": [[266, "fury.stream.widget.Widget.display"]], "enqueue() (fury.stream.tools.arraycircularqueue method)": [[266, "fury.stream.tools.ArrayCircularQueue.enqueue"]], "enqueue() (fury.stream.tools.genericcircularqueue method)": [[266, "fury.stream.tools.GenericCircularQueue.enqueue"]], "enqueue() (fury.stream.tools.sharedmemcircularqueue method)": [[266, "fury.stream.tools.SharedMemCircularQueue.enqueue"]], "fury.stream": [[266, "module-fury.stream"]], "fury.stream.client": [[266, "module-fury.stream.client"]], "fury.stream.constants": [[266, "module-fury.stream.constants"]], "fury.stream.server": [[266, "module-fury.stream.server"]], "fury.stream.server.async_app": [[266, "module-fury.stream.server.async_app"]], "fury.stream.server.main": [[266, "module-fury.stream.server.main"]], "fury.stream.tools": [[266, "module-fury.stream.tools"]], "fury.stream.widget": [[266, "module-fury.stream.widget"]], "get_app() (in module fury.stream.server.async_app)": [[266, "fury.stream.server.async_app.get_app"]], "get_current_frame() (fury.stream.tools.genericimagebuffermanager method)": [[266, "fury.stream.tools.GenericImageBufferManager.get_current_frame"]], "get_jpeg() (fury.stream.tools.genericimagebuffermanager method)": [[266, "fury.stream.tools.GenericImageBufferManager.get_jpeg"]], "get_start_end() (fury.stream.tools.genericmultidimensionalbuffer method)": [[266, "fury.stream.tools.GenericMultiDimensionalBuffer.get_start_end"]], "head (fury.stream.tools.genericcircularqueue property)": [[266, "fury.stream.tools.GenericCircularQueue.head"]], "interaction_callback() (in module fury.stream.client)": [[266, "fury.stream.client.interaction_callback"]], "is_unlocked() (fury.stream.tools.sharedmemcircularqueue method)": [[266, "fury.stream.tools.SharedMemCircularQueue.is_unlocked"]], "load_mem_resource() (fury.stream.tools.arraycircularqueue method)": [[266, "fury.stream.tools.ArrayCircularQueue.load_mem_resource"]], "load_mem_resource() (fury.stream.tools.genericcircularqueue method)": [[266, "fury.stream.tools.GenericCircularQueue.load_mem_resource"]], "load_mem_resource() (fury.stream.tools.genericimagebuffermanager method)": [[266, "fury.stream.tools.GenericImageBufferManager.load_mem_resource"]], "load_mem_resource() (fury.stream.tools.genericmultidimensionalbuffer method)": [[266, "fury.stream.tools.GenericMultiDimensionalBuffer.load_mem_resource"]], "load_mem_resource() (fury.stream.tools.rawarrayimagebuffermanager method)": [[266, "fury.stream.tools.RawArrayImageBufferManager.load_mem_resource"]], "load_mem_resource() (fury.stream.tools.rawarraymultidimensionalbuffer method)": [[266, "fury.stream.tools.RawArrayMultiDimensionalBuffer.load_mem_resource"]], "load_mem_resource() (fury.stream.tools.sharedmemcircularqueue method)": [[266, "fury.stream.tools.SharedMemCircularQueue.load_mem_resource"]], "load_mem_resource() (fury.stream.tools.sharedmemimagebuffermanager method)": [[266, "fury.stream.tools.SharedMemImageBufferManager.load_mem_resource"]], "load_mem_resource() (fury.stream.tools.sharedmemmultidimensionalbuffer method)": [[266, "fury.stream.tools.SharedMemMultiDimensionalBuffer.load_mem_resource"]], "lock() (fury.stream.tools.sharedmemcircularqueue method)": [[266, "fury.stream.tools.SharedMemCircularQueue.lock"]], "next_buffer_index (fury.stream.tools.genericimagebuffermanager property)": [[266, "fury.stream.tools.GenericImageBufferManager.next_buffer_index"]], "pcs() (in module fury.stream.server.async_app)": [[266, "fury.stream.server.async_app.pcs"]], "recv() (fury.stream.server.main.rtcserver method)": [[266, "fury.stream.server.main.RTCServer.recv"]], "release() (fury.stream.server.main.rtcserver method)": [[266, "fury.stream.server.main.RTCServer.release"]], "remove_shm_from_resource_tracker() (in module fury.stream.tools)": [[266, "fury.stream.tools.remove_shm_from_resource_tracker"]], "return_iframe() (fury.stream.widget.widget method)": [[266, "fury.stream.widget.Widget.return_iframe"]], "run_command() (fury.stream.widget.widget method)": [[266, "fury.stream.widget.Widget.run_command"]], "set_head_tail() (fury.stream.tools.genericcircularqueue method)": [[266, "fury.stream.tools.GenericCircularQueue.set_head_tail"]], "set_mouse() (in module fury.stream.server.async_app)": [[266, "fury.stream.server.async_app.set_mouse"]], "set_mouse_click() (in module fury.stream.server.async_app)": [[266, "fury.stream.server.async_app.set_mouse_click"]], "set_weel() (in module fury.stream.server.async_app)": [[266, "fury.stream.server.async_app.set_weel"]], "start() (fury.stream.client.furystreamclient method)": [[266, "fury.stream.client.FuryStreamClient.start"]], "start() (fury.stream.client.furystreaminteraction method)": [[266, "fury.stream.client.FuryStreamInteraction.start"]], "start() (fury.stream.tools.intervaltimer method)": [[266, "fury.stream.tools.IntervalTimer.start"]], "start() (fury.stream.tools.intervaltimerthreading method)": [[266, "fury.stream.tools.IntervalTimerThreading.start"]], "start() (fury.stream.widget.widget method)": [[266, "fury.stream.widget.Widget.start"]], "stop() (fury.stream.client.furystreamclient method)": [[266, "fury.stream.client.FuryStreamClient.stop"]], "stop() (fury.stream.client.furystreaminteraction method)": [[266, "fury.stream.client.FuryStreamInteraction.stop"]], "stop() (fury.stream.tools.intervaltimer method)": [[266, "fury.stream.tools.IntervalTimer.stop"]], "stop() (fury.stream.tools.intervaltimerthreading method)": [[266, "fury.stream.tools.IntervalTimerThreading.stop"]], "stop() (fury.stream.widget.widget method)": [[266, "fury.stream.widget.Widget.stop"]], "tail (fury.stream.tools.genericcircularqueue property)": [[266, "fury.stream.tools.GenericCircularQueue.tail"]], "unlock() (fury.stream.tools.sharedmemcircularqueue method)": [[266, "fury.stream.tools.SharedMemCircularQueue.unlock"]], "url (fury.stream.widget.widget property)": [[266, "fury.stream.widget.Widget.url"]], "web_server() (in module fury.stream.server.main)": [[266, "fury.stream.server.main.web_server"]], "web_server_raw_array() (in module fury.stream.server.main)": [[266, "fury.stream.server.main.web_server_raw_array"]], "write_into() (fury.stream.tools.genericimagebuffermanager method)": [[266, "fury.stream.tools.GenericImageBufferManager.write_into"]], "_tuple2axes() (in module fury.transform)": [[267, "fury.transform._TUPLE2AXES"]], "apply_transformation() (in module fury.transform)": [[267, "fury.transform.apply_transformation"]], "cart2sphere() (in module fury.transform)": [[267, "fury.transform.cart2sphere"]], "euler_matrix() (in module fury.transform)": [[267, "fury.transform.euler_matrix"]], "fury.transform": [[267, "module-fury.transform"]], "rotate() (in module fury.transform)": [[267, "fury.transform.rotate"]], "scale() (in module fury.transform)": [[267, "fury.transform.scale"]], "sphere2cart() (in module fury.transform)": [[267, "fury.transform.sphere2cart"]], "transform_from_matrix() (in module fury.transform)": [[267, "fury.transform.transform_from_matrix"]], "translate() (in module fury.transform)": [[267, "fury.transform.translate"]], "anticlockwise_rotation_x (fury.ui.containers.gridui attribute)": [[268, "fury.ui.containers.GridUI.ANTICLOCKWISE_ROTATION_X"]], "anticlockwise_rotation_y (fury.ui.containers.gridui attribute)": [[268, "fury.ui.containers.GridUI.ANTICLOCKWISE_ROTATION_Y"]], "button2d (class in fury.ui.core)": [[268, "fury.ui.core.Button2D"]], "clockwise_rotation_x (fury.ui.containers.gridui attribute)": [[268, "fury.ui.containers.GridUI.CLOCKWISE_ROTATION_X"]], "clockwise_rotation_y (fury.ui.containers.gridui attribute)": [[268, "fury.ui.containers.GridUI.CLOCKWISE_ROTATION_Y"]], "card2d (class in fury.ui.elements)": [[268, "fury.ui.elements.Card2D"]], "checkbox (class in fury.ui.elements)": [[268, "fury.ui.elements.Checkbox"]], "combobox2d (class in fury.ui.elements)": [[268, "fury.ui.elements.ComboBox2D"]], "disk2d (class in fury.ui.core)": [[268, "fury.ui.core.Disk2D"]], "drawpanel (class in fury.ui.elements)": [[268, "fury.ui.elements.DrawPanel"]], "drawshape (class in fury.ui.elements)": [[268, "fury.ui.elements.DrawShape"]], "filemenu2d (class in fury.ui.elements)": [[268, "fury.ui.elements.FileMenu2D"]], "gridui (class in fury.ui.containers)": [[268, "fury.ui.containers.GridUI"]], "imagecontainer2d (class in fury.ui.containers)": [[268, "fury.ui.containers.ImageContainer2D"]], "linedoubleslider2d (class in fury.ui.elements)": [[268, "fury.ui.elements.LineDoubleSlider2D"]], "lineslider2d (class in fury.ui.elements)": [[268, "fury.ui.elements.LineSlider2D"]], "listbox2d (class in fury.ui.elements)": [[268, "fury.ui.elements.ListBox2D"]], "listboxitem2d (class in fury.ui.elements)": [[268, "fury.ui.elements.ListBoxItem2D"]], "option (class in fury.ui.elements)": [[268, "fury.ui.elements.Option"]], "panel2d (class in fury.ui.containers)": [[268, "fury.ui.containers.Panel2D"]], "playbackpanel (class in fury.ui.elements)": [[268, "fury.ui.elements.PlaybackPanel"]], "radiobutton (class in fury.ui.elements)": [[268, "fury.ui.elements.RadioButton"]], "rangeslider (class in fury.ui.elements)": [[268, "fury.ui.elements.RangeSlider"]], "rectangle2d (class in fury.ui.core)": [[268, "fury.ui.core.Rectangle2D"]], "ringslider2d (class in fury.ui.elements)": [[268, "fury.ui.elements.RingSlider2D"]], "tabpanel2d (class in fury.ui.containers)": [[268, "fury.ui.containers.TabPanel2D"]], "tabui (class in fury.ui.containers)": [[268, "fury.ui.containers.TabUI"]], "textblock2d (class in fury.ui.core)": [[268, "fury.ui.core.TextBlock2D"]], "textbox2d (class in fury.ui.elements)": [[268, "fury.ui.elements.TextBox2D"]], "ui (class in fury.ui.core)": [[268, "fury.ui.core.UI"]], "__init__() (fury.ui.containers.gridui method)": [[268, "fury.ui.containers.GridUI.__init__"]], "__init__() (fury.ui.containers.imagecontainer2d method)": [[268, "fury.ui.containers.ImageContainer2D.__init__"]], "__init__() (fury.ui.containers.panel2d method)": [[268, "fury.ui.containers.Panel2D.__init__"]], "__init__() (fury.ui.containers.tabpanel2d method)": [[268, "fury.ui.containers.TabPanel2D.__init__"]], "__init__() (fury.ui.containers.tabui method)": [[268, "fury.ui.containers.TabUI.__init__"]], "__init__() (fury.ui.core.button2d method)": [[268, "fury.ui.core.Button2D.__init__"]], "__init__() (fury.ui.core.disk2d method)": [[268, "fury.ui.core.Disk2D.__init__"]], "__init__() (fury.ui.core.rectangle2d method)": [[268, "fury.ui.core.Rectangle2D.__init__"]], "__init__() (fury.ui.core.textblock2d method)": [[268, "fury.ui.core.TextBlock2D.__init__"]], "__init__() (fury.ui.core.ui method)": [[268, "fury.ui.core.UI.__init__"]], "__init__() (fury.ui.elements.card2d method)": [[268, "fury.ui.elements.Card2D.__init__"]], "__init__() (fury.ui.elements.checkbox method)": [[268, "fury.ui.elements.Checkbox.__init__"]], "__init__() (fury.ui.elements.combobox2d method)": [[268, "fury.ui.elements.ComboBox2D.__init__"]], "__init__() (fury.ui.elements.drawpanel method)": [[268, "fury.ui.elements.DrawPanel.__init__"]], "__init__() (fury.ui.elements.drawshape method)": [[268, "fury.ui.elements.DrawShape.__init__"]], "__init__() (fury.ui.elements.filemenu2d method)": [[268, "fury.ui.elements.FileMenu2D.__init__"]], "__init__() (fury.ui.elements.linedoubleslider2d method)": [[268, "fury.ui.elements.LineDoubleSlider2D.__init__"]], "__init__() (fury.ui.elements.lineslider2d method)": [[268, "fury.ui.elements.LineSlider2D.__init__"]], "__init__() (fury.ui.elements.listbox2d method)": [[268, "fury.ui.elements.ListBox2D.__init__"]], "__init__() (fury.ui.elements.listboxitem2d method)": [[268, "fury.ui.elements.ListBoxItem2D.__init__"]], "__init__() (fury.ui.elements.option method)": [[268, "fury.ui.elements.Option.__init__"]], "__init__() (fury.ui.elements.playbackpanel method)": [[268, "fury.ui.elements.PlaybackPanel.__init__"]], "__init__() (fury.ui.elements.radiobutton method)": [[268, "fury.ui.elements.RadioButton.__init__"]], "__init__() (fury.ui.elements.rangeslider method)": [[268, "fury.ui.elements.RangeSlider.__init__"]], "__init__() (fury.ui.elements.ringslider2d method)": [[268, "fury.ui.elements.RingSlider2D.__init__"]], "__init__() (fury.ui.elements.textbox2d method)": [[268, "fury.ui.elements.TextBox2D.__init__"]], "active_color (fury.ui.elements.linedoubleslider2d attribute)": [[268, "fury.ui.elements.LineDoubleSlider2D.active_color"]], "active_color (fury.ui.elements.lineslider2d attribute)": [[268, "fury.ui.elements.LineSlider2D.active_color"]], "active_color (fury.ui.elements.ringslider2d attribute)": [[268, "fury.ui.elements.RingSlider2D.active_color"]], "actor (fury.ui.core.textblock2d attribute)": [[268, "fury.ui.core.TextBlock2D.actor"]], "actor (fury.ui.elements.textbox2d attribute)": [[268, "fury.ui.elements.TextBox2D.actor"]], "actors (fury.ui.core.ui property)": [[268, "fury.ui.core.UI.actors"]], "add_callback() (fury.ui.core.ui method)": [[268, "fury.ui.core.UI.add_callback"]], "add_character() (fury.ui.elements.textbox2d method)": [[268, "fury.ui.elements.TextBox2D.add_character"]], "add_element() (fury.ui.containers.panel2d method)": [[268, "fury.ui.containers.Panel2D.add_element"]], "add_element() (fury.ui.containers.tabpanel2d method)": [[268, "fury.ui.containers.TabPanel2D.add_element"]], "add_element() (fury.ui.containers.tabui method)": [[268, "fury.ui.containers.TabUI.add_element"]], "add_to_scene() (fury.ui.core.ui method)": [[268, "fury.ui.core.UI.add_to_scene"]], "alignment (fury.ui.containers.panel2d attribute)": [[268, "fury.ui.containers.Panel2D.alignment"]], "angle (fury.ui.elements.ringslider2d property)": [[268, "fury.ui.elements.RingSlider2D.angle"]], "append_item() (fury.ui.elements.combobox2d method)": [[268, "fury.ui.elements.ComboBox2D.append_item"]], "background_color (fury.ui.core.textblock2d property)": [[268, "fury.ui.core.TextBlock2D.background_color"]], "bg_color (fury.ui.core.textblock2d attribute)": [[268, "fury.ui.core.TextBlock2D.bg_color"]], "body (fury.ui.elements.card2d property)": [[268, "fury.ui.elements.Card2D.body"]], "body_box (fury.ui.elements.card2d attribute)": [[268, "fury.ui.elements.Card2D.body_box"]], "bold (fury.ui.core.textblock2d attribute)": [[268, "fury.ui.core.TextBlock2D.bold"]], "bold (fury.ui.core.textblock2d property)": [[268, "id4"]], "border_color (fury.ui.containers.panel2d property)": [[268, "fury.ui.containers.Panel2D.border_color"]], "border_width (fury.ui.containers.panel2d property)": [[268, "fury.ui.containers.Panel2D.border_width"]], "bottom_disk_ratio (fury.ui.elements.linedoubleslider2d property)": [[268, "fury.ui.elements.LineDoubleSlider2D.bottom_disk_ratio"]], "bottom_disk_value (fury.ui.elements.linedoubleslider2d property)": [[268, "fury.ui.elements.LineDoubleSlider2D.bottom_disk_value"]], "bottom_y_position (fury.ui.elements.linedoubleslider2d property)": [[268, "fury.ui.elements.LineDoubleSlider2D.bottom_y_position"]], "bottom_y_position (fury.ui.elements.lineslider2d property)": [[268, "fury.ui.elements.LineSlider2D.bottom_y_position"]], "cal_bounding_box() (fury.ui.elements.drawshape method)": [[268, "fury.ui.elements.DrawShape.cal_bounding_box"]], "cal_bounding_box_2d() (in module fury.ui.helpers)": [[268, "fury.ui.helpers.cal_bounding_box_2d"]], "cal_min_boundary_distance() (fury.ui.elements.drawpanel method)": [[268, "fury.ui.elements.DrawPanel.cal_min_boundary_distance"]], "cal_size_from_message() (fury.ui.core.textblock2d method)": [[268, "fury.ui.core.TextBlock2D.cal_size_from_message"]], "caret_pos (fury.ui.elements.textbox2d attribute)": [[268, "fury.ui.elements.TextBox2D.caret_pos"]], "center (fury.ui.core.ui attribute)": [[268, "fury.ui.core.UI.center"]], "center (fury.ui.core.ui property)": [[268, "id0"]], "center (fury.ui.elements.drawshape property)": [[268, "fury.ui.elements.DrawShape.center"]], "check_overflow() (in module fury.ui.helpers)": [[268, "fury.ui.helpers.check_overflow"]], "clamp_mouse_position() (fury.ui.elements.drawpanel method)": [[268, "fury.ui.elements.DrawPanel.clamp_mouse_position"]], "clamp_position() (fury.ui.elements.drawshape method)": [[268, "fury.ui.elements.DrawShape.clamp_position"]], "clear_selection() (fury.ui.elements.listbox2d method)": [[268, "fury.ui.elements.ListBox2D.clear_selection"]], "clip_overflow() (in module fury.ui.helpers)": [[268, "fury.ui.helpers.clip_overflow"]], "collapse_tab_ui() (fury.ui.containers.tabui method)": [[268, "fury.ui.containers.TabUI.collapse_tab_ui"]], "color (fury.ui.containers.panel2d property)": [[268, "fury.ui.containers.Panel2D.color"]], "color (fury.ui.containers.tabpanel2d property)": [[268, "fury.ui.containers.TabPanel2D.color"]], "color (fury.ui.core.button2d property)": [[268, "fury.ui.core.Button2D.color"]], "color (fury.ui.core.disk2d property)": [[268, "fury.ui.core.Disk2D.color"]], "color (fury.ui.core.rectangle2d property)": [[268, "fury.ui.core.Rectangle2D.color"]], "color (fury.ui.core.textblock2d attribute)": [[268, "fury.ui.core.TextBlock2D.color"]], "color (fury.ui.core.textblock2d property)": [[268, "id5"]], "color (fury.ui.elements.card2d property)": [[268, "fury.ui.elements.Card2D.color"]], "content_panel (fury.ui.containers.tabpanel2d attribute)": [[268, "fury.ui.containers.TabPanel2D.content_panel"]], "coord_to_ratio() (fury.ui.elements.linedoubleslider2d method)": [[268, "fury.ui.elements.LineDoubleSlider2D.coord_to_ratio"]], "current_mode (fury.ui.elements.drawpanel property)": [[268, "fury.ui.elements.DrawPanel.current_mode"]], "current_time (fury.ui.elements.playbackpanel property)": [[268, "fury.ui.elements.PlaybackPanel.current_time"]], "current_time_str (fury.ui.elements.playbackpanel property)": [[268, "fury.ui.elements.PlaybackPanel.current_time_str"]], "default_color (fury.ui.elements.linedoubleslider2d attribute)": [[268, "fury.ui.elements.LineDoubleSlider2D.default_color"]], "default_color (fury.ui.elements.lineslider2d attribute)": [[268, "fury.ui.elements.LineSlider2D.default_color"]], "default_color (fury.ui.elements.ringslider2d attribute)": [[268, "fury.ui.elements.RingSlider2D.default_color"]], "deselect() (fury.ui.elements.listboxitem2d method)": [[268, "fury.ui.elements.ListBoxItem2D.deselect"]], "deselect() (fury.ui.elements.option method)": [[268, "fury.ui.elements.Option.deselect"]], "directory_click_callback() (fury.ui.elements.filemenu2d method)": [[268, "fury.ui.elements.FileMenu2D.directory_click_callback"]], "down_button_callback() (fury.ui.elements.listbox2d method)": [[268, "fury.ui.elements.ListBox2D.down_button_callback"]], "draw_shape() (fury.ui.elements.drawpanel method)": [[268, "fury.ui.elements.DrawPanel.draw_shape"]], "drop_down_button (fury.ui.elements.combobox2d attribute)": [[268, "fury.ui.elements.ComboBox2D.drop_down_button"]], "drop_down_menu (fury.ui.elements.combobox2d attribute)": [[268, "fury.ui.elements.ComboBox2D.drop_down_menu"]], "edit_mode() (fury.ui.elements.textbox2d method)": [[268, "fury.ui.elements.TextBox2D.edit_mode"]], "element (fury.ui.elements.listboxitem2d property)": [[268, "fury.ui.elements.ListBoxItem2D.element"]], "extensions (fury.ui.elements.filemenu2d attribute)": [[268, "fury.ui.elements.FileMenu2D.extensions"]], "final_time (fury.ui.elements.playbackpanel property)": [[268, "fury.ui.elements.PlaybackPanel.final_time"]], "font_family (fury.ui.core.textblock2d attribute)": [[268, "fury.ui.core.TextBlock2D.font_family"]], "font_family (fury.ui.core.textblock2d property)": [[268, "id6"]], "font_size (fury.ui.core.textblock2d attribute)": [[268, "fury.ui.core.TextBlock2D.font_size"]], "font_size (fury.ui.core.textblock2d property)": [[268, "id7"]], "font_size (fury.ui.elements.checkbox property)": [[268, "fury.ui.elements.Checkbox.font_size"]], "font_size (fury.ui.elements.option attribute)": [[268, "fury.ui.elements.Option.font_size"]], "format_text() (fury.ui.elements.linedoubleslider2d method)": [[268, "fury.ui.elements.LineDoubleSlider2D.format_text"]], "format_text() (fury.ui.elements.lineslider2d method)": [[268, "fury.ui.elements.LineSlider2D.format_text"]], "format_text() (fury.ui.elements.ringslider2d method)": [[268, "fury.ui.elements.RingSlider2D.format_text"]], "fury.ui": [[268, "module-fury.ui"]], "fury.ui.containers": [[268, "module-fury.ui.containers"]], "fury.ui.core": [[268, "module-fury.ui.core"]], "fury.ui.elements": [[268, "module-fury.ui.elements"]], "fury.ui.helpers": [[268, "module-fury.ui.helpers"]], "get_all_file_names() (fury.ui.elements.filemenu2d method)": [[268, "fury.ui.elements.FileMenu2D.get_all_file_names"]], "get_directory_names() (fury.ui.elements.filemenu2d method)": [[268, "fury.ui.elements.FileMenu2D.get_directory_names"]], "get_file_names() (fury.ui.elements.filemenu2d method)": [[268, "fury.ui.elements.FileMenu2D.get_file_names"]], "handle (fury.ui.elements.lineslider2d attribute)": [[268, "fury.ui.elements.LineSlider2D.handle"]], "handle (fury.ui.elements.ringslider2d attribute)": [[268, "fury.ui.elements.RingSlider2D.handle"]], "handle_character() (fury.ui.elements.textbox2d method)": [[268, "fury.ui.elements.TextBox2D.handle_character"]], "handle_events() (fury.ui.core.ui method)": [[268, "fury.ui.core.UI.handle_events"]], "handle_mouse_click() (fury.ui.elements.drawpanel method)": [[268, "fury.ui.elements.DrawPanel.handle_mouse_click"]], "handle_mouse_drag() (fury.ui.elements.drawpanel method)": [[268, "fury.ui.elements.DrawPanel.handle_mouse_drag"]], "handle_move_callback() (fury.ui.elements.linedoubleslider2d method)": [[268, "fury.ui.elements.LineDoubleSlider2D.handle_move_callback"]], "handle_move_callback() (fury.ui.elements.lineslider2d method)": [[268, "fury.ui.elements.LineSlider2D.handle_move_callback"]], "handle_move_callback() (fury.ui.elements.ringslider2d method)": [[268, "fury.ui.elements.RingSlider2D.handle_move_callback"]], "handle_release_callback() (fury.ui.elements.linedoubleslider2d method)": [[268, "fury.ui.elements.LineDoubleSlider2D.handle_release_callback"]], "handle_release_callback() (fury.ui.elements.lineslider2d method)": [[268, "fury.ui.elements.LineSlider2D.handle_release_callback"]], "handle_release_callback() (fury.ui.elements.ringslider2d method)": [[268, "fury.ui.elements.RingSlider2D.handle_release_callback"]], "handles (fury.ui.elements.linedoubleslider2d attribute)": [[268, "fury.ui.elements.LineDoubleSlider2D.handles"]], "height (fury.ui.core.rectangle2d property)": [[268, "fury.ui.core.Rectangle2D.height"]], "height (fury.ui.elements.textbox2d attribute)": [[268, "fury.ui.elements.TextBox2D.height"]], "hide() (fury.ui.elements.playbackpanel method)": [[268, "fury.ui.elements.PlaybackPanel.hide"]], "image (fury.ui.elements.card2d attribute)": [[268, "fury.ui.elements.Card2D.image"]], "img (fury.ui.containers.imagecontainer2d attribute)": [[268, "fury.ui.containers.ImageContainer2D.img"]], "init (fury.ui.elements.textbox2d attribute)": [[268, "fury.ui.elements.TextBox2D.init"]], "inner_radius (fury.ui.core.disk2d property)": [[268, "fury.ui.core.Disk2D.inner_radius"]], "is_selected (fury.ui.elements.drawshape property)": [[268, "fury.ui.elements.DrawShape.is_selected"]], "italic (fury.ui.core.textblock2d attribute)": [[268, "fury.ui.core.TextBlock2D.italic"]], "italic (fury.ui.core.textblock2d property)": [[268, "id8"]], "justification (fury.ui.core.textblock2d attribute)": [[268, "fury.ui.core.TextBlock2D.justification"]], "justification (fury.ui.core.textblock2d property)": [[268, "id9"]], "key_press() (fury.ui.elements.textbox2d method)": [[268, "fury.ui.elements.TextBox2D.key_press"]], "key_press_callback() (fury.ui.containers.gridui method)": [[268, "fury.ui.containers.GridUI.key_press_callback"]], "key_press_callback() (fury.ui.core.ui static method)": [[268, "fury.ui.core.UI.key_press_callback"]], "label (fury.ui.elements.option attribute)": [[268, "fury.ui.elements.Option.label"]], "labels (fury.ui.elements.checkbox attribute)": [[268, "fury.ui.elements.Checkbox.labels"]], "labels (fury.ui.elements.radiobutton attribute)": [[268, "fury.ui.elements.RadioButton.labels"]], "left_button_click_callback() (fury.ui.core.ui static method)": [[268, "fury.ui.core.UI.left_button_click_callback"]], "left_button_clicked() (fury.ui.elements.listboxitem2d method)": [[268, "fury.ui.elements.ListBoxItem2D.left_button_clicked"]], "left_button_dragged() (fury.ui.containers.panel2d method)": [[268, "fury.ui.containers.Panel2D.left_button_dragged"]], "left_button_dragged() (fury.ui.containers.tabui method)": [[268, "fury.ui.containers.TabUI.left_button_dragged"]], "left_button_dragged() (fury.ui.elements.card2d method)": [[268, "fury.ui.elements.Card2D.left_button_dragged"]], "left_button_dragged() (fury.ui.elements.combobox2d method)": [[268, "fury.ui.elements.ComboBox2D.left_button_dragged"]], "left_button_dragged() (fury.ui.elements.drawpanel method)": [[268, "fury.ui.elements.DrawPanel.left_button_dragged"]], "left_button_dragged() (fury.ui.elements.drawshape method)": [[268, "fury.ui.elements.DrawShape.left_button_dragged"]], "left_button_press() (fury.ui.elements.textbox2d method)": [[268, "fury.ui.elements.TextBox2D.left_button_press"]], "left_button_pressed() (fury.ui.containers.panel2d method)": [[268, "fury.ui.containers.Panel2D.left_button_pressed"]], "left_button_pressed() (fury.ui.containers.tabui method)": [[268, "fury.ui.containers.TabUI.left_button_pressed"]], "left_button_pressed() (fury.ui.elements.card2d method)": [[268, "fury.ui.elements.Card2D.left_button_pressed"]], "left_button_pressed() (fury.ui.elements.combobox2d method)": [[268, "fury.ui.elements.ComboBox2D.left_button_pressed"]], "left_button_pressed() (fury.ui.elements.drawpanel method)": [[268, "fury.ui.elements.DrawPanel.left_button_pressed"]], "left_button_pressed() (fury.ui.elements.drawshape method)": [[268, "fury.ui.elements.DrawShape.left_button_pressed"]], "left_button_release_callback() (fury.ui.core.ui static method)": [[268, "fury.ui.core.UI.left_button_release_callback"]], "left_button_released() (fury.ui.elements.drawshape method)": [[268, "fury.ui.elements.DrawShape.left_button_released"]], "left_click_callback() (fury.ui.containers.gridui static method)": [[268, "fury.ui.containers.GridUI.left_click_callback"]], "left_click_callback2() (fury.ui.containers.gridui static method)": [[268, "fury.ui.containers.GridUI.left_click_callback2"]], "left_disk_ratio (fury.ui.elements.linedoubleslider2d property)": [[268, "fury.ui.elements.LineDoubleSlider2D.left_disk_ratio"]], "left_disk_value (fury.ui.elements.linedoubleslider2d property)": [[268, "fury.ui.elements.LineDoubleSlider2D.left_disk_value"]], "left_move_left() (fury.ui.elements.textbox2d method)": [[268, "fury.ui.elements.TextBox2D.left_move_left"]], "left_move_right() (fury.ui.elements.textbox2d method)": [[268, "fury.ui.elements.TextBox2D.left_move_right"]], "left_release_callback() (fury.ui.containers.gridui static method)": [[268, "fury.ui.containers.GridUI.left_release_callback"]], "left_release_callback2() (fury.ui.containers.gridui static method)": [[268, "fury.ui.containers.GridUI.left_release_callback2"]], "left_x_position (fury.ui.elements.linedoubleslider2d property)": [[268, "fury.ui.elements.LineDoubleSlider2D.left_x_position"]], "left_x_position (fury.ui.elements.lineslider2d property)": [[268, "fury.ui.elements.LineSlider2D.left_x_position"]], "length (fury.ui.elements.linedoubleslider2d attribute)": [[268, "fury.ui.elements.LineDoubleSlider2D.length"]], "length (fury.ui.elements.lineslider2d attribute)": [[268, "fury.ui.elements.LineSlider2D.length"]], "line_width (fury.ui.elements.linedoubleslider2d attribute)": [[268, "fury.ui.elements.LineDoubleSlider2D.line_width"]], "line_width (fury.ui.elements.lineslider2d attribute)": [[268, "fury.ui.elements.LineSlider2D.line_width"]], "listbox (fury.ui.elements.filemenu2d attribute)": [[268, "fury.ui.elements.FileMenu2D.listbox"]], "loop() (fury.ui.elements.playbackpanel method)": [[268, "fury.ui.elements.PlaybackPanel.loop"]], "menu_toggle_callback() (fury.ui.elements.combobox2d method)": [[268, "fury.ui.elements.ComboBox2D.menu_toggle_callback"]], "message (fury.ui.core.textblock2d attribute)": [[268, "fury.ui.core.TextBlock2D.message"]], "message (fury.ui.core.textblock2d property)": [[268, "id10"]], "mid_track_radius (fury.ui.elements.ringslider2d attribute)": [[268, "fury.ui.elements.RingSlider2D.mid_track_radius"]], "mid_track_radius (fury.ui.elements.ringslider2d property)": [[268, "id13"]], "middle_button_click_callback() (fury.ui.core.ui static method)": [[268, "fury.ui.core.UI.middle_button_click_callback"]], "middle_button_release_callback() (fury.ui.core.ui static method)": [[268, "fury.ui.core.UI.middle_button_release_callback"]], "mouse_move_callback() (fury.ui.containers.gridui static method)": [[268, "fury.ui.containers.GridUI.mouse_move_callback"]], "mouse_move_callback() (fury.ui.core.ui static method)": [[268, "fury.ui.core.UI.mouse_move_callback"]], "mouse_move_callback2() (fury.ui.containers.gridui static method)": [[268, "fury.ui.containers.GridUI.mouse_move_callback2"]], "move_caret_left() (fury.ui.elements.textbox2d method)": [[268, "fury.ui.elements.TextBox2D.move_caret_left"]], "move_caret_right() (fury.ui.elements.textbox2d method)": [[268, "fury.ui.elements.TextBox2D.move_caret_right"]], "move_handle() (fury.ui.elements.ringslider2d method)": [[268, "fury.ui.elements.RingSlider2D.move_handle"]], "move_left() (fury.ui.elements.textbox2d method)": [[268, "fury.ui.elements.TextBox2D.move_left"]], "move_right() (fury.ui.elements.textbox2d method)": [[268, "fury.ui.elements.TextBox2D.move_right"]], "next_icon() (fury.ui.core.button2d method)": [[268, "fury.ui.core.Button2D.next_icon"]], "next_icon_id() (fury.ui.core.button2d method)": [[268, "fury.ui.core.Button2D.next_icon_id"]], "on_change (fury.ui.elements.listbox2d attribute)": [[268, "fury.ui.elements.ListBox2D.on_change"]], "on_key_press (fury.ui.core.ui attribute)": [[268, "fury.ui.core.UI.on_key_press"]], "on_left_mouse_button_clicked (fury.ui.core.ui attribute)": [[268, "fury.ui.core.UI.on_left_mouse_button_clicked"]], "on_left_mouse_button_dragged (fury.ui.core.ui attribute)": [[268, "fury.ui.core.UI.on_left_mouse_button_dragged"]], "on_left_mouse_button_pressed (fury.ui.core.ui attribute)": [[268, "fury.ui.core.UI.on_left_mouse_button_pressed"]], "on_left_mouse_button_released (fury.ui.core.ui attribute)": [[268, "fury.ui.core.UI.on_left_mouse_button_released"]], "on_left_mouse_double_clicked (fury.ui.core.ui attribute)": [[268, "fury.ui.core.UI.on_left_mouse_double_clicked"]], "on_middle_mouse_button_clicked (fury.ui.core.ui attribute)": [[268, "fury.ui.core.UI.on_middle_mouse_button_clicked"]], "on_middle_mouse_button_dragged (fury.ui.core.ui attribute)": [[268, "fury.ui.core.UI.on_middle_mouse_button_dragged"]], "on_middle_mouse_button_pressed (fury.ui.core.ui attribute)": [[268, "fury.ui.core.UI.on_middle_mouse_button_pressed"]], "on_middle_mouse_button_released (fury.ui.core.ui attribute)": [[268, "fury.ui.core.UI.on_middle_mouse_button_released"]], "on_middle_mouse_double_clicked (fury.ui.core.ui attribute)": [[268, "fury.ui.core.UI.on_middle_mouse_double_clicked"]], "on_right_mouse_button_clicked (fury.ui.core.ui attribute)": [[268, "fury.ui.core.UI.on_right_mouse_button_clicked"]], "on_right_mouse_button_dragged (fury.ui.core.ui attribute)": [[268, "fury.ui.core.UI.on_right_mouse_button_dragged"]], "on_right_mouse_button_pressed (fury.ui.core.ui attribute)": [[268, "fury.ui.core.UI.on_right_mouse_button_pressed"]], "on_right_mouse_button_released (fury.ui.core.ui attribute)": [[268, "fury.ui.core.UI.on_right_mouse_button_released"]], "on_right_mouse_double_clicked (fury.ui.core.ui attribute)": [[268, "fury.ui.core.UI.on_right_mouse_double_clicked"]], "opacity (fury.ui.containers.panel2d property)": [[268, "fury.ui.containers.Panel2D.opacity"]], "opacity (fury.ui.core.disk2d property)": [[268, "fury.ui.core.Disk2D.opacity"]], "opacity (fury.ui.core.rectangle2d property)": [[268, "fury.ui.core.Rectangle2D.opacity"]], "options (fury.ui.elements.checkbox attribute)": [[268, "fury.ui.elements.Checkbox.options"]], "options (fury.ui.elements.radiobutton attribute)": [[268, "fury.ui.elements.RadioButton.options"]], "outer_radius (fury.ui.core.disk2d property)": [[268, "fury.ui.core.Disk2D.outer_radius"]], "padding (fury.ui.elements.checkbox attribute)": [[268, "fury.ui.elements.Checkbox.padding"]], "padding (fury.ui.elements.checkbox property)": [[268, "id15"]], "padding (fury.ui.elements.radiobutton attribute)": [[268, "fury.ui.elements.RadioButton.padding"]], "pause() (fury.ui.elements.playbackpanel method)": [[268, "fury.ui.elements.PlaybackPanel.pause"]], "play() (fury.ui.elements.playbackpanel method)": [[268, "fury.ui.elements.PlaybackPanel.play"]], "play_once() (fury.ui.elements.playbackpanel method)": [[268, "fury.ui.elements.PlaybackPanel.play_once"]], "position (fury.ui.core.textblock2d attribute)": [[268, "fury.ui.core.TextBlock2D.position"]], "position (fury.ui.core.ui attribute)": [[268, "fury.ui.core.UI.position"]], "position (fury.ui.core.ui property)": [[268, "id2"]], "previous_value (fury.ui.elements.ringslider2d attribute)": [[268, "fury.ui.elements.RingSlider2D.previous_value"]], "previous_value (fury.ui.elements.ringslider2d property)": [[268, "id14"]], "range_slider (fury.ui.elements.rangeslider attribute)": [[268, "fury.ui.elements.RangeSlider.range_slider"]], "range_slider_center (fury.ui.elements.rangeslider attribute)": [[268, "fury.ui.elements.RangeSlider.range_slider_center"]], "range_slider_handle_move_callback() (fury.ui.elements.rangeslider method)": [[268, "fury.ui.elements.RangeSlider.range_slider_handle_move_callback"]], "ratio (fury.ui.elements.lineslider2d property)": [[268, "fury.ui.elements.LineSlider2D.ratio"]], "ratio (fury.ui.elements.ringslider2d property)": [[268, "fury.ui.elements.RingSlider2D.ratio"]], "ratio_to_coord() (fury.ui.elements.linedoubleslider2d method)": [[268, "fury.ui.elements.LineDoubleSlider2D.ratio_to_coord"]], "ratio_to_value() (fury.ui.elements.linedoubleslider2d method)": [[268, "fury.ui.elements.LineDoubleSlider2D.ratio_to_value"]], "re_align() (fury.ui.containers.panel2d method)": [[268, "fury.ui.containers.Panel2D.re_align"]], "remove() (fury.ui.elements.drawshape method)": [[268, "fury.ui.elements.DrawShape.remove"]], "remove_character() (fury.ui.elements.textbox2d method)": [[268, "fury.ui.elements.TextBox2D.remove_character"]], "remove_element() (fury.ui.containers.panel2d method)": [[268, "fury.ui.containers.Panel2D.remove_element"]], "remove_element() (fury.ui.containers.tabpanel2d method)": [[268, "fury.ui.containers.TabPanel2D.remove_element"]], "remove_element() (fury.ui.containers.tabui method)": [[268, "fury.ui.containers.TabUI.remove_element"]], "render_text() (fury.ui.elements.textbox2d method)": [[268, "fury.ui.elements.TextBox2D.render_text"]], "resize() (fury.ui.containers.gridui method)": [[268, "fury.ui.containers.GridUI.resize"]], "resize() (fury.ui.containers.imagecontainer2d method)": [[268, "fury.ui.containers.ImageContainer2D.resize"]], "resize() (fury.ui.containers.panel2d method)": [[268, "fury.ui.containers.Panel2D.resize"]], "resize() (fury.ui.containers.tabpanel2d method)": [[268, "fury.ui.containers.TabPanel2D.resize"]], "resize() (fury.ui.core.button2d method)": [[268, "fury.ui.core.Button2D.resize"]], "resize() (fury.ui.core.rectangle2d method)": [[268, "fury.ui.core.Rectangle2D.resize"]], "resize() (fury.ui.core.textblock2d method)": [[268, "fury.ui.core.TextBlock2D.resize"]], "resize() (fury.ui.elements.card2d method)": [[268, "fury.ui.elements.Card2D.resize"]], "resize() (fury.ui.elements.combobox2d method)": [[268, "fury.ui.elements.ComboBox2D.resize"]], "resize() (fury.ui.elements.drawpanel method)": [[268, "fury.ui.elements.DrawPanel.resize"]], "resize() (fury.ui.elements.drawshape method)": [[268, "fury.ui.elements.DrawShape.resize"]], "resize() (fury.ui.elements.filemenu2d method)": [[268, "fury.ui.elements.FileMenu2D.resize"]], "resize() (fury.ui.elements.listbox2d method)": [[268, "fury.ui.elements.ListBox2D.resize"]], "resize() (fury.ui.elements.listboxitem2d method)": [[268, "fury.ui.elements.ListBoxItem2D.resize"]], "resize_shape() (fury.ui.elements.drawpanel method)": [[268, "fury.ui.elements.DrawPanel.resize_shape"]], "right_button_click_callback() (fury.ui.core.ui static method)": [[268, "fury.ui.core.UI.right_button_click_callback"]], "right_button_release_callback() (fury.ui.core.ui static method)": [[268, "fury.ui.core.UI.right_button_release_callback"]], "right_disk_ratio (fury.ui.elements.linedoubleslider2d property)": [[268, "fury.ui.elements.LineDoubleSlider2D.right_disk_ratio"]], "right_disk_value (fury.ui.elements.linedoubleslider2d property)": [[268, "fury.ui.elements.LineDoubleSlider2D.right_disk_value"]], "right_move_left() (fury.ui.elements.textbox2d method)": [[268, "fury.ui.elements.TextBox2D.right_move_left"]], "right_move_right() (fury.ui.elements.textbox2d method)": [[268, "fury.ui.elements.TextBox2D.right_move_right"]], "right_x_position (fury.ui.elements.linedoubleslider2d property)": [[268, "fury.ui.elements.LineDoubleSlider2D.right_x_position"]], "right_x_position (fury.ui.elements.lineslider2d property)": [[268, "fury.ui.elements.LineSlider2D.right_x_position"]], "rotate() (fury.ui.elements.drawshape method)": [[268, "fury.ui.elements.DrawShape.rotate"]], "rotate_2d() (in module fury.ui.helpers)": [[268, "fury.ui.helpers.rotate_2d"]], "scale() (fury.ui.containers.imagecontainer2d method)": [[268, "fury.ui.containers.ImageContainer2D.scale"]], "scale() (fury.ui.core.button2d method)": [[268, "fury.ui.core.Button2D.scale"]], "scroll_callback() (fury.ui.elements.filemenu2d method)": [[268, "fury.ui.elements.FileMenu2D.scroll_callback"]], "scroll_click_callback() (fury.ui.elements.listbox2d method)": [[268, "fury.ui.elements.ListBox2D.scroll_click_callback"]], "scroll_drag_callback() (fury.ui.elements.listbox2d method)": [[268, "fury.ui.elements.ListBox2D.scroll_drag_callback"]], "scroll_release_callback() (fury.ui.elements.listbox2d method)": [[268, "fury.ui.elements.ListBox2D.scroll_release_callback"]], "select() (fury.ui.elements.listbox2d method)": [[268, "fury.ui.elements.ListBox2D.select"]], "select() (fury.ui.elements.listboxitem2d method)": [[268, "fury.ui.elements.ListBoxItem2D.select"]], "select() (fury.ui.elements.option method)": [[268, "fury.ui.elements.Option.select"]], "select_option_callback() (fury.ui.elements.combobox2d method)": [[268, "fury.ui.elements.ComboBox2D.select_option_callback"]], "select_tab_callback() (fury.ui.containers.tabui method)": [[268, "fury.ui.containers.TabUI.select_tab_callback"]], "selected_text (fury.ui.elements.combobox2d property)": [[268, "fury.ui.elements.ComboBox2D.selected_text"]], "selected_text_index (fury.ui.elements.combobox2d property)": [[268, "fury.ui.elements.ComboBox2D.selected_text_index"]], "selection_box (fury.ui.elements.combobox2d attribute)": [[268, "fury.ui.elements.ComboBox2D.selection_box"]], "selection_change() (fury.ui.elements.drawshape method)": [[268, "fury.ui.elements.DrawShape.selection_change"]], "set_icon() (fury.ui.core.button2d method)": [[268, "fury.ui.core.Button2D.set_icon"]], "set_icon_by_name() (fury.ui.core.button2d method)": [[268, "fury.ui.core.Button2D.set_icon_by_name"]], "set_img() (fury.ui.containers.imagecontainer2d method)": [[268, "fury.ui.containers.ImageContainer2D.set_img"]], "set_message() (fury.ui.elements.textbox2d method)": [[268, "fury.ui.elements.TextBox2D.set_message"]], "set_position() (fury.ui.elements.linedoubleslider2d method)": [[268, "fury.ui.elements.LineDoubleSlider2D.set_position"]], "set_position() (fury.ui.elements.lineslider2d method)": [[268, "fury.ui.elements.LineSlider2D.set_position"]], "set_slot_colors() (fury.ui.elements.filemenu2d method)": [[268, "fury.ui.elements.FileMenu2D.set_slot_colors"]], "set_visibility() (fury.ui.containers.panel2d method)": [[268, "fury.ui.containers.Panel2D.set_visibility"]], "set_visibility() (fury.ui.core.ui method)": [[268, "fury.ui.core.UI.set_visibility"]], "set_visibility() (fury.ui.elements.combobox2d method)": [[268, "fury.ui.elements.ComboBox2D.set_visibility"]], "shadow (fury.ui.core.textblock2d attribute)": [[268, "fury.ui.core.TextBlock2D.shadow"]], "shadow (fury.ui.core.textblock2d property)": [[268, "id11"]], "shape (fury.ui.elements.linedoubleslider2d attribute)": [[268, "fury.ui.elements.LineDoubleSlider2D.shape"]], "shape (fury.ui.elements.lineslider2d attribute)": [[268, "fury.ui.elements.LineSlider2D.shape"]], "show() (fury.ui.elements.playbackpanel method)": [[268, "fury.ui.elements.PlaybackPanel.show"]], "show_rotation_slider() (fury.ui.elements.drawpanel method)": [[268, "fury.ui.elements.DrawPanel.show_rotation_slider"]], "showable_text() (fury.ui.elements.textbox2d method)": [[268, "fury.ui.elements.TextBox2D.showable_text"]], "size (fury.ui.containers.imagecontainer2d attribute)": [[268, "fury.ui.containers.ImageContainer2D.size"]], "size (fury.ui.core.textblock2d attribute)": [[268, "fury.ui.core.TextBlock2D.size"]], "size (fury.ui.core.ui attribute)": [[268, "fury.ui.core.UI.size"]], "size (fury.ui.core.ui property)": [[268, "id3"]], "speed (fury.ui.elements.playbackpanel property)": [[268, "fury.ui.elements.PlaybackPanel.speed"]], "stop() (fury.ui.elements.playbackpanel method)": [[268, "fury.ui.elements.PlaybackPanel.stop"]], "tabs (fury.ui.containers.tabui attribute)": [[268, "fury.ui.containers.TabUI.tabs"]], "text (fury.ui.elements.linedoubleslider2d attribute)": [[268, "fury.ui.elements.LineDoubleSlider2D.text"]], "text (fury.ui.elements.lineslider2d attribute)": [[268, "fury.ui.elements.LineSlider2D.text"]], "text (fury.ui.elements.ringslider2d attribute)": [[268, "fury.ui.elements.RingSlider2D.text"]], "text (fury.ui.elements.textbox2d attribute)": [[268, "fury.ui.elements.TextBox2D.text"]], "text_block (fury.ui.containers.tabpanel2d attribute)": [[268, "fury.ui.containers.TabPanel2D.text_block"]], "title (fury.ui.containers.tabpanel2d property)": [[268, "fury.ui.containers.TabPanel2D.title"]], "title (fury.ui.elements.card2d property)": [[268, "fury.ui.elements.Card2D.title"]], "title_bold (fury.ui.containers.tabpanel2d property)": [[268, "fury.ui.containers.TabPanel2D.title_bold"]], "title_box (fury.ui.elements.card2d attribute)": [[268, "fury.ui.elements.Card2D.title_box"]], "title_color (fury.ui.containers.tabpanel2d property)": [[268, "fury.ui.containers.TabPanel2D.title_color"]], "title_font_size (fury.ui.containers.tabpanel2d property)": [[268, "fury.ui.containers.TabPanel2D.title_font_size"]], "title_italic (fury.ui.containers.tabpanel2d property)": [[268, "fury.ui.containers.TabPanel2D.title_italic"]], "toggle() (fury.ui.elements.option method)": [[268, "fury.ui.elements.Option.toggle"]], "top_disk_ratio (fury.ui.elements.linedoubleslider2d property)": [[268, "fury.ui.elements.LineDoubleSlider2D.top_disk_ratio"]], "top_disk_value (fury.ui.elements.linedoubleslider2d property)": [[268, "fury.ui.elements.LineDoubleSlider2D.top_disk_value"]], "top_y_position (fury.ui.elements.linedoubleslider2d property)": [[268, "fury.ui.elements.LineDoubleSlider2D.top_y_position"]], "top_y_position (fury.ui.elements.lineslider2d property)": [[268, "fury.ui.elements.LineSlider2D.top_y_position"]], "track (fury.ui.elements.linedoubleslider2d attribute)": [[268, "fury.ui.elements.LineDoubleSlider2D.track"]], "track (fury.ui.elements.lineslider2d attribute)": [[268, "fury.ui.elements.LineSlider2D.track"]], "track (fury.ui.elements.ringslider2d attribute)": [[268, "fury.ui.elements.RingSlider2D.track"]], "track_click_callback() (fury.ui.elements.lineslider2d method)": [[268, "fury.ui.elements.LineSlider2D.track_click_callback"]], "track_click_callback() (fury.ui.elements.ringslider2d method)": [[268, "fury.ui.elements.RingSlider2D.track_click_callback"]], "up_button_callback() (fury.ui.elements.listbox2d method)": [[268, "fury.ui.elements.ListBox2D.up_button_callback"]], "update() (fury.ui.elements.linedoubleslider2d method)": [[268, "fury.ui.elements.LineDoubleSlider2D.update"]], "update() (fury.ui.elements.lineslider2d method)": [[268, "fury.ui.elements.LineSlider2D.update"]], "update() (fury.ui.elements.listbox2d method)": [[268, "fury.ui.elements.ListBox2D.update"]], "update() (fury.ui.elements.ringslider2d method)": [[268, "fury.ui.elements.RingSlider2D.update"]], "update_alignment() (fury.ui.core.textblock2d method)": [[268, "fury.ui.core.TextBlock2D.update_alignment"]], "update_border_coords() (fury.ui.containers.panel2d method)": [[268, "fury.ui.containers.Panel2D.update_border_coords"]], "update_bounding_box() (fury.ui.core.textblock2d method)": [[268, "fury.ui.core.TextBlock2D.update_bounding_box"]], "update_button_icons() (fury.ui.elements.drawpanel method)": [[268, "fury.ui.elements.DrawPanel.update_button_icons"]], "update_element() (fury.ui.containers.panel2d method)": [[268, "fury.ui.containers.Panel2D.update_element"]], "update_element() (fury.ui.containers.tabpanel2d method)": [[268, "fury.ui.containers.TabPanel2D.update_element"]], "update_element() (fury.ui.containers.tabui method)": [[268, "fury.ui.containers.TabUI.update_element"]], "update_scrollbar() (fury.ui.elements.listbox2d method)": [[268, "fury.ui.elements.ListBox2D.update_scrollbar"]], "update_shape_position() (fury.ui.elements.drawshape method)": [[268, "fury.ui.elements.DrawShape.update_shape_position"]], "update_shape_selection() (fury.ui.elements.drawpanel method)": [[268, "fury.ui.elements.DrawPanel.update_shape_selection"]], "update_tabs() (fury.ui.containers.tabui method)": [[268, "fury.ui.containers.TabUI.update_tabs"]], "value (fury.ui.elements.lineslider2d property)": [[268, "fury.ui.elements.LineSlider2D.value"]], "value (fury.ui.elements.ringslider2d property)": [[268, "fury.ui.elements.RingSlider2D.value"]], "value_slider (fury.ui.elements.rangeslider attribute)": [[268, "fury.ui.elements.RangeSlider.value_slider"]], "value_slider_center (fury.ui.elements.rangeslider attribute)": [[268, "fury.ui.elements.RangeSlider.value_slider_center"]], "value_to_ratio() (fury.ui.elements.linedoubleslider2d method)": [[268, "fury.ui.elements.LineDoubleSlider2D.value_to_ratio"]], "vertical_justification (fury.ui.core.textblock2d attribute)": [[268, "fury.ui.core.TextBlock2D.vertical_justification"]], "vertical_justification (fury.ui.core.textblock2d property)": [[268, "id12"]], "width (fury.ui.core.rectangle2d property)": [[268, "fury.ui.core.Rectangle2D.width"]], "width (fury.ui.elements.playbackpanel property)": [[268, "fury.ui.elements.PlaybackPanel.width"]], "width (fury.ui.elements.textbox2d attribute)": [[268, "fury.ui.elements.TextBox2D.width"]], "width_set_text() (fury.ui.elements.textbox2d method)": [[268, "fury.ui.elements.TextBox2D.width_set_text"]], "window_left (fury.ui.elements.textbox2d attribute)": [[268, "fury.ui.elements.TextBox2D.window_left"]], "window_right (fury.ui.elements.textbox2d attribute)": [[268, "fury.ui.elements.TextBox2D.window_right"]], "wrap_overflow() (in module fury.ui.helpers)": [[268, "fury.ui.helpers.wrap_overflow"]], "add_polydata_numeric_field() (in module fury.utils)": [[269, "fury.utils.add_polydata_numeric_field"]], "apply_affine() (in module fury.utils)": [[269, "fury.utils.apply_affine"]], "apply_affine_to_actor() (in module fury.utils)": [[269, "fury.utils.apply_affine_to_actor"]], "array_from_actor() (in module fury.utils)": [[269, "fury.utils.array_from_actor"]], "asbytes() (in module fury.utils)": [[269, "fury.utils.asbytes"]], "change_vertices_order() (in module fury.utils)": [[269, "fury.utils.change_vertices_order"]], "color_check() (in module fury.utils)": [[269, "fury.utils.color_check"]], "colors_from_actor() (in module fury.utils)": [[269, "fury.utils.colors_from_actor"]], "compute_bounds() (in module fury.utils)": [[269, "fury.utils.compute_bounds"]], "fix_winding_order() (in module fury.utils)": [[269, "fury.utils.fix_winding_order"]], "fury.utils": [[269, "module-fury.utils"]], "get_actor_from_polydata() (in module fury.utils)": [[269, "fury.utils.get_actor_from_polydata"]], "get_actor_from_polymapper() (in module fury.utils)": [[269, "fury.utils.get_actor_from_polymapper"]], "get_actor_from_primitive() (in module fury.utils)": [[269, "fury.utils.get_actor_from_primitive"]], "get_bounding_box_sizes() (in module fury.utils)": [[269, "fury.utils.get_bounding_box_sizes"]], "get_bounds() (in module fury.utils)": [[269, "fury.utils.get_bounds"]], "get_grid_cells_position() (in module fury.utils)": [[269, "fury.utils.get_grid_cells_position"]], "get_polydata_colors() (in module fury.utils)": [[269, "fury.utils.get_polydata_colors"]], "get_polydata_field() (in module fury.utils)": [[269, "fury.utils.get_polydata_field"]], "get_polydata_lines() (in module fury.utils)": [[269, "fury.utils.get_polydata_lines"]], "get_polydata_normals() (in module fury.utils)": [[269, "fury.utils.get_polydata_normals"]], "get_polydata_primitives_count() (in module fury.utils)": [[269, "fury.utils.get_polydata_primitives_count"]], "get_polydata_tangents() (in module fury.utils)": [[269, "fury.utils.get_polydata_tangents"]], "get_polydata_tcoord() (in module fury.utils)": [[269, "fury.utils.get_polydata_tcoord"]], "get_polydata_triangles() (in module fury.utils)": [[269, "fury.utils.get_polydata_triangles"]], "get_polydata_vertices() (in module fury.utils)": [[269, "fury.utils.get_polydata_vertices"]], "get_polymapper_from_polydata() (in module fury.utils)": [[269, "fury.utils.get_polymapper_from_polydata"]], "is_ui() (in module fury.utils)": [[269, "fury.utils.is_ui"]], "lines_to_vtk_polydata() (in module fury.utils)": [[269, "fury.utils.lines_to_vtk_polydata"]], "map_coordinates_3d_4d() (in module fury.utils)": [[269, "fury.utils.map_coordinates_3d_4d"]], "normalize_v3() (in module fury.utils)": [[269, "fury.utils.normalize_v3"]], "normals_from_actor() (in module fury.utils)": [[269, "fury.utils.normals_from_actor"]], "normals_from_v_f() (in module fury.utils)": [[269, "fury.utils.normals_from_v_f"]], "normals_to_actor() (in module fury.utils)": [[269, "fury.utils.normals_to_actor"]], "numpy_to_vtk_cells() (in module fury.utils)": [[269, "fury.utils.numpy_to_vtk_cells"]], "numpy_to_vtk_colors() (in module fury.utils)": [[269, "fury.utils.numpy_to_vtk_colors"]], "numpy_to_vtk_image_data() (in module fury.utils)": [[269, "fury.utils.numpy_to_vtk_image_data"]], "numpy_to_vtk_matrix() (in module fury.utils)": [[269, "fury.utils.numpy_to_vtk_matrix"]], "numpy_to_vtk_points() (in module fury.utils)": [[269, "fury.utils.numpy_to_vtk_points"]], "primitives_count_from_actor() (in module fury.utils)": [[269, "fury.utils.primitives_count_from_actor"]], "primitives_count_to_actor() (in module fury.utils)": [[269, "fury.utils.primitives_count_to_actor"]], "remove_observer_from_actor() (in module fury.utils)": [[269, "fury.utils.remove_observer_from_actor"]], "repeat_sources() (in module fury.utils)": [[269, "fury.utils.repeat_sources"]], "represent_actor_as_wireframe() (in module fury.utils)": [[269, "fury.utils.represent_actor_as_wireframe"]], "rgb_to_vtk() (in module fury.utils)": [[269, "fury.utils.rgb_to_vtk"]], "rotate() (in module fury.utils)": [[269, "fury.utils.rotate"]], "set_actor_origin() (in module fury.utils)": [[269, "fury.utils.set_actor_origin"]], "set_input() (in module fury.utils)": [[269, "fury.utils.set_input"]], "set_polydata_colors() (in module fury.utils)": [[269, "fury.utils.set_polydata_colors"]], "set_polydata_normals() (in module fury.utils)": [[269, "fury.utils.set_polydata_normals"]], "set_polydata_primitives_count() (in module fury.utils)": [[269, "fury.utils.set_polydata_primitives_count"]], "set_polydata_tangents() (in module fury.utils)": [[269, "fury.utils.set_polydata_tangents"]], "set_polydata_tcoords() (in module fury.utils)": [[269, "fury.utils.set_polydata_tcoords"]], "set_polydata_triangles() (in module fury.utils)": [[269, "fury.utils.set_polydata_triangles"]], "set_polydata_vertices() (in module fury.utils)": [[269, "fury.utils.set_polydata_vertices"]], "shallow_copy() (in module fury.utils)": [[269, "fury.utils.shallow_copy"]], "tangents_from_actor() (in module fury.utils)": [[269, "fury.utils.tangents_from_actor"]], "tangents_from_direction_of_anisotropy() (in module fury.utils)": [[269, "fury.utils.tangents_from_direction_of_anisotropy"]], "tangents_to_actor() (in module fury.utils)": [[269, "fury.utils.tangents_to_actor"]], "triangle_order() (in module fury.utils)": [[269, "fury.utils.triangle_order"]], "update_actor() (in module fury.utils)": [[269, "fury.utils.update_actor"]], "update_polydata_normals() (in module fury.utils)": [[269, "fury.utils.update_polydata_normals"]], "update_surface_actor_colors() (in module fury.utils)": [[269, "fury.utils.update_surface_actor_colors"]], "vertices_from_actor() (in module fury.utils)": [[269, "fury.utils.vertices_from_actor"]], "vtk_matrix_to_numpy() (in module fury.utils)": [[269, "fury.utils.vtk_matrix_to_numpy"]], "scene (class in fury.window)": [[270, "fury.window.Scene"]], "showmanager (class in fury.window)": [[270, "fury.window.ShowManager"]], "__init__() (fury.window.scene method)": [[270, "fury.window.Scene.__init__"]], "__init__() (fury.window.showmanager method)": [[270, "fury.window.ShowManager.__init__"]], "add() (fury.window.scene method)": [[270, "fury.window.Scene.add"]], "add_animation() (fury.window.showmanager method)": [[270, "fury.window.ShowManager.add_animation"]], "add_iren_callback() (fury.window.showmanager method)": [[270, "fury.window.ShowManager.add_iren_callback"]], "add_timer_callback() (fury.window.showmanager method)": [[270, "fury.window.ShowManager.add_timer_callback"]], "add_window_callback() (fury.window.showmanager method)": [[270, "fury.window.ShowManager.add_window_callback"]], "analyze_scene() (in module fury.window)": [[270, "fury.window.analyze_scene"]], "analyze_snapshot() (in module fury.window)": [[270, "fury.window.analyze_snapshot"]], "animations (fury.window.showmanager property)": [[270, "fury.window.ShowManager.animations"]], "antialiasing() (in module fury.window)": [[270, "fury.window.antialiasing"]], "azimuth() (fury.window.scene method)": [[270, "fury.window.Scene.azimuth"]], "background() (fury.window.scene method)": [[270, "fury.window.Scene.background"]], "camera() (fury.window.scene method)": [[270, "fury.window.Scene.camera"]], "camera_direction() (fury.window.scene method)": [[270, "fury.window.Scene.camera_direction"]], "camera_info() (fury.window.scene method)": [[270, "fury.window.Scene.camera_info"]], "clear() (fury.window.scene method)": [[270, "fury.window.Scene.clear"]], "destroy_timer() (fury.window.showmanager method)": [[270, "fury.window.ShowManager.destroy_timer"]], "destroy_timers() (fury.window.showmanager method)": [[270, "fury.window.ShowManager.destroy_timers"]], "dolly() (fury.window.scene method)": [[270, "fury.window.Scene.dolly"]], "elevation() (fury.window.scene method)": [[270, "fury.window.Scene.elevation"]], "enable_stereo() (in module fury.window)": [[270, "fury.window.enable_stereo"]], "exit() (fury.window.showmanager method)": [[270, "fury.window.ShowManager.exit"]], "frame_rate (fury.window.showmanager property)": [[270, "fury.window.ShowManager.frame_rate"]], "fury.window": [[270, "module-fury.window"]], "fxaa_off() (fury.window.scene method)": [[270, "fury.window.Scene.fxaa_off"]], "fxaa_on() (fury.window.scene method)": [[270, "fury.window.Scene.fxaa_on"]], "get_camera() (fury.window.scene method)": [[270, "fury.window.Scene.get_camera"]], "gl_disable_blend() (in module fury.window)": [[270, "fury.window.gl_disable_blend"]], "gl_disable_depth() (in module fury.window)": [[270, "fury.window.gl_disable_depth"]], "gl_enable_blend() (in module fury.window)": [[270, "fury.window.gl_enable_blend"]], "gl_enable_depth() (in module fury.window)": [[270, "fury.window.gl_enable_depth"]], "gl_get_current_state() (in module fury.window)": [[270, "fury.window.gl_get_current_state"]], "gl_reset_blend() (in module fury.window)": [[270, "fury.window.gl_reset_blend"]], "gl_set_additive_blending() (in module fury.window)": [[270, "fury.window.gl_set_additive_blending"]], "gl_set_additive_blending_white_background() (in module fury.window)": [[270, "fury.window.gl_set_additive_blending_white_background"]], "gl_set_multiplicative_blending() (in module fury.window)": [[270, "fury.window.gl_set_multiplicative_blending"]], "gl_set_normal_blending() (in module fury.window)": [[270, "fury.window.gl_set_normal_blending"]], "gl_set_subtractive_blending() (in module fury.window)": [[270, "fury.window.gl_set_subtractive_blending"]], "initialize() (fury.window.showmanager method)": [[270, "fury.window.ShowManager.initialize"]], "iren (fury.window.showmanager attribute)": [[270, "fury.window.ShowManager.iren"]], "is_done() (fury.window.showmanager method)": [[270, "fury.window.ShowManager.is_done"]], "last_render_time (fury.window.scene property)": [[270, "fury.window.Scene.last_render_time"]], "lock() (fury.window.showmanager method)": [[270, "fury.window.ShowManager.lock"]], "lock_current() (fury.window.showmanager method)": [[270, "fury.window.ShowManager.lock_current"]], "pitch() (fury.window.scene method)": [[270, "fury.window.Scene.pitch"]], "play_events() (fury.window.showmanager method)": [[270, "fury.window.ShowManager.play_events"]], "play_events_from_file() (fury.window.showmanager method)": [[270, "fury.window.ShowManager.play_events_from_file"]], "projection() (fury.window.scene method)": [[270, "fury.window.Scene.projection"]], "record() (in module fury.window)": [[270, "fury.window.record"]], "record_events() (fury.window.showmanager method)": [[270, "fury.window.ShowManager.record_events"]], "record_events_to_file() (fury.window.showmanager method)": [[270, "fury.window.ShowManager.record_events_to_file"]], "release_context() (in module fury.window)": [[270, "fury.window.release_context"]], "release_current() (fury.window.showmanager method)": [[270, "fury.window.ShowManager.release_current"]], "release_lock() (fury.window.showmanager method)": [[270, "fury.window.ShowManager.release_lock"]], "remove_animation() (fury.window.showmanager method)": [[270, "fury.window.ShowManager.remove_animation"]], "render() (fury.window.showmanager method)": [[270, "fury.window.ShowManager.render"]], "reset_camera() (fury.window.scene method)": [[270, "fury.window.Scene.reset_camera"]], "reset_camera_tight() (fury.window.scene method)": [[270, "fury.window.Scene.reset_camera_tight"]], "reset_clipping_range() (fury.window.scene method)": [[270, "fury.window.Scene.reset_clipping_range"]], "rm() (fury.window.scene method)": [[270, "fury.window.Scene.rm"]], "rm_all() (fury.window.scene method)": [[270, "fury.window.Scene.rm_all"]], "roll() (fury.window.scene method)": [[270, "fury.window.Scene.roll"]], "save_screenshot() (fury.window.showmanager method)": [[270, "fury.window.ShowManager.save_screenshot"]], "scene (fury.window.showmanager attribute)": [[270, "fury.window.ShowManager.scene"]], "set_camera() (fury.window.scene method)": [[270, "fury.window.Scene.set_camera"]], "show() (in module fury.window)": [[270, "fury.window.show"]], "size() (fury.window.scene method)": [[270, "fury.window.Scene.size"]], "skybox() (fury.window.scene method)": [[270, "fury.window.Scene.skybox"]], "snapshot() (in module fury.window)": [[270, "fury.window.snapshot"]], "start() (fury.window.showmanager method)": [[270, "fury.window.ShowManager.start"]], "style (fury.window.showmanager attribute)": [[270, "fury.window.ShowManager.style"]], "timelines (fury.window.showmanager property)": [[270, "fury.window.ShowManager.timelines"]], "wait() (fury.window.showmanager method)": [[270, "fury.window.ShowManager.wait"]], "window (fury.window.showmanager attribute)": [[270, "fury.window.ShowManager.window"]], "yaw() (fury.window.scene method)": [[270, "fury.window.Scene.yaw"]], "zoom() (fury.window.scene method)": [[270, "fury.window.Scene.zoom"]]}})
\ No newline at end of file
+Search.setIndex({"docnames": ["auto_examples/01_introductory/index", "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/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_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/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_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/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_interpolators", "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/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/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/viz_interaction", "auto_examples/20_stream/viz_no_interaction", "auto_examples/20_stream/viz_widget", "auto_examples/index", "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-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/29-05-2023-week-0-joaodellagli", "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.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", "symlink/contributing", "symlink/license"], "filenames": ["auto_examples/01_introductory/index.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/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_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/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_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/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_interpolators.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/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/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/viz_interaction.rst", "auto_examples/20_stream/viz_no_interaction.rst", "auto_examples/20_stream/viz_widget.rst", "auto_examples/index.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-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/29-05-2023-week-0-joaodellagli.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.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", "symlink/contributing.rst", "symlink/license.rst"], "titles": ["Introductory", "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", "Advanced interactive visualization", "Animated 2D functions", "Brownian motion", "Visualize bundles and metrics on bundles", "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", "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", "Tab UI", "User Interfaces", "ListBox", "Cube & Slider Control", "Animation", "Bezier Interpolator", "Keyframe animation: Camera and opacity", "Keyframe Color Interpolators", "Making a custom interpolator", "Keyframe hierarchical Animation", "Keyframe animation", "Keyframe animation introduction", "Arm Robot Animation", "Keyframes Spline Interpolator", "Timeline and setting keyframes", "Keyframe animation", "Shaders", "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", "Ball Collision Simulation", "Brick Wall Simulation", "Chain Simulation", "Domino Physics Simulation", "Wrecking Ball Simulation", "Streaming", "Streaming FURY with user interaction", "Streaming FURY with WebRTC/MJPEG", "Streaming FURY with WebRTC/MJPEG using the Widget Object", "Tutorials", "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", "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", "The Beginning of Everything - Week 0", "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.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)", "Contributing", "License"], "terms": {"These": [0, 29, 38, 52, 59, 64, 66, 71, 77, 81, 131, 139, 149, 155, 158, 160, 162, 171, 216, 217, 218, 245, 251, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286], "tutori": [0, 3, 4, 5, 6, 7, 8, 10, 11, 12, 14, 16, 17, 18, 22, 36, 38, 52, 54, 55, 56, 58, 59, 60, 61, 62, 63, 64, 65, 66, 68, 69, 77, 78, 87, 94, 95, 97, 112, 113, 116, 123, 124, 125, 126, 131, 132, 133, 135, 139, 149, 152, 156, 159, 160, 162, 163, 170, 171, 172, 173, 174, 180, 181, 186, 187, 189, 190, 197, 198, 201, 213, 217, 218, 220, 243, 253, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287], "show": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 22, 26, 28, 29, 30, 31, 32, 33, 35, 36, 37, 38, 39, 40, 41, 45, 47, 48, 50, 52, 54, 55, 56, 57, 59, 61, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 81, 89, 90, 91, 92, 94, 95, 97, 102, 113, 123, 129, 130, 133, 135, 137, 141, 142, 145, 150, 152, 157, 160, 164, 166, 167, 170, 171, 172, 173, 192, 198, 207, 211, 218, 220, 227, 233, 237, 239, 240, 245, 248, 250, 253, 266, 268, 269, 271, 277, 279, 280, 284], "how": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 25, 27, 28, 29, 31, 33, 34, 35, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 55, 58, 59, 62, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 81, 84, 87, 98, 109, 118, 122, 126, 131, 132, 135, 137, 138, 139, 141, 142, 143, 148, 154, 156, 160, 161, 164, 166, 169, 170, 171, 172, 174, 175, 176, 177, 181, 183, 185, 186, 189, 192, 193, 196, 197, 198, 200, 204, 208, 209, 212, 216, 217, 218, 222, 224, 225, 228, 229, 230, 233, 237, 239, 240, 242, 243, 246, 251, 260, 270, 277, 284, 285, 286, 287], "combin": [0, 21, 27, 65, 81, 104, 112, 115, 121, 126, 200, 203, 218, 226, 256, 270], "timer": [0, 16, 33, 35, 41, 70, 72, 73, 74, 75, 76, 79, 81, 107, 139, 158, 203, 217, 218, 245, 266, 281, 286], "an": [0, 3, 10, 11, 13, 14, 16, 17, 18, 22, 23, 24, 29, 30, 31, 32, 33, 36, 37, 47, 49, 53, 54, 55, 56, 57, 59, 63, 65, 66, 68, 78, 81, 84, 87, 88, 89, 90, 91, 92, 94, 95, 97, 98, 99, 100, 102, 106, 108, 109, 112, 113, 115, 117, 120, 123, 125, 126, 129, 131, 132, 133, 135, 137, 138, 139, 140, 143, 145, 146, 147, 156, 157, 159, 161, 162, 164, 167, 169, 170, 171, 172, 173, 174, 175, 177, 178, 179, 181, 183, 185, 186, 189, 191, 192, 193, 196, 197, 201, 203, 208, 209, 212, 213, 215, 216, 217, 218, 220, 221, 223, 224, 225, 227, 232, 234, 236, 237, 238, 239, 242, 244, 245, 246, 248, 249, 250, 251, 255, 256, 257, 261, 264, 265, 266, 267, 268, 269, 270, 280, 283, 284, 286, 287], "actor": [0, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 42, 46, 48, 49, 51, 52, 53, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 72, 73, 74, 75, 76, 78, 79, 80, 81, 85, 87, 89, 94, 95, 97, 100, 102, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 125, 126, 129, 131, 132, 135, 136, 137, 150, 153, 155, 156, 157, 159, 162, 163, 164, 166, 167, 169, 172, 175, 177, 179, 180, 181, 182, 183, 186, 187, 189, 192, 193, 195, 196, 201, 204, 209, 210, 211, 213, 214, 215, 217, 220, 222, 229, 231, 234, 235, 236, 237, 239, 240, 241, 242, 243, 245, 250, 251, 256, 258, 260, 261, 262, 265, 268, 269, 270, 271, 273, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286], "slice": [0, 22, 27, 81, 84, 240, 248, 249], "data": [0, 3, 4, 5, 6, 7, 8, 12, 13, 14, 17, 18, 22, 25, 27, 32, 33, 34, 36, 39, 40, 41, 42, 43, 44, 46, 47, 48, 49, 50, 51, 53, 58, 59, 68, 70, 79, 80, 81, 85, 96, 125, 128, 132, 140, 141, 144, 145, 150, 162, 163, 164, 168, 169, 170, 171, 175, 176, 179, 183, 184, 187, 195, 196, 198, 210, 216, 217, 218, 219, 225, 231, 233, 234, 236, 240, 243, 246, 248, 250, 251, 256, 257, 259, 261, 265, 266, 269, 271, 280, 286, 288], "slicer": [0, 13, 22, 27, 81, 129, 271, 277, 278, 280, 283], "us": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 12, 13, 14, 15, 16, 17, 18, 20, 21, 22, 23, 24, 25, 26, 27, 29, 30, 31, 32, 33, 34, 37, 38, 39, 41, 43, 44, 47, 48, 49, 50, 51, 52, 54, 55, 56, 57, 58, 59, 61, 62, 63, 64, 65, 66, 67, 69, 70, 72, 73, 74, 75, 76, 77, 78, 79, 84, 85, 87, 88, 98, 100, 103, 105, 106, 107, 108, 109, 115, 116, 117, 119, 120, 122, 125, 126, 130, 131, 132, 133, 134, 135, 136, 137, 138, 140, 141, 142, 143, 146, 148, 149, 150, 152, 154, 156, 158, 160, 161, 162, 163, 164, 165, 166, 169, 170, 171, 172, 173, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 193, 195, 196, 197, 198, 200, 201, 202, 204, 206, 207, 208, 209, 210, 211, 214, 215, 216, 217, 218, 222, 224, 225, 227, 229, 232, 233, 234, 236, 237, 238, 239, 240, 241, 242, 243, 245, 246, 248, 249, 250, 251, 252, 253, 255, 256, 257, 259, 260, 261, 262, 265, 266, 267, 268, 269, 270, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288], "normal": [0, 8, 12, 16, 24, 27, 31, 34, 65, 66, 68, 80, 81, 143, 162, 172, 175, 188, 198, 216, 218, 245, 248, 249, 251, 256, 260, 265, 268, 269, 270, 280], "your": [0, 3, 14, 18, 65, 78, 80, 81, 87, 89, 90, 91, 92, 94, 95, 96, 97, 113, 123, 124, 128, 129, 145, 157, 164, 167, 168, 171, 203, 219, 220, 233, 236, 251, 261, 265, 266, 270, 287], "sphere": [0, 4, 7, 9, 14, 19, 20, 27, 31, 32, 33, 34, 38, 42, 53, 56, 58, 60, 61, 62, 63, 64, 68, 69, 72, 73, 76, 78, 79, 80, 81, 84, 107, 115, 116, 121, 125, 132, 136, 163, 164, 170, 172, 196, 217, 218, 240, 249, 261, 264, 267, 271, 280, 283, 285, 286], "textur": [0, 4, 5, 11, 14, 34, 35, 81, 97, 100, 119, 125, 152, 158, 162, 164, 165, 166, 169, 175, 179, 184, 218, 224, 227, 230, 233, 236, 239, 242, 246, 253, 256, 257, 269, 271, 280, 281, 286], "visual": [0, 3, 8, 12, 13, 14, 16, 18, 21, 27, 28, 34, 35, 40, 41, 42, 46, 51, 53, 54, 61, 64, 65, 66, 67, 68, 73, 75, 76, 78, 80, 81, 84, 88, 89, 90, 91, 92, 94, 95, 96, 97, 106, 113, 116, 117, 123, 125, 128, 129, 130, 135, 141, 142, 145, 146, 148, 157, 162, 163, 164, 166, 167, 168, 171, 172, 177, 178, 189, 208, 212, 216, 217, 219, 220, 222, 223, 225, 228, 231, 237, 240, 246, 247, 248, 249, 250, 261, 270, 277, 280, 283, 284], "gltf": [0, 81, 88, 170, 172, 181, 189, 190, 192, 193, 195, 220, 250, 253, 271, 286], "file": [0, 10, 11, 14, 32, 33, 79, 81, 84, 87, 88, 118, 124, 126, 132, 135, 139, 170, 171, 175, 179, 181, 184, 190, 191, 207, 247, 248, 250, 253, 255, 256, 257, 263, 264, 265, 268, 270, 280, 283, 284, 286, 287], "furi": [0, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43, 44, 45, 46, 47, 49, 50, 51, 52, 53, 55, 56, 57, 58, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 81, 85, 87, 88, 96, 98, 99, 100, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 114, 115, 116, 117, 118, 119, 120, 122, 124, 125, 126, 127, 128, 130, 131, 132, 133, 136, 137, 145, 148, 151, 152, 155, 156, 159, 161, 162, 163, 164, 169, 170, 171, 172, 173, 174, 175, 177, 181, 191, 192, 197, 198, 208, 215, 216, 217, 218, 222, 224, 230, 232, 235, 237, 239, 242, 243, 245, 246, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 273, 277, 278, 280, 281, 282, 283, 284, 285, 286, 287, 288], "cone": [0, 16, 42, 57, 60, 81, 94, 218, 228, 231, 234, 264, 271, 278, 281, 286], "arrow": [0, 16, 26, 30, 42, 54, 58, 81, 95, 208, 256, 264, 271, 278, 279, 280, 286], "morph": [0, 81, 187, 190, 210, 217, 256, 286], "anim": [0, 4, 6, 16, 19, 21, 24, 30, 37, 53, 55, 56, 62, 88, 89, 90, 91, 92, 94, 95, 96, 97, 113, 123, 128, 129, 145, 147, 148, 150, 157, 160, 162, 163, 164, 167, 168, 169, 175, 177, 180, 184, 186, 187, 189, 192, 196, 203, 204, 205, 208, 214, 215, 216, 217, 219, 220, 256, 270, 271, 280, 281, 283, 285, 286], "export": [0, 81, 87, 175, 181, 184, 286], "scene": [0, 1, 2, 3, 4, 5, 6, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 65, 66, 67, 68, 69, 70, 72, 73, 74, 75, 76, 78, 79, 80, 81, 85, 92, 110, 122, 125, 134, 137, 140, 162, 175, 179, 183, 189, 202, 204, 215, 217, 236, 245, 248, 250, 256, 258, 262, 268, 271, 277, 285, 286], "skelet": [0, 81, 112, 126, 187, 190, 195, 217], "spiki": [0, 81, 280], "surfac": [0, 3, 4, 16, 18, 21, 23, 65, 68, 69, 81, 125, 132, 141, 147, 150, 153, 156, 159, 161, 163, 171, 175, 218, 251, 269, 271, 277, 278, 284, 285], "select": [0, 10, 29, 43, 50, 81, 99, 112, 126, 152, 157, 164, 170, 171, 173, 174, 176, 182, 185, 188, 206, 207, 209, 216, 257, 260, 261, 262, 268, 269, 271, 284], "multipl": [0, 6, 9, 13, 54, 62, 67, 81, 88, 95, 97, 102, 104, 109, 112, 113, 115, 120, 122, 125, 126, 138, 143, 146, 150, 152, 157, 163, 166, 175, 181, 182, 183, 190, 203, 208, 210, 214, 217, 218, 220, 248, 249, 250, 255, 261, 262, 268, 270, 279, 280, 281, 284, 286], "object": [0, 4, 5, 6, 8, 10, 12, 13, 14, 16, 22, 23, 24, 25, 26, 30, 34, 35, 36, 37, 42, 44, 56, 61, 65, 66, 68, 72, 73, 74, 75, 76, 77, 78, 81, 85, 92, 101, 103, 105, 107, 109, 110, 111, 114, 115, 118, 120, 131, 133, 137, 139, 141, 142, 145, 152, 157, 166, 175, 177, 183, 184, 185, 188, 224, 225, 227, 233, 236, 242, 246, 248, 250, 251, 252, 253, 254, 255, 256, 258, 259, 261, 262, 265, 266, 267, 268, 269, 270, 277, 283, 284, 286], "multithread": [0, 81, 88, 166, 270, 286], "exampl": [0, 1, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 65, 66, 67, 68, 69, 70, 72, 73, 74, 75, 76, 78, 79, 80, 81, 87, 94, 95, 97, 98, 100, 107, 112, 113, 119, 120, 123, 125, 126, 127, 130, 133, 135, 137, 138, 139, 140, 142, 143, 145, 152, 158, 161, 163, 164, 166, 175, 181, 187, 192, 193, 199, 201, 209, 239, 241, 245, 248, 250, 251, 253, 254, 255, 262, 264, 265, 266, 267, 269, 270, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287], "simpl": [0, 6, 17, 19, 20, 23, 27, 36, 38, 49, 69, 77, 81, 105, 107, 112, 124, 133, 163, 164, 171, 172, 173, 184, 187, 190, 206, 208, 210, 214, 224, 228, 230, 233, 245, 250, 251, 256, 261, 267, 269, 270, 286], "pick": [0, 11, 13, 32, 81, 113, 122, 125, 170, 268, 271, 281], "earth": [0, 3, 18, 81, 171, 281, 286], "coordin": [0, 10, 22, 23, 24, 25, 26, 30, 37, 69, 81, 84, 103, 104, 107, 132, 138, 143, 162, 163, 169, 175, 239, 248, 249, 251, 256, 258, 261, 262, 264, 267, 268, 269, 281, 286], "convers": [0, 81, 84, 175, 188, 251], "volum": [0, 27, 81, 161, 248, 249, 270, 271], "solar": [0, 81, 281, 285], "system": [0, 16, 22, 59, 78, 80, 81, 84, 103, 107, 113, 119, 124, 125, 127, 130, 136, 145, 148, 149, 162, 164, 165, 166, 169, 171, 173, 175, 193, 197, 210, 217, 220, 232, 238, 248, 266, 281, 282, 283, 285, 286], "go": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 65, 66, 67, 68, 69, 70, 72, 73, 74, 75, 76, 78, 79, 80, 81, 85, 87, 88, 89, 90, 91, 92, 94, 95, 97, 98, 100, 102, 105, 112, 113, 123, 129, 132, 143, 152, 157, 160, 161, 167, 169, 171, 172, 176, 202, 220, 222, 228, 233, 234, 236, 240, 268, 270, 287], "end": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 65, 66, 67, 68, 69, 70, 72, 73, 74, 75, 76, 78, 79, 80, 87, 109, 118, 122, 126, 127, 132, 152, 160, 161, 169, 170, 171, 175, 178, 184, 216, 232, 233, 235, 237, 242, 250, 264, 265], "download": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 65, 66, 67, 68, 69, 70, 72, 73, 74, 75, 76, 78, 79, 80, 81, 85, 171, 175, 179, 181, 184, 218, 251, 253, 286], "full": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 65, 66, 67, 68, 69, 70, 72, 73, 74, 75, 76, 78, 79, 80, 143, 176, 218, 232, 248, 265, 272, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287], "code": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 65, 66, 67, 68, 69, 70, 72, 73, 74, 75, 76, 78, 79, 80, 81, 84, 92, 94, 95, 97, 102, 104, 105, 108, 109, 111, 112, 113, 114, 118, 123, 124, 127, 130, 131, 133, 142, 149, 151, 158, 160, 166, 170, 171, 172, 174, 175, 183, 184, 199, 202, 207, 209, 211, 212, 214, 215, 221, 222, 224, 227, 228, 232, 233, 239, 240, 243, 245, 248, 251, 265, 266, 267, 268, 270, 277, 278, 279, 280, 281, 282, 283, 284, 286, 287, 288], "thi": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 22, 23, 24, 25, 27, 28, 29, 30, 31, 32, 33, 34, 35, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 53, 54, 55, 56, 58, 59, 61, 62, 63, 65, 66, 67, 68, 69, 70, 72, 73, 74, 75, 76, 78, 79, 80, 84, 87, 88, 89, 90, 91, 92, 94, 95, 97, 98, 99, 113, 123, 125, 126, 129, 132, 133, 139, 145, 157, 162, 163, 164, 167, 169, 170, 171, 216, 217, 218, 220, 221, 247, 248, 250, 251, 252, 253, 254, 255, 261, 263, 264, 265, 266, 267, 268, 269, 270, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288], "import": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 65, 66, 67, 68, 69, 70, 72, 73, 74, 75, 76, 78, 79, 80, 85, 87, 133, 137, 139, 140, 143, 146, 162, 172, 184, 187, 208, 222, 233, 239, 242, 245, 248, 251, 255, 264, 265, 267, 269, 270, 285, 286, 287], "numpi": [1, 2, 3, 4, 7, 9, 10, 11, 14, 15, 16, 17, 19, 20, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 35, 37, 41, 42, 46, 48, 49, 51, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 65, 66, 67, 68, 69, 72, 73, 74, 75, 76, 78, 79, 80, 84, 85, 87, 88, 133, 150, 161, 169, 248, 251, 252, 256, 264, 265, 267, 269, 270, 280, 285, 286, 287], "np": [1, 2, 3, 4, 7, 9, 10, 11, 14, 15, 16, 17, 19, 20, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 35, 37, 42, 46, 48, 49, 51, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 65, 66, 67, 68, 69, 72, 73, 74, 75, 76, 78, 79, 80, 84, 85, 109, 118, 133, 205, 248, 250, 251, 256, 264, 267, 269, 270], "from": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 53, 54, 55, 57, 58, 59, 60, 61, 62, 63, 65, 66, 67, 68, 69, 70, 72, 73, 74, 75, 76, 78, 79, 80, 84, 85, 87, 88, 89, 97, 98, 99, 101, 103, 107, 109, 110, 112, 115, 118, 120, 121, 124, 126, 127, 129, 131, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 145, 146, 149, 152, 158, 160, 162, 164, 166, 169, 170, 171, 172, 174, 175, 176, 178, 179, 181, 187, 188, 190, 192, 193, 195, 197, 204, 205, 208, 212, 214, 215, 216, 217, 220, 226, 229, 233, 234, 236, 238, 239, 241, 242, 244, 245, 246, 248, 249, 250, 251, 252, 253, 255, 256, 257, 258, 259, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 273, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288], "window": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 65, 66, 67, 68, 69, 70, 72, 73, 74, 75, 76, 78, 79, 80, 81, 84, 85, 87, 88, 89, 91, 92, 95, 102, 126, 131, 134, 140, 143, 145, 146, 149, 162, 164, 165, 166, 169, 220, 227, 233, 236, 242, 245, 246, 248, 250, 265, 266, 268, 271, 273, 276, 277, 278, 279, 280, 281, 284, 285, 286], "first": [1, 2, 9, 13, 14, 15, 19, 22, 23, 25, 27, 28, 29, 32, 33, 36, 37, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 55, 56, 57, 58, 59, 60, 61, 65, 68, 70, 72, 73, 74, 75, 76, 79, 84, 87, 105, 107, 109, 110, 120, 125, 126, 130, 132, 133, 136, 139, 143, 146, 160, 161, 162, 163, 164, 166, 170, 171, 172, 173, 181, 182, 188, 192, 196, 197, 209, 210, 217, 218, 221, 222, 224, 225, 227, 228, 233, 236, 237, 239, 242, 243, 245, 248, 250, 251, 255, 261, 265, 268, 269, 286, 287], "thing": [1, 2, 15, 65, 84, 112, 120, 133, 139, 143, 146, 149, 152, 158, 171, 173, 176, 182, 191, 197, 206, 212, 216, 222, 224, 225, 227, 228, 236, 245, 285], "you": [1, 2, 5, 8, 12, 13, 15, 16, 18, 20, 22, 25, 27, 28, 29, 31, 32, 33, 36, 49, 53, 54, 59, 62, 65, 68, 78, 79, 80, 85, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 113, 123, 126, 128, 129, 131, 133, 134, 137, 139, 140, 143, 145, 146, 149, 152, 155, 157, 158, 160, 164, 167, 168, 171, 216, 219, 220, 227, 230, 233, 239, 245, 248, 251, 252, 253, 265, 266, 269, 270, 287], "have": [1, 2, 13, 15, 22, 25, 27, 29, 34, 37, 39, 42, 46, 47, 49, 50, 51, 56, 57, 65, 66, 68, 69, 70, 78, 80, 84, 87, 88, 98, 99, 101, 103, 104, 105, 106, 107, 110, 112, 114, 115, 116, 120, 121, 124, 126, 127, 130, 131, 132, 133, 134, 135, 139, 140, 143, 148, 152, 155, 156, 158, 160, 162, 164, 166, 169, 171, 172, 174, 180, 183, 184, 196, 204, 206, 208, 209, 211, 212, 213, 216, 217, 218, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 236, 239, 240, 242, 243, 245, 248, 249, 250, 251, 254, 255, 258, 261, 263, 265, 267, 268, 269, 278, 280, 287], "specifi": [1, 2, 3, 7, 15, 16, 39, 49, 59, 70, 103, 126, 227, 248, 250, 253, 255, 258, 259, 260, 261, 265, 268, 269, 270], "center": [1, 2, 3, 4, 7, 9, 10, 11, 14, 15, 16, 19, 20, 22, 24, 26, 27, 28, 29, 30, 31, 32, 33, 39, 42, 43, 46, 47, 48, 49, 51, 54, 60, 65, 66, 67, 68, 69, 72, 73, 74, 75, 76, 78, 79, 80, 84, 85, 109, 192, 193, 202, 212, 216, 217, 241, 245, 248, 249, 264, 267, 268, 269, 270, 271, 283, 286], "direct": [1, 2, 10, 11, 16, 26, 30, 33, 34, 36, 42, 48, 49, 51, 57, 65, 68, 69, 72, 73, 74, 75, 76, 84, 85, 114, 136, 137, 145, 158, 162, 164, 201, 217, 225, 248, 249, 250, 251, 258, 260, 264, 267, 269, 270, 278, 279, 280, 286, 288], "color": [1, 2, 3, 4, 7, 9, 10, 11, 13, 14, 15, 16, 17, 19, 20, 22, 23, 24, 26, 27, 28, 29, 30, 31, 32, 33, 34, 36, 37, 38, 39, 43, 45, 47, 49, 51, 52, 53, 54, 57, 60, 62, 64, 65, 66, 67, 68, 69, 72, 73, 74, 75, 76, 78, 79, 80, 81, 84, 85, 91, 105, 112, 115, 120, 123, 163, 166, 172, 175, 179, 180, 182, 183, 189, 201, 207, 209, 214, 217, 218, 224, 225, 227, 230, 233, 236, 248, 249, 250, 251, 256, 260, 261, 264, 265, 268, 269, 270, 271, 276, 277, 278, 279, 280, 281, 282, 286], "": [1, 3, 4, 8, 9, 10, 11, 12, 13, 14, 16, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 37, 39, 40, 41, 42, 43, 47, 49, 54, 56, 57, 59, 62, 65, 66, 67, 68, 70, 74, 76, 78, 79, 84, 85, 87, 98, 99, 103, 105, 109, 110, 112, 118, 120, 121, 125, 126, 130, 131, 133, 134, 136, 137, 138, 139, 140, 143, 145, 146, 148, 149, 151, 152, 154, 155, 156, 157, 158, 161, 162, 163, 164, 166, 169, 170, 171, 172, 175, 176, 179, 180, 181, 184, 187, 189, 192, 195, 197, 198, 199, 202, 203, 204, 208, 210, 211, 213, 214, 215, 216, 217, 221, 223, 224, 232, 248, 250, 251, 252, 260, 261, 262, 263, 265, 266, 267, 268, 269, 270, 283, 284, 285, 286, 287], "zero": [1, 2, 7, 10, 11, 15, 16, 29, 33, 36, 37, 56, 59, 62, 73, 74, 75, 76, 194, 216, 251, 266, 286], "3": [1, 2, 3, 4, 7, 9, 10, 11, 13, 14, 15, 17, 19, 20, 22, 24, 25, 26, 29, 30, 31, 33, 34, 37, 43, 45, 48, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 65, 66, 68, 69, 73, 74, 75, 76, 78, 80, 84, 85, 87, 88, 109, 115, 118, 125, 126, 133, 134, 139, 145, 162, 163, 164, 169, 170, 175, 182, 216, 217, 218, 239, 248, 249, 250, 251, 253, 255, 257, 258, 260, 261, 264, 265, 266, 267, 268, 269, 270, 272, 277, 279, 281, 286, 287], "ident": [1, 2, 208, 248, 256], "i": [1, 2, 3, 4, 9, 10, 11, 13, 14, 15, 16, 17, 20, 21, 22, 23, 24, 25, 26, 27, 29, 30, 31, 32, 33, 34, 35, 36, 37, 41, 42, 43, 45, 48, 49, 51, 53, 54, 55, 56, 61, 63, 65, 66, 67, 68, 69, 70, 73, 75, 76, 78, 79, 80, 81, 84, 85, 87, 88, 89, 90, 91, 92, 94, 95, 96, 97, 113, 123, 125, 126, 128, 129, 133, 139, 157, 162, 163, 164, 167, 168, 170, 171, 216, 217, 218, 219, 220, 221, 224, 227, 230, 236, 242, 245, 246, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 263, 264, 265, 266, 267, 268, 269, 270, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288], "same": [1, 3, 13, 17, 20, 25, 29, 53, 55, 62, 63, 73, 74, 76, 84, 98, 101, 102, 103, 105, 107, 111, 112, 117, 125, 132, 133, 134, 135, 139, 143, 145, 146, 147, 152, 164, 166, 170, 171, 172, 173, 181, 182, 183, 185, 194, 196, 201, 202, 203, 205, 208, 217, 224, 228, 236, 239, 245, 248, 249, 250, 251, 255, 258, 261, 265, 266, 269], "x": [1, 4, 13, 14, 22, 23, 24, 26, 27, 30, 31, 34, 78, 80, 84, 87, 109, 136, 139, 158, 160, 162, 163, 169, 175, 192, 248, 249, 250, 251, 253, 258, 260, 261, 262, 266, 267, 268, 269, 270, 286, 287], "y": [1, 4, 13, 14, 22, 23, 24, 26, 27, 30, 34, 57, 84, 109, 143, 158, 160, 162, 163, 169, 192, 248, 249, 250, 253, 258, 260, 261, 262, 266, 267, 268, 269, 270, 286, 287], "z": [1, 4, 13, 22, 23, 24, 26, 27, 30, 34, 37, 65, 84, 109, 158, 160, 162, 163, 169, 192, 204, 248, 249, 250, 253, 258, 260, 261, 267, 269, 286, 287], "dir": [1, 2, 68, 69, 248], "scale": [1, 3, 4, 9, 10, 11, 13, 14, 20, 23, 24, 27, 28, 29, 31, 42, 48, 49, 51, 53, 54, 55, 57, 58, 59, 60, 62, 63, 65, 66, 67, 68, 69, 73, 74, 75, 76, 79, 84, 105, 114, 143, 169, 172, 191, 193, 195, 201, 203, 204, 207, 209, 217, 218, 225, 229, 238, 239, 244, 245, 248, 249, 250, 256, 261, 264, 268, 270, 271, 282, 283], "arrai": [1, 2, 3, 4, 7, 10, 11, 15, 17, 20, 24, 26, 28, 29, 30, 32, 33, 37, 41, 42, 46, 48, 49, 51, 53, 54, 55, 56, 57, 58, 60, 61, 62, 63, 65, 67, 68, 69, 72, 73, 74, 75, 76, 78, 79, 84, 109, 133, 139, 150, 161, 184, 242, 248, 249, 250, 251, 252, 256, 257, 261, 265, 266, 267, 268, 269, 270, 280, 282, 285], "2": [1, 3, 4, 7, 10, 11, 13, 14, 16, 17, 20, 22, 23, 24, 25, 26, 27, 28, 29, 30, 32, 33, 34, 36, 37, 42, 49, 53, 54, 55, 56, 57, 58, 60, 61, 62, 63, 65, 66, 67, 68, 70, 73, 74, 75, 76, 84, 85, 87, 97, 105, 109, 111, 122, 125, 126, 135, 136, 139, 145, 162, 163, 164, 170, 171, 216, 217, 218, 220, 248, 249, 250, 251, 253, 255, 256, 258, 260, 264, 266, 267, 268, 269, 270, 272, 274, 278, 280, 281, 283, 285, 286, 287], "1": [1, 2, 3, 4, 5, 7, 9, 10, 11, 13, 14, 15, 16, 17, 20, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43, 44, 46, 47, 49, 51, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 65, 66, 67, 68, 69, 70, 72, 73, 74, 75, 76, 78, 79, 80, 84, 85, 87, 109, 122, 125, 126, 133, 135, 136, 139, 145, 157, 162, 163, 164, 167, 171, 184, 201, 204, 216, 217, 218, 230, 233, 248, 249, 250, 251, 253, 255, 256, 257, 258, 260, 261, 264, 265, 266, 267, 268, 269, 270, 272, 277, 281, 283, 285, 286, 287], "6": [1, 10, 11, 14, 17, 20, 22, 23, 24, 26, 29, 34, 36, 43, 45, 48, 53, 54, 55, 56, 57, 58, 59, 60, 61, 63, 65, 68, 72, 73, 74, 75, 76, 84, 116, 125, 126, 145, 162, 163, 164, 216, 217, 218, 248, 250, 257, 261, 266, 268, 269, 272, 277, 283, 286, 287], "5": [1, 2, 3, 4, 9, 10, 11, 13, 14, 15, 17, 19, 20, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 40, 41, 42, 43, 45, 48, 49, 51, 53, 54, 55, 57, 58, 60, 61, 63, 65, 66, 67, 68, 70, 72, 73, 74, 75, 76, 78, 79, 80, 84, 85, 87, 113, 125, 126, 134, 136, 139, 145, 162, 163, 164, 171, 216, 217, 218, 239, 248, 250, 251, 256, 260, 261, 264, 266, 267, 268, 269, 272, 277, 281, 286], "The": [1, 2, 3, 9, 11, 13, 14, 15, 16, 19, 22, 23, 24, 26, 27, 28, 29, 30, 32, 33, 34, 35, 36, 45, 49, 53, 55, 56, 57, 58, 59, 65, 66, 67, 68, 70, 76, 80, 84, 85, 87, 88, 89, 90, 91, 92, 94, 95, 97, 98, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 129, 130, 131, 133, 134, 135, 136, 137, 138, 139, 140, 142, 143, 146, 149, 152, 156, 157, 158, 159, 160, 162, 163, 164, 166, 167, 173, 175, 178, 179, 181, 182, 188, 189, 194, 196, 203, 209, 214, 216, 217, 218, 220, 225, 226, 229, 230, 232, 234, 236, 237, 239, 241, 242, 244, 248, 249, 250, 251, 252, 253, 254, 255, 256, 258, 261, 262, 264, 265, 266, 267, 268, 269, 270, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287], "below": [1, 2, 3, 13, 15, 21, 56, 57, 58, 81, 93, 100, 102, 104, 106, 108, 111, 114, 117, 119, 122, 127, 131, 133, 134, 137, 139, 140, 142, 143, 145, 146, 148, 149, 152, 155, 158, 160, 162, 164, 176, 178, 180, 181, 183, 185, 188, 191, 194, 197, 200, 202, 207, 209, 216, 224, 227, 230, 234, 236, 239, 242, 245, 251, 270], "gener": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 65, 66, 67, 68, 69, 70, 72, 73, 74, 75, 76, 78, 79, 80, 81, 84, 87, 88, 108, 125, 132, 133, 135, 138, 139, 152, 156, 159, 161, 162, 163, 164, 166, 171, 173, 177, 181, 183, 186, 212, 217, 230, 233, 234, 237, 239, 243, 248, 250, 251, 253, 255, 256, 261, 264, 266, 269, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287], "repeat": [1, 2, 15, 20, 23, 24, 26, 30, 33, 37, 54, 68, 149, 207, 218, 264, 268, 270, 286], "primit": [1, 2, 15, 16, 22, 29, 37, 68, 69, 79, 97, 100, 104, 113, 125, 129, 157, 170, 175, 177, 179, 180, 187, 196, 214, 217, 218, 248, 256, 269, 271, 280, 281, 282, 283, 284, 285, 286], "arrow_actor": [1, 16, 26, 30, 248], "what": [1, 2, 10, 13, 14, 22, 29, 65, 85, 133, 139, 163, 164, 170, 171, 216, 227, 230, 233, 236, 245, 252, 270], "we": [1, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 24, 25, 27, 28, 29, 32, 33, 34, 36, 37, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 65, 66, 67, 68, 69, 70, 72, 73, 74, 75, 76, 78, 79, 80, 84, 85, 87, 88, 89, 90, 91, 92, 94, 95, 97, 99, 100, 105, 107, 108, 109, 110, 111, 113, 115, 116, 118, 122, 123, 124, 126, 129, 130, 131, 132, 133, 136, 137, 139, 142, 145, 152, 156, 157, 160, 162, 164, 166, 167, 171, 172, 173, 174, 175, 177, 178, 179, 180, 181, 184, 188, 190, 191, 192, 193, 195, 196, 197, 202, 203, 204, 205, 206, 207, 208, 209, 210, 212, 214, 216, 217, 218, 220, 221, 222, 226, 227, 228, 229, 230, 232, 233, 235, 236, 237, 238, 241, 243, 244, 245, 248, 251, 256, 263, 264, 267, 268, 270, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287], "did": [1, 2, 169, 170, 267], "time": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 65, 66, 67, 68, 69, 70, 72, 73, 74, 75, 76, 78, 79, 80, 84, 100, 110, 111, 118, 127, 132, 133, 139, 140, 141, 142, 143, 145, 146, 149, 154, 159, 161, 162, 164, 165, 169, 170, 171, 172, 175, 176, 177, 180, 183, 184, 185, 187, 188, 189, 191, 196, 197, 203, 204, 206, 209, 212, 215, 216, 217, 224, 226, 228, 229, 230, 232, 233, 235, 236, 238, 239, 242, 244, 245, 246, 248, 250, 251, 252, 266, 268, 270, 286, 287], "random": [1, 2, 4, 9, 11, 19, 20, 24, 25, 31, 32, 33, 54, 69, 73, 74, 75, 76, 79, 80, 84, 85, 236, 242, 248, 251, 267, 269, 270], "cen2": [1, 2, 15], "rand": [1, 2, 4, 11, 19, 20, 24, 25, 32, 33, 69, 73, 74, 75, 76, 79, 84, 85, 248, 269, 270], "dir2": [1, 2], "cols2": [1, 2, 15], "arrow_actor2": 1, "ad": [1, 2, 7, 10, 11, 12, 13, 15, 23, 25, 28, 32, 33, 34, 41, 44, 49, 53, 55, 56, 57, 58, 59, 60, 61, 62, 63, 73, 74, 75, 85, 89, 90, 91, 92, 94, 95, 97, 100, 102, 103, 104, 106, 108, 109, 111, 112, 113, 114, 116, 123, 125, 126, 129, 131, 132, 133, 134, 137, 143, 146, 149, 150, 152, 153, 154, 155, 156, 157, 158, 159, 160, 162, 163, 164, 167, 169, 171, 172, 174, 175, 177, 178, 179, 183, 184, 185, 187, 188, 189, 190, 191, 192, 193, 194, 200, 201, 202, 203, 204, 206, 211, 213, 214, 216, 217, 218, 220, 227, 229, 245, 248, 250, 251, 261, 268, 270, 277, 280, 281, 282, 283, 284, 285, 286], "our": [1, 2, 15, 22, 27, 29, 32, 33, 34, 37, 54, 59, 62, 65, 66, 67, 68, 70, 76, 84, 88, 89, 90, 91, 92, 94, 95, 96, 97, 99, 113, 118, 123, 128, 129, 133, 136, 157, 164, 167, 168, 171, 173, 190, 193, 205, 208, 210, 219, 220, 221, 229, 232, 255, 261, 264, 285, 287], "add": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 53, 54, 55, 57, 59, 60, 61, 62, 65, 66, 67, 68, 69, 70, 72, 73, 74, 75, 76, 78, 79, 80, 84, 85, 91, 92, 94, 95, 102, 103, 104, 105, 106, 108, 109, 120, 121, 131, 134, 137, 140, 143, 146, 147, 155, 158, 160, 162, 164, 169, 173, 175, 178, 179, 180, 182, 183, 186, 188, 189, 192, 207, 209, 210, 211, 213, 217, 218, 237, 245, 248, 249, 250, 256, 261, 265, 268, 269, 270, 271, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287], "interact": [1, 2, 5, 6, 7, 8, 9, 10, 11, 12, 13, 15, 18, 20, 21, 23, 25, 26, 27, 28, 29, 31, 32, 36, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 65, 66, 67, 68, 69, 70, 72, 73, 74, 75, 76, 77, 79, 80, 81, 88, 98, 99, 103, 133, 139, 145, 150, 164, 173, 182, 189, 216, 245, 251, 266, 268, 270, 277], "fals": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 25, 26, 27, 28, 29, 31, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 65, 66, 67, 68, 69, 70, 72, 73, 74, 75, 76, 78, 79, 80, 84, 85, 136, 139, 149, 227, 233, 247, 248, 249, 250, 252, 254, 255, 256, 257, 261, 264, 265, 266, 268, 269, 270, 286], "size": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 65, 66, 67, 68, 69, 70, 72, 73, 74, 75, 76, 78, 79, 80, 84, 85, 101, 103, 105, 107, 112, 120, 126, 131, 133, 139, 140, 142, 143, 152, 162, 171, 173, 176, 184, 223, 239, 241, 244, 248, 249, 250, 251, 253, 256, 258, 264, 266, 268, 269, 270, 271, 279, 282], "600": [1, 2, 13, 15, 17, 18, 23, 24, 25, 26, 28, 30, 31, 32, 35, 36, 37, 42, 45, 47, 48, 65, 66, 67, 68, 72, 175, 179, 181, 218, 248, 286], "record": [1, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 65, 66, 67, 68, 69, 70, 72, 73, 74, 75, 76, 78, 79, 80, 143, 146, 148, 149, 152, 164, 204, 211, 217, 250, 255, 271, 278, 286], "out_path": [1, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 65, 66, 67, 68, 69, 70, 72, 73, 74, 75, 76, 78, 79, 80, 270], "viz_arrow": 1, "png": [1, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 65, 66, 67, 68, 69, 70, 72, 73, 74, 75, 76, 78, 79, 80, 88, 184, 252, 253, 257, 268, 270], "total": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 65, 66, 67, 68, 69, 70, 72, 73, 74, 75, 76, 78, 79, 80, 84, 143, 208, 251, 261, 266, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286], "run": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 65, 66, 67, 68, 69, 70, 72, 73, 74, 75, 76, 78, 79, 80, 84, 89, 90, 91, 92, 94, 95, 97, 113, 123, 129, 133, 134, 157, 166, 167, 169, 171, 181, 187, 220, 222, 245, 266, 267, 280, 284, 286, 287], "script": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 65, 66, 67, 68, 69, 70, 72, 73, 74, 75, 76, 78, 79, 80, 87, 179, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287], "0": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43, 44, 45, 46, 47, 49, 50, 51, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 65, 66, 67, 68, 69, 70, 72, 73, 74, 75, 76, 78, 79, 80, 83, 84, 85, 87, 109, 116, 134, 149, 162, 169, 175, 184, 208, 216, 217, 218, 224, 227, 230, 233, 244, 245, 248, 249, 250, 251, 253, 255, 256, 257, 258, 260, 261, 262, 264, 265, 266, 267, 268, 269, 270, 272, 280, 282, 284, 287], "minut": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 65, 66, 67, 68, 69, 70, 72, 73, 74, 75, 76, 78, 79, 80, 171], "000": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 65, 66, 67, 68, 69, 70, 72, 73, 74, 75, 76, 78, 79, 80, 116, 251], "second": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 65, 66, 67, 68, 69, 70, 72, 73, 74, 75, 76, 78, 79, 80, 84, 87, 101, 105, 107, 109, 118, 125, 126, 130, 135, 145, 160, 162, 163, 164, 166, 170, 176, 196, 209, 224, 234, 239, 242, 245, 250, 251, 261, 266, 270, 287], "python": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 65, 66, 67, 68, 69, 70, 72, 73, 74, 75, 76, 78, 79, 80, 81, 87, 88, 89, 90, 91, 92, 94, 95, 96, 97, 98, 99, 113, 123, 125, 126, 128, 129, 130, 133, 135, 141, 142, 150, 152, 156, 157, 158, 160, 162, 163, 164, 167, 168, 169, 170, 171, 175, 180, 183, 184, 216, 217, 218, 219, 220, 224, 251, 257, 261, 266, 270, 274, 277, 280, 281, 282, 283, 287, 288], "sourc": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 65, 66, 67, 68, 69, 70, 72, 73, 74, 75, 76, 78, 79, 80, 81, 88, 89, 90, 91, 92, 94, 95, 96, 97, 113, 121, 123, 125, 126, 128, 129, 133, 141, 145, 157, 164, 167, 168, 169, 171, 172, 219, 220, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 284, 287, 288], "py": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 65, 66, 67, 68, 69, 70, 72, 73, 74, 75, 76, 78, 79, 80, 87, 90, 133, 139, 142, 145, 152, 160, 166, 181, 189, 192, 207, 247, 248, 267, 275, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287], "jupyt": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 65, 66, 67, 68, 69, 70, 72, 73, 74, 75, 76, 78, 79, 80, 81, 88, 136, 145, 164, 266], "notebook": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 65, 66, 67, 68, 69, 70, 72, 73, 74, 75, 76, 78, 79, 80, 81, 145, 164], "ipynb": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 65, 66, 67, 68, 69, 70, 72, 73, 74, 75, 76, 78, 79, 80, 145], "galleri": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 65, 66, 67, 68, 69, 70, 72, 73, 74, 75, 76, 78, 79, 80, 81, 143, 164, 278], "sphinx": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 65, 66, 67, 68, 69, 70, 72, 73, 74, 75, 76, 78, 79, 80, 81, 164, 278, 286, 287], "cone_actor1": 2, "height": [2, 16, 26, 30, 42, 57, 60, 68, 74, 76, 84, 85, 101, 105, 112, 126, 139, 146, 163, 169, 224, 227, 233, 245, 248, 250, 258, 264, 266, 268, 269, 270, 271], "here": [2, 8, 9, 10, 11, 12, 13, 14, 16, 17, 20, 22, 23, 24, 25, 26, 27, 28, 29, 30, 36, 39, 45, 49, 54, 56, 59, 68, 69, 73, 75, 84, 85, 89, 90, 91, 92, 94, 95, 97, 100, 103, 105, 107, 109, 110, 112, 113, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 129, 133, 137, 139, 145, 157, 158, 162, 163, 164, 167, 171, 175, 176, 181, 184, 197, 199, 200, 203, 208, 209, 210, 216, 218, 220, 221, 223, 224, 225, 227, 233, 234, 236, 238, 243, 245, 251, 252, 267, 287], "re": [2, 8, 12, 15, 22, 28, 78, 79, 112, 139, 149, 171, 210, 268, 269, 277, 280, 281, 286, 287], "vtkconesourc": 2, "cone_actor2": 2, "use_primit": [2, 9, 15, 65, 248, 286], "viz_con": 2, "In": [3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 16, 18, 20, 22, 24, 25, 29, 30, 31, 34, 39, 49, 53, 56, 57, 58, 62, 65, 66, 67, 68, 69, 72, 73, 74, 75, 76, 78, 80, 84, 87, 102, 103, 107, 109, 118, 120, 121, 126, 127, 131, 132, 133, 135, 137, 138, 139, 140, 141, 143, 145, 146, 152, 160, 162, 163, 164, 166, 169, 170, 171, 174, 175, 188, 203, 222, 224, 227, 232, 236, 244, 245, 248, 263, 270, 285], "itertool": [3, 4, 14, 16, 19, 20, 23, 26, 28, 30, 37, 72, 73, 74, 75, 76, 84], "io": [3, 4, 14, 17, 18, 34, 41, 70, 85, 151, 162, 164, 184, 271, 280, 284], "util": [3, 4, 10, 11, 14, 16, 17, 20, 23, 24, 26, 27, 28, 29, 30, 33, 34, 36, 37, 42, 46, 60, 65, 66, 68, 70, 73, 74, 75, 76, 84, 85, 89, 91, 137, 160, 163, 173, 179, 218, 229, 232, 249, 271, 273, 276, 277, 280, 285, 286], "fetch_viz_model": [3, 70, 85, 271], "fetch_viz_textur": [3, 4, 14, 18, 271], "read_viz_model": [3, 70, 271], "read_viz_textur": [3, 4, 14, 18, 271], "creat": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 29, 30, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 48, 49, 50, 51, 53, 55, 56, 57, 59, 60, 61, 63, 64, 65, 68, 69, 70, 73, 74, 75, 76, 77, 80, 81, 85, 88, 93, 98, 99, 100, 101, 104, 105, 107, 109, 112, 115, 116, 117, 118, 121, 122, 125, 126, 127, 135, 136, 137, 138, 139, 140, 142, 143, 144, 145, 146, 149, 150, 152, 154, 156, 158, 159, 160, 161, 162, 163, 164, 166, 170, 171, 173, 174, 175, 176, 177, 179, 181, 182, 184, 185, 190, 191, 193, 194, 195, 197, 199, 202, 205, 206, 207, 208, 209, 212, 214, 216, 217, 218, 225, 227, 228, 229, 235, 236, 237, 238, 240, 241, 246, 248, 251, 253, 256, 259, 261, 265, 266, 268, 269, 270, 281, 282, 284, 286, 287], "start": [3, 4, 6, 8, 9, 10, 11, 12, 13, 14, 16, 18, 19, 20, 22, 23, 24, 26, 27, 28, 29, 30, 32, 33, 34, 35, 37, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 65, 66, 67, 68, 69, 70, 72, 73, 74, 75, 76, 78, 79, 80, 84, 87, 98, 99, 104, 105, 112, 116, 121, 122, 124, 125, 130, 131, 142, 148, 152, 153, 155, 166, 169, 170, 171, 173, 174, 175, 176, 178, 180, 182, 183, 184, 185, 191, 193, 194, 195, 196, 197, 200, 202, 203, 208, 209, 212, 214, 216, 222, 223, 225, 226, 227, 228, 229, 230, 231, 237, 238, 240, 243, 245, 251, 265, 266, 270, 271, 279, 280, 286], "next": [3, 4, 14, 16, 18, 19, 20, 23, 26, 28, 29, 30, 35, 36, 37, 48, 68, 72, 73, 74, 75, 76, 84, 87, 133, 149, 169, 170, 171, 227, 239, 242, 250, 251, 268, 286, 287], "load": [3, 4, 13, 14, 17, 18, 22, 27, 34, 65, 70, 139, 162, 167, 169, 171, 175, 184, 187, 190, 214, 237, 248, 256, 257, 264, 268, 271, 280, 285, 286], "each": [3, 4, 10, 11, 12, 14, 16, 20, 22, 24, 26, 27, 28, 29, 30, 31, 32, 33, 35, 37, 39, 49, 54, 55, 56, 57, 59, 61, 66, 67, 68, 73, 75, 76, 84, 98, 99, 107, 109, 110, 112, 118, 132, 133, 137, 139, 140, 145, 152, 160, 162, 166, 169, 171, 174, 175, 176, 180, 183, 188, 196, 203, 208, 210, 212, 216, 218, 223, 224, 239, 242, 245, 248, 249, 250, 251, 253, 256, 258, 261, 265, 266, 268, 269, 277], "For": [3, 5, 20, 23, 25, 26, 29, 36, 58, 59, 65, 66, 67, 68, 70, 78, 80, 84, 87, 89, 90, 91, 92, 94, 95, 97, 107, 113, 115, 123, 129, 133, 145, 150, 152, 155, 157, 164, 167, 174, 182, 185, 191, 209, 212, 213, 220, 222, 224, 225, 226, 228, 233, 236, 239, 242, 246, 250, 251, 253, 254, 255, 265, 267, 269, 270, 272], "one": [3, 9, 11, 14, 23, 28, 29, 32, 33, 34, 36, 49, 54, 55, 61, 63, 67, 68, 84, 103, 104, 105, 107, 115, 124, 133, 137, 138, 141, 145, 160, 162, 169, 170, 171, 176, 177, 192, 196, 210, 215, 217, 224, 225, 227, 228, 233, 237, 239, 242, 245, 246, 248, 249, 250, 251, 261, 264, 265, 266, 267, 268, 269, 270, 277, 280, 283, 286, 287], "anoth": [3, 19, 34, 58, 59, 61, 105, 117, 139, 140, 171, 179, 183, 188, 193, 198, 217, 218, 221, 228, 230, 233, 236, 239, 242, 245, 251, 287], "moon": [3, 171], "collect": [3, 159, 169, 216, 246, 266], "github": [3, 18, 56, 87, 88, 89, 90, 91, 92, 94, 95, 96, 97, 113, 123, 128, 129, 139, 151, 157, 160, 167, 168, 169, 170, 175, 179, 218, 219, 220, 253, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287], "load_imag": [3, 4, 14, 18, 41, 134, 271, 280], "imag": [3, 4, 13, 18, 22, 25, 29, 34, 35, 41, 96, 100, 128, 133, 134, 139, 142, 143, 148, 158, 160, 162, 164, 168, 175, 184, 218, 219, 234, 236, 245, 246, 248, 251, 253, 256, 257, 266, 268, 269, 270, 271, 277, 280, 284, 286], "earth_filenam": 3, "1_earth_8k": [3, 14, 18], "jpg": [3, 4, 14, 18, 253, 257, 268], "earth_imag": [3, 4], "texture_on_spher": [3, 4, 14, 18, 271], "earth_actor": [3, 4, 14], "newli": [3, 7, 14, 143, 172, 189, 218], "Then": [3, 14, 19, 22, 27, 32, 33, 34, 39, 47, 49, 55, 57, 59, 65, 68, 84, 169, 171, 172, 173, 174, 179, 182, 185, 191, 194, 196, 197, 202, 207, 216, 240, 248, 249, 269, 287], "do": [3, 20, 29, 57, 68, 73, 84, 88, 133, 170, 171, 216, 217, 218, 224, 227, 236, 239, 242, 248, 251, 268, 285, 286], "moon_filenam": 3, "8k": 3, "moon_imag": 3, "moon_actor": 3, "both": [3, 15, 22, 25, 36, 60, 72, 84, 104, 106, 107, 115, 127, 143, 163, 164, 169, 172, 180, 183, 189, 192, 200, 209, 218, 226, 237, 240, 241, 245, 248, 249, 255, 257, 258, 264, 268, 270], "alreadi": [3, 18, 28, 58, 65, 120, 133, 137, 139, 145, 164, 169, 172, 173, 185, 189, 192, 203, 217, 218, 225, 228, 237, 239, 240, 245, 253, 261, 266, 269, 287], "exist": [3, 18, 29, 53, 100, 102, 108, 115, 118, 131, 146, 149, 171, 173, 182, 189, 192, 216, 239, 245, 250, 253, 268, 286], "alter": [3, 198], "posit": [3, 4, 7, 10, 13, 14, 17, 20, 22, 23, 24, 25, 26, 27, 29, 30, 32, 33, 34, 37, 39, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 54, 55, 57, 59, 60, 61, 62, 63, 65, 68, 72, 73, 74, 75, 76, 79, 84, 85, 101, 103, 107, 109, 133, 137, 139, 145, 148, 160, 163, 164, 166, 173, 174, 176, 178, 182, 183, 185, 188, 189, 194, 200, 201, 202, 205, 213, 216, 217, 223, 229, 241, 242, 244, 248, 249, 250, 252, 253, 255, 258, 261, 262, 264, 265, 266, 267, 268, 269, 270, 271, 279, 280, 285, 286], "correctli": [3, 4, 76, 84, 112, 121, 143, 175, 208, 226, 229, 234, 280, 287], "comparison": [3, 68, 223, 240, 277], "setposit": [3, 11, 13, 14, 48, 49, 51, 57, 59, 60, 72, 73, 74, 75, 76, 84, 248, 271], "setscal": [3, 4, 14], "rotat": [3, 4, 9, 14, 19, 28, 34, 35, 37, 49, 51, 57, 58, 60, 62, 66, 68, 73, 74, 75, 84, 110, 111, 114, 126, 150, 158, 163, 167, 173, 182, 183, 186, 189, 192, 193, 194, 195, 207, 209, 216, 217, 218, 242, 248, 250, 256, 258, 260, 268, 270, 271, 285, 286], "align": [3, 10, 13, 14, 22, 27, 34, 39, 49, 51, 65, 68, 84, 115, 184, 208, 223, 232, 238, 241, 258, 268, 271, 286], "25": [3, 4, 13, 14, 26, 31, 34, 36, 39, 42, 49, 54, 58, 66, 67, 72, 216, 217, 218, 267, 281], "90": [3, 4, 14, 26, 30, 58, 60, 63, 73, 75, 175, 269, 278], "showmanag": [3, 4, 6, 8, 9, 10, 11, 12, 13, 14, 16, 19, 20, 22, 23, 24, 26, 27, 28, 29, 30, 33, 34, 35, 37, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 69, 70, 72, 73, 74, 75, 76, 78, 79, 80, 84, 85, 211, 213, 215, 217, 245, 262, 265, 266, 271, 280, 286], "class": [3, 14, 16, 22, 35, 101, 131, 134, 135, 137, 140, 141, 143, 146, 149, 160, 162, 163, 170, 172, 173, 181, 183, 185, 189, 190, 192, 216, 217, 218, 224, 226, 229, 236, 245, 248, 249, 250, 251, 255, 256, 258, 259, 261, 262, 265, 266, 268, 270, 280, 284, 286], "interfac": [3, 4, 14, 16, 22, 88, 99, 126, 162, 185, 216, 223, 227, 246, 251, 270], "between": [3, 4, 14, 16, 20, 29, 32, 33, 36, 42, 48, 53, 58, 59, 66, 67, 68, 69, 72, 73, 75, 76, 78, 80, 84, 107, 109, 126, 136, 145, 162, 163, 164, 166, 169, 173, 178, 185, 188, 200, 216, 217, 231, 232, 237, 242, 244, 248, 250, 253, 257, 260, 261, 266, 267, 268, 270, 286], "interactor": [3, 4, 14, 16, 89, 143, 146, 233, 242, 245, 262, 270, 273], "showm": [3, 4, 6, 8, 9, 10, 11, 12, 14, 16, 19, 20, 23, 24, 26, 28, 30, 33, 37, 43, 44, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 69, 70, 72, 73, 74, 75, 76, 78, 79, 80, 84, 85, 265, 266, 270], "900": [3, 4, 6, 8, 9, 12, 13, 14, 16, 18, 19, 20, 22, 27, 28, 33, 35, 37, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 72, 73, 74, 75, 76, 84, 250], "768": [3, 4, 6, 8, 9, 10, 11, 12, 14, 16, 18, 19, 20, 28, 33, 35, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 73, 74, 75, 76, 84, 226, 229, 250], "reset_camera": [3, 4, 6, 8, 9, 10, 11, 12, 13, 14, 16, 17, 18, 19, 20, 22, 24, 25, 26, 27, 28, 29, 30, 33, 34, 35, 42, 46, 49, 51, 53, 54, 55, 56, 57, 58, 60, 61, 63, 70, 72, 73, 74, 75, 76, 79, 84, 85, 270, 271], "order_transpar": [3, 4, 6, 8, 9, 10, 11, 12, 14, 16, 19, 20, 24, 26, 28, 30, 33, 34, 35, 37, 53, 54, 55, 56, 57, 58, 60, 61, 63, 72, 73, 74, 75, 76, 79, 84, 250, 270, 281], "true": [3, 4, 5, 6, 8, 9, 10, 11, 12, 14, 16, 18, 19, 20, 22, 23, 24, 25, 26, 27, 29, 30, 32, 33, 34, 35, 37, 40, 41, 42, 43, 45, 48, 49, 50, 51, 53, 54, 55, 56, 57, 58, 60, 61, 62, 63, 65, 68, 70, 72, 73, 74, 75, 76, 78, 79, 84, 105, 139, 183, 229, 233, 248, 249, 250, 251, 252, 254, 255, 256, 257, 261, 262, 264, 265, 266, 267, 268, 269, 270], "let": [3, 4, 9, 10, 11, 13, 14, 16, 19, 20, 22, 24, 25, 28, 29, 30, 32, 33, 34, 37, 39, 40, 41, 47, 49, 59, 65, 66, 67, 69, 70, 85, 87, 88, 136, 139, 145, 230, 232, 233, 236, 242, 246, 265, 281], "focu": [3, 14, 101, 104, 105, 116, 117, 130, 139, 142, 145, 186, 223, 226, 235, 238, 244, 268], "can": [3, 5, 8, 9, 11, 12, 13, 14, 16, 20, 22, 23, 25, 27, 28, 29, 30, 31, 32, 33, 34, 37, 39, 47, 48, 49, 51, 53, 54, 55, 58, 59, 62, 65, 66, 67, 69, 78, 80, 84, 85, 87, 89, 90, 91, 92, 93, 94, 95, 97, 101, 103, 105, 107, 109, 110, 111, 112, 113, 115, 116, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 129, 131, 132, 133, 136, 137, 138, 139, 140, 141, 142, 143, 145, 149, 152, 157, 158, 160, 162, 163, 164, 166, 167, 169, 170, 171, 172, 173, 174, 177, 178, 179, 180, 181, 183, 184, 185, 187, 188, 190, 191, 192, 194, 197, 200, 202, 207, 209, 212, 216, 217, 218, 220, 224, 225, 226, 227, 228, 229, 230, 231, 232, 234, 236, 237, 238, 239, 240, 243, 245, 246, 248, 250, 251, 252, 253, 257, 258, 262, 265, 266, 267, 268, 269, 270, 283, 284, 287], "determin": [3, 14, 16, 24, 37, 42, 65, 84, 105, 110, 146, 229, 232, 256, 269, 270, 286], "durat": [3, 14, 16, 35, 72, 73, 74, 75, 76, 84, 217, 250, 270, 271], "counter": [3, 4, 9, 14, 16, 19, 20, 23, 26, 28, 29, 30, 33, 37, 72, 73, 74, 75, 76, 84, 183, 260, 267, 269], "avoid": [3, 11, 14, 16, 19, 20, 29, 104, 133, 145, 152, 164, 166, 251, 261, 280], "global": [3, 14, 16, 19, 20, 22, 23, 24, 26, 27, 29, 30, 34, 37, 41, 48, 49, 70, 72, 73, 74, 75, 76, 84, 137, 146, 178, 205, 218, 247, 251, 254], "variabl": [3, 14, 16, 19, 20, 22, 23, 24, 26, 27, 30, 32, 37, 49, 65, 68, 69, 70, 73, 75, 84, 85, 105, 108, 175, 196, 236, 243, 248, 263, 268], "count": [3, 4, 9, 14, 16, 19, 20, 23, 26, 28, 30, 37, 72, 73, 74, 75, 76, 84, 149, 180, 217, 256, 269, 286], "set_camera": [3, 4, 7, 14, 17, 23, 24, 25, 26, 30, 33, 37, 42, 46, 49, 51, 58, 62, 63, 72, 73, 74, 75, 76, 79, 270, 271], "ensur": [3, 8, 27, 29, 223, 226, 229, 232, 241, 244, 248, 258, 261, 270], "camera": [3, 4, 5, 7, 8, 9, 14, 23, 24, 25, 26, 29, 30, 33, 35, 37, 42, 46, 51, 52, 57, 58, 59, 60, 63, 65, 68, 73, 75, 76, 81, 163, 169, 175, 177, 179, 184, 189, 215, 217, 218, 248, 250, 256, 265, 269, 270, 271, 286], "optim": [3, 100, 107, 109, 153, 163, 169, 180, 196, 217, 230, 261], "24": [3, 23, 164, 166, 216, 218, 233, 261, 264, 267, 269, 277, 278, 286], "00": [3, 25, 72, 169, 170], "4": [3, 5, 7, 9, 11, 13, 14, 17, 19, 20, 22, 23, 24, 26, 29, 37, 40, 41, 45, 49, 51, 53, 54, 55, 56, 57, 58, 60, 61, 68, 69, 70, 73, 74, 75, 76, 78, 80, 84, 87, 106, 109, 123, 125, 126, 136, 137, 139, 145, 149, 162, 163, 164, 199, 216, 217, 218, 224, 227, 239, 248, 249, 250, 251, 255, 256, 257, 261, 264, 266, 267, 268, 269, 270, 272, 277, 280, 282, 286], "34": [3, 261, 285], "focal_point": [3, 7, 17, 23, 24, 25, 26, 30, 37, 72, 73, 75, 79, 270], "view_up": [3, 7, 23, 24, 25, 26, 30, 37, 72, 73, 75, 79, 250, 270], "place": [3, 4, 34, 39, 45, 49, 57, 60, 65, 98, 99, 103, 137, 140, 143, 146, 155, 162, 208, 248, 255, 258, 268, 280, 286], "bloomington": 3, "IN": [3, 288], "home": [3, 88, 235, 253, 286], "headquart": 3, "39": [3, 4, 76, 277, 278], "3175": 3, "025": [3, 248], "radiu": [3, 14, 16, 20, 30, 47, 48, 49, 54, 57, 60, 65, 68, 72, 73, 74, 76, 84, 163, 248, 261, 264, 267, 268], "002": [3, 26, 30], "sphere_actor": [3, 4, 9, 19, 20, 32, 33, 79, 248], "blue_medium": 3, "also": [3, 13, 14, 17, 22, 23, 25, 27, 28, 29, 31, 33, 42, 54, 55, 56, 58, 59, 65, 68, 72, 84, 87, 89, 90, 91, 92, 94, 95, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 115, 116, 118, 120, 121, 122, 123, 124, 125, 126, 127, 129, 130, 131, 132, 133, 134, 135, 137, 139, 140, 143, 145, 146, 149, 155, 157, 158, 161, 162, 163, 166, 167, 169, 170, 171, 172, 174, 175, 177, 178, 180, 182, 184, 185, 188, 189, 192, 195, 196, 203, 205, 206, 208, 209, 216, 217, 218, 220, 222, 225, 227, 228, 230, 231, 232, 233, 234, 236, 237, 238, 239, 240, 242, 243, 245, 250, 251, 255, 261, 268, 270, 286, 287], "text": [3, 4, 9, 10, 13, 22, 23, 24, 26, 27, 30, 34, 37, 38, 43, 48, 50, 72, 73, 74, 75, 76, 81, 85, 105, 112, 126, 152, 155, 160, 162, 164, 171, 197, 216, 217, 223, 229, 238, 241, 244, 248, 257, 268, 270, 271, 280, 281, 283, 284, 285, 286, 287], "text_actor": 3, "text_3d": [3, 4, 271], "indiana": 3, "42": [3, 25, 277, 282], "31": [3, 25, 54, 216, 218, 272, 278, 286], "03": [3, 216, 239, 248, 264, 272, 278, 285], "white": [3, 4, 25, 248, 270], "004": [3, 30], "model": [3, 5, 6, 8, 12, 65, 66, 67, 68, 69, 70, 85, 99, 101, 102, 104, 106, 122, 125, 132, 135, 138, 141, 144, 145, 147, 153, 161, 163, 164, 169, 172, 175, 179, 181, 184, 187, 192, 195, 199, 203, 205, 208, 210, 214, 253, 256, 260, 261, 283, 284, 286], "satellit": [3, 171], "circl": [3, 31, 39, 44, 47, 49, 173, 216, 268], "satellite_filenam": 3, "satellite_obj": 3, "obj": [3, 10, 13, 22, 27, 28, 34, 70, 85, 88, 169, 252, 257, 266, 268, 286], "load_polydata": [3, 17, 70, 85, 271], "satellite_actor": 3, "get_actor_from_polydata": [3, 17, 271], "75": [3, 13, 22, 27, 34, 43, 257, 280], "005": [3, 4, 26, 30], "timer_callback": [3, 4, 6, 8, 12, 14, 16, 19, 20, 23, 24, 26, 28, 29, 30, 33, 35, 37, 41, 70, 72, 73, 74, 75, 76, 84, 270], "function": [3, 4, 9, 13, 14, 17, 21, 22, 24, 26, 27, 28, 29, 30, 32, 33, 34, 35, 37, 41, 49, 50, 56, 58, 60, 63, 65, 67, 68, 69, 74, 76, 81, 84, 85, 87, 88, 101, 108, 115, 120, 122, 131, 132, 137, 141, 147, 149, 153, 158, 160, 162, 163, 165, 167, 172, 173, 175, 179, 180, 181, 182, 184, 185, 186, 187, 188, 189, 192, 193, 195, 202, 204, 206, 207, 208, 211, 216, 217, 220, 224, 226, 227, 228, 229, 230, 231, 232, 234, 236, 239, 242, 243, 245, 248, 250, 251, 254, 255, 258, 261, 264, 265, 266, 267, 268, 269, 270, 277, 278, 280, 281, 283, 284, 285, 286, 287], "statement": [3, 65], "when": [3, 10, 11, 20, 23, 25, 26, 28, 30, 34, 48, 49, 50, 53, 56, 57, 65, 66, 69, 105, 120, 122, 133, 134, 139, 140, 143, 148, 149, 152, 162, 164, 166, 169, 171, 172, 176, 177, 179, 183, 184, 188, 189, 194, 202, 206, 213, 215, 216, 217, 222, 226, 227, 229, 230, 232, 236, 238, 241, 242, 244, 245, 248, 250, 251, 253, 255, 261, 268, 270, 277, 278, 279, 280, 283, 284, 285, 286, 287], "certain": [3, 14, 48, 59, 134, 137, 140, 143, 158, 218, 235, 250, 258, 266], "event": [3, 10, 14, 22, 28, 34, 70, 79, 99, 131, 139, 140, 143, 146, 149, 171, 173, 174, 176, 182, 185, 188, 191, 216, 217, 245, 250, 262, 265, 266, 268, 270, 280, 281, 288], "happen": [3, 14, 20, 25, 36, 139, 145, 164, 188, 191, 197, 206, 208, 216, 224, 227, 233, 236, 242, 270, 287], "base": [3, 17, 34, 53, 56, 58, 59, 60, 61, 63, 64, 67, 68, 69, 73, 74, 75, 76, 81, 84, 87, 88, 100, 101, 105, 106, 107, 108, 112, 114, 116, 117, 125, 126, 143, 147, 152, 156, 162, 163, 164, 167, 169, 170, 171, 172, 175, 182, 183, 192, 201, 213, 215, 216, 217, 218, 223, 234, 236, 237, 238, 241, 244, 245, 246, 248, 249, 250, 251, 253, 255, 256, 258, 260, 261, 262, 266, 268, 269, 270, 271, 281, 283, 285], "so": [3, 13, 14, 16, 22, 25, 29, 32, 33, 34, 37, 43, 49, 54, 61, 65, 67, 73, 75, 84, 85, 88, 101, 103, 104, 105, 106, 107, 108, 109, 112, 117, 118, 119, 120, 121, 122, 124, 126, 131, 134, 140, 143, 144, 146, 149, 152, 158, 159, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 180, 181, 182, 183, 185, 187, 191, 192, 196, 200, 204, 206, 207, 208, 209, 210, 212, 213, 216, 217, 227, 228, 231, 233, 237, 239, 240, 242, 243, 248, 249, 266, 267, 270, 287], "continu": [3, 20, 33, 56, 65, 107, 110, 112, 115, 120, 125, 137, 143, 146, 160, 162, 167, 170, 172, 188, 207, 209, 217, 220, 226, 228, 234, 241, 243, 285, 286], "while": [3, 9, 48, 99, 101, 103, 104, 106, 107, 108, 109, 110, 112, 118, 120, 127, 134, 169, 171, 175, 176, 178, 179, 180, 181, 184, 188, 192, 200, 202, 206, 208, 209, 210, 211, 212, 216, 217, 218, 222, 226, 227, 229, 234, 241, 243, 250, 251, 268, 269, 286], "less": [3, 20, 37, 139, 140, 142, 145, 169, 188, 197, 233, 236, 261, 270], "than": [3, 11, 13, 25, 104, 108, 116, 125, 133, 142, 143, 145, 146, 149, 152, 162, 164, 171, 184, 188, 193, 196, 197, 199, 211, 227, 233, 241, 242, 244, 248, 251, 255, 261, 266, 267, 269, 270, 280], "450": [3, 49, 85, 268, 284], "def": [3, 4, 6, 8, 9, 10, 11, 12, 13, 14, 16, 19, 20, 22, 23, 24, 26, 27, 28, 29, 30, 33, 34, 35, 37, 39, 41, 42, 43, 46, 48, 49, 50, 51, 56, 60, 63, 70, 72, 73, 74, 75, 76, 80, 84, 109, 118, 139, 250, 255, 265, 266], "_obj": [3, 4, 6, 8, 11, 12, 14, 16, 19, 20, 23, 24, 26, 29, 30, 33, 35, 37, 39, 41, 49, 72, 73, 74, 75, 76, 84, 268], "_event": [3, 4, 6, 8, 11, 12, 14, 16, 19, 20, 22, 23, 24, 26, 27, 29, 30, 33, 35, 37, 70, 72, 73, 74, 75, 76, 84, 265], "cnt": [3, 4, 13, 14, 16, 19, 20, 23, 26, 28, 30, 37, 72, 73, 74, 75, 76, 84, 256], "render": [3, 4, 6, 8, 9, 10, 11, 12, 14, 16, 19, 20, 21, 22, 23, 24, 26, 27, 28, 29, 30, 33, 34, 35, 37, 40, 41, 42, 48, 58, 59, 64, 68, 69, 70, 72, 73, 74, 75, 76, 78, 81, 85, 87, 88, 92, 100, 102, 104, 106, 107, 108, 109, 111, 114, 115, 117, 118, 120, 121, 122, 125, 126, 133, 135, 138, 140, 141, 145, 152, 160, 161, 162, 164, 167, 171, 181, 187, 196, 199, 200, 210, 211, 213, 218, 224, 227, 230, 233, 236, 239, 242, 245, 246, 248, 256, 260, 261, 266, 268, 270, 271, 277, 280, 283, 284, 285, 286, 288], "azimuth": [3, 4, 9, 16, 19, 20, 24, 28, 29, 35, 42, 46, 49, 51, 70, 150, 267, 270, 271], "300": [3, 14, 19, 22, 24, 26, 27, 33, 39, 40, 41, 43, 45, 48, 49, 50, 75, 78, 268, 270, 283], "679": [3, 207, 216, 286], "314": 3, "35": [3, 22, 27, 54, 66, 76, 248, 264, 281, 284], "zoom": [3, 4, 11, 13, 17, 20, 22, 24, 30, 36, 270, 271], "01": [3, 4, 9, 16, 20, 29, 34, 74, 76, 217, 218, 248, 272, 286], "1500": [3, 45], "550": [3, 85, 286], "575": [3, 4, 286], "180": [3, 4, 16, 39, 40, 41, 49, 57, 60, 268, 280], "rm": [3, 9, 29, 270, 271], "750": [3, 49], "8": [3, 10, 14, 20, 23, 24, 27, 30, 32, 33, 36, 37, 40, 41, 43, 45, 48, 49, 56, 57, 58, 60, 61, 65, 66, 67, 68, 69, 73, 75, 76, 78, 80, 87, 125, 126, 136, 162, 163, 164, 169, 170, 216, 217, 218, 248, 250, 251, 261, 264, 265, 266, 269, 270, 272, 277, 278, 281, 282, 286, 287], "10000": [3, 11, 31, 73, 139, 248], "1100": 3, "07": [3, 4, 125, 126, 162, 163, 164, 216, 217, 218, 239, 251, 272, 282], "exit": [3, 4, 9, 14, 16, 19, 20, 23, 24, 26, 28, 30, 33, 35, 37, 72, 73, 74, 75, 76, 84, 270, 271, 281], "watch": [3, 4, 14, 169, 171], "new": [3, 4, 13, 14, 17, 18, 29, 56, 64, 65, 66, 67, 68, 78, 81, 84, 99, 103, 109, 110, 113, 116, 122, 123, 125, 126, 127, 129, 130, 132, 136, 139, 145, 152, 153, 157, 162, 164, 166, 167, 169, 170, 171, 173, 176, 180, 181, 185, 188, 189, 191, 192, 194, 196, 201, 205, 206, 207, 208, 209, 213, 216, 217, 218, 220, 225, 226, 228, 229, 231, 235, 237, 238, 240, 243, 245, 248, 253, 255, 256, 259, 265, 266, 267, 268, 269, 270, 278, 280, 281, 282, 283, 284, 285, 286, 287], "take": [3, 4, 14, 24, 34, 37, 56, 58, 59, 65, 68, 88, 127, 133, 139, 140, 145, 149, 152, 155, 162, 169, 171, 176, 179, 189, 193, 210, 215, 218, 222, 226, 236, 242, 243, 245, 248, 249, 250, 253, 265, 268, 269, 270, 287], "add_timer_callback": [3, 4, 6, 8, 12, 14, 16, 19, 20, 23, 24, 26, 28, 29, 30, 33, 35, 37, 41, 70, 72, 73, 74, 75, 76, 84, 270, 271], "viz_earth_anim": 3, "specif": [4, 11, 22, 28, 56, 65, 73, 74, 75, 76, 87, 105, 109, 112, 118, 120, 124, 126, 130, 131, 133, 139, 140, 142, 148, 152, 162, 164, 171, 188, 215, 216, 217, 223, 224, 234, 236, 245, 250, 251, 253, 264, 265, 268, 270, 287, 288], "locat": [4, 34, 58, 76, 133, 139, 160], "math": [4, 29, 33, 106, 108, 138, 159, 161, 169, 228, 267], "16k": 4, "resolut": [4, 16, 26, 27, 30, 42, 57, 60, 65, 68, 79, 133, 226, 248, 264, 270, 278], "maximum": [4, 65, 78, 140, 197, 241, 248, 249, 250, 251, 256, 266, 268, 270], "detail": [4, 65, 68, 81, 85, 99, 107, 110, 125, 126, 132, 137, 140, 143, 145, 146, 149, 152, 162, 163, 164, 201, 222, 228, 234, 242, 243, 245, 248, 251, 266, 287], "earth_fil": 4, "1_earth_16k": 4, "make": [4, 10, 11, 12, 14, 16, 22, 25, 29, 39, 47, 49, 52, 53, 57, 58, 60, 61, 63, 64, 81, 87, 88, 99, 102, 103, 104, 105, 106, 108, 109, 111, 114, 116, 117, 119, 122, 126, 127, 131, 132, 135, 139, 141, 143, 144, 145, 146, 155, 156, 158, 161, 162, 163, 164, 165, 169, 170, 171, 174, 175, 182, 183, 186, 188, 189, 191, 192, 196, 197, 209, 211, 212, 217, 222, 224, 225, 227, 229, 230, 231, 232, 233, 234, 237, 239, 240, 242, 243, 244, 245, 250, 251, 252, 265, 268, 269, 280, 286, 287], "sure": [4, 12, 22, 57, 99, 102, 103, 104, 106, 108, 111, 114, 116, 117, 119, 122, 127, 212, 216, 228, 250, 251, 287], "orient": [4, 10, 27, 48, 49, 51, 65, 73, 74, 75, 76, 84, 107, 109, 118, 120, 126, 225, 248, 249, 250, 251, 264, 267, 268, 269], "chang": [4, 10, 11, 13, 14, 19, 20, 22, 26, 27, 28, 30, 37, 42, 48, 53, 54, 55, 57, 61, 63, 65, 68, 70, 73, 107, 112, 118, 124, 127, 134, 139, 140, 144, 145, 149, 152, 158, 160, 162, 164, 166, 169, 171, 172, 173, 174, 175, 176, 177, 178, 182, 185, 189, 192, 196, 213, 216, 217, 222, 228, 229, 231, 235, 239, 244, 245, 248, 249, 251, 255, 265, 268, 269, 270, 277, 279, 280, 282, 283, 284, 285, 286, 287], "defin": [4, 6, 8, 11, 12, 14, 16, 19, 20, 24, 27, 29, 30, 32, 33, 34, 37, 41, 42, 48, 58, 59, 65, 66, 67, 68, 69, 70, 73, 74, 75, 76, 79, 84, 109, 133, 139, 140, 162, 164, 167, 209, 216, 225, 235, 239, 242, 243, 245, 248, 253, 256, 259, 265, 268, 269, 283, 284, 285], "convert": [4, 41, 107, 133, 140, 143, 162, 175, 178, 184, 188, 189, 192, 216, 218, 250, 251, 256, 268, 269, 271, 285], "geograph": [4, 33, 267], "latitud": [4, 248, 264, 267], "longitud": [4, 248, 264, 267], "degre": [4, 61, 72, 73, 74, 84, 99, 106, 175, 177, 192, 222, 250, 251, 268], "radian": [4, 84, 268], "spheric": [4, 27, 58, 84, 104, 116, 125, 186, 217, 243, 248, 250, 267], "lastli": [4, 18, 84, 171, 229], "cartesian": [4, 267], "latlong_coordin": 4, "lat": 4, "lon": 4, "degrees_to_radian": 4, "pi": [4, 14, 23, 26, 60, 63, 74, 109, 260, 267], "phi": [4, 32, 33, 34, 42, 46, 65, 66, 67, 248, 264, 267], "theta": [4, 32, 33, 34, 42, 46, 65, 66, 67, 248, 264, 267], "now": [4, 9, 13, 22, 27, 28, 29, 32, 33, 34, 37, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 56, 57, 58, 59, 60, 61, 62, 65, 66, 67, 68, 70, 73, 74, 75, 76, 84, 85, 105, 109, 110, 112, 116, 117, 118, 120, 121, 124, 126, 131, 136, 139, 141, 142, 143, 145, 148, 149, 151, 152, 154, 155, 160, 164, 165, 166, 171, 173, 174, 175, 178, 179, 180, 182, 183, 184, 186, 187, 190, 192, 196, 199, 202, 204, 206, 208, 214, 217, 222, 225, 227, 228, 231, 233, 236, 240, 242, 243, 244, 267, 287], "sin": [4, 14, 23, 26, 29, 30, 37, 60, 63, 74, 109, 250, 267], "co": [4, 14, 23, 29, 30, 37, 60, 63, 70, 74, 109, 250, 267, 287], "flip": [4, 101, 175, 256, 280, 285, 286], "return": [4, 11, 14, 20, 22, 23, 24, 25, 26, 27, 29, 33, 34, 37, 42, 48, 56, 58, 59, 60, 63, 65, 68, 69, 84, 85, 105, 109, 139, 179, 184, 193, 214, 216, 217, 227, 228, 230, 233, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 286], "some": [4, 9, 10, 14, 22, 24, 25, 27, 28, 29, 30, 32, 33, 34, 36, 37, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 55, 56, 58, 59, 66, 67, 68, 69, 72, 73, 74, 75, 76, 81, 84, 85, 100, 101, 102, 103, 109, 110, 112, 118, 120, 122, 130, 133, 134, 136, 137, 139, 140, 141, 142, 143, 145, 146, 148, 149, 152, 154, 155, 158, 160, 162, 164, 166, 169, 170, 171, 172, 173, 174, 175, 177, 178, 180, 182, 183, 184, 186, 188, 191, 192, 193, 195, 196, 197, 198, 200, 201, 202, 204, 206, 207, 208, 209, 211, 212, 215, 216, 217, 222, 224, 227, 228, 229, 230, 231, 233, 234, 235, 236, 238, 239, 242, 243, 245, 246, 248, 258, 280, 282, 283, 284, 286], "sever": [4, 49, 125, 133, 136, 139, 140, 164, 213, 229, 243, 279], "big": [4, 171, 239], "citi": 4, "around": [4, 11, 14, 24, 29, 57, 74, 84, 137, 140, 159, 169, 170, 171, 176, 178, 182, 185, 192, 196, 206, 209, 211, 216, 239, 242, 246, 248, 250, 260, 261, 262, 267, 269, 270], "locationon": 4, "40": [4, 24, 42, 43, 44, 48, 54, 60, 66, 67, 72, 268, 277], "730610": 4, "73": [4, 278], "935242": 4, "york": 4, "u": [4, 14, 29, 34, 37, 65, 66, 67, 68, 73, 74, 75, 87, 88, 96, 110, 125, 126, 128, 148, 152, 168, 169, 170, 172, 202, 218, 219, 232], "locationtwo": 4, "916668": 4, "116": [4, 282], "383331": 4, "beij": 4, "china": 4, "locationthre": 4, "48": [4, 23, 261, 277], "864716": 4, "349014": 4, "pari": 4, "franc": 4, "set": [4, 5, 7, 8, 12, 13, 14, 17, 18, 22, 25, 27, 28, 29, 36, 40, 41, 42, 43, 45, 46, 48, 49, 51, 52, 54, 57, 59, 60, 61, 63, 65, 66, 67, 68, 72, 73, 74, 75, 76, 78, 79, 81, 85, 105, 115, 120, 126, 145, 149, 163, 171, 172, 175, 177, 183, 185, 186, 187, 191, 194, 196, 198, 201, 204, 208, 212, 215, 217, 218, 221, 224, 227, 233, 236, 245, 246, 248, 249, 250, 251, 255, 256, 261, 264, 265, 266, 268, 269, 270, 281, 283, 286, 287], "radii": [4, 9, 10, 11, 14, 15, 19, 20, 32, 33, 34, 42, 46, 53, 56, 60, 65, 66, 67, 72, 73, 74, 76, 78, 79, 80, 84, 163, 248, 261], "indic": [4, 32, 33, 74, 76, 84, 122, 179, 181, 249, 250, 253, 256, 261, 262, 264, 268, 269], "its": [4, 9, 13, 14, 20, 22, 25, 27, 42, 43, 46, 54, 57, 63, 68, 73, 75, 84, 87, 101, 105, 109, 112, 115, 120, 121, 131, 132, 138, 140, 143, 146, 152, 170, 171, 173, 185, 188, 201, 203, 210, 212, 217, 224, 225, 226, 227, 229, 231, 232, 233, 234, 236, 237, 238, 239, 240, 242, 245, 248, 250, 251, 255, 265, 268, 270, 288], "nyc_actor": 4, "n40": 4, "7128": 4, "n": [4, 10, 29, 31, 74, 80, 139, 162, 164, 177, 248, 249, 250, 251, 261, 264, 266, 267, 268, 269, 287], "74": 4, "0060": 4, "w": [4, 26, 37, 84, 139, 140, 162, 164, 248, 251, 257, 266, 269], "04": [4, 217, 218, 272, 281], "paris_actor": 4, "n48": 4, "8566": 4, "3522": 4, "e": [4, 22, 23, 26, 30, 45, 58, 62, 65, 84, 85, 87, 89, 90, 91, 92, 94, 95, 97, 113, 123, 129, 143, 157, 158, 162, 163, 167, 209, 210, 216, 217, 218, 220, 236, 248, 249, 250, 251, 253, 258, 261, 268, 269, 270, 281, 287], "beijing_actor": 4, "n39": 4, "9042": 4, "4074": 4, "06": [4, 26, 30, 125, 126, 162, 163, 164, 216, 217, 218], "85": [4, 14, 42, 278], "which": [4, 6, 10, 11, 13, 14, 22, 23, 24, 25, 26, 28, 29, 30, 32, 33, 34, 35, 36, 37, 46, 49, 56, 59, 62, 65, 68, 73, 75, 76, 78, 79, 80, 84, 87, 100, 104, 105, 107, 109, 110, 112, 115, 117, 119, 120, 121, 122, 124, 125, 126, 127, 130, 131, 132, 133, 134, 135, 136, 137, 139, 140, 141, 142, 143, 144, 145, 146, 149, 152, 155, 156, 158, 159, 160, 161, 162, 163, 164, 169, 171, 172, 173, 174, 175, 176, 177, 178, 181, 182, 183, 185, 188, 189, 191, 192, 193, 196, 197, 198, 200, 202, 206, 207, 209, 211, 212, 216, 217, 222, 223, 224, 226, 228, 229, 231, 234, 236, 237, 238, 239, 241, 242, 243, 244, 245, 246, 248, 249, 250, 251, 255, 258, 261, 262, 264, 265, 266, 267, 268, 269, 270, 287], "act": [4, 24, 112, 198, 216, 248, 268, 269], "angl": [4, 14, 26, 30, 37, 48, 49, 51, 109, 158, 216, 228, 248, 251, 267, 268, 269, 270, 271], "fly": [4, 152], "over": [4, 68, 78, 98, 114, 116, 124, 170, 225, 232, 237, 256, 268, 287], "7": [4, 14, 17, 23, 24, 34, 37, 54, 55, 57, 60, 65, 74, 75, 76, 87, 125, 126, 145, 162, 163, 164, 184, 216, 217, 218, 248, 251, 266, 268, 269, 272, 274, 278, 285, 286, 287], "200": [4, 10, 11, 16, 19, 22, 23, 27, 30, 33, 37, 43, 45, 46, 47, 49, 50, 51, 63, 171, 240, 266, 268], "015": 4, "pitch": [4, 267, 270, 271], "250": [4, 13, 43, 45, 48, 49, 57, 125, 281], "350": [4, 49, 283], "985": 4, "425": 4, "525": [4, 170, 286], "011": 4, "700": [4, 72, 218, 286], "820": [4, 241], "930": 4, "1000": [4, 20, 28, 33, 35, 40, 41, 42, 60, 79, 80, 242], "initi": [4, 5, 6, 8, 9, 12, 14, 22, 23, 24, 26, 28, 30, 35, 36, 37, 41, 49, 53, 55, 56, 57, 58, 59, 60, 62, 63, 73, 75, 76, 85, 89, 100, 104, 105, 106, 131, 143, 149, 162, 163, 169, 185, 196, 217, 223, 233, 244, 245, 251, 262, 266, 267, 268, 270, 271, 273, 280, 286], "viz_earth_coordin": 4, "displai": [5, 6, 10, 13, 17, 22, 24, 25, 26, 27, 30, 36, 37, 49, 65, 68, 72, 73, 74, 75, 87, 143, 150, 152, 158, 159, 163, 182, 183, 216, 218, 225, 231, 237, 240, 246, 248, 249, 262, 266, 268, 271, 285], "fetch_gltf": [5, 6, 7, 8, 12, 179, 271], "read_viz_gltf": [5, 6, 7, 8, 12, 271], "setbackground": 5, "retriev": [5, 6, 8, 12, 236, 262, 265], "duck": [5, 184], "filenam": [5, 6, 7, 8, 12, 14, 18, 248, 253, 256, 257, 265, 268, 270], "get": [5, 6, 7, 8, 10, 12, 13, 17, 20, 22, 23, 28, 29, 34, 35, 37, 42, 48, 53, 65, 68, 72, 73, 75, 84, 87, 98, 99, 125, 133, 145, 164, 170, 171, 216, 217, 218, 230, 236, 239, 242, 245, 246, 248, 250, 251, 252, 255, 256, 258, 261, 263, 264, 266, 268, 269, 270, 280, 286], "method": [5, 6, 8, 11, 12, 13, 22, 25, 27, 29, 37, 42, 43, 48, 52, 53, 55, 62, 65, 68, 72, 73, 74, 75, 76, 81, 84, 101, 103, 105, 107, 110, 112, 121, 122, 125, 126, 133, 134, 136, 137, 139, 140, 141, 143, 145, 146, 148, 149, 152, 162, 164, 166, 169, 172, 173, 175, 178, 179, 184, 191, 196, 200, 201, 202, 211, 214, 217, 218, 224, 227, 229, 230, 233, 236, 248, 250, 251, 255, 259, 261, 266, 269, 270, 280, 284, 285, 286], "note": [5, 8, 11, 12, 23, 25, 26, 39, 48, 49, 53, 56, 61, 89, 90, 91, 92, 94, 95, 97, 113, 123, 129, 157, 167, 169, 203, 220, 242, 248, 250, 251, 252, 255, 261, 266, 267, 269, 270, 272, 287], "alwai": [5, 54, 57, 65, 84, 105, 107, 109, 110, 112, 115, 118, 133, 137, 169, 170, 189, 248, 287], "manual": [5, 58, 59, 84, 126, 146, 176, 179, 185, 191, 194, 204, 206, 287], "polydata": [5, 17, 70, 122, 175, 179, 180, 193, 217, 257, 269, 271, 280, 286], "appli": [5, 8, 12, 13, 14, 17, 20, 28, 45, 68, 72, 73, 74, 75, 76, 84, 118, 139, 169, 171, 172, 173, 175, 183, 188, 193, 195, 203, 205, 208, 210, 212, 218, 226, 229, 242, 245, 248, 249, 256, 257, 258, 260, 264, 265, 266, 269, 270, 271], "materi": [5, 34, 66, 67, 129, 167, 170, 179, 214, 256, 271, 283, 285, 286, 288], "afterward": [5, 227], "experiment": [5, 87, 279], "smooth": [5, 29, 59, 68, 148, 161, 163, 164, 172, 182, 236, 242, 246, 248], "mesh": [5, 65, 68, 171, 175, 195, 203, 218, 256, 267], "apply_norm": [5, 8, 12, 256], "gltf_obj": [5, 6, 7, 8, 12], "all": [5, 7, 8, 10, 11, 13, 14, 16, 22, 27, 28, 32, 33, 34, 39, 42, 46, 47, 49, 50, 51, 55, 58, 59, 61, 65, 68, 69, 70, 72, 73, 74, 75, 76, 81, 84, 87, 88, 92, 94, 95, 97, 99, 105, 107, 109, 113, 118, 123, 124, 126, 127, 129, 131, 132, 133, 139, 140, 142, 145, 149, 152, 153, 157, 158, 160, 161, 162, 163, 167, 169, 170, 171, 176, 178, 179, 180, 181, 183, 184, 185, 186, 187, 188, 190, 191, 196, 197, 198, 202, 205, 210, 212, 213, 214, 216, 217, 218, 220, 221, 224, 229, 241, 242, 244, 245, 246, 247, 248, 249, 250, 251, 253, 256, 261, 263, 264, 268, 269, 270, 283, 285, 286, 287, 288], "list": [5, 7, 14, 23, 24, 25, 27, 28, 36, 41, 42, 43, 46, 48, 49, 50, 53, 54, 61, 66, 67, 74, 76, 84, 96, 103, 126, 128, 132, 139, 142, 145, 146, 168, 169, 170, 171, 175, 193, 219, 247, 248, 250, 251, 253, 255, 256, 257, 258, 260, 265, 266, 267, 268, 269, 270, 272, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288], "setactivecamera": 5, "1280": [5, 7], "720": [5, 7, 69, 70, 80, 85, 264, 286], "viz_gltf": 5, "interpolationtest": [6, 184], "main_timelin": [6, 183], "contain": [6, 11, 13, 14, 20, 22, 24, 27, 29, 37, 49, 54, 56, 58, 60, 61, 65, 84, 87, 88, 89, 96, 115, 126, 128, 131, 132, 140, 143, 168, 175, 181, 183, 184, 210, 216, 218, 219, 247, 250, 251, 255, 256, 257, 260, 261, 263, 265, 266, 267, 269, 270, 271, 273, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286], "timelin": [6, 8, 12, 52, 53, 55, 58, 60, 61, 63, 81, 130, 172, 175, 177, 180, 187, 190, 192, 193, 198, 208, 210, 211, 213, 214, 215, 270, 271, 286], "main_anim": [6, 256, 271], "No": [6, 8, 12, 59, 111, 114, 117, 119, 147, 153, 156, 158, 159, 160, 161, 174, 178, 181, 184, 190, 194, 199, 200, 203, 205, 207, 209, 210, 214, 227, 232, 251, 286], "need": [6, 8, 12, 13, 14, 17, 22, 25, 28, 29, 32, 33, 34, 36, 39, 40, 41, 42, 43, 44, 46, 47, 48, 49, 50, 51, 53, 54, 56, 58, 59, 61, 63, 65, 67, 68, 78, 80, 84, 85, 87, 100, 103, 108, 112, 120, 122, 124, 126, 130, 133, 134, 135, 137, 139, 140, 142, 143, 145, 146, 149, 152, 160, 162, 164, 181, 184, 189, 193, 195, 196, 203, 205, 208, 210, 213, 216, 217, 218, 224, 225, 227, 228, 230, 231, 233, 234, 236, 237, 238, 239, 240, 242, 243, 245, 246, 250, 251, 252, 264, 268, 269, 270, 280, 283, 286], "separ": [6, 8, 12, 54, 84, 105, 107, 112, 118, 121, 126, 145, 160, 164, 174, 179, 180, 185, 192, 213, 216, 217, 229, 238, 253, 261, 266, 286], "updat": [6, 8, 9, 10, 11, 12, 14, 17, 22, 23, 24, 26, 27, 29, 35, 37, 41, 54, 58, 59, 70, 73, 75, 76, 84, 90, 91, 94, 95, 97, 99, 107, 109, 113, 118, 123, 126, 129, 133, 139, 140, 142, 143, 145, 146, 147, 149, 150, 152, 153, 155, 156, 157, 158, 159, 160, 162, 163, 164, 166, 167, 176, 182, 185, 189, 191, 194, 200, 206, 211, 213, 216, 217, 218, 220, 221, 224, 227, 229, 232, 236, 241, 242, 244, 248, 250, 251, 256, 262, 266, 268, 269, 270, 271, 275, 276, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287], "update_anim": [6, 250, 271], "10": [6, 9, 10, 13, 14, 16, 17, 19, 20, 26, 29, 30, 31, 33, 35, 37, 44, 48, 49, 50, 51, 53, 54, 57, 58, 59, 61, 62, 65, 67, 68, 72, 73, 74, 75, 76, 84, 116, 125, 126, 129, 145, 162, 163, 164, 171, 216, 217, 218, 245, 248, 251, 255, 264, 266, 268, 269, 270, 272, 280, 283, 285, 286], "viz_gltf_anim": 6, "paramet": [7, 14, 27, 33, 34, 37, 50, 59, 65, 66, 67, 72, 73, 74, 75, 76, 80, 84, 85, 105, 110, 142, 148, 190, 206, 216, 218, 231, 234, 243, 247, 248, 249, 250, 251, 252, 253, 255, 256, 257, 258, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 277, 280, 281, 282, 283, 285, 286], "later": [7, 37, 54, 55, 57, 112, 118, 132, 139, 170, 178, 179, 222, 225, 228, 230, 231, 233, 242, 255, 265], "cube": [7, 10, 11, 16, 17, 24, 29, 34, 37, 38, 42, 55, 60, 63, 81, 102, 104, 111, 115, 120, 125, 169, 184, 253, 257, 271, 281], "boxtextur": [7, 184, 253], "box_actor": [7, 20, 68, 76, 248, 249], "45": [7, 13, 14, 23, 36, 47, 49, 277], "21": [7, 23, 125, 126, 162, 163, 164, 169, 216, 272, 277, 282, 284], "12": [7, 11, 15, 23, 30, 58, 60, 65, 68, 125, 126, 145, 162, 163, 164, 184, 216, 217, 218, 248, 264, 269, 285, 286], "export_scen": [7, 271], "viz_gltf_export": 7, "read": [7, 13, 29, 32, 33, 35, 101, 103, 104, 105, 107, 109, 110, 112, 115, 118, 120, 121, 124, 126, 133, 136, 139, 141, 145, 150, 159, 161, 169, 170, 171, 173, 175, 184, 190, 218, 224, 252, 253, 256, 266, 270], "look": [8, 25, 29, 65, 100, 101, 105, 108, 112, 116, 117, 118, 120, 121, 122, 133, 137, 139, 142, 143, 145, 160, 161, 170, 171, 175, 179, 184, 191, 192, 197, 200, 207, 209, 210, 223, 225, 232, 236, 242, 243, 245, 248, 287], "khronoo": 8, "sampl": [8, 35, 175, 179, 184, 187, 193, 224, 236, 250, 253, 270, 286], "choos": [8, 12, 16, 25, 27, 43, 48, 49, 78, 80, 122, 133, 164, 231, 237, 251, 253, 262, 268], "morphstresstest": [8, 184], "addition": [8, 12, 65, 226, 229, 237, 238, 241], "might": [8, 12, 53, 56, 59, 65, 189, 216, 237, 251, 287], "work": [8, 11, 12, 25, 29, 65, 78, 79, 87, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 109, 110, 112, 114, 115, 116, 117, 118, 119, 120, 121, 122, 124, 127, 130, 131, 132, 134, 136, 139, 140, 143, 145, 147, 148, 149, 151, 153, 155, 158, 160, 161, 164, 166, 169, 170, 171, 172, 173, 174, 175, 176, 178, 179, 180, 183, 184, 187, 189, 193, 194, 196, 197, 200, 202, 203, 205, 206, 207, 209, 222, 224, 225, 226, 227, 228, 229, 230, 232, 233, 234, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 248, 266, 267, 279, 281, 282, 283, 284, 286, 287], "intend": [8, 12, 68, 160, 182, 193, 195, 197, 203, 206, 225, 248, 284], "morph_timelin": 8, "name": [8, 12, 14, 16, 22, 23, 24, 30, 37, 42, 56, 62, 68, 125, 126, 130, 139, 162, 163, 164, 169, 171, 179, 183, 184, 196, 204, 216, 217, 218, 222, 237, 245, 247, 248, 249, 250, 251, 253, 255, 256, 261, 264, 265, 266, 267, 268, 269, 270, 280, 282, 286, 287, 288], "want": [8, 12, 13, 16, 22, 25, 29, 32, 57, 59, 65, 68, 80, 122, 133, 145, 148, 164, 169, 170, 171, 173, 175, 176, 216, 228, 236, 239, 240, 245, 256, 264, 265, 266, 267, 270, 285, 287], "If": [8, 12, 13, 22, 29, 36, 44, 49, 53, 65, 78, 80, 85, 96, 105, 110, 124, 128, 133, 139, 140, 142, 146, 149, 162, 168, 171, 172, 188, 189, 196, 204, 219, 224, 227, 233, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 268, 269, 270, 287], "It": [8, 12, 13, 17, 23, 25, 28, 37, 56, 65, 89, 107, 112, 120, 124, 125, 133, 140, 143, 148, 156, 158, 160, 161, 163, 164, 166, 167, 169, 170, 171, 172, 184, 185, 188, 191, 197, 202, 203, 208, 213, 216, 217, 218, 221, 226, 229, 234, 239, 240, 245, 246, 248, 250, 251, 255, 261, 264, 268, 273, 285, 287], "store": [8, 12, 23, 24, 25, 29, 36, 42, 43, 59, 68, 73, 75, 78, 84, 85, 139, 141, 145, 148, 175, 184, 188, 190, 196, 211, 216, 218, 246, 251, 253, 261, 266, 268], "anim_0": [8, 12], "anim_1": [8, 12], "etc": [8, 12, 22, 32, 84, 105, 126, 160, 169, 171, 176, 218, 242, 251, 253, 261, 268, 281], "morph_anim": [8, 256, 271], "thewav": 8, "call": [8, 10, 11, 12, 14, 16, 19, 25, 26, 30, 35, 43, 49, 58, 70, 73, 75, 84, 120, 135, 136, 137, 139, 152, 156, 164, 166, 170, 171, 180, 185, 188, 189, 191, 206, 216, 229, 230, 231, 233, 245, 246, 248, 249, 250, 255, 261, 263, 265, 266, 267, 270, 277, 284, 285, 286, 287], "update_morph": [8, 256, 271], "onc": [8, 25, 29, 49, 54, 62, 84, 109, 110, 111, 112, 121, 145, 158, 170, 171, 174, 185, 196, 198, 199, 202, 216, 217, 232, 250, 268, 270, 280, 287], "move": [8, 11, 13, 20, 22, 24, 29, 30, 33, 57, 59, 74, 84, 105, 109, 110, 115, 118, 166, 169, 171, 188, 197, 202, 205, 207, 212, 216, 224, 227, 232, 242, 251, 268, 279, 283, 286, 287], "initialis": [8, 12, 24, 39, 40, 41, 42, 46, 47, 49, 50, 51, 69, 70, 256, 280], "timestamp": [8, 53, 54, 56, 58, 59, 61, 145, 203, 205, 208, 218, 250, 256], "fit": [8, 23, 88, 133, 152, 228, 239, 242, 268, 270, 288], "perfectli": [8, 68, 152, 178, 203], "manag": [8, 9, 10, 11, 12, 13, 34, 35, 39, 40, 41, 47, 48, 50, 55, 56, 57, 61, 63, 69, 70, 73, 74, 75, 97, 98, 99, 123, 131, 136, 139, 140, 145, 146, 148, 154, 164, 165, 170, 173, 176, 177, 179, 182, 183, 184, 185, 188, 197, 206, 212, 214, 216, 222, 227, 230, 232, 233, 235, 239, 242, 243, 245, 262, 266, 268, 270, 278, 279, 280, 282, 286, 287], "again": [8, 59, 65, 162, 169, 170, 171, 176, 209, 216, 230, 233, 236, 252, 287], "option": [8, 9, 12, 25, 29, 42, 43, 46, 62, 65, 78, 80, 84, 87, 101, 105, 112, 116, 122, 126, 146, 154, 169, 175, 183, 186, 201, 211, 216, 217, 226, 239, 244, 245, 248, 249, 250, 251, 252, 253, 255, 256, 257, 258, 260, 261, 262, 264, 265, 266, 269, 270, 271, 280, 281, 283, 286, 287], "plai": [8, 12, 21, 32, 58, 61, 62, 65, 81, 158, 160, 162, 176, 180, 189, 209, 216, 217, 250, 268, 270, 271, 286], "auto": [8, 12, 146, 251], "20": [8, 9, 12, 13, 14, 16, 20, 24, 25, 26, 29, 30, 37, 42, 49, 51, 54, 55, 57, 58, 61, 68, 74, 99, 164, 170, 171, 216, 217, 218, 248, 250, 264, 266, 268, 269, 270, 272, 277, 280, 283], "viz_morph": 8, "goal": [9, 32, 33, 35, 59, 87, 131, 132, 135, 137, 141, 144, 156, 162, 163, 164, 216, 217, 218, 221, 224, 225, 232], "demo": [9, 20, 29, 33, 35, 59, 67, 71, 117, 119, 122, 125, 127, 129, 157, 162, 163, 167, 200, 218, 241, 245, 280, 283, 284, 285, 286], "differ": [9, 10, 11, 13, 19, 22, 29, 34, 38, 42, 43, 48, 52, 55, 59, 65, 66, 67, 68, 73, 75, 78, 81, 84, 103, 105, 106, 107, 109, 112, 115, 122, 124, 125, 131, 132, 137, 139, 141, 143, 145, 152, 162, 164, 166, 172, 173, 176, 178, 180, 183, 187, 191, 193, 194, 196, 207, 209, 211, 212, 216, 218, 227, 236, 237, 238, 239, 242, 245, 248, 249, 252, 253, 267, 269, 270], "thread": [9, 133, 139, 164, 166, 266, 270], "particular": [9, 84, 101, 109, 118, 120, 140, 146, 162, 177, 288], "main": [9, 22, 40, 41, 55, 58, 60, 66, 78, 79, 80, 101, 103, 104, 105, 106, 110, 114, 117, 121, 133, 137, 139, 140, 143, 145, 162, 164, 183, 190, 193, 196, 216, 217, 224, 226, 227, 237, 244, 250, 256, 268, 271, 287], "A": [9, 21, 25, 26, 29, 30, 33, 35, 37, 40, 41, 42, 46, 54, 56, 59, 65, 68, 73, 81, 84, 96, 121, 126, 128, 130, 132, 134, 137, 139, 140, 152, 158, 162, 164, 165, 168, 171, 189, 196, 216, 218, 219, 226, 246, 248, 249, 250, 251, 252, 253, 256, 260, 261, 263, 264, 265, 266, 268, 269, 270, 288], "b": [9, 26, 27, 33, 36, 99, 136, 139, 164, 230, 233, 234, 248, 249, 251, 255, 260, 261, 264, 269, 287], "print": [9, 17, 22, 23, 25, 85, 87, 139, 170, 173, 233, 270], "c": [9, 14, 26, 65, 68, 87, 89, 90, 91, 92, 94, 95, 97, 113, 123, 129, 139, 145, 157, 158, 164, 167, 169, 170, 184, 197, 220, 248, 251, 253, 270, 287, 288], "remov": [9, 28, 29, 74, 90, 95, 97, 112, 145, 146, 150, 152, 163, 164, 172, 194, 206, 207, 216, 217, 248, 250, 251, 254, 255, 265, 268, 269, 270, 271, 275, 277, 278, 279, 280, 283, 284, 285, 286, 287], "element": [9, 13, 34, 39, 40, 41, 42, 46, 47, 49, 50, 51, 65, 69, 70, 84, 99, 101, 103, 105, 107, 115, 126, 131, 134, 137, 140, 143, 145, 146, 152, 155, 162, 173, 174, 188, 191, 197, 209, 216, 217, 226, 229, 232, 238, 248, 251, 256, 258, 261, 266, 267, 270, 271, 281, 284], "ui": [9, 10, 13, 14, 19, 20, 22, 23, 24, 26, 27, 29, 30, 34, 37, 38, 39, 40, 41, 42, 43, 44, 46, 47, 49, 50, 51, 70, 72, 73, 74, 75, 76, 81, 85, 89, 97, 99, 101, 103, 105, 107, 112, 113, 118, 120, 121, 122, 123, 124, 125, 126, 127, 131, 152, 155, 157, 162, 167, 170, 171, 172, 178, 191, 194, 197, 209, 216, 217, 223, 226, 229, 232, 238, 258, 269, 271, 273, 278, 280, 281, 282, 283, 284, 285, 286], "prepar": [9, 32, 33, 48, 169, 171, 223, 242, 243, 270, 280], "draw": [9, 29, 47, 49, 137, 141, 160, 162, 164, 165, 166, 170, 173, 176, 191, 194, 196, 197, 202, 216, 224, 227, 248, 268, 284, 286], "xyz": [9, 10, 19, 20, 23, 55, 68, 84, 183, 217, 250, 251, 262, 264, 269], "100": [9, 10, 11, 14, 19, 30, 33, 39, 41, 42, 45, 47, 49, 51, 56, 67, 75, 107, 116, 171, 236, 240, 244, 248, 250, 252, 253, 257, 266, 268, 269, 279], "usual": [9, 13, 16, 28, 62, 66, 178, 216, 236, 245, 246, 248, 251, 270], "block": [9, 50, 68, 70, 85, 105, 133, 136, 139, 149, 164, 265, 268, 284, 285], "messag": [9, 10, 13, 19, 20, 22, 23, 24, 26, 27, 30, 39, 49, 70, 72, 73, 74, 75, 76, 85, 139, 224, 255, 268, 271, 286], "reset": [9, 29, 270], "tb": [9, 19, 20, 23, 24, 26, 30, 37, 70, 72, 73, 74, 75, 76, 85], "textblock2d": [9, 10, 13, 19, 20, 22, 23, 24, 26, 27, 30, 34, 37, 39, 43, 48, 49, 50, 70, 72, 73, 74, 75, 76, 85, 101, 103, 110, 126, 173, 216, 229, 241, 244, 271, 281], "bold": [9, 19, 20, 22, 23, 24, 26, 27, 30, 248, 268, 271], "resetcamera": 9, "consol": 9, "print_count": 9, "rang": [9, 14, 23, 24, 26, 29, 31, 33, 34, 35, 37, 54, 55, 57, 66, 67, 73, 74, 75, 76, 84, 197, 248, 249, 251, 260, 261, 264, 269], "rcounter": 9, "d": [9, 26, 31, 37, 126, 130, 159, 164, 248, 249, 267, 268], "up": [9, 13, 19, 20, 24, 25, 29, 36, 39, 49, 54, 65, 66, 67, 68, 76, 84, 133, 162, 169, 170, 171, 217, 227, 230, 233, 236, 242, 250, 255, 268, 269, 270, 277, 283, 287], "str": [9, 10, 13, 19, 20, 23, 32, 33, 66, 67, 73, 74, 75, 76, 79, 247, 248, 249, 250, 251, 252, 253, 255, 256, 257, 258, 259, 263, 264, 265, 266, 268, 269, 270, 278], "sleep": [9, 80, 139, 266], "05": [9, 16, 19, 20, 34, 125, 126, 162, 163, 164, 216, 217, 218, 248], "is_don": [9, 270, 271], "break": [9, 13, 35, 124, 145, 164, 228], "rotate_camera": 9, "lock_curr": [9, 270, 271], "release_curr": [9, 270, 271], "els": [9, 10, 12, 14, 22, 23, 27, 29, 33, 35, 37, 42, 44, 48, 65, 68, 78, 80, 84, 105, 217, 248, 249, 251, 254], "ax": [9, 10, 16, 23, 72, 73, 74, 75, 76, 115, 162, 225, 249, 267, 270, 271], "increas": [9, 10, 11, 24, 25, 33, 37, 65, 68, 73, 74, 75, 76, 84, 92, 94, 95, 97, 107, 113, 123, 133, 157, 212, 269, 270, 277, 278, 279, 280, 281, 282, 283, 284], "add_remove_ax": 9, "current_ax": 9, "none": [9, 11, 13, 16, 27, 33, 35, 49, 53, 56, 70, 139, 184, 247, 248, 249, 250, 251, 252, 253, 255, 256, 257, 258, 261, 263, 264, 265, 266, 268, 269, 270, 286], "pass": [9, 37, 68, 69, 70, 80, 84, 105, 106, 108, 114, 137, 139, 141, 143, 148, 149, 150, 162, 170, 171, 206, 216, 232, 233, 236, 239, 242, 243, 245, 248, 255, 266, 268, 269, 283, 286, 287], "thread_a": 9, "target": [9, 32, 33, 78, 79, 218, 250, 256], "thread_b": 9, "thread_c": 9, "loop": [9, 13, 29, 54, 63, 80, 84, 163, 189, 216, 217, 245, 248, 250, 256, 268, 271, 286], "wait": [9, 78, 136, 139, 169, 228, 231, 270, 271], "finish": [9, 110, 112, 115, 124, 130, 143, 155, 158, 162, 164, 172, 180, 181, 201, 222, 234, 239, 242, 243, 270], "join": [9, 13, 32, 33, 41, 65, 68, 79, 85, 89, 90, 91, 92, 94, 95, 96, 97, 113, 123, 128, 129, 157, 167, 168, 170, 216, 219, 220], "viz_multithread": 9, "present": [10, 13, 30, 84, 137, 139, 140, 146, 164, 166, 216, 227, 239, 245, 261], "3d": [10, 11, 13, 21, 22, 24, 27, 29, 31, 34, 36, 37, 65, 68, 69, 81, 88, 89, 90, 91, 92, 94, 95, 96, 97, 99, 110, 113, 123, 128, 129, 131, 136, 142, 157, 158, 162, 163, 164, 167, 168, 171, 213, 216, 217, 218, 219, 220, 224, 242, 245, 248, 249, 251, 252, 257, 258, 262, 267, 269, 280, 281, 284], "world": [10, 11, 21, 22, 25, 68, 73, 75, 81, 84, 107, 118, 169, 170, 246, 248, 249, 262], "ar": [10, 11, 13, 14, 16, 22, 23, 25, 26, 27, 29, 30, 31, 33, 34, 39, 40, 41, 42, 43, 44, 46, 47, 48, 49, 50, 51, 54, 56, 59, 61, 62, 65, 66, 68, 73, 75, 76, 78, 84, 85, 87, 88, 89, 90, 91, 92, 94, 95, 96, 97, 98, 100, 103, 107, 108, 113, 114, 117, 118, 119, 120, 121, 122, 123, 125, 126, 127, 128, 129, 131, 133, 134, 137, 139, 140, 142, 143, 145, 146, 148, 149, 152, 155, 157, 158, 160, 162, 163, 164, 167, 168, 169, 171, 172, 183, 184, 188, 190, 196, 198, 202, 206, 207, 208, 213, 216, 217, 218, 219, 220, 222, 224, 226, 227, 231, 232, 234, 236, 241, 242, 245, 246, 248, 249, 250, 251, 253, 255, 257, 258, 261, 262, 263, 265, 267, 268, 269, 270, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288], "part": [10, 11, 29, 59, 65, 67, 84, 96, 107, 116, 126, 128, 130, 132, 133, 162, 168, 170, 171, 189, 196, 206, 216, 217, 218, 219, 221, 222, 228, 230, 233, 239, 240, 243, 245, 246, 248, 251, 263, 268, 285, 287], "singl": [10, 11, 34, 54, 57, 62, 73, 104, 107, 109, 110, 112, 115, 125, 126, 140, 150, 177, 178, 180, 189, 217, 233, 241, 242, 245, 248, 250, 256, 257, 258, 261, 262, 268, 269, 270, 277, 282], "like": [10, 11, 13, 18, 22, 37, 65, 84, 92, 94, 95, 97, 99, 112, 113, 118, 123, 124, 126, 127, 129, 131, 132, 134, 137, 143, 145, 149, 157, 160, 161, 164, 167, 170, 175, 192, 198, 199, 207, 208, 209, 213, 217, 218, 220, 225, 227, 233, 236, 239, 246, 255, 268, 269, 270, 287], "bundl": [10, 11, 21, 22, 81], "few": [10, 11, 84, 102, 112, 114, 126, 138, 140, 146, 160, 170, 171, 175, 196, 197, 200, 205, 232, 235, 251], "reduc": [10, 11, 145, 169, 215, 248], "speed": [10, 11, 24, 37, 58, 88, 138, 167, 169, 186, 189, 217, 230, 250, 268, 270, 271, 285], "thei": [10, 22, 32, 33, 49, 65, 66, 68, 84, 121, 126, 132, 134, 143, 146, 149, 152, 158, 160, 164, 170, 171, 172, 175, 190, 192, 196, 197, 202, 206, 212, 216, 217, 218, 224, 239, 242, 245, 246, 248, 268, 269, 287], "50": [10, 14, 20, 36, 39, 42, 43, 44, 46, 47, 49, 58, 72, 250, 261, 266, 268, 277], "150": [10, 11, 39, 42, 43, 45, 46, 48, 49, 51, 261, 266, 280], "dtype": [10, 11, 17, 24, 32, 33, 73, 75, 76, 79, 248, 251, 271, 278, 286], "bool": [10, 248, 249, 250, 251, 252, 255, 256, 257, 261, 262, 264, 265, 266, 268, 269, 270], "panel": [10, 13, 14, 22, 27, 34, 39, 45, 54, 61, 62, 115, 126, 131, 140, 143, 146, 155, 162, 173, 176, 180, 182, 186, 202, 206, 207, 216, 217, 232, 250, 268], "panel2d": [10, 13, 14, 22, 27, 34, 39, 45, 49, 103, 131, 134, 137, 140, 143, 146, 149, 162, 173, 182, 216, 271, 284], "400": [10, 14, 28, 34, 39, 42, 43, 45, 47, 49, 50, 51, 78, 79, 268, 285], "right": [10, 13, 14, 22, 25, 27, 29, 34, 39, 48, 49, 51, 57, 78, 134, 136, 138, 140, 143, 152, 162, 169, 175, 216, 225, 228, 229, 230, 239, 248, 268, 269, 270, 279, 286, 287, 288], "text_block": [10, 268, 271], "left": [10, 13, 22, 25, 27, 39, 49, 51, 110, 138, 143, 175, 176, 178, 216, 229, 245, 248, 268, 269, 270, 283], "click": [10, 13, 39, 48, 49, 99, 113, 126, 139, 162, 171, 173, 176, 178, 185, 188, 191, 216, 245, 268, 281], "add_el": [10, 13, 14, 22, 27, 34, 39, 48, 49, 268, 271], "build": [10, 11, 28, 32, 33, 65, 68, 88, 99, 103, 145, 164, 171, 266, 268, 280, 286, 287], "mani": [10, 11, 19, 22, 25, 29, 49, 96, 99, 128, 133, 140, 143, 161, 168, 170, 171, 188, 216, 219, 245, 246, 248, 249, 251, 262, 267, 287], "label_actor": 10, "vector_text": [10, 23, 54, 55, 66, 67, 201, 204, 217, 271, 285, 286], "test": [10, 27, 86, 92, 94, 95, 97, 101, 103, 104, 112, 113, 114, 116, 122, 123, 124, 126, 130, 131, 132, 133, 134, 135, 137, 140, 142, 145, 146, 147, 149, 150, 151, 152, 153, 154, 157, 162, 163, 164, 165, 172, 173, 174, 175, 178, 179, 180, 182, 183, 184, 187, 188, 189, 191, 192, 193, 196, 197, 200, 203, 208, 210, 211, 213, 216, 217, 218, 222, 224, 225, 232, 241, 243, 244, 253, 254, 255, 266, 270, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287], "made": [10, 16, 33, 66, 68, 76, 116, 120, 130, 131, 132, 133, 134, 136, 138, 139, 141, 142, 144, 150, 154, 159, 164, 169, 170, 171, 172, 175, 180, 185, 192, 196, 198, 216, 225, 226, 227, 228, 229, 231, 233, 234, 236, 237, 238, 239, 240, 248, 279], "sqrt": [10, 14, 23, 29, 33], "fury_actor": 10, "access": [10, 11, 13, 18, 22, 84, 88, 111, 116, 125, 126, 130, 139, 161, 163, 164, 174, 261, 266, 269, 270, 280, 282], "memori": [10, 11, 78, 133, 136, 139, 142, 145, 148, 154, 164, 165, 166, 188, 196, 224, 251, 266, 270], "vertic": [10, 11, 16, 17, 20, 23, 24, 26, 27, 29, 30, 37, 48, 49, 51, 68, 73, 74, 75, 76, 84, 109, 118, 152, 155, 156, 158, 160, 162, 167, 175, 180, 192, 195, 217, 218, 240, 248, 249, 256, 258, 262, 264, 265, 267, 268, 269, 270, 280, 285], "vertices_from_actor": [10, 11, 20, 23, 24, 26, 30, 33, 37, 73, 74, 75, 76, 84, 271], "num_vertic": [10, 11, 20, 73, 74, 75, 76, 84], "shape": [10, 11, 13, 16, 20, 22, 25, 27, 29, 33, 38, 44, 45, 50, 69, 73, 74, 75, 76, 81, 84, 125, 172, 173, 174, 176, 178, 179, 182, 184, 188, 202, 206, 207, 209, 212, 216, 225, 248, 249, 250, 251, 256, 257, 258, 261, 264, 267, 268, 269, 270, 271, 280, 286], "num_object": [10, 11, 73, 74, 75, 76, 84], "vcolor": [10, 11, 20, 26, 30, 42, 46], "colors_from_actor": [10, 11, 20, 26, 30, 42, 46, 271], "pickm": 10, "pickingmanag": [10, 248, 271], "callback": [10, 11, 13, 14, 16, 19, 21, 22, 27, 29, 33, 35, 37, 39, 41, 46, 49, 51, 70, 72, 73, 74, 75, 76, 81, 99, 101, 103, 107, 113, 120, 121, 126, 139, 140, 149, 152, 158, 162, 172, 173, 175, 182, 191, 203, 213, 215, 218, 242, 245, 250, 259, 265, 266, 268, 270, 278, 281, 286], "left_click_callback": [10, 13, 268, 271], "event_po": [10, 11, 13], "event_posit": [10, 11, 262, 271], "iren": [10, 11, 13, 166, 262, 266, 268, 270, 271], "picked_info": 10, "vertex_index": 10, "vertex": [10, 16, 37, 68, 70, 125, 169, 183, 185, 195, 196, 205, 210, 213, 217, 218, 248, 256, 260, 262, 265, 269, 286], "calcul": [10, 14, 16, 29, 58, 65, 68, 73, 75, 76, 84, 107, 109, 141, 143, 152, 173, 176, 178, 185, 186, 188, 196, 197, 202, 205, 206, 208, 212, 216, 217, 223, 228, 231, 234, 236, 238, 239, 243, 245, 248, 250, 256, 258, 260, 268, 269, 270], "index": [10, 34, 49, 50, 66, 74, 76, 84, 87, 139, 167, 184, 218, 233, 256, 260, 261, 268, 285], "object_index": [10, 11, 73, 75, 76, 84, 109, 118], "int": [10, 11, 20, 22, 23, 27, 32, 33, 35, 41, 73, 74, 75, 76, 79, 84, 139, 175, 184, 188, 248, 250, 251, 252, 253, 255, 256, 257, 258, 261, 262, 264, 265, 266, 268, 269, 270], "floor": [10, 188], "find": [10, 22, 68, 85, 100, 122, 135, 139, 146, 159, 166, 169, 171, 173, 185, 201, 204, 206, 208, 215, 217, 229, 230, 233, 235, 236, 238, 239, 268, 270, 287], "correspond": [10, 14, 25, 32, 33, 34, 42, 49, 68, 73, 75, 84, 109, 115, 126, 163, 225, 236, 243, 251, 261, 269], "sec": [10, 11, 20, 73, 74, 75, 76, 84, 109, 118], "color_add": 10, "30": [10, 14, 20, 23, 24, 25, 42, 46, 49, 50, 51, 54, 57, 70, 72, 73, 74, 75, 76, 125, 126, 170, 217, 248, 250, 268, 277], "uint8": [10, 11, 133, 248, 269], "tell": [10, 11, 16, 78, 148, 245, 248, 255], "modifi": [10, 23, 109, 131, 137, 139, 173, 175, 179, 181, 182, 184, 185, 191, 192, 212, 213, 216, 226, 251, 256, 267, 268, 286], "update_actor": [10, 11, 20, 23, 24, 26, 30, 33, 37, 42, 46, 73, 74, 75, 76, 271, 283], "face_index": [10, 11], "face": [10, 11, 16, 27, 29, 65, 99, 101, 103, 105, 107, 109, 110, 112, 115, 117, 118, 119, 120, 121, 124, 137, 145, 169, 171, 173, 184, 185, 193, 198, 227, 229, 235, 239, 241, 248, 249, 262, 264, 269, 285], "info": [10, 11, 96, 128, 135, 141, 145, 168, 215, 219, 287], "id": [10, 84, 217, 248, 268, 269, 286], "po": [10, 23, 29, 33, 53, 54, 56, 66, 67, 68, 72, 73, 74, 75, 76, 84, 118, 248, 253], "round": [10, 22, 27, 66, 67, 73, 74, 75, 76, 188, 248, 264], "bind": [10, 11, 158, 160, 162, 196, 203, 224, 227, 236, 256], "addobserv": [10, 13], "leftbuttonpressev": [10, 13, 266], "appear": [10, 11, 22, 54, 101, 139, 166, 171, 216, 217, 218, 229, 241, 251, 269, 270, 283, 285, 286], "1024": [10, 11, 69, 70, 85], "save": [10, 11, 13, 17, 22, 32, 126, 133, 145, 149, 179, 180, 211, 250, 252, 253, 256, 257, 264, 270, 277, 278, 280, 286, 287], "current": [10, 11, 22, 34, 35, 56, 70, 84, 85, 87, 98, 99, 100, 103, 104, 105, 108, 109, 112, 116, 117, 118, 120, 121, 122, 125, 126, 130, 131, 133, 137, 140, 143, 146, 149, 159, 161, 162, 163, 170, 171, 173, 174, 180, 187, 188, 190, 191, 197, 206, 207, 216, 218, 225, 227, 230, 232, 235, 236, 239, 242, 244, 250, 251, 253, 255, 256, 266, 268, 270, 287], "framebuff": [10, 11, 130, 224, 227, 233, 236, 239, 246, 266], "viz_pick": 10, "nonetheless": 11, "too": [11, 39, 49, 104, 132, 137, 152, 170, 171, 175, 176, 182, 184, 216, 243, 255, 283, 284], "abl": [11, 13, 16, 22, 29, 53, 57, 99, 101, 102, 103, 104, 106, 107, 108, 109, 110, 112, 115, 118, 120, 121, 122, 124, 125, 126, 138, 140, 147, 156, 163, 165, 171, 178, 180, 181, 182, 185, 190, 196, 199, 216, 217, 218, 224, 230, 233, 266], "more": [11, 13, 22, 25, 28, 33, 34, 36, 58, 65, 68, 78, 80, 84, 85, 102, 104, 107, 108, 109, 112, 125, 126, 132, 133, 139, 143, 145, 148, 149, 150, 152, 153, 154, 156, 158, 162, 163, 164, 171, 172, 176, 185, 186, 188, 192, 195, 196, 197, 199, 200, 201, 205, 211, 213, 215, 217, 222, 224, 228, 231, 233, 237, 238, 239, 240, 242, 243, 245, 248, 250, 251, 252, 261, 265, 266, 268, 269, 270, 280, 284, 287], "addit": [11, 22, 29, 31, 56, 80, 130, 131, 133, 138, 139, 140, 141, 162, 164, 166, 209, 217, 222, 231, 239, 242, 250, 251, 268, 270, 277, 285, 286, 287], "summari": [11, 25, 236, 243], "thousand": [11, 164, 165, 166, 217], "rectangular": 11, "box": [11, 21, 23, 24, 26, 27, 30, 37, 38, 46, 48, 49, 54, 57, 60, 68, 73, 74, 75, 76, 81, 84, 95, 105, 112, 126, 150, 159, 160, 163, 171, 178, 182, 184, 185, 206, 212, 216, 238, 241, 244, 245, 253, 258, 261, 264, 268, 269, 271, 279, 280, 281, 282], "hover": 11, "mous": [11, 13, 99, 121, 126, 139, 173, 176, 178, 188, 191, 200, 216, 245, 268, 286], "transpar": [11, 36, 248, 249, 250, 252, 270, 277, 278, 281], "everyth": [11, 22, 27, 57, 59, 61, 84, 99, 105, 111, 116, 124, 145, 152, 160, 166, 169, 174, 175, 178, 194, 208, 212, 213, 222, 233, 234, 237, 268, 287], "behind": [11, 106, 108, 109, 134, 150, 162, 164, 228, 229, 245], "num_cub": 11, "50000": 11, "keep": [11, 23, 24, 26, 49, 75, 76, 84, 87, 110, 118, 120, 126, 147, 169, 171, 173, 191, 193, 196, 206, 212, 218, 222, 225, 228, 230, 234, 237, 245, 248, 265, 270, 286, 287], "track": [11, 22, 24, 25, 36, 49, 73, 74, 75, 76, 84, 110, 118, 139, 191, 218, 248, 266, 268, 271, 284, 287], "number": [11, 23, 24, 26, 39, 49, 65, 68, 75, 78, 84, 107, 139, 150, 163, 169, 177, 224, 225, 233, 248, 249, 250, 251, 253, 255, 257, 261, 264, 266, 268, 269, 270, 287], "triangl": [11, 16, 17, 23, 29, 31, 65, 68, 156, 169, 175, 179, 184, 187, 217, 218, 248, 249, 256, 264, 269, 286], "everi": [11, 14, 16, 19, 22, 23, 24, 26, 27, 29, 30, 33, 34, 35, 37, 53, 70, 72, 98, 99, 122, 124, 149, 185, 215, 216, 218, 224, 239, 248, 249, 251, 258, 266, 269, 270, 287], "quad": [11, 192, 202, 216, 268], "ha": [11, 13, 16, 19, 24, 28, 33, 40, 41, 49, 54, 56, 58, 62, 68, 84, 85, 87, 100, 108, 110, 124, 131, 133, 135, 139, 140, 141, 142, 143, 144, 145, 146, 152, 161, 162, 166, 169, 171, 175, 184, 193, 203, 211, 212, 215, 216, 217, 218, 224, 236, 245, 246, 248, 250, 251, 254, 255, 264, 265, 268, 269, 270, 277, 286], "num_fac": 11, "cube_actor": [11, 17, 248], "2d": [11, 21, 31, 65, 81, 88, 99, 131, 142, 163, 164, 170, 184, 189, 216, 227, 242, 245, 248, 249, 257, 258, 262, 268, 269, 270, 281, 284], "rgba": [11, 224, 227, 248, 252, 264, 269, 270, 280], "255": [11, 13, 17, 31, 42, 46, 69, 248, 251, 269, 281], "ones": [11, 14, 59, 62, 63, 65, 74, 76, 133, 159, 245, 251], "98": [11, 25, 279, 283], "198": [11, 280], "texa": 11, "texture_2d": [11, 271], "astyp": 11, "selm": 11, "selectionmanag": [11, 248, 271], "selectable_off": [11, 262, 271], "hover_callback": 11, "region": 11, "inform": [11, 14, 34, 72, 74, 76, 84, 85, 87, 118, 139, 141, 145, 164, 171, 214, 216, 218, 225, 232, 243, 250, 251, 253, 261, 265, 266, 269, 270, 283], "node": [11, 29, 32, 33, 140, 143, 145, 146, 152, 162, 164, 166, 175, 190, 195, 208, 218, 244, 252, 256], "kei": [11, 14, 22, 29, 32, 33, 42, 43, 48, 59, 61, 66, 67, 79, 139, 174, 185, 216, 223, 248, 250, 256, 267, 268], "help": [11, 14, 28, 34, 48, 56, 58, 68, 74, 84, 99, 103, 109, 110, 115, 121, 122, 125, 126, 127, 130, 131, 138, 147, 154, 155, 158, 161, 165, 171, 172, 188, 192, 197, 216, 217, 230, 232, 244, 262, 267, 268, 287], "divid": [11, 29, 65, 66, 162, 216, 270], "color_chang": 11, "add_iren_callback": [11, 245, 270, 271], "viz_select": 11, "skin": [12, 190, 193, 195, 199, 205, 208, 210, 214, 256, 286], "riggedfigur": [12, 184, 208], "well": [12, 25, 27, 65, 107, 120, 131, 133, 134, 137, 143, 145, 146, 149, 155, 172, 174, 184, 194, 196, 199, 202, 209, 213, 217, 218, 222, 227, 230, 233, 236, 239, 245, 246, 250, 270], "skin_timelin": 12, "skin_anim": [12, 256, 271], "after": [12, 13, 14, 16, 18, 19, 22, 28, 35, 41, 48, 57, 59, 73, 74, 75, 78, 84, 87, 100, 102, 103, 104, 110, 112, 114, 115, 117, 118, 124, 125, 133, 134, 140, 143, 145, 146, 148, 149, 158, 159, 162, 163, 164, 169, 170, 171, 175, 178, 181, 182, 183, 191, 193, 194, 195, 197, 206, 208, 209, 212, 216, 223, 227, 230, 232, 233, 236, 238, 239, 241, 242, 244, 245, 251, 254, 266, 268, 282, 286, 287], "process": [12, 22, 26, 34, 59, 68, 78, 79, 80, 84, 88, 105, 107, 126, 136, 139, 140, 145, 158, 162, 164, 166, 171, 188, 223, 236, 242, 245, 257, 265, 268, 285], "bone": [12, 208, 218, 251, 256], "transform": [12, 13, 22, 25, 44, 65, 68, 104, 158, 163, 171, 176, 177, 178, 181, 185, 188, 190, 193, 195, 198, 199, 203, 210, 216, 217, 218, 242, 245, 248, 249, 250, 256, 269, 271, 280, 286], "lenght": 12, "initialise_skin": 12, "befor": [12, 14, 29, 65, 78, 84, 99, 100, 105, 109, 112, 121, 131, 137, 139, 140, 142, 143, 146, 148, 149, 152, 164, 169, 170, 171, 190, 193, 196, 208, 223, 230, 243, 265, 268, 270, 286], "won": [12, 84, 93, 124, 170, 189, 196, 266, 277], "t": [12, 13, 22, 23, 26, 44, 53, 54, 55, 56, 60, 62, 63, 65, 68, 74, 78, 80, 84, 101, 103, 104, 105, 107, 109, 112, 124, 126, 130, 131, 133, 134, 137, 139, 140, 142, 145, 149, 150, 152, 158, 161, 162, 164, 166, 169, 170, 171, 172, 173, 175, 176, 179, 180, 182, 183, 185, 186, 187, 188, 189, 190, 193, 196, 197, 199, 200, 201, 202, 203, 204, 205, 206, 207, 209, 210, 211, 212, 214, 215, 216, 223, 227, 230, 232, 233, 235, 236, 239, 242, 248, 250, 251, 261, 266, 269, 271, 277, 283, 284, 287], "initialize_skin": [12, 256, 271], "update_skin": [12, 256, 271], "viz_skin": 12, "o": [13, 31, 32, 33, 41, 65, 68, 78, 79, 80, 85, 149, 166, 248, 286], "nibabel": [13, 27, 255, 269], "nib": [13, 27], "dipi": [13, 17, 22, 25, 27, 36, 87, 89, 93, 234, 243, 248, 251, 253, 273, 277], "fetch_bundles_2_subject": [13, 22, 25], "fname_t1": 13, "path": [13, 14, 24, 30, 32, 33, 34, 35, 41, 53, 63, 65, 68, 79, 85, 189, 217, 218, 236, 239, 241, 247, 250, 253, 256, 257, 265, 268, 270, 286], "expandus": 13, "exp_bundles_and_map": 13, "bundles_2_subject": 13, "subj_1": [13, 22, 25], "t1_warp": 13, "nii": [13, 27], "gz": [13, 27, 270], "img": [13, 49, 268, 271], "get_fdata": [13, 27, 36, 286], "affin": [13, 22, 25, 27, 36, 248, 249, 269, 277], "hold": [13, 22, 57, 65, 139, 140, 183, 185, 196, 198, 216, 245, 268, 270], "background": [13, 24, 28, 66, 67, 69, 74, 105, 173, 207, 209, 216, 223, 238, 239, 241, 244, 251, 252, 268, 270, 271, 284], "higher": [13, 20, 23, 26, 116, 248, 250, 255, 265, 268], "would": [13, 18, 22, 49, 56, 58, 62, 67, 92, 94, 95, 97, 100, 105, 110, 112, 113, 119, 121, 123, 124, 126, 127, 129, 131, 134, 137, 140, 143, 146, 149, 157, 167, 169, 171, 173, 174, 176, 188, 202, 209, 212, 216, 217, 220, 224, 225, 227, 229, 230, 233, 237, 242, 245, 246, 250, 268, 287], "see": [13, 22, 25, 28, 29, 56, 58, 59, 66, 67, 68, 78, 87, 88, 93, 99, 101, 103, 105, 107, 109, 110, 112, 115, 118, 120, 121, 131, 133, 134, 136, 137, 138, 139, 140, 142, 143, 145, 146, 148, 149, 152, 155, 158, 160, 164, 169, 171, 178, 184, 185, 188, 191, 194, 197, 200, 201, 202, 207, 210, 212, 216, 222, 225, 227, 231, 239, 243, 245, 249, 251, 255, 265, 267, 270, 286], "mean": [13, 22, 24, 29, 33, 59, 73, 74, 75, 76, 78, 84, 126, 131, 137, 140, 143, 158, 160, 162, 169, 230, 233, 246, 248, 250, 258, 260, 269, 287], "std": [13, 171], "value_rang": [13, 194, 216, 248, 251, 286], "resampl": 13, "matrix": [13, 25, 27, 37, 68, 73, 75, 84, 109, 110, 173, 193, 195, 203, 205, 208, 210, 225, 231, 234, 242, 248, 249, 251, 256, 267, 269, 286], "default": [13, 22, 23, 24, 26, 30, 37, 51, 54, 55, 56, 61, 68, 70, 80, 84, 87, 99, 101, 120, 126, 149, 160, 218, 246, 248, 249, 250, 251, 252, 253, 255, 256, 257, 258, 259, 260, 261, 262, 264, 265, 266, 268, 269, 270, 280, 286], "behavior": [13, 28, 125, 131, 133, 136, 139, 142, 164, 166, 226, 239, 241, 261, 265, 266, 270, 281], "middl": [13, 27, 248, 268, 278], "last": [13, 34, 104, 107, 108, 109, 117, 146, 152, 158, 160, 169, 171, 172, 173, 176, 178, 195, 197, 204, 205, 212, 216, 224, 228, 229, 238, 250, 255, 267, 268, 269, 270, 286, 287], "dimens": [13, 161, 248, 251, 257, 258, 264, 266, 269, 270], "slice_actor": 13, "axial": [13, 14, 27], "ani": [13, 17, 29, 56, 58, 59, 84, 88, 89, 90, 91, 92, 94, 95, 97, 103, 104, 107, 109, 110, 112, 113, 115, 118, 120, 121, 123, 124, 126, 127, 129, 131, 133, 134, 137, 140, 143, 145, 146, 152, 157, 162, 164, 167, 169, 170, 171, 172, 173, 183, 187, 188, 191, 196, 202, 203, 209, 212, 216, 217, 218, 220, 223, 226, 230, 232, 233, 235, 237, 239, 248, 250, 251, 253, 269, 270, 287, 288], "given": [13, 28, 35, 100, 117, 118, 127, 162, 169, 218, 228, 248, 249, 250, 251, 252, 253, 255, 256, 259, 261, 265, 266, 267, 268, 269, 270, 286, 287], "howev": [13, 16, 22, 25, 27, 65, 78, 80, 102, 104, 108, 125, 133, 136, 145, 166, 175, 179, 184, 203, 205, 218, 224, 229, 235, 241, 252, 270, 286, 288], "copi": [13, 20, 22, 23, 24, 26, 30, 37, 130, 133, 171, 182, 207, 248, 255, 261, 265, 269], "slice_actor2": 13, "sagitt": [13, 27], "plane": [13, 18, 22, 35, 37, 73, 75, 76, 248, 251, 258, 267], "order": [13, 16, 27, 53, 56, 57, 58, 60, 62, 68, 84, 99, 105, 106, 118, 126, 131, 137, 146, 154, 158, 162, 192, 201, 204, 205, 218, 240, 243, 248, 249, 251, 261, 263, 269, 270, 278, 280, 281, 286], "uncom": [13, 36, 78, 79, 270], "line": [13, 14, 20, 22, 24, 25, 26, 30, 32, 33, 36, 37, 49, 51, 53, 78, 79, 87, 96, 126, 128, 133, 145, 150, 163, 168, 170, 171, 173, 176, 182, 185, 187, 188, 197, 200, 207, 216, 219, 224, 227, 228, 229, 233, 243, 245, 249, 250, 251, 268, 269, 270, 271, 277, 280, 285], "otherwis": [13, 29, 65, 224, 239, 248, 250, 251, 253, 255, 257, 259, 264, 265, 268, 269, 270, 288], "screenshot": [13, 22, 65, 158, 162, 270, 286], "follow": [13, 22, 23, 24, 27, 29, 30, 34, 36, 54, 55, 56, 59, 62, 65, 74, 76, 78, 79, 84, 87, 89, 90, 91, 92, 94, 95, 97, 109, 110, 113, 115, 118, 120, 121, 123, 124, 126, 129, 133, 136, 139, 157, 164, 166, 167, 177, 180, 181, 183, 186, 187, 190, 216, 217, 218, 220, 222, 226, 236, 242, 248, 250, 253, 255, 257, 269, 271, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288], "command": [13, 65, 84, 87, 89, 90, 91, 92, 94, 95, 97, 113, 123, 129, 157, 167, 171, 220, 265, 266, 271, 286, 287], "possibl": [13, 25, 28, 29, 34, 46, 65, 68, 84, 100, 105, 107, 108, 126, 137, 139, 140, 142, 148, 166, 171, 173, 217, 234, 240, 245, 248, 251, 255, 265, 267, 287, 288], "prefer": [13, 54, 65, 263], "non": [13, 29, 54, 163, 164, 169, 183, 217, 218, 236, 260], "standard": [13, 70, 123, 170, 171, 245, 248, 249, 251, 260, 265, 267, 269, 282, 285], "wai": [13, 22, 25, 34, 57, 62, 65, 66, 68, 87, 88, 101, 105, 122, 126, 130, 133, 136, 137, 139, 140, 143, 149, 160, 162, 166, 171, 172, 175, 180, 185, 191, 196, 201, 206, 207, 209, 211, 213, 215, 217, 218, 221, 222, 225, 230, 233, 237, 239, 245, 248, 251, 252, 269, 285, 286, 287, 288], "hsv": [13, 55, 177, 183, 217, 250, 251], "fname_fa": 13, "fa_1x1x1": 13, "notic": [13, 34, 65, 112, 145, 148, 161, 169, 181, 184, 208, 212, 241, 266, 283, 288], "min": [13, 25, 29, 194, 248, 251, 256, 268], "max": [13, 23, 25, 29, 78, 169, 171, 194, 248, 251, 256, 268], "lut": [13, 269, 283], "colormap_lookup_t": [13, 25, 248, 249, 271], "scale_rang": [13, 25, 251], "hue_rang": [13, 25, 251], "saturation_rang": [13, 25, 251], "becaus": [13, 22, 34, 65, 68, 105, 107, 110, 112, 118, 121, 130, 133, 137, 139, 142, 145, 146, 149, 161, 162, 164, 166, 171, 176, 185, 188, 191, 193, 196, 197, 206, 211, 226, 230, 234, 243, 251, 267], "lookup": [13, 248, 249, 251], "tabl": [13, 184, 248, 249, 251], "interpol": [13, 32, 33, 52, 54, 59, 63, 66, 81, 163, 169, 172, 186, 189, 190, 193, 196, 199, 203, 205, 215, 217, 248, 251, 256, 260, 269, 271, 286], "fa_actor": 13, "lookup_colormap": [13, 25, 248, 249], "clear": [13, 25, 65, 66, 68, 102, 171, 223, 231, 248, 260, 270, 271, 285], "slices_lut": 13, "abil": [13, 144, 159, 161, 164, 175, 189, 211, 214, 217, 218, 251, 286], "voxel": [13, 22, 248, 249, 269], "requir": [13, 22, 25, 29, 33, 65, 73, 75, 84, 87, 90, 99, 101, 103, 133, 137, 138, 140, 143, 152, 163, 169, 171, 172, 176, 185, 191, 197, 202, 205, 209, 211, 216, 218, 224, 226, 230, 237, 243, 245, 251, 266, 268, 275, 277, 280, 286, 287], "area": [13, 22, 103, 126, 197, 236, 246, 262], "pipelin": [13, 22, 95, 100, 164, 169, 236, 270, 279, 281, 284], "therefor": [13, 22, 25, 66, 84, 99, 103, 105, 107, 110, 126, 130, 133, 139, 145, 164, 238, 248, 269], "don": [13, 22, 65, 68, 78, 80, 130, 133, 162, 172, 183, 210, 216, 233, 287], "recommend": [13, 22, 56, 87, 133, 141, 161, 250, 287], "appropri": [13, 22, 68, 73, 84, 120, 163, 177, 243, 268], "allow": [13, 22, 29, 59, 65, 68, 78, 103, 105, 110, 126, 133, 136, 137, 139, 142, 143, 146, 155, 162, 164, 165, 177, 183, 198, 204, 213, 215, 217, 218, 225, 228, 231, 239, 251, 262, 266, 268, 270, 278, 280, 284, 285, 286, 287], "show_m": [13, 22, 27, 34], "1200": [13, 22, 27], "ll": [13, 14, 22, 28, 29, 37, 39, 49, 51, 79, 130, 132, 133, 135, 138, 139, 141, 142, 144, 145, 146, 147, 148, 150, 151, 153, 154, 156, 159, 161, 165, 170, 179, 181, 187, 193, 205, 221], "label_posit": 13, "label_valu": 13, "result_posit": 13, "result_valu": 13, "panel_pick": 13, "125": [13, 280], "opac": [13, 19, 22, 27, 32, 34, 36, 52, 62, 65, 68, 78, 79, 80, 81, 85, 217, 225, 248, 249, 250, 264, 268, 269, 271, 277, 283], "55": [13, 22, 27, 40, 41, 277], "disabl": [13, 84, 195, 247, 270, 282], "_ev": 13, "geteventposit": 13, "picker": 13, "j": [13, 20, 66, 67, 73, 74, 76, 156, 157, 171, 261, 266, 284], "k": [13, 26, 29, 62, 73, 76, 87, 89, 90, 91, 92, 94, 95, 96, 97, 113, 123, 128, 129, 157, 167, 168, 219, 220, 248, 249, 267, 269], "getpointijk": 13, "format": [13, 66, 70, 85, 88, 155, 160, 163, 170, 171, 175, 176, 184, 218, 224, 227, 249, 250, 251, 253, 257, 268, 286], "8f": 13, "setinterpol": 13, "By": [13, 24, 25, 34, 51, 80, 84, 171, 223, 248, 251, 269], "becom": [13, 149, 194, 206, 210], "easi": [13, 22, 25, 29, 59, 65, 67, 88, 130, 133, 143, 164, 166, 172, 174, 176, 185, 212, 228, 250], "effici": [13, 65, 109, 125, 130, 143, 164, 172, 176, 200, 216, 248, 251], "project": [13, 27, 37, 89, 90, 91, 92, 94, 95, 96, 97, 98, 99, 102, 103, 104, 106, 107, 108, 111, 113, 114, 116, 117, 119, 122, 123, 125, 126, 127, 128, 129, 130, 133, 157, 162, 163, 164, 167, 168, 169, 170, 171, 175, 189, 216, 217, 218, 219, 220, 221, 222, 223, 224, 227, 228, 230, 233, 236, 239, 240, 242, 248, 249, 251, 267, 270, 271, 280, 283, 287], "perspect": [13, 124, 270], "parallel": [13, 30, 75, 133, 164, 270], "associ": [13, 53, 68, 134, 139, 149, 172, 176, 216, 223, 234, 248, 250, 251, 261, 269], "show_m_mosa": 13, "left_click_callback_mosa": 13, "two": [13, 14, 20, 32, 33, 39, 42, 45, 48, 49, 54, 56, 59, 61, 65, 68, 78, 84, 87, 107, 122, 124, 132, 135, 139, 143, 145, 146, 160, 162, 163, 164, 166, 171, 172, 180, 183, 189, 192, 196, 198, 199, 205, 206, 209, 214, 216, 217, 218, 232, 239, 245, 246, 251, 261, 264, 267, 268, 284, 287], "nest": [13, 284], "grid": [13, 23, 25, 27, 35, 45, 137, 146, 152, 161, 163, 249, 258, 268, 269, 271, 277, 278], "15": [13, 22, 30, 41, 42, 49, 51, 53, 54, 61, 63, 72, 76, 164, 216, 218, 272, 278, 279, 280, 282, 284], "column": [13, 251, 257, 267], "row": [13, 251, 257, 269], "adjust": [13, 22, 143, 222, 223, 226, 229, 231, 234, 237, 244, 269, 286], "those": [13, 34, 53, 59, 65, 121, 136, 139, 145, 164, 171, 205, 223, 235, 239, 242, 245, 251, 266, 268], "dataset": [13, 22, 25, 27, 32, 33, 36, 142, 237], "col": [13, 42, 55, 70], "border": [13, 65, 134, 137, 149, 155, 162, 178, 182, 202, 206, 207, 209, 216, 245, 268, 284], "slice_mosa": 13, "abov": [13, 16, 25, 29, 54, 57, 58, 75, 84, 87, 102, 104, 107, 108, 111, 114, 115, 127, 136, 138, 139, 183, 196, 201, 202, 212, 213, 216, 217, 236, 239, 251, 288], "down": [13, 23, 26, 29, 39, 49, 73, 74, 75, 76, 84, 126, 169, 228, 248, 268], "button": [13, 14, 22, 38, 81, 99, 126, 140, 174, 189, 216, 217, 268, 278, 285, 286], "drag": [13, 140, 155, 162, 176, 185, 191, 216, 268], "out": [13, 53, 56, 58, 68, 70, 99, 102, 103, 104, 105, 106, 108, 109, 110, 111, 112, 114, 116, 117, 118, 119, 120, 121, 122, 127, 131, 133, 140, 143, 147, 149, 152, 158, 162, 169, 171, 172, 173, 176, 178, 181, 184, 191, 193, 195, 196, 200, 203, 204, 205, 206, 209, 210, 215, 221, 224, 227, 229, 233, 236, 238, 239, 242, 248, 250, 251, 255, 258, 268, 270, 272, 283, 288], "scroll": [13, 103, 120, 169, 268], "wheel": [13, 57, 88], "viz_slic": 13, "manipul": [14, 18, 30, 68, 105, 143, 150, 176, 177, 185, 196, 261], "simul": [14, 20, 24, 25, 34, 66, 71, 81, 105, 109, 110, 112, 115, 118, 126, 150, 163, 217, 218, 277, 282, 283, 285, 286], "orbit": [14, 171], "motion": [14, 21, 53, 63, 74, 81, 150, 163, 189, 197, 217, 250, 283], "read_viz_icon": [14, 39, 49, 271, 280], "paus": [14, 61, 62, 189, 217, 250, 268, 271, 286], "pause_button": 14, "button2d": [14, 39, 49, 146, 216, 271, 284], "icon_fnam": [14, 39, 49, 268], "squar": [14, 31, 37, 39, 45, 49, 169, 258, 264, 268, 271, 279, 281], "fname": [14, 39, 49, 250, 252, 253, 257, 270], "pause2": 14, "start_button": 14, "play3": 14, "33": [14, 39, 49, 139, 266, 270], "66": [14, 39, 49, 279], "relev": [14, 112, 145, 162, 226, 243], "planet": 14, "includ": [14, 39, 40, 41, 42, 43, 46, 47, 48, 49, 50, 51, 65, 67, 70, 85, 88, 96, 98, 99, 106, 116, 125, 128, 131, 132, 134, 135, 149, 155, 158, 167, 168, 180, 217, 219, 226, 229, 232, 235, 239, 255, 270, 283, 285, 287, 288], "rel": [14, 60, 84, 146, 149, 152, 178, 217, 248, 270, 287], "planets_data": 14, "8k_mercuri": 14, "earth_dai": 14, "58": [14, 277], "8k_venus_surfac": 14, "9": [14, 24, 53, 54, 57, 58, 61, 65, 66, 67, 68, 76, 84, 87, 125, 126, 129, 145, 162, 163, 164, 167, 172, 175, 184, 216, 217, 218, 248, 251, 258, 265, 268, 269, 272, 281, 282, 283, 285, 287], "243": [14, 282], "11": [14, 42, 46, 66, 67, 125, 126, 162, 163, 164, 170, 171, 216, 217, 218, 269, 272, 277, 285, 286], "8k_mar": 14, "13": [14, 61, 65, 73, 75, 125, 126, 145, 148, 164, 216, 217, 218, 272, 278, 284, 286], "jupit": 14, "16": [14, 29, 33, 34, 37, 42, 46, 54, 65, 68, 87, 125, 126, 148, 162, 163, 164, 216, 217, 248, 258, 266, 268, 269, 286], "41": [14, 34, 277], "8k_saturn": 14, "19": [14, 29, 30, 125, 126, 162, 163, 164, 217, 218], "8k_saturn_ring_alpha": 14, "2k_uranu": 14, "22": [14, 57, 154, 165, 216, 277, 286], "70": [14, 60], "2k_neptun": 14, "8k_sun": 14, "27": [14, 29, 53, 54, 73, 75, 216, 282], "To": [14, 16, 18, 23, 25, 29, 40, 41, 43, 45, 48, 49, 57, 62, 65, 70, 84, 85, 87, 88, 89, 90, 91, 92, 94, 95, 97, 100, 104, 111, 113, 123, 129, 133, 139, 145, 146, 149, 152, 157, 164, 167, 175, 184, 185, 188, 194, 196, 202, 207, 216, 220, 221, 223, 226, 227, 229, 236, 237, 238, 241, 244, 251, 255, 256, 268, 287], "advantag": [14, 136, 139, 155, 218, 245], "previous": [14, 34, 65, 115, 118, 124, 143, 149, 160, 162, 173, 182, 200, 202, 216, 245, 251], "structur": [14, 17, 22, 29, 32, 137, 140, 145, 163, 164, 170, 175, 177, 228, 233, 237, 240, 258, 261, 270, 280], "auxiliari": 14, "respect": [14, 20, 66, 68, 74, 76, 84, 99, 101, 105, 126, 131, 140, 160, 175, 178, 207, 216, 225, 248, 256, 266, 268, 269, 280], "properti": [14, 34, 48, 54, 59, 62, 66, 68, 69, 105, 109, 133, 139, 143, 164, 167, 176, 177, 182, 183, 189, 201, 213, 216, 217, 218, 226, 229, 238, 248, 249, 250, 251, 256, 260, 261, 266, 268, 270, 277, 285], "init_planet": 14, "planet_data": 14, "dict": [14, 46, 56, 61, 247, 250, 251, 256, 257, 260, 267, 268, 270, 280], "dictionari": [14, 22, 42, 43, 54, 58, 85, 139, 187, 214, 251, 253, 256, 260, 267, 268], "planet_actor": 14, "planet_fil": 14, "planet_imag": 14, "map": [14, 21, 22, 25, 34, 46, 65, 68, 81, 163, 165, 166, 169, 218, 248, 249, 251, 253, 257, 267], "assign": [14, 53, 54, 98, 100, 104, 108, 116, 117, 119, 122, 173, 204, 248, 250, 251, 261, 269], "planet_actor_list": 14, "mercury_actor": 14, "venus_actor": 14, "mars_actor": 14, "jupiter_actor": 14, "saturn_actor": 14, "saturn_rings_actor": 14, "uranus_actor": 14, "neptune_actor": 14, "sun_actor": 14, "gravit": 14, "constant": [14, 58, 65, 107, 139, 173, 271], "g": [14, 22, 36, 84, 85, 218, 248, 249, 251, 253, 260, 261, 264, 269, 270, 287], "central": [14, 65, 68], "mass": [14, 75, 84], "sun": [14, 282], "graviti": [14, 73, 74, 75, 76, 126, 169], "multipli": [14, 109, 173, 267, 269], "togeth": [14, 22, 65, 67, 84, 194, 209, 216, 226, 239, 242], "miu": 14, "g_expon": 14, "float_pow": 14, "g_constant": 14, "673": [14, 206, 216, 286], "m_expon": 14, "1073741824": 14, "power": [14, 21, 29, 65, 81, 88, 171, 217], "m_constant": 14, "989": 14, "get_orbit_period": 14, "get_orbital_posit": 14, "orbit_period": 14, "axi": [14, 20, 23, 24, 26, 29, 30, 32, 33, 37, 57, 68, 74, 76, 79, 84, 109, 162, 175, 192, 248, 249, 258, 267, 268, 269, 270, 285], "should": [14, 17, 56, 57, 59, 80, 84, 133, 134, 136, 137, 139, 143, 145, 148, 152, 162, 164, 180, 181, 191, 212, 218, 224, 227, 228, 229, 230, 231, 248, 249, 250, 251, 253, 256, 257, 260, 264, 265, 266, 268, 269, 270, 281, 283, 286, 287], "rotate_axi": 14, "funtction": 14, "better": [14, 25, 42, 46, 51, 58, 63, 68, 73, 75, 76, 88, 100, 124, 125, 127, 133, 139, 141, 145, 148, 164, 169, 171, 172, 211, 222, 238, 239, 240, 242], "60": [14, 23, 58, 116, 248, 270, 277, 281], "update_planet_posit": 14, "r_planet": 14, "pos_planet": 14, "calculate_path": 14, "planet_track": 14, "saturn": 14, "ring": [14, 47, 49, 51, 268], "r_time": 14, "taken": [14, 24, 268], "dai": [14, 100, 106, 127, 134, 171, 229, 236, 239, 242], "itself": [14, 53, 57, 65, 137, 140, 143, 162, 213, 216, 224, 227, 229], "p_data": 14, "saturn_r": 14, "sun_data": 14, "rplanet": 14, "orbit_actor": 14, "linewidth": [14, 20, 24, 25, 26, 30, 33, 37, 248, 249, 261, 271, 277], "control": [14, 28, 31, 38, 49, 53, 54, 55, 58, 61, 62, 65, 68, 74, 76, 81, 115, 126, 142, 164, 169, 171, 172, 178, 180, 183, 186, 189, 201, 217, 224, 225, 248, 250, 264, 268, 286], "valu": [14, 22, 23, 26, 27, 29, 30, 34, 37, 41, 43, 45, 46, 48, 49, 50, 51, 53, 54, 56, 58, 59, 61, 65, 66, 67, 73, 74, 75, 76, 84, 85, 105, 106, 109, 126, 139, 145, 162, 163, 172, 184, 188, 189, 194, 196, 197, 198, 208, 214, 230, 233, 239, 244, 245, 248, 249, 250, 251, 252, 253, 256, 257, 258, 260, 261, 263, 265, 267, 268, 269, 270, 271, 280, 283, 286, 287], "p_actor": 14, "zip": [14, 26, 81, 251], "pos_saturn": 14, "2000": [14, 73, 74, 84], "perform": [14, 34, 37, 39, 42, 48, 49, 65, 68, 73, 75, 78, 80, 84, 88, 108, 116, 125, 129, 130, 131, 133, 137, 139, 142, 145, 162, 164, 177, 196, 198, 216, 225, 261, 266, 283], "action": [14, 39, 49, 129, 133, 162, 164, 216, 220, 235, 238, 283, 286], "start_anim": 14, "i_ren": [14, 39, 41, 49, 268], "_button": [14, 39, 49], "pause_anim": 14, "destroy_tim": [14, 19, 270, 271], "on_left_mouse_button_click": [14, 39, 49, 268, 271], "viz_solar_system_anim": 14, "viz_solar_system": [14, 282], "vtksourc": [15, 179, 181, 269], "prim_sphere_actor": 15, "vtkspheresourc": 15, "vtk_sphere_actor": 15, "viz_spher": 15, "spike": 16, "point": [16, 23, 26, 29, 30, 34, 37, 53, 56, 58, 65, 68, 69, 84, 120, 133, 140, 145, 149, 152, 158, 160, 164, 171, 173, 176, 177, 178, 180, 185, 187, 188, 194, 196, 197, 200, 209, 212, 216, 233, 235, 236, 239, 242, 245, 246, 249, 250, 251, 264, 267, 269, 270, 271, 283], "evenli": [16, 248, 258], "distribut": [16, 24, 27, 67, 88, 162, 167, 224, 246, 248, 255, 258, 285, 288], "connect": [16, 22, 32, 37, 53, 68, 71, 72, 73, 74, 75, 76, 78, 80, 81, 107, 163, 169, 242, 269, 286], "prim_spher": [16, 271], "provid": [16, 22, 25, 29, 34, 36, 53, 55, 59, 65, 88, 99, 105, 125, 126, 131, 134, 137, 143, 149, 162, 170, 189, 223, 226, 235, 238, 246, 248, 250, 251, 255, 258, 261, 262, 264, 265, 266, 267, 268, 269, 270, 280, 288], "symmetric362": [16, 27, 264], "gen_fac": [16, 264], "green": [16, 36, 42, 43, 46, 48, 164, 248, 268], "point_actor": [16, 248], "point_radiu": [16, 30, 248], "vector": [16, 25, 56, 68, 84, 109, 164, 196, 197, 225, 248, 250, 251, 264, 267, 269, 270], "perpendicular": [16, 270], "whether": [16, 65, 152, 171, 197, 202, 206, 212, 246, 248, 250, 251, 261, 264, 268, 270, 287, 288], "repres": [16, 17, 29, 30, 32, 33, 68, 137, 145, 160, 163, 164, 245, 246, 248, 251, 255, 261, 264, 266, 268, 269, 270], "curv": [16, 30, 163, 177, 193, 248, 250, 269], "normals_from_v_f": [16, 271], "light": [16, 34, 65, 66, 68, 70, 102, 104, 106, 169, 175, 196, 204, 215, 218, 260, 265], "bounc": [16, 197], "them": [16, 22, 27, 29, 32, 33, 34, 36, 39, 42, 44, 45, 46, 47, 49, 50, 51, 55, 57, 65, 68, 69, 70, 74, 100, 101, 103, 108, 109, 110, 115, 126, 127, 132, 140, 145, 146, 152, 159, 163, 164, 169, 170, 172, 173, 178, 179, 180, 183, 185, 189, 193, 196, 200, 207, 209, 212, 216, 218, 222, 223, 224, 232, 246, 250, 252, 261, 268, 277, 287], "get_actor_from_primit": [16, 29, 271], "primitive_color": 16, "primitive_actor": 16, "backface_cul": [16, 269], "small": [16, 59, 132, 133, 135, 152, 159, 171, 200, 237, 265, 279, 284], "fun": [16, 169, 170], "user": [16, 19, 59, 64, 70, 77, 80, 84, 88, 99, 103, 105, 106, 111, 114, 116, 122, 124, 125, 126, 127, 132, 133, 135, 139, 140, 143, 145, 162, 164, 166, 174, 176, 182, 189, 206, 209, 211, 215, 216, 223, 224, 237, 245, 246, 251, 255, 266, 268, 286, 287], "millisecond": [16, 19, 23, 24, 26, 30, 33, 37, 70, 78, 266], "applic": [16, 19, 65, 96, 128, 133, 145, 164, 168, 171, 174, 217, 219, 227, 230, 236, 239, 266, 269, 285], "been": [16, 19, 39, 40, 41, 42, 46, 47, 49, 50, 51, 58, 63, 69, 70, 87, 88, 99, 101, 110, 114, 116, 130, 133, 134, 138, 140, 143, 144, 145, 146, 148, 151, 152, 162, 164, 169, 170, 171, 193, 203, 217, 222, 227, 245, 246, 248, 251, 263, 265, 268], "getproperti": [16, 19, 68, 85], "setopac": [16, 19, 85], "viz_spiki": 16, "instead": [16, 18, 29, 54, 59, 78, 105, 118, 136, 140, 143, 158, 169, 175, 176, 183, 188, 189, 192, 193, 196, 198, 200, 201, 204, 205, 209, 211, 212, 213, 217, 250, 255, 266, 270], "other": [16, 17, 20, 22, 56, 58, 60, 61, 65, 68, 78, 80, 99, 103, 107, 109, 122, 124, 131, 132, 133, 134, 137, 139, 140, 141, 143, 144, 145, 146, 149, 152, 155, 156, 160, 164, 167, 169, 171, 172, 173, 174, 175, 176, 177, 180, 181, 189, 192, 193, 196, 199, 201, 211, 213, 225, 226, 229, 231, 232, 233, 237, 238, 239, 243, 248, 251, 261, 265, 269, 270, 285, 288], "geometr": [16, 29, 47, 50, 65, 68, 216], "vtk": [17, 22, 41, 70, 84, 85, 87, 91, 98, 99, 102, 105, 121, 122, 125, 126, 129, 130, 133, 135, 136, 137, 139, 141, 145, 150, 161, 162, 163, 164, 166, 167, 169, 170, 172, 191, 192, 196, 197, 198, 209, 218, 224, 227, 233, 236, 246, 247, 248, 249, 252, 256, 257, 260, 265, 266, 269, 270, 276, 277, 278, 280, 281, 282, 283, 285, 286], "idea": [17, 88, 96, 100, 104, 108, 117, 120, 121, 125, 126, 128, 139, 145, 161, 168, 169, 170, 171, 172, 174, 176, 212, 219, 221, 225, 231, 236, 237, 240, 242, 281], "save_polydata": [17, 271], "lib": [17, 133, 145, 160, 164, 166, 167, 271, 285], "empti": [17, 251, 256, 266, 267, 286, 287], "my_polydata": 17, "my_vertic": 17, "type": [17, 31, 84, 88, 126, 132, 139, 143, 144, 145, 162, 163, 164, 171, 175, 184, 218, 226, 227, 237, 245, 247, 248, 249, 250, 251, 252, 253, 255, 256, 257, 258, 260, 261, 262, 264, 265, 266, 267, 268, 269, 270, 280], "mention": [17, 54, 110, 137, 169, 171, 176, 196, 200, 201, 211, 212, 213, 216, 217, 224, 228, 245, 280], "int64": 17, "my_triangl": 17, "i8": 17, "set_polydata_vertic": [17, 271], "set_polydata_triangl": [17, 271], "file_nam": [17, 257, 268], "my_cub": 17, "cube_polydata": 17, "cube_vertic": 17, "get_polydata_vertic": [17, 271], "set_polydata_color": [17, 271], "get_polydata_color": [17, 271], "viz_surfac": [17, 277], "bmp": [18, 257], "jpeg": [18, 253, 257, 266, 268], "avail": [18, 22, 25, 32, 33, 77, 81, 84, 88, 89, 90, 91, 92, 94, 95, 97, 100, 102, 104, 105, 108, 111, 113, 114, 117, 119, 122, 123, 127, 129, 131, 133, 139, 145, 151, 157, 160, 162, 164, 167, 169, 220, 236, 242, 248, 261, 266, 270], "viz_textur": 18, "level": [19, 29, 169, 171, 224, 228, 248, 251, 260], "insid": [19, 20, 24, 27, 68, 78, 130, 137, 139, 140, 143, 145, 154, 160, 162, 164, 166, 180, 183, 190, 192, 197, 211, 218, 224, 230, 233, 239, 242, 243, 245, 246, 250, 266, 270, 286], "timer_id": [19, 270], "destroi": [19, 76], "replac": [19, 65, 70, 84, 92, 95, 120, 126, 162, 209, 215, 239, 254, 255, 265, 268, 277, 279, 280, 285, 286], "faster": [19, 68, 69, 100, 112, 125, 159, 169, 196, 217], "viz_tim": 19, "demonstr": [20, 23, 25, 27, 34, 39, 42, 43, 44, 46, 47, 48, 49, 51, 53, 70, 84, 115, 117, 119, 124, 126, 137, 138, 143, 158, 162, 163, 217], "collid": [20, 171, 248, 258, 282], "wall": [20, 71, 76, 81, 109, 112, 118, 121, 126], "veloc": [20, 30, 33, 150, 163, 169, 286], "simplic": [20, 171], "forc": [20, 33, 72, 73, 74, 75, 76, 120, 126, 136, 140, 145, 162, 164, 213, 250, 283, 286], "edg": [20, 31, 32, 33, 37, 68, 79, 145, 164, 207, 251], "box_edg": 20, "box_lx": 20, "box_li": 20, "box_lz": 20, "edge1": 20, "edge2": 20, "edge3": 20, "edge4": 20, "edge5": 20, "lower": [20, 23, 65, 108, 216, 229, 250, 255, 268], "num_particl": [20, 24], "ndindex": 20, "distanc": [20, 25, 29, 33, 37, 65, 68, 69, 88, 113, 138, 163, 164, 165, 169, 173, 188, 220, 248, 250, 261, 268, 270, 281, 286], "linalg": [20, 22, 25], "norm": [20, 24, 27, 248, 249, 267], "vel_mag_i": 20, "vel": 20, "vel_mag_j": 20, "equal": [20, 24, 58, 59, 84, 112, 163, 248, 249, 255, 269], "sum": [20, 112, 171, 239, 242, 261, 267], "dt": [20, 23, 56], "where": [20, 25, 26, 57, 62, 68, 84, 87, 99, 109, 112, 118, 126, 133, 135, 137, 139, 145, 152, 163, 164, 171, 173, 175, 178, 194, 205, 210, 213, 221, 222, 223, 224, 232, 248, 249, 251, 252, 253, 260, 261, 263, 267, 268, 269, 270, 287], "randomli": [20, 33, 54, 283], "step": [20, 24, 28, 32, 33, 36, 55, 56, 58, 65, 68, 72, 73, 74, 75, 76, 84, 87, 100, 102, 107, 116, 117, 118, 130, 150, 163, 169, 196, 217, 230, 233, 236, 237, 242, 243, 245, 250, 251, 281, 286, 287], "With": [20, 22, 34, 65, 80, 88, 105, 115, 122, 126, 127, 139, 143, 152, 184, 235, 287], "streamtub": [20, 22, 25, 271, 280], "box_cent": 20, "box_direct": 20, "box_color": 20, "line_actor": [20, 30], "no_vertices_per_spher": 20, "len": [20, 23, 24, 26, 30, 32, 33, 37, 41, 72, 79, 248, 266], "initial_vertic": [20, 23, 24, 26, 30], "reset_clipping_rang": [20, 22, 33, 36, 42, 46, 49, 51, 270, 271], "simple_collis": 20, "bunch": [21, 47, 49, 50, 70, 81], "app": [21, 32, 81], "marker": [21, 28, 59, 81, 130, 136, 137, 157, 164, 165, 271, 284, 287], "interdisciplinari": [21, 81], "journal": [21, 81, 253, 284], "network": [21, 81, 130, 134, 136, 148, 164, 166, 280, 283], "roi": [21, 81, 240, 248, 286], "streamlin": [21, 22, 81, 93, 223, 248, 249, 251, 269, 280], "charg": [21, 81], "particl": [21, 24, 81, 150, 163, 282], "magnet": [21, 26, 81], "electr": [21, 26, 81], "field": [21, 26, 81, 113, 164, 236, 248, 249, 251, 268, 269, 281], "brownian": [21, 81, 150, 163, 283, 286], "video": [21, 81, 98, 99, 139, 164, 171, 183, 204, 217, 250, 266, 270, 284], "fine": [21, 81, 130, 133, 136, 156, 164, 173, 175, 178, 203, 212, 224, 227, 285], "tune": [21, 81, 130, 136, 156, 221, 285], "opengl": [21, 81, 87, 100, 130, 133, 136, 164, 166, 169, 170, 224, 233, 236, 242, 246, 265, 266, 270, 285, 286], "state": [21, 59, 81, 130, 136, 137, 143, 145, 164, 171, 189, 217, 224, 250, 265, 268, 270, 280, 285], "shader": [21, 65, 68, 69, 70, 88, 93, 98, 100, 102, 108, 111, 116, 122, 123, 125, 130, 138, 162, 164, 166, 167, 169, 172, 183, 186, 191, 192, 198, 202, 209, 213, 215, 217, 218, 222, 228, 233, 236, 239, 242, 246, 248, 253, 271, 280, 282, 283, 284, 285, 286], "electromagnet": [21, 81, 283], "wave": [21, 30, 81, 147, 285], "propag": [21, 81, 131, 143, 146, 188, 226, 229, 283], "metric": [21, 65, 68, 81], "tesseract": [21, 81, 218, 286], "hypercub": [21, 81], "collis": [21, 71, 73, 81, 88, 121, 126], "advanc": [21, 81, 88, 140, 222, 261, 283], "brain": [21, 81, 240], "fiber": [21, 81, 277], "odf": [21, 81, 94, 129, 222, 243, 248, 249, 278, 283], "visualis": [21, 81, 132], "fractal": [21, 81, 286], "version": [21, 80, 81, 133, 136, 139, 142, 162, 164, 167, 169, 171, 172, 174, 183, 192, 197, 217, 218, 220, 236, 248, 251, 255, 261, 263, 265, 266, 268, 270, 277, 280, 282, 285, 286, 287], "pbr": [21, 64, 81, 167, 283, 285], "thin": [22, 163], "capabl": [22, 27, 111, 117, 118, 119, 125, 127, 161, 217, 218, 248], "toolkit": [22, 246], "framework": [22, 98, 117, 125, 224], "tailor": 22, "diffus": [22, 234, 237, 240, 260], "modul": [22, 23, 24, 26, 27, 29, 30, 34, 59, 65, 66, 67, 68, 81, 84, 129, 131, 133, 135, 137, 139, 143, 144, 145, 146, 147, 150, 153, 154, 155, 156, 158, 159, 160, 162, 163, 164, 166, 167, 213, 217, 218, 220, 248, 251, 254, 261, 264, 271, 277, 283, 284, 285, 286, 287], "wa": [22, 67, 88, 99, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 114, 115, 116, 117, 118, 119, 120, 121, 122, 124, 125, 126, 127, 131, 133, 134, 135, 137, 138, 139, 140, 141, 142, 143, 145, 146, 147, 148, 149, 150, 152, 156, 158, 161, 163, 164, 166, 169, 170, 171, 172, 173, 174, 175, 176, 178, 179, 181, 182, 184, 185, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 202, 205, 206, 208, 209, 212, 216, 217, 221, 223, 224, 225, 226, 228, 229, 231, 232, 235, 237, 243, 244, 245, 246, 250, 251, 252, 255, 266, 269, 270, 286, 287], "fvtk": [22, 277], "still": [22, 65, 87, 109, 112, 120, 122, 126, 139, 143, 146, 149, 164, 169, 171, 181, 185, 193, 195, 202, 203, 205, 213, 225, 234, 239, 240, 241, 245, 255], "backward": [22, 277, 280], "compat": [22, 88, 97, 113, 129, 164, 165, 166, 197, 226, 235, 277, 280, 281, 283], "comprehens": 22, "fetcher": [22, 33, 70, 79, 175, 216, 271, 280, 283, 286], "read_bundles_2_subject": [22, 25], "disk": [22, 47, 49, 169, 251, 252, 268, 271, 285], "open": [22, 80, 87, 88, 89, 90, 91, 92, 94, 95, 96, 97, 113, 123, 126, 128, 129, 130, 131, 136, 139, 143, 145, 157, 162, 164, 167, 168, 171, 172, 217, 219, 220, 226, 264, 268, 284, 286, 287], "dialog": [22, 118, 126, 268, 280], "snapshot": [22, 271, 279, 285, 286], "slider": [22, 27, 32, 34, 38, 45, 81, 152, 177, 180, 189, 194, 209, 212, 216, 217, 268, 279, 280, 285, 286], "input": [22, 25, 34, 56, 63, 65, 68, 189, 193, 248, 249, 251, 255, 269, 270], "oper": [22, 65, 84, 109, 126, 166, 175, 224, 227, 230, 245, 286], "fa": [22, 25], "t1": [22, 56, 250], "lineslider2d": [22, 27, 34, 45, 48, 49, 51, 115, 180, 229, 271, 280], "widget": [22, 27, 77, 81, 89, 99, 126, 162, 166, 191, 197, 271, 273, 277], "fetch": [22, 27, 34, 39, 40, 41, 42, 43, 44, 46, 47, 48, 49, 50, 51, 152, 162, 216, 218, 237, 253, 277, 286, 287], "output": [22, 65, 70, 102, 108, 111, 114, 117, 119, 122, 125, 127, 163, 171, 202, 209, 233, 241, 245, 257, 263, 269, 270], "af": 22, "arcuat": 22, "fasciculu": 22, "subject": [22, 171, 217], "cst": [22, 25], "cc_1": 22, "bring": [22, 65, 84, 109], "ra": [22, 248], "1mm": [22, 248], "extend": [22, 29, 171, 223], "design": [22, 65, 67, 84, 98, 110, 112, 124, 126, 140, 146, 160, 169, 177, 231, 233, 267], "decid": [22, 23, 26, 30, 98, 99, 104, 107, 112, 115, 117, 118, 119, 120, 121, 125, 126, 131, 134, 137, 138, 140, 143, 144, 146, 152, 156, 162, 169, 173, 175, 178, 179, 181, 190, 205, 226, 233, 237, 244, 269, 270], "space": [22, 25, 55, 65, 68, 69, 104, 132, 135, 144, 158, 161, 162, 163, 169, 184, 248, 250, 251, 261, 267, 269, 284], "world_coord": [22, 262], "nativ": [22, 25, 118, 126, 159, 248, 249, 280], "back": [22, 84, 109, 112, 169, 171, 181, 184, 217, 233, 239, 270, 287], "invers": [22, 169, 203, 256], "transform_streamlin": [22, 25], "inv": [22, 25], "stream_actor": [22, 25], "image_actor_z": 22, "ey": [22, 270], "slicer_opac": 22, "origin": [22, 24, 29, 53, 54, 59, 68, 84, 109, 121, 175, 188, 193, 197, 212, 218, 233, 239, 246, 247, 248, 251, 252, 256, 269, 286, 287], "display_ext": [22, 27, 248, 249, 271], "image_actor_x": 22, "x_midpoint": 22, "image_actor_i": 22, "y_midpoint": 22, "image_actor": [22, 248], "ahead": [22, 171, 221, 223], "line_slider_z": [22, 27], "min_valu": [22, 27, 34, 48, 49, 51, 268], "max_valu": [22, 27, 34, 48, 49, 51, 268], "initial_valu": [22, 27, 34, 48, 49, 51, 268], "text_templ": [22, 27, 34, 48, 49, 51, 268], "0f": [22, 27], "length": [22, 25, 27, 34, 45, 49, 53, 60, 63, 105, 217, 225, 248, 249, 250, 253, 256, 264, 267, 268, 269, 271], "140": [22, 27, 280], "line_slider_x": [22, 27, 48, 49], "line_slider_i": [22, 27, 48, 49], "opacity_slid": 22, "write": [22, 27, 88, 124, 126, 133, 138, 139, 142, 145, 160, 170, 172, 203, 215, 256, 266], "regist": [22, 27, 29, 34, 146, 287], "change_slice_z": [22, 27], "change_slice_x": [22, 27], "change_slice_i": [22, 27], "change_opac": 22, "on_chang": [22, 27, 29, 34, 42, 43, 46, 48, 49, 50, 51, 189, 268, 271, 286], "label": [22, 27, 34, 36, 39, 43, 48, 49, 55, 66, 67, 112, 115, 155, 164, 165, 166, 268, 270, 271, 277, 285, 287], "identifi": [22, 109, 139, 209, 216, 223, 229, 231, 235], "build_label": [22, 27], "font_siz": [22, 27, 29, 34, 37, 42, 43, 46, 48, 49, 50, 72, 73, 74, 75, 76, 85, 248, 268, 271], "18": [22, 23, 25, 27, 29, 42, 49, 53, 72, 73, 75, 151, 164, 170, 268, 278, 281], "font_famili": [22, 27, 42, 46, 248, 268, 271], "arial": [22, 27, 42, 46, 248, 268], "justif": [22, 27, 43, 48, 238, 248, 268, 271, 285], "ital": [22, 27, 248, 268, 271], "shadow": [22, 27, 169, 248, 268, 271], "background_color": [22, 27, 268, 271], "line_slider_label_z": [22, 27], "line_slider_label_x": [22, 27], "line_slider_label_i": [22, 27], "opacity_slider_label": 22, "1030": [22, 27], "120": [22, 27, 42, 184, 280], "38": [22, 27], "screen": [22, 25, 27, 49, 68, 87, 166, 191, 224, 227, 229, 236, 239, 242, 245, 253, 268, 270, 286], "properli": [22, 27, 99, 103, 120, 140, 172, 175, 202, 212, 236], "solut": [22, 27, 100, 105, 133, 134, 136, 137, 139, 142, 146, 152, 164, 223, 226, 230, 233, 236, 239, 248, 266], "issu": [22, 27, 87, 88, 99, 101, 103, 104, 105, 107, 109, 110, 111, 112, 114, 115, 117, 118, 119, 120, 121, 124, 125, 126, 130, 133, 134, 140, 143, 145, 152, 164, 166, 170, 171, 172, 173, 175, 176, 177, 179, 184, 185, 188, 192, 193, 195, 196, 198, 200, 201, 204, 206, 209, 210, 211, 213, 216, 217, 223, 224, 227, 229, 232, 233, 235, 238, 239, 241, 242, 244, 255, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287], "re_align": [22, 27, 34, 268, 271], "getsiz": [22, 27, 34], "win_callback": [22, 27, 34, 270], "size_old": [22, 27, 34], "size_chang": [22, 27, 34], "final": [22, 27, 28, 29, 32, 33, 34, 49, 54, 59, 65, 66, 67, 68, 84, 100, 112, 118, 121, 124, 127, 131, 139, 140, 143, 147, 155, 166, 169, 186, 192, 201, 224, 231, 233, 236, 238, 239, 242, 248, 250, 251, 268, 269, 283, 286], "pleas": [22, 27, 32, 36, 88, 287], "add_window_callback": [22, 27, 34, 270, 271, 280], "bundles_and_3_slic": 22, "del": [22, 27], "viz_advanc": 22, "necessari": [23, 24, 26, 29, 30, 34, 65, 66, 67, 68, 74, 76, 110, 112, 118, 133, 139, 164, 226, 228, 238, 240, 243, 266, 268, 270, 285, 286, 287], "colormap": [23, 27, 32, 33, 36, 55, 79, 89, 163, 183, 189, 242, 245, 248, 249, 269, 271, 273, 277, 281, 284], "being": [23, 33, 68, 76, 87, 102, 104, 120, 127, 137, 138, 139, 146, 152, 169, 177, 194, 196, 198, 201, 204, 213, 215, 217, 227, 230, 233, 236, 245, 250, 268, 269, 277, 280, 286], "plot": [23, 24, 26, 30, 236, 242, 251], "kindli": [23, 26], "onli": [23, 25, 29, 34, 53, 54, 56, 58, 59, 62, 65, 105, 118, 120, 127, 137, 138, 140, 143, 145, 146, 150, 158, 162, 164, 166, 169, 177, 179, 187, 189, 191, 196, 199, 216, 217, 232, 242, 245, 248, 249, 250, 251, 266, 268, 269, 270, 285], "update_surfac": 23, "equat": [23, 56], "cmap_nam": 23, "viridi": [23, 242, 251], "f": [23, 41, 139, 156, 251, 265], "eval": [23, 248], "vstack": [23, 25], "v": [23, 29, 37, 64, 81, 133, 192, 208, 248, 251, 267, 287], "m_v": 23, "ab": [23, 65], "create_colormap": [23, 271, 283], "usag": [23, 84, 88, 141, 171, 230, 232, 237], "float": [23, 24, 39, 49, 65, 68, 70, 162, 188, 248, 249, 250, 251, 256, 257, 258, 260, 261, 264, 265, 266, 268, 269, 270], "begin": [23, 24, 26, 29, 30, 59, 60, 147, 164, 226], "program": [23, 68, 70, 125, 169, 170, 196, 202, 209, 221, 222, 224, 227, 233, 242, 244, 245, 248, 265, 281], "amount": [23, 59, 65, 79, 133, 215, 217, 225, 234, 237, 248, 266], "increment": [23, 26, 30, 268], "iter": [23, 33, 35, 37, 73, 74, 75, 84, 162, 242, 251, 266, 267], "lower_xbound": 23, "bound": [23, 105, 126, 159, 163, 171, 176, 178, 182, 185, 206, 212, 216, 238, 241, 244, 248, 258, 261, 268, 269, 280, 281], "upper_xbound": 23, "upper": [23, 229], "lower_ybound": 23, "upper_ybound": 23, "npoint": [23, 26], "high": [23, 26, 27, 65, 88, 133, 192, 248, 255, 257, 258, 270], "qualiti": [23, 26, 65, 92, 94, 95, 97, 113, 123, 225, 237, 240, 257, 270, 277, 278, 279, 280, 281, 282], "slow": [23, 26, 73, 74, 75, 76, 84, 138, 196, 217, 248], "128": [23, 25, 260, 280], "elev": [23, 29, 270, 271], "linspac": [23, 26, 66], "meshgrid": 23, "reshap": [23, 37, 73, 74, 75, 76, 84, 118, 175, 184, 269, 280], "obtain": [23, 234, 243, 251, 261, 284], "create_surfac": 23, "colormap_nam": 23, "surf": 23, "no_vertices_per_point": [23, 24, 26, 30], "eq1": 23, "eq2": 23, "eq3": 23, "eq4": 23, "variou": [23, 27, 44, 72, 74, 76, 84, 107, 109, 126, 132, 152, 171, 173, 174, 175, 176, 191, 202, 212, 218, 232], "hot": 23, "plasma": [23, 251], "ocean": [23, 171], "append": [23, 32, 33, 37, 39, 41, 49, 73, 74, 75, 76, 79, 103, 179, 265, 268], "configur": [23, 24, 26, 27, 30, 37, 65, 145, 286], "individu": [23, 68, 73, 75, 76, 84, 109, 115, 118, 134, 137, 143, 162, 169, 172, 174, 180, 206, 212, 216, 248, 249, 268, 286], "t_actor": 23, "17": [23, 29, 61, 65, 78, 148, 151, 164, 216, 218, 269, 277, 279], "grid_ui": 23, "gridui": [23, 92, 150, 271, 277, 286], "caption": [23, 248, 268, 278, 286], "caption_offset": [23, 248, 268], "dim": [23, 184, 248, 258, 264, 268, 269], "cell_pad": [23, 248, 258, 268], "aspect_ratio": [23, 248, 258, 268, 269], "rotation_axi": [23, 268], "titl": [23, 26, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 69, 99, 143, 162, 171, 248, 268, 270, 271, 280], "form": [23, 56, 65, 73, 152, 169, 195, 210, 224, 236, 248, 249, 250, 258, 263, 264, 268, 269, 288], "update_surface_actor_color": [23, 271], "viz_animated_surfac": 23, "pedesi": 24, "suspend": 24, "medium": [24, 26, 133, 139], "exhibit": 24, "scipi": [24, 87, 110, 280], "stat": [24, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286], "descript": [24, 26, 30, 36, 37, 84, 125, 126, 149, 152, 162, 163, 164, 216, 217, 218, 234, 239, 263, 265, 287], "total_tim": 24, "discret": [24, 65, 245, 261], "via": [24, 70, 88, 103, 109, 132, 141, 144, 156, 267, 270, 283], "time_step": 24, "num_total_step": 24, "counter_step": 24, "delta": 24, "whose": [24, 30, 65, 163, 248, 253, 258, 261, 268], "varianc": [24, 231, 234], "path_thick": 24, "thick": [24, 248, 249, 261], "asarrai": 24, "tile": 24, "path_actor": 24, "update_path": 24, "rv": 24, "l_particl": 24, "_": [24, 29, 33, 35, 42, 57, 73, 75, 76, 160, 239, 251, 267], "container_actor": 24, "235": [24, 281], "list_particl": 24, "p": [24, 31, 65, 72, 73, 74, 75, 76, 78, 79, 84, 118, 139, 164, 170, 184, 248, 253, 267], "viz_brownian_mot": 24, "dix": 25, "subj_id": 25, "cg": 25, "fraction": [25, 248, 268], "anisotropi": [25, 34, 66, 260, 269, 285], "cingulum": 25, "bundle_n": 25, "176": [25, 280], "118": [25, 280], "52": [25, 277], "113": 25, "76": [25, 280], "56": [25, 277], "bundle1": 25, "mai": [25, 37, 54, 59, 62, 68, 84, 126, 149, 164, 170, 202, 216, 218, 227, 239, 245, 248, 255, 263, 269, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288], "wonder": [25, 103], "knew": [25, 169, 170], "veri": [25, 62, 65, 107, 108, 109, 110, 133, 140, 142, 149, 158, 160, 162, 169, 170, 171, 184, 188, 196, 217], "just": [25, 28, 29, 37, 49, 68, 88, 133, 134, 137, 139, 146, 149, 164, 169, 171, 175, 178, 182, 199, 202, 209, 212, 213, 216, 224, 225, 227, 233, 250, 254, 265, 266, 268, 269, 287], "close": [25, 78, 98, 99, 136, 139, 201, 222, 238, 251, 261, 270, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287], "camera_info": [25, 270, 271], "focal": [25, 54, 183, 250, 270], "view": [25, 54, 80, 169, 171, 189, 250, 251, 267, 270], "stream_actor2": 25, "scalar": [25, 175, 248, 250, 256, 269], "bar": [25, 248, 268, 270, 286], "scalar_bar": [25, 271], "bundle2": 25, "hue": 25, "red": [25, 26, 30, 42, 43, 46, 48, 72, 248, 270], "satur": 25, "lut_cmap": 25, "stream_actor3": 25, "bar2": 25, "bundle3": 25, "orang": [25, 43, 48], "stream_actor4": 25, "bundle4": 25, "blue": [25, 26, 30, 36, 42, 43, 46, 48, 72, 141, 209, 248, 251, 261, 268, 270], "black": [25, 171, 239, 286], "stream_actor5": 25, "bar3": 25, "bundle5": 25, "case": [25, 29, 34, 39, 49, 56, 65, 68, 84, 100, 103, 109, 127, 143, 145, 152, 163, 164, 171, 176, 194, 197, 232, 238, 239, 245, 250, 251, 261, 268, 269, 280], "per": [25, 53, 65, 104, 178, 197, 248, 249, 250, 252, 257, 269, 270], "insert": [25, 37, 265, 268], "rgb": [25, 43, 184, 248, 249, 250, 251, 260, 261, 264, 268, 269, 270, 283], "stream_actor6": 25, "bundle6": 25, "drawn": [25, 65, 137, 160, 173, 227, 248, 249, 268, 269], "width": [25, 31, 85, 101, 105, 112, 126, 139, 173, 217, 224, 227, 233, 245, 248, 250, 258, 268, 269, 270, 271, 286], "regardless": 25, "realism": 25, "enabl": [25, 59, 76, 88, 95, 125, 132, 144, 238, 247, 250, 270, 277, 279, 286], "depth_cu": [25, 248, 277], "shrink": [25, 244, 248], "scheme": [25, 29], "best": [25, 56, 127, 140, 171, 176, 248, 287], "stream_actor7": 25, "bundle7": 25, "shade": [25, 65, 67, 70, 119, 125, 172, 218, 248, 260], "fake_tub": [25, 33, 37, 248, 277], "stream_actor8": 25, "bundle8": 25, "fulli": [25, 84, 88, 239, 248, 249, 251], "challeng": [25, 100, 102, 107, 108, 145, 169, 221, 223, 226, 229, 232, 235, 244], "techniqu": [25, 59, 65, 68, 106, 119, 122, 152, 188, 222, 235, 246, 266], "stream_actor9": 25, "bundle9": 25, "yet": [25, 109, 112, 155, 159, 162, 170, 180, 189, 193, 221, 225, 233], "much": [25, 65, 100, 110, 125, 171, 175, 176, 217, 228, 230, 243, 248, 270], "geometri": [25, 29, 57, 68, 69, 98, 100, 125, 186, 192, 213, 215, 217, 218, 248, 264, 265, 286], "computation": [25, 125], "expens": [25, 125, 133, 164], "larg": [25, 33, 97, 113, 123, 129, 130, 133, 138, 143, 157, 177, 184, 220, 225, 246, 251, 280, 281, 282, 283, 284, 286], "approxim": [25, 248], "describ": [25, 34, 84, 87, 131, 137, 140, 145, 164, 216, 227, 230, 236, 239, 247, 250, 251, 253, 268, 270, 281], "stream_actor10": 25, "bundle10": 25, "viz_bundl": 25, "linearli": [26, 61, 250], "polar": [26, 267], "sinusoid": 26, "through": [26, 59, 66, 67, 68, 78, 84, 88, 98, 100, 102, 105, 124, 125, 126, 136, 163, 164, 169, 170, 171, 172, 212, 223, 224, 227, 244, 246, 266, 268, 283, 286, 287], "homogen": [26, 251, 267, 269], "isotrop": [26, 260], "dissipationless": 26, "vacuum": 26, "oscil": [26, 74], "orthogon": [26, 225], "phase": [26, 30], "wavenumb": 26, "abscissa": 26, "angular": [26, 30], "frequenc": [26, 30], "update_coordin": [26, 30], "ang_frq": 26, "phase_angl": [26, 30], "800": [26, 29, 30, 39, 46, 47, 48, 49, 50, 51, 78], "wavelength": 26, "incre_tim": [26, 30], "angular_frq": [26, 30], "yellow": [26, 43, 48, 207, 209], "tip_length": [26, 30, 248, 264], "tip_radiu": [26, 30, 248, 264], "012": [26, 30], "shaft_radiu": [26, 30, 248, 264], "pt": [26, 30, 248, 268, 269], "wave_actor1": 26, "xx": 26, "yy": 26, "zz": 26, "pts2": 26, "colors2": 26, "wave_actor2": 26, "vertices2": 26, "vcolors2": 26, "no_vertices_per_point2": 26, "initial_vertices2": 26, "160": [26, 58, 280], "time_incr": 26, "viz_emwav": 26, "viz_emwave_anim": 26, "viewer": [27, 218], "odf_slic": [27, 271, 277, 283], "get_spher": 27, "reconst": [27, 36], "shm": [27, 36], "sh_to_sf_matrix": 27, "fetch_viz_dmri": [27, 271], "fetch_viz_icon": [27, 39, 40, 41, 42, 43, 46, 47, 48, 49, 50, 51, 271], "read_viz_dmri": [27, 271], "fix_winding_ord": [27, 249, 271], "express": [27, 84, 170, 248, 249, 254, 255, 288], "harmon": [27, 104, 116, 125, 243, 248], "sh": [27, 139, 248, 249], "coeffici": [27, 72, 125, 248, 249, 260], "fodf_img": 27, "fodf": 27, "grid_shap": 27, "low": [27, 78, 80, 133, 164, 169, 224, 248, 251, 257, 283], "sf": [27, 248, 249], "b_low": 27, "onto": [27, 224, 267], "sphere_low": 27, "repulsion100": [27, 264], "return_inv": 27, "radial_scal": [27, 248, 249], "global_cm": [27, 248, 249], "odf_actor_z": 27, "b_matrix": [27, 248], "coron": 27, "odf_actor_i": 27, "odf_actor_x": 27, "dynam": [27, 73, 100, 107, 125, 145, 162, 164, 217, 222, 244, 245, 249, 268, 280], "sphere_high": 27, "fix": [27, 76, 84, 100, 101, 103, 105, 107, 110, 111, 113, 118, 120, 121, 132, 136, 137, 139, 140, 149, 152, 154, 159, 162, 164, 165, 166, 169, 170, 171, 174, 175, 176, 177, 179, 183, 184, 188, 192, 196, 201, 204, 205, 210, 211, 212, 215, 216, 217, 218, 223, 229, 239, 241, 250, 251, 274, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286], "three": [27, 29, 49, 54, 73, 75, 99, 105, 126, 141, 144, 145, 158, 163, 164, 166, 169, 216, 242, 244, 245, 251, 269, 286], "clockwis": [27, 249, 260, 267, 269], "wind": [27, 269, 280], "awai": [27, 169, 269, 270], "b_high": 27, "combobox": [27, 38, 81, 101, 103, 105, 113, 115, 126, 223, 226, 268, 281], "dure": [27, 58, 63, 84, 93, 103, 107, 124, 125, 127, 130, 131, 137, 146, 152, 162, 163, 169, 170, 184, 204, 221, 222, 226, 232, 237, 241, 244, 246, 270, 280, 284], "execut": [27, 73, 75, 76, 84, 133, 139, 145, 164, 171, 202, 209, 215, 233, 250, 263, 265, 266, 286], "sphere_dict": 27, "combobox2d": [27, 43, 48, 99, 101, 105, 107, 110, 126, 229, 271, 281, 286], "item": [27, 42, 43, 48, 53, 103, 248, 250, 251, 268, 271], "combo": [27, 112, 126, 268], "slice_along_axi": [27, 249, 271], "yaxi": [27, 249], "xaxi": [27, 249], "change_spher": 27, "selected_text": [27, 43, 48, 268, 271], "update_spher": [27, 249, 271], "odf_slicer_3d": 27, "viz_fiber_odf": 27, "sometim": [28, 126, 139, 164, 207, 209, 266], "about": [28, 58, 65, 74, 76, 84, 85, 87, 96, 99, 107, 110, 128, 132, 133, 139, 141, 145, 150, 156, 158, 160, 161, 164, 168, 171, 172, 175, 177, 185, 188, 190, 200, 212, 215, 216, 219, 222, 225, 230, 232, 233, 234, 236, 238, 242, 245, 246, 253, 255, 261, 266, 270, 280, 284, 286, 287], "special": [28, 34, 101, 109, 163, 164, 283, 284, 288], "effect": [28, 66, 67, 75, 93, 112, 122, 125, 142, 145, 160, 162, 164, 169, 242, 245, 248, 265], "shader_apply_effect": [28, 271], "remove_observer_from_actor": [28, 271], "proce": [28, 84, 228], "actor_no_depth_test": 28, "marker_opac": [28, 248], "actor_normal_blend": 28, "actor_add_blend": 28, "actor_sub_blend": 28, "actor_mul_blend": 28, "must": [28, 54, 56, 57, 59, 62, 84, 115, 133, 139, 145, 162, 164, 166, 217, 227, 248, 250, 253, 259, 260, 261, 265, 268, 288], "enter": [28, 171, 268, 287], "topic": [28, 98, 120, 150, 215], "pre": [28, 131, 166, 216, 268, 286], "built": [28, 84, 166, 170, 218], "gl_function": 28, "instanc": [28, 59, 84, 125, 133, 140, 145, 146, 164, 166, 194, 266, 268, 270], "context": [28, 133, 139, 164, 166, 227, 233, 246, 247, 266, 270], "gl_set_normal_blend": [28, 271], "composit": [28, 216, 245], "id_observ": [28, 265], "gl_reset_blend": [28, 271], "gl_disable_blend": [28, 271], "gl_disable_depth": [28, 271], "gl_enable_depth": [28, 271], "gl_set_additive_blend": [28, 271], "gl_set_subtractive_blend": [28, 271], "gl_set_multiplicative_blend": [28, 271], "result": [28, 32, 33, 37, 58, 67, 108, 109, 133, 134, 139, 140, 142, 164, 170, 171, 175, 188, 202, 226, 228, 229, 239, 242, 244, 245, 253, 259, 265, 269, 270], "no_depth_test": 28, "viz_fine_tuning_gl_context": 28, "self": [29, 35, 139, 258, 268, 286], "similar": [29, 42, 84, 100, 109, 110, 140, 169, 172, 174, 197, 207, 212, 216, 242, 248, 251, 287], "recurs": [29, 143], "implement": [29, 65, 67, 68, 84, 98, 99, 100, 101, 102, 104, 105, 106, 107, 108, 109, 110, 111, 112, 115, 119, 121, 122, 124, 125, 126, 127, 131, 132, 133, 135, 136, 137, 138, 139, 140, 141, 146, 147, 149, 150, 152, 159, 161, 163, 164, 166, 169, 170, 171, 173, 183, 185, 188, 189, 191, 193, 194, 196, 197, 201, 204, 205, 207, 209, 210, 212, 213, 214, 217, 218, 222, 223, 224, 226, 227, 228, 232, 233, 234, 236, 238, 239, 242, 243, 245, 246, 248, 251, 265, 266, 267, 272, 281, 284, 286], "sierpinski": 29, "tetrahedron": [29, 264, 280], "tetrix": 29, "menger": 29, "spong": 29, "moselei": 29, "snowflak": 29, "hardcod": 29, "repeat_primit": [29, 218, 248, 271, 286], "ground": 29, "rule": [29, 130, 131, 146, 171, 221, 285], "comput": [29, 34, 36, 65, 66, 68, 88, 99, 104, 125, 130, 133, 145, 164, 169, 170, 171, 176, 180, 217, 222, 227, 246, 248, 258, 260, 269, 280], "depth": [29, 65, 162, 224, 248, 250, 270], "prevent": [29, 120, 139, 146, 286], "infinit": [29, 162], "assum": [29, 133, 248, 249, 255, 268], "smaller": [29, 68, 171, 184], "ideal": [29, 100, 137, 239, 242, 245], "alloc": [29, 224, 227, 230, 251], "upfront": 29, "achiev": [29, 53, 88, 106, 109, 111, 112, 118, 122, 125, 130, 133, 136, 139, 140, 164, 216], "binari": [29, 112, 175, 218, 248, 253, 257, 288], "tree": [29, 143, 162, 232, 244, 245], "ari": 29, "formula": [29, 108, 243, 267], "found": [29, 84, 105, 107, 109, 110, 112, 115, 118, 120, 121, 124, 125, 126, 142, 158, 162, 163, 164, 165, 166, 171, 172, 178, 180, 181, 191, 193, 197, 209, 213, 216, 217, 218, 229, 234, 236, 240, 243, 245, 251, 252, 253, 255, 263, 267, 269, 270], "represent": [29, 37, 65, 68, 125, 132, 133, 138, 142, 144, 150, 159, 162, 163, 164, 218, 248, 261, 285], "sub": [29, 60, 99, 101, 103, 105, 107, 109, 110, 112, 115, 118, 120, 121, 124, 125, 126, 140, 143, 158, 162, 163, 169, 171, 216, 217, 218, 250, 268], "child": [29, 57, 84, 143, 152, 162, 218, 229, 250, 256], "skip": [29, 251, 253, 254, 255], "frac": 29, "entri": [29, 251, 255], "leaf": 29, "exactli": [29, 65, 137, 169, 171, 224, 228, 236, 239], "without": [29, 73, 75, 80, 87, 88, 109, 136, 139, 141, 145, 149, 164, 166, 185, 189, 191, 209, 218, 225, 227, 228, 229, 233, 236, 248, 250, 251, 252, 258, 270, 283, 285, 286, 287, 288], "overhead": 29, "classic": 29, "natur": [29, 30, 88, 143, 158, 244], "dimension": [29, 37, 163, 249, 286], "extens": [29, 95, 253, 257, 265, 268, 271, 279, 280], "At": [29, 84, 169, 173, 217, 218, 224, 229, 242, 255], "offset": [29, 84, 107, 137, 143, 241, 244, 251, 256, 258, 268, 269, 286], "prim_tetrahedron": [29, 271, 286], "gen_cent": 29, "dist": [29, 65, 287], "idx": [29, 41, 73, 75, 76, 266], "halv": 29, "divis": [29, 188], "correct": [29, 49, 59, 143, 166, 179, 206, 208, 212, 225, 228, 231, 240, 241, 242, 256, 269, 270, 278, 280, 286], "depend": [29, 30, 60, 63, 65, 66, 90, 95, 133, 139, 146, 152, 154, 158, 164, 171, 176, 185, 216, 217, 237, 241, 248, 250, 261, 269, 275, 277, 279], "pretti": [29, 171, 228, 242, 245], "bounds_min": 29, "bounds_max": 29, "corner": [29, 134, 140, 143, 152, 162, 175, 197, 216, 229, 268, 269], "accord": [29, 34, 73, 75, 139, 161, 172, 173, 174, 176, 202, 217, 229, 238, 244, 248, 251, 258, 268, 269, 270, 284, 287], "consid": [29, 137, 171, 173, 189, 200, 238, 248, 249, 250, 251, 261, 267, 269], "side": [29, 68, 143, 152, 177, 217, 246, 248, 258, 264, 268, 270, 283], "prim_box": [29, 271], "think": [29, 65, 133, 143, 161, 171, 173, 202, 212, 222, 246], "quit": [29, 102, 107, 108, 110, 120, 125, 133, 138, 161, 166, 208], "interest": [29, 66, 67, 96, 117, 128, 134, 140, 141, 158, 168, 170, 217, 219, 224, 236, 239, 247], "koch": 29, "showmgr": 29, "nice": [29, 175], "my": [29, 101, 103, 104, 105, 107, 109, 110, 112, 115, 118, 120, 121, 124, 125, 126, 127, 130, 133, 135, 136, 137, 138, 139, 141, 142, 143, 144, 145, 146, 147, 150, 151, 152, 153, 154, 155, 156, 158, 159, 160, 161, 162, 163, 164, 165, 166, 171, 172, 173, 174, 175, 178, 180, 184, 191, 197, 200, 209, 212, 216, 217, 218, 221, 222, 223, 225, 226, 227, 228, 229, 230, 232, 233, 234, 235, 236, 237, 239, 240, 242, 244, 245, 246, 286], "machin": [29, 133, 171, 252, 278, 287], "lag": [29, 130, 189, 217], "could": [29, 58, 59, 63, 67, 103, 119, 122, 124, 136, 139, 142, 143, 150, 152, 154, 155, 164, 166, 169, 170, 171, 173, 174, 185, 191, 200, 208, 212, 216, 224, 227, 230, 233, 236, 242, 245, 264, 269, 287], "bump": [29, 280], "switch": [29, 32, 126, 131, 162, 171, 176, 216, 229, 256, 268], "radiobutton": [29, 46, 120, 271, 282], "shape_choos": 29, "pad": [29, 42, 46, 226, 248, 258, 268, 271], "checked_label": [29, 42, 46, 48, 268], "choose_shap": 29, "radio": [29, 38, 81, 126, 268, 282, 285], "basic": [29, 68, 100, 108, 115, 117, 121, 135, 137, 169, 170, 171, 173, 176, 217, 218, 222, 239, 240, 242, 264, 268, 280, 283], "movement": [29, 68, 191, 244, 268], "littl": [29, 33, 133, 134, 201, 217, 287], "mode": [29, 33, 73, 74, 75, 76, 78, 105, 124, 173, 174, 184, 187, 188, 207, 216, 218, 238, 250, 251, 253, 256, 261, 268, 270], "document": [29, 34, 88, 94, 95, 97, 98, 102, 107, 113, 120, 121, 123, 124, 125, 126, 127, 129, 131, 132, 133, 134, 135, 136, 141, 145, 151, 154, 157, 161, 164, 165, 167, 170, 171, 172, 175, 192, 213, 217, 220, 224, 231, 236, 274, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 288], "viz_fract": 29, "tend": [30, 236], "acceler": [30, 233, 284], "antiparallel": 30, "along": [30, 35, 68, 101, 105, 109, 137, 143, 152, 162, 169, 170, 173, 174, 175, 178, 182, 189, 200, 202, 206, 207, 209, 221, 225, 248, 249, 250, 255, 258, 267, 268, 285], "helic": [30, 150, 163, 261], "under": [30, 75, 87, 88, 96, 98, 99, 128, 131, 168, 171, 216, 217, 218, 219, 223, 251, 283, 286], "influenc": 30, "radius_particl": 30, "08": [30, 125, 126, 162, 163, 164, 216, 217, 218, 272, 279, 283, 285], "initial_veloc": 30, "09": [30, 126, 162, 163, 164, 216, 217, 218, 272, 281, 285], "acc": 30, "due": [30, 98, 99, 107, 120, 125, 140, 143, 145, 163, 164, 171, 178, 179, 188, 206, 207, 208, 235, 241, 286], "color_arrow": 30, "color_particl": 30, "charge_actor": 30, "m1": 30, "m2": 30, "coor_1": 30, "coor_2": 30, "coor": 30, "cyan": 30, "viz_helical_mot": 30, "There": [31, 62, 87, 103, 115, 120, 121, 122, 126, 133, 163, 169, 171, 184, 187, 212, 218, 234, 248, 251, 252, 280], "nine": 31, "diamond": 31, "pentagon": [31, 167, 248, 264, 285], "hexagon": [31, 120], "heptagon": 31, "cross": [31, 107, 270], "plu": [31, 261], "marker_symbol": 31, "h": [31, 139, 248, 257, 261, 266], "s6": [31, 248], "choic": [31, 56, 70, 211, 248, 261, 268], "uniform": [31, 68, 70, 80, 108, 172, 180, 183, 196, 198, 204, 215, 242], "nodes_actor": [31, 248], "edge_width": [31, 248], "edge_color": [31, 248], "valid": [31, 206, 250, 261], "nodes_3d_actor": [31, 248], "ones_lik": 31, "viz_mark": 31, "overview": [32, 112], "complex": [32, 33, 59, 107, 137, 171, 176, 189, 212, 224, 246], "shown": [32, 49, 50, 84, 108, 111, 116, 122, 127, 163, 176, 209, 216, 255, 261, 268], "citat": [32, 33], "pjoin": [32, 33, 79], "cmap": [32, 33, 79, 251, 278], "fetch_viz_wiki_nw": [32, 33, 79, 271], "folder": [32, 33, 79, 241, 253, 266, 268, 280, 287], "categories_fil": [32, 33, 79], "edges_fil": [32, 33, 79], "positions_fil": [32, 33, 79], "sort": [32, 33, 79, 140, 162, 170, 250, 270], "loadtxt": [32, 33, 79], "categori": [32, 33, 66, 79, 93, 223], "attribut": [32, 33, 59, 68, 140, 146, 162, 183, 184, 217, 218, 225, 229, 250, 251, 262, 265, 270, 277, 280, 287], "category2index": [32, 33, 79], "enumer": [32, 33, 37, 41, 66, 73, 75, 76, 79], "uniqu": [32, 33, 79, 166, 167, 266, 285, 286], "index2categori": [32, 33, 79], "categorycolor": [32, 79], "distinguishable_colormap": [32, 33, 55, 79, 271], "nb_color": [32, 33, 55, 79, 251], "OF": [32, 288], "cours": [32, 67, 98, 164, 169, 170, 236], "edgesposit": [32, 79], "edgescolor": [32, 79], "averag": [32, 33, 79, 256], "readi": [32, 33, 34, 65, 84, 109, 114, 121, 160, 166, 199, 201, 217, 228, 230, 231, 242, 243, 245, 287], "lines_actor": [32, 33, 79], "creation": [32, 33, 68, 176, 182, 185, 216, 217, 222, 225, 265, 286], "journal_network": 32, "improv": [32, 65, 88, 97, 98, 108, 113, 116, 118, 125, 126, 129, 130, 133, 135, 136, 138, 139, 142, 145, 148, 149, 154, 164, 165, 167, 170, 171, 185, 189, 196, 198, 201, 216, 217, 218, 220, 222, 223, 225, 232, 235, 236, 238, 246, 270, 278, 280, 281, 283, 285, 286, 287], "interactivi": 32, "viz_network": 32, "algorithm": [33, 68, 69, 100, 102, 104, 107, 109, 112, 117, 125, 138, 148, 156, 159, 161, 163, 164, 166, 169, 170, 225, 230, 248, 251, 261, 280], "layout": [33, 38, 81, 130, 131, 134, 136, 137, 146, 148, 152, 158, 160, 162, 164, 166, 167, 248, 271, 279, 280, 284, 285, 286], "simpler": [33, 68, 73, 215, 224, 227, 279], "displac": [33, 109, 188, 218], "compute_bound": [33, 271], "heurist": 33, "vertices_count": 33, "networkx": 33, "packag": [33, 87, 88, 91, 156, 164, 171, 247, 251, 255, 263, 276, 287], "nx": 33, "view_siz": 33, "random_geometric_graph": 33, "arang": [33, 74, 76], "category_color": 33, "endpoint": 33, "edges_color": 33, "lod": [33, 37, 248], "new_layout_tim": 33, "edges_list": 33, "max_iter": 33, "vertex_initial_posit": 33, "500": [33, 34, 39, 47, 48, 49, 50, 74, 76, 80, 265, 285], "viscos": 33, "alpha": [33, 109, 132, 164, 248, 255, 283], "0005": [33, 74, 76], "deltat": 33, "sphere_geometri": 33, "geometry_length": 33, "iterationcount": 33, "nonloc": 33, "repulst": 33, "vertex1": 33, "vertex2": 33, "x1": [33, 249], "y1": [33, 249], "z1": [33, 249], "x2": [33, 249], "y2": [33, 249], "z2": [33, 249], "rx": 33, "ry": 33, "rz": 33, "fx": 33, "fy": 33, "fz": 33, "attract": 33, "vfrom": 33, "vto": 33, "_timer": 33, "spheres_posit": 33, "edges_posit": 33, "bit": [33, 107, 121, 124, 143, 158, 159, 161, 170, 171, 178, 212, 217, 287], "farther": 33, "max_iteract": 33, "multi_sampl": [33, 217, 250, 270, 286], "viz_animated_network": 33, "viz_network_anim": [33, 218, 286], "physic": [34, 64, 67, 72, 73, 74, 76, 84, 88, 99, 105, 107, 109, 110, 115, 120, 123, 126, 167, 169, 218, 260, 267, 282, 283, 285], "fetch_viz_cubemap": [34, 271], "read_viz_cubemap": [34, 271], "load_cubemap_textur": [34, 271], "normals_from_actor": [34, 66, 271], "tangents_from_direction_of_anisotropi": [34, 66, 271], "tangents_to_actor": [34, 66, 271], "change_slice_metal": 34, "pbr_param": 34, "metal": [34, 66, 67, 218, 260], "change_slice_rough": 34, "rough": [34, 66, 67, 161, 218, 260], "change_slice_anisotropi": 34, "change_slice_anisotropy_direction_x": 34, "doa": 34, "tangent": [34, 56, 66, 193, 199, 250, 269], "change_slice_anisotropy_direction_i": 34, "change_slice_anisotropy_direction_z": 34, "change_slice_anisotropy_rot": 34, "anisotropy_rot": [34, 66, 260], "change_slice_coat_strength": 34, "coat_strength": [34, 66, 260], "change_slice_coat_rough": 34, "coat_rough": [34, 66, 260], "change_slice_base_ior": 34, "base_ior": [34, 66, 260], "change_slice_coat_ior": 34, "coat_ior": [34, 66, 260], "least": [34, 56, 142, 165, 169, 170, 224, 234], "reposit": [34, 126, 178, 206, 216, 241, 286], "resiz": [34, 44, 101, 103, 105, 131, 134, 140, 143, 146, 149, 152, 162, 173, 216, 229, 232, 238, 241, 266, 268, 271, 284, 286], "control_panel": 34, "skybox": [34, 169, 253, 270, 271, 286], "repositori": [34, 103, 105, 107, 109, 110, 112, 115, 118, 120, 121, 124, 133, 164, 175, 179, 184, 187, 253, 261, 263], "compos": [34, 49, 180, 189, 217, 261, 264, 268], "cubemap": 34, "handl": [34, 49, 54, 55, 58, 62, 68, 84, 105, 107, 109, 160, 171, 172, 175, 182, 184, 185, 194, 197, 213, 216, 217, 250, 268, 271, 279, 286], "extract": [34, 132, 135, 146, 149, 175, 195, 218, 250, 256, 266, 282, 284], "plausibl": [34, 66], "popul": [34, 233, 236, 268], "64": [34, 55, 169], "manifest_pbr": [34, 66, 271], "setup": [34, 74, 90, 146, 230, 233, 236, 241, 245, 275, 287], "1920": [34, 37], "1080": [34, 37], "easili": [34, 105, 125, 126, 133, 140, 143, 162, 164, 216, 217], "And": [34, 59, 67, 114, 133, 169, 177, 183, 192, 196, 217, 233, 245, 250], "slider_label_metal": 34, "slider_label_rough": 34, "slider_label_anisotropi": 34, "slider_label_anisotropy_rot": 34, "slider_label_anisotropy_direction_x": 34, "slider_label_anisotropy_direction_i": 34, "slider_label_anisotropy_direction_z": 34, "slider_label_coat_strength": 34, "coat": [34, 66, 260, 285], "strength": [34, 66, 260], "slider_label_coat_rough": 34, "slider_label_base_ior": 34, "ior": [34, 66], "slider_label_coat_ior": 34, "95": [34, 169], "86": [34, 278], "77": [34, 280], "68": [34, 55, 278], "59": [34, 277], "32": [34, 66, 67, 68, 171, 277, 279], "23": [34, 54, 85, 125, 126, 165, 166, 217, 269, 277], "14": [34, 54, 61, 125, 126, 145, 162, 163, 164, 216, 218, 251, 269, 277, 283, 286], "slider_slice_metal": 34, "195": [34, 280, 283], "1f": [34, 48, 49, 51, 268], "slider_slice_rough": 34, "slider_slice_anisotropi": 34, "slider_slice_anisotropy_rot": 34, "slider_slice_coat_strength": 34, "slider_slice_coat_rough": 34, "within": [34, 65, 66, 84, 102, 104, 108, 111, 115, 124, 125, 126, 143, 171, 223, 268, 270], "cover": [34, 154, 178, 189, 202], "slider_slice_anisotropy_direction_x": 34, "slider_slice_anisotropy_direction_i": 34, "slider_slice_anisotropy_direction_z": 34, "refract": [34, 66, 167, 260, 285], "slider_slice_base_ior": 34, "02f": [34, 66], "slider_slice_coat_ior": 34, "handler": [34, 253, 259, 265], "44": [34, 264, 268, 269, 277], "consequ": [34, 145, 164], "captur": [34, 191, 216, 239, 242], "helper": [34, 56, 76, 143, 192, 207, 216, 242, 271, 286], "window_callback": 34, "viz_pbr_interact": [34, 286], "rectangl": [35, 47, 49, 162, 173, 209, 216, 238, 268, 271, 281], "cv2": 35, "videocaptur": 35, "wrap": [35, 65, 152, 155, 223, 268, 284], "opencv": [35, 211], "__init__": [35, 139, 247, 248, 249, 250, 251, 255, 256, 258, 261, 262, 266, 268, 270, 271], "fp": [35, 65, 73, 74, 75, 76, 116, 169, 192, 217, 250, 286], "cap_prop_fp": 35, "frame": [35, 59, 65, 78, 84, 95, 108, 158, 246, 248, 250, 266, 270, 279], "cap_prop_frame_count": 35, "yield": [35, 251], "get_fram": 35, "isfram": 35, "dur": 35, "cvtcolor": 35, "color_bgr2rgb": 35, "releas": [35, 78, 116, 148, 185, 255, 266, 268, 270, 271], "videoplay": 35, "video_gener": 35, "current_video_fram": 35, "initialize_scen": 35, "show_manag": [35, 39, 40, 41, 42, 45, 46, 47, 49, 50, 51, 53], "1st": 35, "plane_actor": 35, "isinst": 35, "ndarrai": [35, 56, 218, 248, 249, 250, 251, 252, 256, 257, 261, 264, 265, 267, 268, 269, 270], "texture_upd": [35, 271], "interv": [35, 84, 139, 232, 245, 266], "frame_dur": 35, "video_url": 35, "http": [35, 40, 41, 56, 58, 67, 78, 87, 89, 90, 91, 92, 94, 95, 97, 113, 123, 126, 129, 133, 136, 139, 151, 157, 160, 164, 167, 220, 251, 252, 265, 266, 267, 270, 279, 287], "commondatastorag": 35, "googleapi": 35, "com": [35, 40, 41, 67, 87, 126, 139, 160, 251, 266, 267, 287], "gtv": 35, "bucket": 35, "bigbuckbunni": 35, "mp4": [35, 211, 217, 250, 286], "vp": 35, "viz_play_video": 35, "probabilist": 36, "csa": 36, "corpu": 36, "callosum": 36, "seed": 36, "default_spher": 36, "read_stanford_label": 36, "peaks_from_model": [36, 248], "csaodfmodel": 36, "try": [36, 70, 88, 99, 107, 112, 120, 122, 124, 125, 127, 132, 135, 136, 138, 146, 150, 159, 161, 169, 171, 176, 177, 182, 187, 191, 192, 198, 201, 204, 205, 209, 213, 216, 217, 224, 228, 236, 238, 239, 242, 287], "local": [36, 80, 171, 197, 248, 263, 268, 283, 287], "localtrack": 36, "thresholdtissueclassifi": 36, "thresholdstoppingcriterion": 36, "except": [36, 58, 70, 109, 133, 203, 255], "importerror": 36, "stopping_criterion": 36, "local_track": 36, "line_color": [36, 271], "complet": [36, 89, 90, 91, 92, 94, 95, 97, 99, 105, 108, 112, 113, 114, 116, 118, 120, 123, 129, 134, 140, 157, 167, 170, 174, 185, 194, 220, 223, 224, 226, 229, 232, 235, 238, 239, 241, 244, 248, 253, 287], "refer": [36, 54, 73, 74, 75, 76, 84, 138, 158, 162, 170, 174, 176, 178, 185, 200, 205, 216, 246, 251, 261, 266, 268, 270, 284], "hardi_img": 36, "gtab": 36, "labels_img": 36, "white_matt": 36, "csa_model": 36, "sh_order": 36, "csa_peak": 36, "relative_peak_threshold": 36, "min_separation_angl": 36, "mask": [36, 248], "classifi": [36, 236], "gfa": 36, "seed_mask": 36, "seeds_from_mask": 36, "densiti": [36, 236, 246], "step_siz": 36, "streamlines_actor": 36, "r": [36, 87, 109, 140, 162, 164, 248, 249, 251, 260, 261, 264, 267, 269, 270, 287], "decim": [36, 66, 67, 268], "surface_opac": 36, "surface_color": 36, "seedroi_actor": 36, "contour_from_roi": [36, 271], "pop": [36, 55, 57, 152], "contour_from_roi_tutori": 36, "viz_roi_contour": [36, 286], "four": [37, 53], "unfold": 37, "eight": 37, "wirefram": [37, 65, 269], "p_color": 37, "e_color": 37, "dtheta": 37, "smoother": [37, 65, 175, 191, 218, 238, 248], "02": [37, 74, 76, 125, 126, 162, 163, 164, 270, 272, 279, 280], "4d": [37, 248, 249, 269], "verts4d": 37, "verts3d": 37, "altern": [37, 100, 102, 104, 108, 125, 171, 237, 248, 255, 281], "rotate4d": 37, "xy": [37, 65, 70, 248, 258, 267, 269], "zw": 37, "imaginari": [37, 251], "rotation4d_xi": 37, "rotation4d_zw": 37, "projected_marix": 37, "vert": [37, 264, 269], "rotated_3d": 37, "dot": [37, 61, 68, 187, 205, 252, 257, 269, 270, 271, 286], "proj_mat4d": 37, "projeced_mat3d": 37, "proj": 37, "connect_point": 37, "len_vert": 37, "point_vert": 37, "no_vertic": 37, "initial_vert": 37, "lines_vert": 37, "initial_lin": 37, "950": 37, "viz_tesseract": 37, "drawpanel": [38, 81, 178, 206, 212, 216, 253, 271, 286], "card": [38, 81, 158, 160, 162, 268], "listbox": [38, 45, 49, 81, 268, 271, 279, 284], "figur": [38, 48, 81, 105, 109, 110, 112, 118, 120, 122, 131, 143, 147, 152, 169, 172, 181, 193, 195, 196, 203, 205, 208, 210, 224, 236, 239, 242, 252, 271], "check": [38, 48, 81, 87, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 114, 115, 116, 117, 118, 119, 120, 121, 122, 124, 125, 126, 127, 135, 138, 139, 141, 144, 145, 146, 147, 150, 153, 156, 159, 161, 162, 163, 164, 169, 170, 171, 197, 200, 206, 209, 221, 225, 227, 228, 230, 231, 232, 239, 245, 248, 250, 253, 261, 266, 268, 269, 270, 272, 283, 286, 287], "tab": [38, 81, 105, 112, 123, 126, 171, 268, 271, 282, 286], "api": [39, 42, 46, 47, 49, 50, 51, 84, 88, 105, 120, 123, 125, 126, 146, 149, 152, 164, 169, 170, 171, 175, 177, 179, 181, 198, 201, 217, 218, 224, 239, 242, 246, 277, 281, 282, 286], "icon": [39, 40, 41, 42, 43, 44, 46, 47, 48, 49, 50, 51, 155, 162, 174, 191, 216, 223, 253, 268, 280, 283, 286], "put": [39, 49, 65, 68, 222, 251, 286, 287], "integ": [39, 49, 188, 248, 251, 261], "pixel": [39, 49, 68, 169, 188, 252, 268, 269, 270], "me": [39, 49, 98, 99, 100, 105, 107, 109, 116, 117, 118, 121, 124, 127, 130, 131, 138, 139, 141, 147, 152, 161, 169, 170, 171, 172, 175, 178, 188, 197, 200, 224, 227, 229, 233, 234, 239, 242, 244, 245], "text2": [39, 49], "percentag": [39, 49, 250, 268], "button_exampl": [39, 49], "stop2": [39, 49], "icon_fil": [39, 49], "second_button_exampl": [39, 49], "change_text_callback": [39, 49], "force_rend": [39, 41, 49], "change_icon_callback": [39, 49], "next_icon": [39, 49, 268, 271], "on_left_mouse_button_press": [39, 49, 268, 271], "current_s": [39, 40, 41, 42, 43, 44, 45, 46, 47, 49, 50, 51, 69, 70], "viz_button": 39, "img_url": [40, 41], "raw": [40, 41, 133], "githubusercont": [40, 41], "gl": [40, 41, 87, 88, 89, 90, 91, 92, 94, 95, 97, 113, 123, 125, 126, 129, 130, 136, 139, 145, 148, 151, 154, 157, 158, 160, 162, 163, 164, 165, 166, 167, 169, 170, 173, 174, 216, 217, 218, 220, 270, 280, 283, 287], "commun": [40, 41, 88, 89, 90, 91, 92, 94, 95, 96, 97, 113, 123, 128, 129, 130, 131, 145, 157, 164, 165, 166, 167, 168, 169, 171, 219, 220, 239, 286], "asset": [40, 41], "logo": [40, 41, 164, 286], "bodi": [40, 41, 57, 73, 74, 107, 162, 268, 271], "free": [40, 41, 84, 88, 89, 90, 91, 92, 94, 95, 96, 97, 113, 123, 128, 129, 131, 133, 157, 164, 167, 168, 170, 171, 218, 219, 220, 288], "unifi": [40, 41, 88, 171, 288], "softwar": [40, 41, 87, 88, 89, 90, 91, 92, 94, 95, 96, 97, 98, 99, 113, 123, 125, 126, 128, 129, 157, 162, 163, 167, 168, 169, 170, 171, 211, 213, 216, 217, 218, 219, 220, 284, 288], "librari": [40, 41, 67, 71, 78, 80, 81, 87, 88, 89, 90, 91, 92, 94, 95, 96, 97, 113, 123, 128, 129, 131, 132, 133, 145, 157, 158, 167, 168, 170, 171, 175, 219, 220, 224, 246, 257, 280, 284, 285], "scientif": [40, 41, 88, 89, 90, 91, 92, 94, 95, 96, 97, 113, 123, 128, 129, 157, 163, 164, 167, 168, 172, 219, 220, 241, 246, 261, 286], "card2d": [40, 41, 134, 155, 158, 160, 162, 271], "image_path": [40, 41, 268], "title_text": [40, 41, 268], "body_text": [40, 41, 268], "image_scal": [40, 41, 268], "bg_color": [40, 41, 268, 270, 271], "294": [40, 41, 126], "bg_opac": [40, 41, 268], "border_width": [40, 41, 149, 268, 271], "border_color": [40, 41, 268, 271], "card_ui": [40, 41], "viz_card": 40, "sprite": [41, 160, 162, 257, 285], "sheet": [41, 160, 162, 163, 257, 261, 285], "load_sprite_sheet": [41, 271], "save_imag": [41, 271, 280], "tempfil": 41, "temporarydirectori": 41, "intemporarydirectori": 41, "target_fp": 41, "frame_tim": 41, "sprite_sheet": 41, "imgur": 41, "0ykftbq": 41, "current_sprite_idx": 41, "vtk_sprite": 41, "delai": [41, 158, 287], "_evt": 41, "set_img": [41, 268, 271], "getrenderwindow": [41, 236], "getinteractor": 41, "getinteractorstyl": 41, "vtkimagedata": [41, 162, 248, 257, 269, 285], "sprite_to_vtk": 41, "tdir": 41, "sprite_path": 41, "compression_qu": [41, 257], "as_vtktyp": [41, 257], "viz_card_sprite_sheet": 41, "checkbox": [42, 115, 120, 126, 271, 280, 282, 285], "visibl": [42, 48, 51, 182, 212, 227, 246, 248, 249, 256, 268, 270, 286], "360": [42, 46, 63, 268], "symmetr": [42, 248, 249, 286], "uncheck": [42, 48, 268], "sym_diff": [42, 48], "l1": [42, 48], "l2": [42, 48], "symmetric_differ": [42, 48], "set_figure_visibl": [42, 48], "figure_dict": [42, 48], "setvis": [42, 48, 49, 51, 248, 271], "invis": [42, 48], "update_color": 42, "color_arrai": [42, 269], "toggl": [42, 49, 174, 216, 217, 268, 271], "toggle_color": [42, 46], "elif": [42, 48], "check_box": 42, "color_toggl": [42, 46], "viz_checkbox": 42, "viz_check_box": 42, "vertical_justif": [43, 48, 226, 248, 268, 271], "top": [43, 48, 51, 57, 103, 125, 143, 158, 169, 175, 191, 248, 268, 269], "rock": [43, 48], "violet": [43, 48], "indigo": [43, 48], "compon": [43, 60, 65, 68, 99, 101, 103, 105, 110, 112, 118, 120, 121, 124, 126, 131, 180, 216, 217, 223, 229, 238, 244, 246, 256, 267, 268, 269, 286], "color_combobox": [43, 48], "placehold": [43, 48, 140, 162, 263, 268], "chosen": [43, 67, 164, 170, 216, 251], "change_color": [43, 48], "whenev": [43, 102, 171, 174, 176, 178, 182, 189, 194, 207, 209, 216, 245, 250], "combobox_ui": 43, "viz_combobox": 43, "fetch_viz_new_icon": [44, 216, 271, 286], "drawing_canva": 44, "560": [44, 286], "650": [44, 49, 286], "isn": [44, 107, 170, 182, 212, 239], "canva": [44, 173, 174, 176, 178, 191, 217, 252, 268], "current_mod": [44, 268, 271], "draw_shap": [44, 268, 271], "shape_typ": [44, 268], "current_posit": [44, 268], "275": [44, 126, 282], "shape_list": 44, "viz_drawpanel": 44, "gridlayout": [45, 131, 134, 140, 143, 146, 160, 162, 271, 286], "cell": [45, 248, 258, 269, 279], "arrang": [45, 131, 216, 248], "fashion": [45, 146, 162, 258, 260], "panel_1": 45, "panel_2": 45, "listbox_1": 45, "listbox2d": [45, 49, 50, 112, 118, 126, 232, 271, 280, 281, 286], "third": [45, 48, 103, 105, 125, 126, 133, 138, 139, 164, 211, 224, 283], "listbox_2": 45, "rect_grid": 45, "position_offset": [45, 258], "square_grid": 45, "cell_shap": [45, 248, 258, 268], "diagonal_grid": 45, "diagon": [45, 248, 258, 267], "ui_layout": 45, "viz_layout": 45, "viz_radio_button": 46, "rect": [47, 49, 248, 258, 268], "rectangle2d": [47, 49, 105, 134, 137, 149, 162, 173, 202, 209, 216, 271], "solid": [47, 49, 68, 164], "disk2d": [47, 49, 178, 188, 216, 271, 280], "outer_radiu": [47, 49, 268, 271], "inner": [47, 49, 248, 268], "inner_radiu": [47, 49, 268, 271], "viz_shap": 47, "tab_ui": 48, "tabui": [48, 115, 229, 271, 286], "49": [48, 54, 277, 280], "94": [48, 279], "nb_tab": [48, 268], "draggabl": [48, 268], "content": [48, 143, 162, 238, 241, 248, 258, 268, 269, 270], "ring_slid": [48, 49, 51], "ringslider2d": [48, 49, 51, 115, 185, 216, 244, 271], "horizont": [48, 49, 51, 126, 155, 158, 160, 162, 167, 248, 258, 268, 270, 285], "text_align": [48, 51, 268], "cube_x": [48, 49], "cube_i": [48, 49], "rotate_cub": [48, 49, 51], "previous_angl": [48, 49, 51], "previous_valu": [48, 49, 51, 268, 271], "rotation_angl": [48, 49, 51], "rotatex": [48, 49, 51], "translate_cube_x": [48, 49], "translate_cube_i": [48, 49], "on_collaps": 48, "task": [48, 65, 98, 99, 100, 102, 104, 106, 108, 109, 111, 114, 116, 119, 121, 122, 125, 126, 127, 131, 134, 137, 140, 142, 143, 145, 146, 149, 155, 158, 160, 162, 163, 164, 173, 181, 216, 223, 229, 232, 235, 242, 245], "activ": [48, 84, 120, 124, 127, 174, 191, 216, 239, 242, 250, 268, 278], "collaps": [48, 115, 140, 143, 268, 286], "hide_actor": 48, "active_tab_idx": 48, "set_vis": [48, 49, 50, 51, 226, 229, 268, 271], "sm": 48, "viz": [48, 89, 171, 251, 273, 277, 280], "viz_tab": 48, "imagecontainer2d": [49, 271, 284], "img_path": [49, 268], "home3": 49, "circular": [49, 51, 137, 139, 140, 143, 146, 152, 162, 266], "linear": [49, 51, 54, 55, 58, 61, 112, 180, 186, 196, 217, 224, 227, 248, 250], "740": [49, 286], "similarli": [49, 51, 281], "translat": [49, 51, 54, 56, 60, 61, 68, 84, 126, 139, 172, 174, 176, 178, 193, 194, 195, 196, 203, 206, 207, 212, 216, 217, 218, 227, 236, 256, 271, 283], "range_slider_x": 49, "rangeslid": [49, 97, 271, 280], "line_width": [49, 268, 271], "handle_sid": [49, 268], "range_slider_cent": [49, 268, 271], "value_slider_cent": [49, 268, 271], "range_precis": [49, 268], "value_precis": [49, 268], "range_slider_i": 49, "fill": [49, 132, 135, 144, 161, 163, 217, 221, 251, 261, 263, 284], "hide": [49, 50, 140, 211, 218, 250, 268, 270, 271, 277], "hide_all_exampl": [49, 50], "multiselect": [49, 50, 152, 268], "display_el": [49, 50], "viz_ui": [49, 278, 280], "welcome_text": 50, "welcom": [50, 88, 101, 103, 105, 107, 109, 110, 112, 115, 118, 120, 121, 124, 125, 126, 135, 138, 141, 144, 147, 150, 153, 156, 159, 161, 162, 163, 164, 227, 233, 242, 246, 287], "bye_text": 50, "bye": 50, "fury_text": [50, 54], "listbox_exampl": 50, "viz_listbox": 50, "viz_ui_listbox": 50, "five": [51, 129, 171, 283], "bottom": [51, 134, 140, 143, 162, 175, 248, 268, 269], "630": [51, 187, 218, 286], "hor_line_slider_text_top": 51, "230": 51, "hor_line_slider_text_bottom": 51, "ver_line_slider_text_left": 51, "ver_line_slider_text_right": 51, "translate_cube_v": 51, "translate_cube_hor": 51, "viz_slid": 51, "viz_ui_slid": 51, "keyfram": [52, 81, 169, 175, 180, 183, 186, 190, 192, 193, 196, 198, 215, 217, 250, 286], "introduct": [52, 81, 170, 217], "spline": [52, 54, 58, 81, 177, 189, 199, 217, 248, 250], "arm": [52, 81, 201, 217], "robot": [52, 81, 84, 109, 201, 217], "hierarch": [52, 60, 81, 162, 198, 204, 210, 217, 218, 250, 286], "bezier": [52, 81, 217, 250], "custom": [52, 63, 70, 76, 81, 125, 140, 152, 158, 160, 169, 189, 190, 192, 199, 205, 217, 224, 239, 245, 248, 250, 254, 265, 268, 269, 270, 286], "cubic_bezier_interpol": [53, 271], "wide": [53, 99, 248, 258], "quaternion": [53, 58, 73, 75, 84, 110, 180, 183, 192, 217, 250, 267], "destin": [53, 246], "departur": 53, "cp": 53, "keyframe_1": 53, "out_cp": [53, 250], "keyframe_2": 53, "in_cp": [53, 250], "pts_actor": 53, "cps_actor": 53, "cline_actor": 53, "add_actor": [53, 54, 55, 56, 58, 59, 61, 62, 63, 250, 271], "consist": [53, 58, 59, 76, 185, 191, 211, 216, 222, 240, 243, 251, 268], "depart": 53, "set_posit": [53, 54, 56, 57, 58, 59, 60, 62, 250, 268, 271], "set_position_interpol": [53, 54, 56, 58, 61, 63, 250, 271], "add_anim": [53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 250, 270, 271], "viz_keyframe_animation_bezier_1": 53, "set_position_keyfram": [53, 54, 61, 62, 250, 271], "in_control_point": 53, "out_control_point": 53, "vis_point": 53, "vis_cp": 53, "playback": [53, 54, 61, 62, 172, 180, 186, 213, 217, 250, 268], "playback_panel": [53, 54, 55, 60, 61, 62, 183, 250, 271], "viz_keyframe_animation_bezier_2": 53, "viz_bezier_interpol": 53, "explain": [54, 55, 59, 88, 126, 127, 130, 131, 156, 171, 186, 192, 201, 204, 215, 217, 224, 237, 243, 246, 255, 287], "cameraanim": [54, 271], "cubic_spline_interpol": [54, 58, 271], "But": [54, 105, 136, 139, 143, 145, 164, 166, 169, 171, 176, 179, 188, 196, 204, 205, 217, 227, 236, 269], "why": [54, 58, 65, 103, 139, 140, 171, 173, 188, 217, 224, 227, 233, 237], "ask": [54, 139, 170, 171, 172, 173, 209, 243], "detect": [54, 84, 107, 126, 138, 163, 245], "text_anim": 54, "29": [54, 216, 218, 269, 272, 277, 280], "set_opac": [54, 249, 250, 271], "set_scal": [54, 250, 271], "cubic": [54, 58, 76, 177, 199, 217, 248, 250], "sinc": [54, 56, 58, 59, 63, 65, 68, 69, 84, 87, 98, 100, 114, 116, 124, 138, 139, 169, 170, 175, 184, 193, 196, 217, 222, 228, 234, 240, 241, 243, 246, 255, 270], "done": [54, 57, 58, 62, 63, 84, 99, 103, 105, 110, 111, 112, 114, 124, 125, 126, 137, 139, 140, 143, 149, 152, 159, 161, 162, 163, 164, 192, 193, 197, 206, 209, 211, 217, 224, 239, 245, 270, 286, 287], "camera_anim": 54, "camera_posit": 54, "camera_focal_posit": 54, "set_camera_foc": 54, "set_camera_focal_keyfram": 54, "set_focal_keyfram": [54, 250, 271], "set_focal_interpol": [54, 250, 271], "animat": 54, "viz_keyframe_animation_camera": 54, "viz_camera": 54, "hsv_color_interpol": [55, 271], "lab_color_interpol": [55, 271], "step_interpol": [55, 271], "xyz_color_interpol": [55, 271], "cubes_po": 55, "static": [55, 60, 131, 158, 162, 189, 244, 245, 250, 268, 286], "linear_text": 55, "lab_text": 55, "lab": [55, 171, 177, 183, 217, 250, 251], "37": [55, 277, 283], "hsv_text": 55, "xyz_text": 55, "step_text": 55, "list_of_actor": 55, "anim_linear_color": 55, "anim_lab_color": 55, "anim_hsv_color": 55, "anim_xyz_color": 55, "anim_step_color": 55, "distinguish": [55, 180, 251, 267], "set_color": [55, 250, 271], "set_color_interpol": [55, 63, 250, 271], "viz_keyframe_animation_color": 55, "viz_color_interpol": 55, "argument": [56, 63, 80, 84, 105, 106, 126, 215, 250, 255, 264, 267, 268, 283, 286], "khrono": [56, 170, 175, 179, 187, 246, 253, 265], "org": [56, 58, 67, 78, 89, 90, 91, 92, 94, 95, 97, 99, 103, 105, 107, 109, 110, 112, 113, 115, 118, 120, 121, 123, 124, 129, 133, 136, 139, 157, 164, 167, 220, 251, 265, 266, 267], "gltftutori": 56, "gltftutorial_007_anim": 56, "html": [56, 78, 87, 133, 139, 171, 265, 267, 287], "cubicsplin": [56, 193], "previouspoint": 56, "previoustang": 56, "nextpoint": 56, "nexttang": 56, "interpolationvalu": 56, "t2": 56, "t3": 56, "tan_cubic_spline_interpol": [56, 271], "interpolated_valu": 56, "ok": [56, 145, 239], "spline_interpol": [56, 61, 271], "closur": [56, 189, 217], "get_timestamps_from_keyfram": [56, 271], "in_tang": [56, 250], "out_tang": [56, 250], "incomplet": [56, 110, 120, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286], "behaviour": [56, 252], "deal": [56, 133, 139, 145, 216, 227, 239, 245], "miss": [56, 125, 172, 202, 203, 232, 233, 277, 280, 284, 285, 286], "zeros_lik": 56, "get_previous_timestamp": [56, 271], "get_next_timestamp": [56, 271], "surround": [56, 137], "t0": [56, 250], "get_time_tau": [56, 271], "time_delta": 56, "setter": [56, 134], "custom_field": 56, "p0": 56, "tan_0": 56, "p1": 56, "tan_1": 56, "3051798": 56, "640117": 56, "motion_path_r": [56, 63, 250, 271], "keyframe_data": 56, "in_tan": 56, "out_tan": 56, "viz_keyframe_custom_interpol": 56, "viz_custom_interpol": 56, "road": [57, 233], "construct": [57, 133, 135, 164, 200, 217, 251, 266, 269], "car": 57, "body_actor": 57, "car_anim": 57, "wheel_cent": 57, "wheel_direct": 57, "wheel_posit": 57, "cylind": [57, 60, 64, 74, 76, 81, 84, 85, 115, 121, 129, 264, 271, 283, 286], "cap": [57, 68, 74, 76, 84, 248, 250, 264], "wheels_anim": 57, "wheel_anim": 57, "set_rot": [57, 58, 250, 271], "radar": 57, "shaft": [57, 60, 248, 264], "radar_shaft": 57, "radar_shaft_anim": 57, "radar_anim": 57, "add_child_anim": [57, 60, 250, 271], "relat": [57, 99, 105, 120, 136, 139, 140, 142, 143, 145, 146, 149, 159, 164, 171, 175, 196, 223, 224, 225, 226, 231, 238, 243, 245, 246, 251, 265, 268, 270, 284], "attach": [57, 62, 84, 121, 183, 224, 227, 233, 236], "matter": [57, 251], "viz_keyframe_hierarchical_anim": 57, "viz_hierarchical_anim": 57, "minim": [58, 186], "respons": [58, 62, 73, 75, 118, 120, 131, 139, 145, 164, 186, 217, 233, 250, 266, 270], "interpolation_funct": 58, "feed": [58, 171], "44434": 58, "ve": [58, 63, 130, 133, 136, 139, 142, 145, 151, 154, 159, 164, 165, 166, 169, 190, 222], "set_": [58, 62], "_interpol": 58, "slerp": [58, 180, 183, 193, 196, 215, 217, 271], "reed": 58, "en": [58, 67, 164, 267], "wikipedia": [58, 67, 236, 245, 267], "wiki": [58, 67, 96, 128, 168, 170, 219, 246, 253, 265, 267, 286], "viz_keyframe_interpol": 58, "viz_interpol": [58, 59], "care": [59, 133, 226], "simpli": [59, 84, 110, 146, 227], "anyth": [59, 85, 169, 216, 217, 225, 231, 236, 251, 261, 287], "temperatur": [59, 250], "simplifi": [59, 80, 136, 215, 228, 286], "encod": [59, 78, 80, 218, 253, 255, 259, 265, 266, 267], "almost": [59, 114, 137, 140, 149, 152, 160, 169, 170, 175, 192, 198, 250], "quick": [59, 152, 162, 182, 194, 199, 208], "viz_keyframe_animation_introduct": 59, "viz_introduct": 59, "set_actor_origin": [60, 271], "main_arm": 60, "sub_arm": 60, "joint_1": 60, "joint_2": 60, "main_arm_anim": 60, "child_arm_anim": 60, "drill_anim": 60, "joint": [60, 74, 76, 120, 126, 205, 256], "rot_main_arm": 60, "rot_sub_arm": 60, "rot_dril": 60, "drill": 60, "evalu": [60, 63, 65, 109, 118, 121, 125, 126, 162, 163, 164, 189, 232, 250, 254, 266, 269, 283], "set_rotation_interpol": [60, 63, 250, 271], "is_evalu": [60, 63, 250], "observ": [60, 63, 84, 124, 125, 162, 251, 259, 265, 269], "parent": [60, 84, 143, 146, 170, 180, 183, 210, 216, 218, 223, 250, 256], "viz_robot_arm": 60, "viz_robot_arm_anim": 60, "position_keyfram": 61, "pos_dot": 61, "sphere_linear": 61, "linear_anim": 61, "linear_interpol": [61, 271], "larger": [61, 244, 270], "sphere_splin": 61, "spline_anim": 61, "5th": [61, 74, 76, 107], "reflect": [61, 67, 119, 167, 175, 250, 260, 285], "viz_keyframe_animation_splin": 61, "viz_spline_interpol": 61, "hi": [62, 124, 130, 131, 132, 133, 145, 170], "learn": [62, 102, 133, 159, 161, 169, 170, 171, 174, 200, 222, 239, 245, 246, 251], "stop": [62, 78, 79, 80, 87, 163, 217, 224, 227, 250, 266, 268, 271], "playbackpanel": [62, 180, 183, 189, 211, 217, 271, 286], "accordingli": [62, 84, 140, 162, 173, 223, 268], "support": [62, 70, 73, 75, 85, 87, 89, 90, 91, 92, 94, 95, 97, 102, 103, 104, 106, 108, 111, 113, 114, 116, 123, 124, 125, 126, 127, 129, 134, 137, 140, 146, 148, 150, 152, 155, 157, 160, 162, 164, 167, 172, 179, 181, 183, 184, 187, 193, 194, 195, 199, 204, 214, 216, 217, 218, 220, 248, 249, 251, 257, 265, 268, 270, 277, 280, 283, 284, 285, 286, 287], "_keyfram": 62, "That": [62, 139, 169, 171, 211, 228, 233, 236, 239], "earlier": [62, 140, 143, 150, 209, 212, 227, 255], "viz_keyframe_animation_timelin": 62, "viz_timelin": 62, "pos_ev": 63, "color_ev": 63, "rotation_ev": 63, "scale_ev": 63, "extra": [63, 84, 132, 156, 171, 194, 238, 270], "doe": [63, 126, 139, 140, 146, 172, 180, 184, 196, 203, 205, 211, 212, 224, 225, 250, 251, 253, 261, 280, 282, 285], "set_interpol": [63, 250, 271], "viz_keyframe_animation_evalu": 63, "viz_using_time_equ": 63, "intern": [64, 81, 120, 160, 171, 182, 203, 211, 216], "convent": [64, 81, 84, 125, 245, 261, 267], "sdf": [64, 79, 81, 102, 104, 117, 125, 129, 164, 220, 222, 228, 231, 235, 243, 271, 281, 283, 286], "principl": [64, 81, 88, 139, 167, 216, 260, 285, 286], "brdf": [64, 81, 88, 167, 285], "vari": [64, 81, 191, 241, 283], "impostor": [64, 81, 136, 164, 192], "billboard": [64, 81, 97, 165, 186, 196, 198, 211, 213, 215, 217, 227, 236, 239, 242, 271, 280, 283, 286], "polygon": [64, 65, 69, 81, 116, 122, 125, 201, 248, 269, 271, 286], "engin": [65, 66, 71, 81, 88, 99, 105, 107, 115, 123, 126, 134, 169, 170, 171, 172, 270, 282, 283], "quadrilater": 65, "come": [65, 133, 169, 224, 227, 233, 268], "cost": [65, 224, 248], "decreas": [65, 175, 269, 270, 282], "compromis": [65, 88, 162, 225], "real": [65, 80, 111, 140, 162, 164, 169, 171, 177, 192, 246, 251, 271], "most": [65, 98, 104, 112, 121, 146, 147, 164, 171, 173, 188, 197, 206, 216, 218, 222, 225, 240, 243, 272], "becam": [65, 176, 255], "popular": [65, 251], "game": [65, 88, 170, 172], "quota": 65, "sign": [65, 68, 69, 88, 113, 164, 165, 220, 281, 286], "mathemat": [65, 68, 108], "boundari": [65, 68, 174, 176, 216, 223, 226, 268], "outsid": [65, 146, 285], "neg": [65, 258, 270], "hart1996": [65, 68], "purpos": [65, 66, 67, 88, 134, 140, 141, 162, 231, 237, 243, 288], "word": [65, 107, 109], "either": [65, 84, 88, 101, 140, 146, 160, 211, 216, 218, 246, 253, 261], "definit": [65, 72, 74, 76, 84, 101, 225, 228, 231, 234, 243], "exemplifi": 65, "suitabl": [65, 164, 204], "compose_shad": [65, 68, 271], "import_fury_shad": [65, 68, 271], "represent_actor_as_wirefram": [65, 271], "glyph": [65, 95, 160, 222, 243, 248, 264, 269, 278, 279, 286], "spheres_actor": 65, "recent": [65, 133, 156, 159, 272], "viz_regular_spher": 65, "explor": [65, 119, 125, 142, 232, 235, 238, 243], "understand": [65, 67, 98, 100, 102, 106, 107, 108, 110, 111, 118, 125, 132, 135, 137, 138, 141, 143, 161, 163, 170, 171, 175, 216, 223, 228, 233, 236, 239, 246], "interconnect": 65, "viz_low_res_wirefram": 65, "clean": [65, 68, 87, 114, 152, 208, 214, 239, 245, 287], "viz_hi_res_wirefram": 65, "As": [65, 93, 101, 104, 110, 116, 126, 131, 132, 133, 139, 143, 145, 146, 152, 155, 160, 171, 172, 173, 175, 176, 178, 179, 180, 185, 190, 195, 196, 197, 200, 202, 203, 205, 206, 209, 212, 216, 217, 224, 227, 228, 229, 230, 231, 238, 239, 241, 243, 245, 246, 250], "evid": 65, "directli": [65, 118, 160, 162, 169, 189, 196, 198, 209, 213, 217, 218, 242, 245, 246, 250, 252, 286], "impact": [65, 238], "luckili": 65, "deliv": 65, "known": [65, 163, 171, 216, 222], "suit": [65, 171, 285], "instruct": [65, 172, 224, 245, 278, 281, 286], "billboards_actor": 65, "viz_billboards_wirefram": 65, "know": [65, 84, 88, 131, 133, 170, 171, 172, 174, 218, 222, 228, 245, 246], "sd_sphere": 65, "frag": [65, 68], "sphere_radiu": 65, "const": 65, "sphere_dist": 65, "sdsphere": 65, "sdf_eval": 65, "fragoutput0": [65, 68, 70], "vec4": [65, 68, 70, 256], "discard": [65, 68, 206, 287], "declar": [65, 224, 227, 245, 248, 265], "fs_dec": [65, 68, 248], "fs_impl": [65, 248], "viz_billboards_circl": 65, "even": [65, 124, 125, 139, 145, 146, 149, 169, 195, 217, 228, 245, 250, 287, 288], "essenti": [65, 135, 164, 218, 227, 233, 253, 261, 268], "gradient": 65, "deriv": [65, 267, 288], "central_diffs_norm": [65, 68], "central_diff": [65, 68], "sd_sphere_norm": 65, "vec3": [65, 68, 70, 256], "blinn": [65, 68, 169], "phong": [65, 68, 169, 260], "illumin": [65, 68, 251], "blinn_phong_model": [65, 68], "fragment": [65, 68, 70, 125, 217, 239, 242, 248, 260, 265], "smoothstep": 65, "antialias": [65, 68, 271], "absolut": [65, 143, 162, 268], "compens": 65, "abs_dist": 65, "absdist": 65, "centraldiffsnorm": [65, 68], "0001": [65, 68], "attenu": 65, "factor": [65, 217, 239, 248, 249, 258, 261, 268, 270, 286], "light_attenu": 65, "lightattenu": [65, 68], "blinnphongillummodel": [65, 68], "lightcolor0": [65, 68, 196, 201, 204], "diffusecolor": [65, 68], "specularpow": [65, 68], "specularcolor": [65, 68], "ambientcolor": [65, 68], "frag_output": 65, "recreat": 65, "viz_billboards_spher": 65, "hart": [65, 68], "john": [65, 68], "trace": [65, 68, 87, 88, 197], "rai": [65, 68, 88, 98, 100, 102, 104, 125], "implicit": [65, 68, 224], "1996": [65, 68], "527": [65, 68, 285], "545": [65, 68, 286], "viz_billboard_sdf_spher": 65, "aim": [66, 88, 133, 134, 137, 146, 226, 230, 232], "graphic": [66, 88, 126, 164, 169, 170, 222, 227, 230, 246], "conduct": [66, 130, 131], "dielectr": [66, 260], "illustr": [66, 240, 251], "showcas": [66, 67, 87, 107, 112, 115, 116, 125, 159], "subset": [66, 177, 180], "constrain": 66, "material_param": [66, 67], "produc": [66, 67, 139, 166, 253, 261], "num_valu": 66, "mp": 66, "param": [66, 248, 251, 258, 268], "interpret": [66, 67, 124, 145, 164, 251], "guid": [66, 67, 244], "l": [66, 248, 261, 269, 270], "26": [66, 67, 73, 75, 76, 125, 126, 139, 162, 163, 164, 272, 277], "affect": [66, 192, 206, 241], "num": 66, "ior_param": 66, "iorp": 66, "viz_pbr_spher": 66, "bidirect": [67, 167, 285], "bidirectional_reflectance_distribution_funct": 67, "introduc": [67, 170, 226, 232, 238, 265], "brent": 67, "burlei": 67, "siggraph": [67, 164], "2012": 67, "blog": [67, 104, 113, 120, 121, 125, 126, 137, 138, 140, 143, 154, 155, 156, 161, 162, 163, 164, 171, 203, 217, 281, 282, 283, 284, 285, 286, 287], "selfshadow": 67, "public": [67, 169, 287], "s2012": 67, "although": [67, 133, 138, 139, 164, 222, 232, 237], "strictli": [67, 161], "merl": 67, "www": [67, 139, 164, 251, 252, 267], "exchang": [67, 221], "research": [67, 88, 107, 141, 142, 156, 158, 159, 170, 176, 233], "databas": 67, "moreov": [67, 125, 251], "carefulli": [67, 238], "limit": [67, 78, 125, 126, 138, 149, 179, 181, 188, 189, 218, 235, 239, 242, 268, 278, 286, 288], "blend": [67, 239, 242, 270], "layer": [67, 100, 260], "give": [67, 87, 133, 145, 148, 164, 166, 171, 197, 202, 209, 217, 218, 236, 240, 245, 251, 255, 267, 270, 280], "intuit": 67, "usabl": [67, 224], "subsurfac": [67, 260], "specular": [67, 196, 260], "specular_tint": [67, 260], "anisotrop": [67, 167, 260, 285], "sheen": [67, 260], "sheen_tint": [67, 260], "clearcoat": [67, 260], "clearcoat_gloss": [67, 260], "manifest_principl": [67, 271], "tint": [67, 260], "gloss": [67, 260], "viz_principled_spher": 67, "henc": [68, 84, 107, 110, 120, 126, 189, 250], "attribute_to_actor": [68, 271], "shader_to_actor": [68, 70, 202, 271], "cylinders_8": 68, "cylinders_16": 68, "cylinders_32": 68, "viz_poly_cylind": 68, "setrepresentationtowirefram": 68, "viz_poly_cylinder_geom": 68, "march": [68, 98, 100, 102, 104, 125], "intersect": 68, "link": [68, 76, 84, 125, 126, 137, 141, 145, 162, 163, 164, 179, 216, 217, 218, 241, 265, 267, 277, 278, 286], "rep_direct": 68, "rep_cent": 68, "rep_radii": 68, "rep_height": 68, "vs_dec": [68, 248], "vertexmcvsoutput": 68, "centermcvsoutput": 68, "directionvsoutput": 68, "heightvsoutput": 68, "radiusvsoutput": 68, "vs_impl": [68, 248], "vertexmc": [68, 70], "templat": [68, 154, 265, 268, 278], "decl_cod": [68, 70, 265], "impl_cod": [68, 70, 265], "occupi": [68, 126, 152, 251], "fs_vars_dec": 68, "mat4": 68, "mcvcmatrix": 68, "vec_to_vec_rot_mat": 68, "glsl": [68, 102, 108, 169, 177, 180, 196, 217, 265], "sd_cylind": 68, "sdf_map": 68, "sdcylind": 68, "rot": 68, "vec2vecrotmat": 68, "cast_rai": 68, "ray_march": 68, "piec": [68, 145], "previou": [68, 99, 110, 112, 126, 132, 137, 140, 145, 170, 171, 180, 183, 200, 217, 221, 232, 243, 250, 251, 256, 268], "sdf_cylinder_frag_impl": 68, "ro": 68, "rd": 68, "ld": 68, "castrai": 68, "viz_sdf_cylind": 68, "shortest": 69, "rate": [69, 95, 108, 158, 248, 279], "compar": [69, 112, 139, 169, 171, 225, 237, 253, 255], "tradit": [69, 116], "raymarch": [69, 116, 125, 222, 225, 228, 235, 243], "sdfactor": 69, "toru": [69, 102, 116, 125, 248], "ellipsoid": [69, 116, 125, 222, 231, 234, 235, 239, 243, 249, 271, 283], "capsul": [69, 283], "viz_sdfactor": 69, "add_shader_callback": [70, 271], "utah": [70, 209], "teapot": 70, "fib": [70, 85, 257], "ply": [70, 85, 257], "stl": [70, 85, 257], "xml": [70, 85, 257], "get_polymapper_from_polydata": [70, 85, 271], "get_actor_from_polymapp": [70, 85, 271], "mapper": [70, 141], "getmapp": [70, 265], "vtkshader": 70, "vertex_shader_code_decl": 70, "myvertexvc": 70, "vertex_shader_code_impl": 70, "fragment_shader_code_decl": 70, "fragment_shader_code_impl": 70, "vec2": [70, 256], "iresolut": 70, "uv": [70, 218], "xyx": 70, "pot": 70, "shader_callback": [70, 284], "_caller": [70, 265], "calldata": [70, 265], "setuniformf": 70, "valueerror": 70, "textblock": [70, 73, 74, 75, 150, 268], "hello": [70, 85, 99, 101, 103, 105, 107, 109, 110, 112, 115, 118, 120, 121, 124, 170, 171, 221, 222, 227, 230, 236, 239, 242, 245, 246, 248, 270], "viz_shad": 70, "ball": [71, 73, 81, 109, 120, 126, 132, 138, 144, 163, 261, 283], "domino": [71, 81, 283], "chain": [71, 81, 121, 126, 216, 261], "brick": [71, 76, 81, 109, 112, 115, 118, 121, 126], "wreck": [71, 81, 109, 120, 126, 283], "pybullet": [72, 73, 74, 75, 76, 105, 107, 109, 115, 118, 120, 126, 282, 283], "confirm": [72, 121], "client": [72, 73, 75, 78, 79, 84, 133, 139, 164, 271], "red_radiu": 72, "blue_radiu": 72, "red_ball_actor": 72, "red_ball_col": 72, "createcollisionshap": [72, 73, 74, 75, 76, 84], "geom_spher": [72, 73, 76, 84], "red_bal": 72, "createmultibodi": [72, 73, 74, 75, 76, 84], "basemass": [72, 73, 75, 76, 84], "basecollisionshapeindex": [72, 73, 75, 76, 84], "baseposit": [72, 73, 74, 75, 76, 84], "baseorient": [72, 73, 74, 75, 76, 84], "blue_ball_actor": 72, "blue_ball_col": 72, "blue_bal": 72, "restitut": [72, 73, 75, 76, 84], "changedynam": [72, 73, 75, 76, 84], "sync": [72, 74, 76, 105, 107, 118, 232], "sync_actor": [72, 73, 74], "multibodi": [72, 73, 74, 75, 76, 84, 118], "orn": [72, 73, 74, 75, 76, 84, 118], "getbasepositionandorient": [72, 73, 74, 75, 76, 84, 118], "orn_deg": [72, 73, 74, 84], "geteulerfromquaternion": [72, 73, 74, 84], "setorient": [72, 73, 74, 84], "apply_forc": [72, 73, 75, 76, 84], "78": 72, "89": [72, 278, 284], "red_po": 72, "red_orn": 72, "blue_po": 72, "blue_orn": 72, "applyexternalforc": [72, 73, 75, 76, 84], "forceobj": [72, 73, 75, 76, 84], "40000": 72, "posobj": [72, 73, 75, 76, 84], "flag": [72, 73, 75, 76, 78, 84, 134, 149, 152, 162, 202, 251, 268, 271, 285, 286, 287], "world_fram": [72, 73, 75, 76, 84], "getcontactpoint": 72, "contact": 72, "stepsimul": [72, 73, 74, 75, 76, 84], "viz_ball_collid": 72, "beign": 73, "thrown": [73, 107, 216, 286], "gui": [73, 75, 84, 131, 134, 137, 140, 143, 146, 149, 152, 155, 158, 160, 171, 250], "si": [73, 84], "unit": [73, 84, 88, 132, 135, 189, 192, 213, 217, 232, 251, 264, 269, 278, 283], "setgrav": [73, 74, 75, 76, 84], "easier": [73, 75, 88, 109, 124, 139, 143, 162, 166, 192, 217, 224, 227, 251, 287], "tweak": [73, 75, 112, 134, 138, 143, 162, 226, 244, 245], "ball_radiu": [73, 76], "ball_color": [73, 76], "ball_mass": [73, 76], "ball_posit": 73, "ball_orient": 73, "base_s": [73, 75], "base_color": [73, 75], "base_posit": [73, 75], "base_orient": [73, 75], "wall_height": [73, 76], "wall_width": 73, "brick_mass": 73, "brick_siz": [73, 76, 84], "ball_actor": [73, 76, 84], "ball_col": [73, 84], "multi": [73, 74, 84, 193, 214, 218, 268], "friction": [73, 74, 76, 84, 120], "lateralfrict": [73, 75, 76, 84], "base_actor": [73, 74, 75, 76], "base_col": [73, 75, 76], "geom_box": [73, 74, 75, 76], "halfext": [73, 74, 75, 76], "half": [73, 75, 169, 171], "actual": [73, 75, 105, 131, 134, 137, 149, 171, 185, 191, 203, 206, 241, 250, 251, 252], "nb_brick": [73, 76, 84], "brick_cent": [73, 76, 84, 118], "brick_direct": [73, 76, 84], "57": [73, 75, 76, 277], "brick_orn": [73, 76, 84, 118], "brick_color": [73, 76, 84], "brick_col": [73, 76, 84], "int8": [73, 75], "logic": [73, 76, 102, 140], "center_po": [73, 75, 76, 84], "brick_actor": [73, 76], "base_po": [73, 75, 76], "ball_po": [73, 84], "major": [73, 75, 89, 90, 91, 92, 94, 95, 97, 100, 103, 107, 109, 110, 112, 113, 114, 115, 118, 120, 121, 123, 124, 129, 132, 135, 152, 157, 167, 220, 232, 235, 240, 251, 255, 269], "accur": [73, 75, 108, 217, 286], "3x3": [73, 75, 84, 225, 245], "sync_brick": [73, 76, 84, 118], "rot_mat": [73, 74, 75, 76, 84, 118], "getmatrixfromquaternion": [73, 74, 75, 76, 84, 118], "getdifferencequaternion": [73, 74, 75, 76, 84, 118], "inaccur": 73, "approach": [73, 104, 111, 122, 125, 133, 140, 148, 164, 173, 176, 188, 194, 197, 198, 202, 211, 212, 217, 232, 239, 242, 266], "avg": [73, 74, 75, 76], "fpss": [73, 74, 75, 76], "nsim": [73, 74, 75, 76], "680": [73, 74, 75, 76, 217, 286], "46": [73, 75, 277], "79": [73, 75, 278], "frame_r": [73, 74, 75, 76, 270, 271], "ball_orn": [73, 84], "130": [73, 74, 76, 280], "viz_brick_wal": 73, "n_link": [74, 76, 84], "dx_link": [74, 76], "segment": [74, 76, 121, 208, 250, 284, 286], "link_mass": [74, 76, 84], "base_mass": [74, 76, 84], "joint_frict": [74, 76], "rad": [74, 268], "link_shap": [74, 76], "geom_cylind": [74, 76], "collisionframeposit": [74, 76], "base_shap": [74, 76, 84], "visualshapeid": [74, 76, 84], "linkcollisionshapeindic": [74, 76, 84], "linkvisualshapeindic": [74, 76, 84], "linkposit": [74, 76, 84], "linkorient": [74, 76, 84], "linkinertialframeposit": [74, 76, 84], "linkinertialframeorn": [74, 76, 84], "jointtyp": [74, 76, 84], "joint_spher": [74, 76], "linkdirect": [74, 76, 84], "link_radii": [74, 76], "link_height": [74, 76, 84], "rope_actor": [74, 76, 84], "rope": [74, 76, 84, 120], "linkmass": [74, 76, 84], "linkinertialframeorient": [74, 76, 84], "linkparentindic": [74, 76, 84], "linkjointtyp": [74, 76, 84], "linkjointaxi": [74, 76, 84], "stiff": [74, 120], "among": [74, 109, 120, 167, 211, 285], "friction_vec": [74, 76], "control_mod": [74, 76], "position_control": [74, 76], "getnumjoint": [74, 76, 84], "setjointmotorcontrolmultidof": [74, 76], "targetposit": [74, 76], "targetveloc": [74, 76], "positiongain": [74, 76], "velocitygain": [74, 76], "constraint": [74, 76, 107], "root_robe_c": [74, 76], "createconstraint": [74, 76], "joint_fix": [74, 76], "traj": 74, "inject": 74, "amplitude_x": 74, "amplitude_i": 74, "freq": 74, "coupl": [74, 107, 112, 120, 131, 134, 234], "sync_joint": [74, 84], "actor_list": [74, 76, 84], "getlinkst": [74, 76, 84], "offer": [74, 76, 133, 136, 244, 248], "4th": [74, 76, 105], "freq_sim": 74, "240": [74, 126, 281], "trajectori": 74, "ux": [74, 145, 164], "pivot": [74, 185], "getquaternionfromeul": 74, "changeconstraint": 74, "jointchildframeorient": 74, "maxforc": 74, "viz_chain": 74, "seri": [75, 88, 96, 128, 168, 171, 219, 270, 277, 287], "physicsclientid": 75, "number_of_domino": 75, "domino_mass": 75, "domino_s": 75, "domino_cent": 75, "domino_direct": 75, "domino_orn": 75, "domino_color": 75, "domino_col": 75, "centers_list": 75, "99": [75, 184, 280], "domino_actor": 75, "sync_domino": 75, "domino1_po": 75, "domino1_orn": 75, "viz_domino": 75, "handi": 76, "wall_length": 76, "wall_breadth": 76, "cylindr": [76, 286], "nxnxn": [76, 121], "int16": [76, 251], "desir": [76, 84, 105, 164, 202, 226, 236, 248, 251, 257, 258, 270], "hing": 76, "ball_shap": 76, "28": [76, 125, 126, 139, 162, 163, 164, 217, 218, 269, 277, 285], "base_orn": 76, "brick_vertic": 76, "brick_sec": 76, "chain_vertic": 76, "chain_sec": 76, "sync_chain": 76, "tool": [76, 96, 118, 128, 130, 139, 142, 145, 168, 171, 219, 236, 261, 271, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287], "viz_wrecking_bal": 76, "server": [77, 78, 79, 80, 81, 84, 87, 133, 139, 164, 271], "turn": [77, 81, 104, 146, 184, 227, 242, 248, 268], "webrtc": [77, 78, 81, 130, 133, 145, 164, 266, 286], "mjpeg": [77, 78, 81, 164, 266], "serv": [78, 248, 261], "web": [78, 80, 164, 287], "browser": [78, 80, 87, 152, 164, 266], "robust": [78, 80, 226], "live": [78, 80, 88, 248], "latenc": [78, 80, 133], "ngrok": [78, 133, 164], "instal": [78, 80, 88, 89, 90, 91, 92, 94, 95, 97, 113, 123, 129, 145, 157, 167, 188, 220, 251, 277, 278, 280, 281, 284, 285, 286, 287], "aiortc": [78, 80, 154], "pip": [78, 80, 87, 88, 89, 90, 91, 92, 94, 95, 97, 113, 123, 129, 157, 167, 220, 279, 287], "ffmpeg": [78, 80], "linux": [78, 80, 87, 88, 133, 281], "apt": [78, 80], "libavdevic": [78, 80], "dev": [78, 80, 87, 171, 287], "libavfilt": [78, 80], "libopu": [78, 80], "libvpx": [78, 80], "pkg": [78, 80], "config": [78, 80], "brew": [78, 80], "opu": [78, 80], "multiprocess": [78, 79, 136, 139, 145, 164, 266], "sy": [78, 139, 253, 259, 265], "furystreamcli": [78, 79, 139, 271], "furystreaminteract": [78, 139, 271], "maco": [78, 79, 80, 87, 94, 133, 142, 148, 164, 188, 278], "set_start_method": [78, 79], "spawn": [78, 79], "webrtc_avail": 78, "web_serv": [78, 271], "web_server_raw_arrai": [78, 79, 271], "__name__": [78, 79], "__main__": [78, 79], "use_raw_arrai": [78, 79, 266], "rawarrai": [78, 130, 136, 139, 266], "sharedmemori": [78, 136, 139, 142, 145, 266], "featur": [78, 95, 103, 105, 111, 113, 114, 115, 116, 122, 126, 130, 131, 143, 153, 155, 158, 160, 162, 163, 164, 165, 166, 169, 171, 185, 188, 192, 194, 200, 201, 206, 207, 212, 216, 217, 226, 227, 238, 241, 243, 244, 248, 249, 272, 279, 281, 285, 286], "doc": [78, 84, 87, 105, 126, 133, 145, 163, 169, 170, 173, 187, 190, 218, 239, 248, 265, 267, 270, 277, 278, 279, 280, 283, 286, 287], "share": [78, 101, 103, 105, 107, 109, 110, 112, 115, 118, 124, 126, 135, 136, 138, 139, 141, 144, 145, 147, 148, 150, 153, 156, 159, 161, 164, 221, 266], "version_info": 78, "window_s": [78, 79, 80], "max_window_s": [78, 139, 266], "sent": [78, 156, 169, 187, 196, 198], "ms_stream": [78, 266], "ms_interact": [78, 266], "send": [78, 84, 89, 90, 91, 92, 94, 95, 97, 113, 123, 129, 130, 144, 157, 167, 180, 188, 196, 198, 217, 220, 261, 287], "queue": [78, 139, 266], "max_queue_s": [78, 266], "stream_interact": 78, "arg": [78, 79, 87, 255, 264, 266], "img_manag": [78, 79], "image_buff": [78, 79, 266], "info_buff": [78, 79, 145, 266], "circular_queu": [78, 266], "head_tail_buff": [78, 266], "buffer": [78, 133, 139, 158, 184, 190, 217, 218, 224, 246, 251, 253, 256, 259, 265, 266, 271], "_buffer": 78, "8000": [78, 80, 133, 266], "localhost": [78, 266], "image_buffer_nam": [78, 266], "info_buffer_nam": [78, 266], "head_tail_buffer_nam": [78, 266], "buffer_nam": [78, 266], "m": [78, 79, 130, 132, 133, 136, 139, 145, 147, 159, 162, 169, 170, 221, 222, 225, 228, 234, 240, 248, 250, 261, 264, 266, 287], "url": [78, 134, 162, 164, 181, 218, 253, 266, 268, 271, 283, 284], "htttp": 78, "wise": [78, 133], "kill": [78, 136, 139], "resourc": [78, 125, 133, 136, 139, 142, 145, 148, 149, 164, 250, 266], "cleanup": [78, 79, 139, 162, 266, 271], "viz_interact": 78, "streamer": [79, 130, 136], "milesecond": [79, 266], "viz_no_interact": 79, "port": [80, 266], "greater": [80, 236, 241, 255, 266, 270], "asyncio": [80, 166, 175, 266], "platform": [80, 167, 220, 285, 286], "time_sleep": 80, "environ": [80, 110, 133, 152, 164], "wsl": 80, "async": [80, 136, 139, 266], "await": 80, "get_event_loop": 80, "run_until_complet": 80, "viz_widget": 80, "auto_examples_python": 81, "auto_examples_jupyt": 81, "194": [83, 280], "star": [83, 89, 90, 91, 92, 94, 95, 97, 113, 123, 129, 157, 167, 220, 264, 280, 281], "148": [83, 280], "fork": [83, 133, 136, 171, 287], "commit": [83, 126, 130, 133, 136, 139, 142, 145, 148, 245, 263, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287], "offici": [84, 103, 105, 107, 109, 110, 112, 115, 118, 120, 121, 124, 127, 133, 136, 169, 170, 171, 287], "driven": [84, 88, 287], "statu": [84, 184, 235, 242, 268, 287], "unless": [84, 126, 251, 268, 269, 270], "shutdown": 84, "gravity_x": 84, "gravity_i": 84, "gravity_z": 84, "criterion": 84, "fulfil": 84, "snippet": [84, 109, 118, 131, 141], "lateral_frict": 84, "damp": 84, "inertial_po": 84, "inertial_orn": 84, "roll": [84, 196, 267, 270, 271], "coeff": 84, "linkindex": 84, "extern": [84, 126, 130, 256, 285], "applyexternaltorqu": 84, "Not": [84, 171, 225, 228, 231, 243, 282], "explicitli": [84, 120, 188, 269, 277], "pair": [84, 233, 236, 244, 267], "enablecol": 84, "setcollisionfilterpair": 84, "feel": [84, 169, 171], "section": [84, 175, 235, 239, 241, 251, 265, 283, 286], "rotatewxyz": 84, "said": [84, 103, 105, 107, 109, 112, 115, 126, 145, 170, 172, 228, 245], "procedur": [84, 107], "firstli": [84, 112, 160, 171, 212, 229], "nb_object": 84, "object_cent": 84, "object_direct": 84, "object_orient": 84, "object_color": 84, "object_collis": 84, "further": [84, 109, 120, 124, 140, 224, 240, 244, 251, 287], "brick_actor_singl": 84, "getdifferencefromquarternion": 84, "tupl": [84, 248, 249, 250, 251, 253, 255, 258, 260, 261, 262, 263, 264, 266, 267, 268, 269, 270], "subtract": [84, 109, 270], "gimbal": 84, "lock": [84, 139, 266, 270, 271], "lead": [84, 146, 239, 261, 283, 284, 287], "unwant": [84, 283], "spin": [84, 115, 118, 270], "experienc": [84, 169, 233, 246], "advis": [84, 105, 169, 172, 288], "urdf": 84, "root": [84, 223, 229, 287], "hierarchi": [84, 210, 218], "freedom": 84, "regular": [84, 173, 248, 254, 255, 264, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286], "inerti": 84, "princip": [84, 251], "inertia": 84, "nb_link": 84, "suppos": [84, 101, 120, 145, 164, 239], "linkheight": 84, "linkradii": 84, "queri": [84, 150, 171, 283], "suzann": [85, 184, 283, 286], "blender": [85, 169, 170, 171, 208, 213], "directori": [85, 87, 156, 253, 263, 265, 268, 270, 287], "path_suzann": 85, "soon": [87, 122, 137, 140, 149, 152, 162, 217, 228, 231], "life": [87, 124, 133, 169, 170, 227], "decemb": [87, 170], "31st": 87, "2019": [87, 272, 280], "mandatori": [87, 139, 154, 169, 266], "aiohttp": [87, 175, 266], "pygltflib": [87, 175, 184, 256], "matplotlib": [87, 160, 242, 247, 248, 249, 251, 252, 278], "termin": [87, 89, 90, 91, 92, 94, 95, 97, 113, 123, 129, 157, 167, 170, 220, 270, 286], "forg": [87, 89, 90, 91, 92, 94, 95, 97, 113, 123, 129, 157, 167, 220], "channel": [87, 214, 216, 248, 251, 252, 256, 270], "latest": [87, 239, 282, 286], "clone": [87, 171, 287], "repo": [87, 102, 171, 287], "git": [87, 170, 263, 287], "txt": [87, 90, 275, 280, 286, 287], "enjoi": [87, 96, 124, 128, 134, 168, 219], "get_info": [87, 271, 277], "pytest": [87, 134, 164, 285, 287], "svv": [87, 287], "test_actor": [87, 279, 284], "test_my_function_nam": 87, "headless": 87, "xvfb": 87, "osx": [87, 277, 278], "xquartz": 87, "1920x1080x24": 87, "null": [87, 233], "bat": 87, "makefil": 87, "readm": [87, 91, 276, 277, 278, 280, 281, 283, 284, 286, 287], "md": [87, 287], "upload_to_gh": 87, "page": [87, 88, 170, 171, 235, 236, 245, 246, 267, 286, 287], "rst": [87, 155, 277, 281, 286, 287], "congratul": [87, 93, 171], "minimalist": [88, 171, 209], "har": 88, "gpu": [88, 125, 133, 137, 164, 169, 177, 196, 217, 248, 284], "precis": 88, "clariti": [88, 229, 235], "address": [88, 143, 149, 152, 153, 158, 226, 229, 232, 237, 238, 240, 241, 243, 244], "grow": [88, 127, 217], "necess": [88, 232], "ecosystem": 88, "cgi": 88, "imageri": 88, "deploi": 88, "everydai": 88, "practic": [88, 145, 164, 169, 171, 222], "clearli": [88, 171, 233], "written": [88, 107, 145, 164, 171, 246, 288], "good": [88, 110, 130, 133, 139, 140, 156, 159, 161, 164, 169, 171, 172, 202, 203, 209, 225, 239, 242, 243, 245, 246, 288], "underli": [88, 140, 161], "collabor": [88, 130, 164, 226], "hope": [88, 233, 234, 239, 243], "fail": [88, 93, 149, 152, 188, 218, 227, 241, 263, 277, 278, 286, 287], "develop": [88, 89, 90, 91, 92, 94, 95, 97, 103, 113, 123, 124, 129, 130, 131, 133, 145, 157, 164, 165, 166, 167, 216, 217, 220, 222, 230, 232, 245, 281, 287], "team": [88, 99, 127, 132, 136, 139, 147, 153, 160, 232, 246, 251], "discord": [88, 89, 90, 91, 92, 94, 95, 96, 97, 113, 123, 128, 129, 157, 167, 168, 170, 171, 219, 220, 283], "chat": 88, "room": 88, "cinemat": 88, "multiplatform": 88, "mac": [88, 277], "super": [88, 217], "integr": [88, 99, 105, 107, 115, 125, 126, 127, 136, 142, 164, 167, 170, 175, 192, 196, 197, 202, 209, 218, 220, 230, 274, 283, 285, 286], "btdf": 88, "latex": [88, 160, 286], "font": [88, 105, 152, 158, 160, 164, 166, 229, 238, 244, 268], "bsd": 88, "who": [88, 93, 127, 133, 145, 164, 236, 251], "involv": [88, 98, 106, 108, 116, 119, 125, 138, 162, 169, 223, 229, 230, 233, 236, 246], "typo": [88, 139, 154, 215, 278, 284, 286], "request": [88, 99, 120, 121, 124, 125, 126, 127, 130, 139, 142, 154, 161, 162, 163, 164, 170, 184, 192, 196, 216, 217, 223, 226, 229, 238, 251, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286], "happi": [89, 90, 91, 92, 94, 95, 97, 113, 123, 129, 157, 167, 169, 170, 171, 220, 245], "announc": [89, 90, 91, 92, 94, 95, 97, 99, 113, 123, 129, 157, 167, 169, 170, 220, 221, 287], "highlight": [89, 90, 91, 92, 94, 95, 97, 113, 123, 129, 157, 167, 206, 207, 216, 220, 232, 285, 287], "split": [89, 273], "upgrad": [89, 90, 91, 92, 94, 95, 97, 113, 123, 129, 157, 167, 186, 220, 287], "conda": [89, 90, 91, 92, 94, 95, 97, 113, 123, 129, 157, 167, 220], "question": [89, 90, 91, 92, 94, 95, 97, 113, 123, 129, 157, 167, 169, 170, 171, 174, 176, 220, 266], "suggest": [89, 90, 91, 92, 94, 95, 97, 102, 107, 109, 113, 123, 129, 144, 147, 154, 157, 167, 175, 180, 188, 190, 191, 193, 197, 205, 209, 212, 213, 220, 222, 230, 243, 248, 251], "mail": [89, 90, 91, 92, 94, 95, 96, 97, 113, 123, 128, 129, 139, 157, 167, 168, 169, 171, 219, 220, 287], "On": [89, 90, 91, 92, 94, 95, 97, 113, 123, 127, 129, 157, 160, 167, 220, 237], "behalf": [89, 90, 91, 92, 94, 95, 97, 113, 123, 129, 157, 167, 220], "serg": [89, 90, 91, 92, 94, 95, 96, 97, 113, 123, 124, 128, 129, 133, 157, 167, 168, 175, 184, 201, 211, 219, 220, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286], "mainten": [90, 91, 123, 129, 157, 167, 220, 243, 274, 275, 276, 287], "codecov": [91, 276, 286], "travi": [91, 129, 274, 276, 277, 278, 279, 283, 287], "stereo": [92, 270, 277], "coverag": [92, 94, 95, 97, 113, 123, 151, 157, 277, 278, 279, 280, 281, 282, 284], "thank": [92, 94, 95, 97, 101, 103, 105, 107, 109, 110, 112, 113, 115, 118, 120, 121, 123, 124, 127, 129, 157, 167, 220, 233, 246, 251], "contributor": [92, 94, 95, 97, 113, 120, 123, 126, 129, 157, 167, 170, 171, 172, 175, 220, 221, 222, 235, 239, 242, 245, 287, 288], "david": [92, 93, 277], "reagan": [92, 277], "eleftherio": [92, 94, 95, 97, 113, 123, 129, 157, 167, 220, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286], "garyfallidi": [92, 94, 95, 97, 113, 123, 129, 157, 167, 220, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286], "jon": [92, 97, 277, 280], "haitz": [92, 97, 277, 280], "legarreta": [92, 97, 277, 280], "gorro\u00f1o": [92, 97, 277, 280], "marc": [92, 97, 113, 167, 277, 280, 281, 285], "alexandr": [92, 97, 113, 167, 277, 280, 281, 285], "c\u00f4t\u00e9": [92, 97, 113, 167, 277, 280, 281, 285], "koudoro": [92, 94, 95, 97, 113, 123, 129, 133, 157, 167, 175, 220, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286], "ohbm": 93, "brainart": 93, "melpomen": 93, "realli": [93, 103, 133, 134, 140, 233, 245, 246, 287], "beauti": [93, 242], "experi": [93, 100, 102, 109, 124, 132, 159, 161, 171, 172, 175, 176, 197, 221, 233, 239, 245, 248], "appveyor": [94, 95, 278, 279], "ci": [94, 149, 151, 152, 164, 167, 220, 278, 281, 285, 286], "ariel": [94, 278], "rokem": [94, 278], "guillaum": [94, 278], "faveli": [94, 278], "kevin": [94, 278], "sitek": [94, 278], "prashil": [94, 278], "scott": [94, 278], "trinkl": [94, 278], "anti": [95, 160, 169, 250, 270, 279], "alias": [95, 160, 169, 250, 270, 279], "nose": [95, 279, 280], "azur": [95, 220, 279, 281, 284, 286], "etienn": [95, 97, 279, 280], "st": [95, 97, 279, 280], "ong": [95, 97, 279, 280], "javier": [95, 97, 123, 129, 157, 167, 180, 192, 220, 279, 280, 282, 283, 284, 285, 286], "guaj": [95, 97, 123, 129, 157, 167, 220, 279, 280, 282, 283, 284, 285, 286], "particip": [96, 128, 131, 168, 170, 171, 219, 221, 230, 243], "2020": [96, 121, 124, 126, 127, 162, 163, 164, 272, 283], "umbrella": [96, 98, 99, 128, 168, 171, 219, 268], "foundat": [96, 98, 99, 125, 126, 128, 162, 163, 168, 169, 171, 216, 217, 218, 219], "graph": [96, 128, 130, 142, 145, 164, 168, 219, 284], "talk": [96, 128, 133, 168, 170, 171, 172, 219, 225, 230, 233, 236, 239, 242], "drop": [96, 126, 128, 168, 171, 219, 268], "Be": [96, 128, 168, 219], "contour_from_label": [97, 271, 280], "huge": [97, 113, 133, 171, 280, 281], "secur": [97, 280], "md5": [97, 280], "sha256": [97, 280], "chencheng0630": [97, 280], "devanshu": [97, 280], "modi": [97, 280], "filipi": [97, 133, 164, 172, 177, 180, 192, 196, 220, 236, 239, 246, 280, 286], "nascimento": [97, 133, 164, 220, 246, 280, 286], "silva": [97, 220, 280, 286], "gottipati": [97, 280], "gautam": [97, 220, 280, 286], "liam": [97, 113, 280, 281], "donohu": [97, 113, 280, 281], "marssi": [97, 280], "naman": [97, 113, 280, 281], "bansal": [97, 113, 280, 281], "nasim": [97, 123, 220, 280, 282, 286], "saransh": [97, 280], "jain": [97, 280], "shreya": [97, 280], "bhujbal": [97, 280], "soham": [97, 99, 113, 123, 126, 127, 129, 220, 280, 281, 282, 283, 286], "biswa": [97, 99, 113, 123, 126, 129, 220, 280, 281, 282, 283, 286], "vivek": [97, 123, 280, 282], "choudhari": [97, 123, 280, 282], "ibrahimani": [97, 280], "lenixlobo": [97, 125, 280], "hei": [98, 100, 102, 104, 106, 108, 111, 114, 116, 117, 119, 122, 127], "everyon": [98, 99, 100, 111, 114, 116, 127, 130, 131, 174, 222, 230, 236, 239, 242, 245, 246], "summer": [98, 124, 127, 130, 131, 132, 169, 171, 184, 221, 246, 284], "psf": [98, 171], "am": [98, 99, 103, 105, 107, 109, 110, 112, 120, 121, 122, 124, 131, 143, 146, 155, 169, 170, 171, 175, 202, 216, 222, 224, 228, 230, 232, 239, 245, 287], "lenix": [98, 113, 123, 125, 129, 281, 282, 283], "lobo": [98, 113, 123, 125, 129, 281, 282, 283], "undergradu": 98, "student": [98, 99, 130, 131, 171], "india": [98, 99], "univers": [98, 99, 169], "pandem": [98, 99], "outbreak": [98, 99], "head": [98, 99, 139, 266, 271, 283], "earli": [98, 99, 132, 170, 217, 234], "had": [98, 99, 100, 101, 105, 107, 109, 112, 118, 120, 121, 124, 126, 131, 132, 133, 134, 137, 138, 139, 140, 143, 146, 149, 152, 156, 160, 161, 169, 170, 171, 172, 173, 174, 175, 178, 184, 185, 187, 188, 191, 193, 195, 196, 198, 199, 200, 202, 203, 205, 206, 209, 212, 221, 222, 233, 234, 235, 239, 242, 243, 245, 246], "confer": [98, 99], "meet": [98, 99, 102, 121, 130, 131, 132, 134, 137, 138, 140, 143, 144, 146, 147, 149, 152, 153, 156, 158, 160, 161, 163, 164, 172, 173, 181, 189, 190, 191, 192, 193, 195, 204, 205, 208, 221, 222, 226, 227, 228, 229, 231, 235, 237, 240, 242, 245, 246, 287], "mentor": [98, 99, 100, 102, 103, 105, 107, 108, 109, 110, 117, 120, 121, 124, 126, 127, 130, 131, 132, 133, 135, 137, 138, 139, 141, 144, 147, 151, 152, 153, 154, 156, 161, 163, 165, 170, 172, 175, 176, 178, 191, 197, 200, 209, 212, 222, 225, 227, 230, 233, 234, 235, 236, 237, 239, 240, 242, 244, 245, 246], "schedul": 98, "wednesdai": [98, 99, 190, 236], "coher": 98, "entir": [98, 99, 107, 133, 228], "lot": [98, 106, 108, 116, 125, 130, 133, 137, 139, 142, 145, 149, 152, 169, 170, 171, 172, 180, 191, 196, 197, 215, 224], "theoret": 98, "concept": [98, 107, 126, 170, 171, 233], "spent": [98, 100, 106, 110, 136, 139, 142, 154, 171, 229], "theori": [98, 150, 161, 164, 288], "2nd": [99, 104], "year": [99, 131, 133, 169, 170, 171, 221, 281, 287], "pursu": [99, 169, 170, 171], "bachelor": [99, 169, 170, 171], "tech": 99, "scienc": [99, 222], "institut": [99, 132, 170], "kolkata": 99, "organ": [99, 130, 133, 139, 164, 169, 170, 171, 240, 261], "sci": [99, 131], "fi": [99, 131], "countri": [99, 133], "lockdown": 99, "were": [99, 102, 103, 104, 105, 106, 107, 109, 110, 112, 115, 117, 119, 120, 122, 125, 126, 131, 134, 137, 139, 143, 146, 149, 152, 155, 156, 158, 159, 160, 162, 163, 164, 169, 170, 171, 173, 175, 184, 188, 193, 194, 197, 200, 202, 206, 207, 208, 209, 217, 226, 227, 228, 238, 241, 255, 270], "core": [99, 132, 139, 143, 146, 153, 217, 266, 271, 284], "discuss": [99, 108, 117, 118, 120, 121, 130, 132, 133, 135, 136, 139, 143, 145, 146, 151, 154, 161, 163, 165, 172, 175, 176, 178, 189, 191, 192, 193, 195, 204, 209, 216, 217, 221, 226, 227, 229, 231, 232, 234, 235, 237, 238, 240, 267], "deadlin": 99, "ourselv": [99, 160], "progress": [99, 101, 107, 109, 110, 112, 115, 118, 120, 121, 124, 125, 135, 138, 141, 144, 147, 150, 153, 156, 159, 161, 164, 221, 229, 230, 235, 239, 241, 245, 253, 268, 286], "remain": [99, 110, 114, 116, 137, 143, 152, 155, 158, 162, 164, 216, 226, 232, 285], "pull": [99, 120, 121, 125, 126, 130, 136, 139, 142, 162, 163, 164, 170, 216, 217, 223, 226, 229, 238, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286], "pend": [99, 110, 120, 232, 240], "review": [99, 100, 131, 137, 140, 153, 154, 155, 158, 165, 170, 172, 201, 211, 216, 218, 222, 223, 225, 228, 231, 235, 237, 239, 240, 241, 242, 243, 245, 261, 283, 284, 287], "date": [99, 125, 126, 162, 163, 164, 216, 217, 218, 239], "focus": [99, 109, 121, 145, 164, 215, 225, 226, 229, 235, 241], "skeleton": [99, 101, 218], "pr": [99, 100, 103, 109, 111, 118, 120, 122, 126, 127, 130, 131, 132, 133, 134, 135, 136, 137, 139, 140, 144, 146, 147, 148, 150, 151, 153, 154, 155, 156, 158, 159, 160, 161, 162, 164, 165, 166, 170, 171, 172, 175, 177, 179, 180, 181, 183, 184, 185, 186, 191, 192, 194, 196, 197, 198, 200, 201, 202, 204, 206, 207, 208, 210, 211, 212, 213, 214, 216, 217, 218, 222, 223, 225, 226, 228, 229, 230, 232, 233, 234, 237, 238, 239, 240, 241, 242, 243, 244, 245, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286], "doubl": [99, 113, 126, 138, 224, 228, 261, 268, 269, 279, 281, 286], "unabl": [99, 171, 282, 283], "thankfulli": [99, 118, 120], "successfulli": [99, 101, 103, 126, 170, 171, 178, 197, 202, 209, 214, 232, 270], "cheer": [99, 127], "volumetr": [100, 117], "stack": [100, 155, 158, 162, 209, 258], "Such": 100, "prior": [100, 117, 171, 191, 197, 236, 242, 288], "directx": 100, "fur": [100, 125], "minor": [100, 111, 130, 134, 143, 149, 152, 165, 228, 234, 255, 283, 286], "bug": [100, 103, 104, 105, 111, 114, 116, 121, 122, 136, 137, 142, 152, 162, 164, 165, 166, 170, 174, 175, 184, 200, 216, 218, 245, 266, 277, 279, 280, 282, 283, 284, 285, 286], "noth": [100, 158, 171, 188, 216, 224], "weekli": [101, 102, 103, 105, 107, 109, 110, 112, 115, 118, 120, 121, 124, 125, 126, 132, 135, 138, 141, 144, 147, 150, 153, 156, 159, 161, 162, 163, 164, 172, 173, 217, 226, 228, 230, 231, 233, 236, 237, 239, 242, 245, 282], "far": [101, 103, 105, 140, 144, 159, 239], "apart": [101, 103, 107, 109, 110, 112, 115, 120, 121, 126, 127, 158], "regard": [101, 103, 105, 107, 110, 112, 115, 118, 120, 121, 124, 149, 152, 171, 229, 238], "proper": [101, 120, 121, 139, 149, 171, 172, 197, 223, 244], "problem": [101, 105, 107, 109, 110, 112, 115, 118, 120, 126, 131, 133, 137, 138, 143, 146, 152, 164, 196, 205, 215, 216, 217, 222, 226, 229, 234, 243, 244, 245, 248, 278, 280], "doesn": [101, 131, 137, 142, 169, 202, 203, 233, 236, 261, 269, 277, 283, 284, 287], "scrollbar": [101, 103, 105, 126, 146, 226, 229, 232, 238, 268], "hopefulli": [101, 103, 140, 143, 146, 149, 152, 158, 160, 162, 243], "excit": [102, 109, 171, 221, 245], "got": [102, 106, 131, 132, 143, 160, 170, 172, 177, 188, 192, 203, 205, 206, 210, 213, 221, 222, 230, 245, 263], "proceed": 102, "branch": [102, 104, 108, 111, 114, 131, 179, 181, 218, 277, 287], "deform": [102, 104, 218], "rid": 102, "slightli": [102, 131], "realist": [102, 104, 218], "thevtk": 102, "confus": [102, 103, 106, 121, 206, 209, 229], "doubt": [102, 171], "immedi": [102, 227, 232], "affili": 103, "countless": 103, "debug": [103, 147, 188, 202, 206, 265, 285], "session": [103, 184, 233, 244], "friendli": [103, 126, 286], "manner": [103, 248, 258], "wrote": [103, 112, 169, 181, 199], "summar": [103, 246], "gif": [103, 104, 106, 164, 204, 211, 217, 250, 286], "unfortun": [103, 124, 125, 143, 145, 164], "didn": [103, 131, 134, 143, 149, 150, 152, 161, 162, 169, 170, 171, 176, 186, 189, 190, 199, 200, 201, 202, 203, 204, 205, 206, 207, 209, 210, 211, 214, 215, 223, 227, 230, 232, 235, 236, 239], "thu": [103, 107, 145, 166, 237, 267], "prioriti": [103, 143, 265, 268, 284], "overshoot": 103, "runtim": [103, 124, 126, 142, 162, 166, 172, 218, 255], "reason": [103, 133, 152, 162, 166, 171, 175, 188, 189, 217, 224, 225, 227, 229, 230, 233, 261], "misplac": 103, "wasn": [103, 104, 112, 143, 158, 169, 171, 173, 176, 182, 185, 187, 188, 202, 230, 232, 233, 242], "post": [104, 120, 133, 139, 144, 145, 155, 164, 171, 209, 216, 217, 218, 242, 245, 284, 285, 286, 287], "slight": [104, 192, 227], "solv": [104, 105, 112, 125, 130, 131, 133, 136, 139, 145, 170, 171, 176, 177, 194, 196, 198, 202, 205, 213, 283], "suspect": 104, "possibli": [104, 137], "long": [104, 112, 140, 143, 184, 269], "simultan": [104, 262], "rather": [104, 108, 138, 159, 161, 248, 267], "highli": [104, 107, 109, 140], "benefici": [104, 132, 135], "realiz": [104, 120, 171], "caus": [104, 130, 133, 140, 142, 166, 175, 177, 193, 205, 208, 223, 226, 229, 241, 286, 288], "lambertian": 104, "eventu": [104, 106, 114, 169, 239], "vtktextactor": [105, 107, 229, 268], "text_scale_mode_non": 105, "text_scale_mode_prop": 105, "text_scale_mode_viewport": 105, "mainli": [105, 109, 112, 120, 121, 123, 129, 157, 167, 216, 220, 245], "couldn": [105, 131, 140, 143, 152, 169, 180, 205], "tri": [105, 107, 122, 124, 135, 138, 141, 146, 150, 169, 170, 171, 173, 175, 176, 178, 180, 182, 185, 188, 196, 197, 198, 200, 202, 205, 207, 212, 213, 216, 218, 234, 245, 286], "maintain": [105, 158, 177, 180, 183, 192, 196, 268], "abstract": [105, 145, 266, 268], "expos": [105, 233, 251, 253, 259, 265], "vtkviewport": [105, 110], "position2": [105, 229], "cannot": [105, 162, 184, 224, 227, 255, 262, 286], "inconsist": [105, 229, 238], "agre": 105, "irrespect": 105, "constructor": [105, 137, 149, 162, 251], "someth": [105, 110, 112, 137, 140, 169, 171, 202, 212, 216, 222, 224, 227, 230, 231, 233, 236, 243, 245, 251, 254, 268, 287], "plan": [105, 109, 111, 118, 136, 177, 179, 222, 223, 224, 226, 227, 229, 230, 231, 232, 233, 236, 237, 239, 240, 242, 245, 246], "getposition2": 105, "upto": [106, 282], "mileston": 106, "toward": [106, 235, 267, 268, 270], "occlus": [106, 270], "complic": [106, 108, 126, 149, 152, 162, 182, 233, 236, 245, 269], "hood": [106, 108], "took": [107, 118, 120, 171, 174, 191, 197, 206, 229, 232, 234, 238, 241], "terminologi": [107, 161], "nevertheless": 107, "rigid": [107, 160], "backend": 107, "frontend": 107, "rest": [107, 138, 170, 234], "un": [107, 109], "confid": 107, "restrict": [108, 169, 176, 268], "expect": [108, 110, 112, 116, 125, 152, 169, 170, 172, 193, 196, 231, 242, 248, 250, 253, 257, 270], "poor": [108, 139], "6th": 109, "period": [109, 118, 124, 125, 127, 130, 131, 159, 161, 171, 250, 255, 266], "own": [109, 138, 140, 170, 171, 239, 242, 265, 268, 270], "jump": [109, 169, 251], "quickli": [109, 216], "transln_vector": 109, "preserv": 109, "gamma": [109, 270], "beta": [109, 255], "get_r": 109, "new_po": 109, "quadrup": 109, "haven": [109, 143], "7th": [110, 171], "thought": [110, 133, 170, 171, 173, 176, 209, 212, 227, 240, 245], "fortun": [110, 130, 131, 136, 137, 139, 140, 142, 149, 166, 223, 232, 235, 242], "_add_to_scen": 110, "inherit": [110, 135, 158, 160, 229], "eager": 110, "clearer": 111, "merg": [111, 114, 117, 121, 125, 136, 137, 140, 143, 146, 148, 151, 152, 153, 155, 158, 159, 160, 161, 162, 166, 170, 175, 179, 181, 183, 184, 186, 187, 188, 201, 202, 206, 207, 208, 214, 216, 217, 218, 228, 231, 232, 240, 241, 265, 280, 283, 286, 287], "8th": 112, "refactor": [112, 126, 142, 149, 157, 160, 164, 174, 239, 242, 243, 283, 284, 286], "aid": 112, "Its": 112, "workaround": [112, 135, 146, 224, 236], "broke": 112, "weird": [112, 121, 241], "month": [112, 125, 171, 230], "anymor": [112, 245], "charact": [112, 126, 164, 166, 171, 268, 283, 284, 287], "search": [112, 159, 169, 171, 194, 209, 227, 270], "extrem": 112, "rhombocuboctahedron": [113, 281], "vtk9": [113, 281], "melina": [113, 123, 281, 282], "raglin": [113, 123, 281, 282], "tushar": [113, 129, 281, 283], "past": [114, 130, 138, 139, 142, 145, 227, 270, 287], "codebas": [114, 116, 138, 140, 206, 232], "sdf_actor": [114, 116], "9th": 115, "uncontrol": [115, 118], "mismatch": [115, 285], "gsoc": [116, 117, 121, 122, 124, 125, 126, 127, 130, 154, 155, 156, 161, 162, 163, 164, 169, 175, 217, 230, 237, 239, 242, 243, 245, 246, 282, 283, 284, 285, 286], "THe": 116, "tremend": [116, 217], "despit": [116, 122, 172], "went": [116, 127, 169, 170, 171, 174, 194, 223], "smoothli": [116, 127, 133, 169, 241], "immers": [117, 125, 171, 251], "Being": 117, "cloud": [117, 246, 248], "10th": 118, "3rd": 118, "todai": [118, 124, 127, 189, 192, 233, 236, 239, 245], "futur": [118, 137, 139, 140, 143, 146, 149, 162, 174, 232, 245, 251, 287], "conveni": 118, "standalon": [118, 120, 126], "discontinu": 118, "gooch": [119, 125], "11th": 120, "lack": [120, 125, 126, 143, 146, 149, 163, 171, 218, 225, 227], "awar": 120, "kept": [120, 170, 212, 217], "wrong": [120, 130, 133, 142, 143, 171, 236], "brows": [120, 124], "forum": [120, 150, 169, 209], "mind": [120, 171, 173, 222], "prism": [120, 157, 167, 248, 264, 281, 284, 285], "brief": [120, 137, 232, 236, 287], "glimps": [120, 221], "fellow": [120, 126, 172, 221, 237, 239, 242, 245], "12th": 121, "smash": 121, "he": [121, 170, 171, 172, 216, 236], "probabl": [121, 134, 137, 142, 143, 145, 146, 148, 172, 222, 236, 242], "formal": 121, "silhouett": 122, "inbuilt": 122, "across": [123, 130, 139, 164, 166, 169, 170, 252, 282], "anousheh": [123, 220, 282, 286], "mark": [124, 127, 287], "altogeth": 124, "grown": 124, "person": [124, 145, 164], "especi": 124, "immens": [124, 127, 244], "mentorship": 124, "love": [124, 169, 171], "contribut": [124, 127, 130, 169, 170, 171, 172, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286], "semest": [124, 170, 232], "filemenu": 124, "submiss": [124, 231], "organis": [125, 126, 132, 162, 163, 216, 217, 218, 268], "overwhelm": [125, 170], "stun": 125, "spheremap": 125, "toon": [125, 127], "nois": [125, 169, 231, 234], "bias": 125, "leverag": 125, "hardwar": 125, "devot": 125, "unsatisfactori": 125, "distort": [125, 142, 145, 164, 239], "priorit": 125, "hand": [125, 131, 160, 162, 170, 237, 245], "flexibl": [125, 265], "hair": 125, "benchmark": [125, 183, 192], "multisdf": 125, "296": 125, "familiar": [125, 127, 169], "267": [125, 281], "websit": [125, 126, 151, 155, 162, 163, 164, 170, 171, 216, 217, 218, 220, 235, 283, 286, 287], "week": [125, 126, 139, 145, 162, 163, 164, 216, 217, 218, 285, 286], "outlin": [125, 160], "commonli": 126, "tradition": 126, "textbox": [126, 268, 284], "term": [126, 134, 170, 171, 236, 255], "246": [126, 281], "navig": [126, 133], "252": [126, 282], "aren": [126, 209], "231": [126, 281], "overflow": [126, 140, 146, 155, 268, 280, 281, 283, 284], "listboxitem2d": [126, 271, 280], "filemenu2d": [126, 271], "tackl": [126, 229], "modif": [126, 130, 133, 164, 196, 223, 226, 255, 288], "accept": [126, 170, 171, 217, 250, 255], "clip": [126, 176, 177, 202, 265, 268, 270, 281, 283], "248": [126, 281], "268": [126, 281], "exhaust": 126, "287": [126, 282], "1xjcg1tl5zrjzdyi8v76leyzt_maxgp0kob7ozixksta": 126, "edit": [126, 169, 213, 268, 287], "usp": [126, 130], "hard": [126, 140, 142, 166, 169, 188, 201, 203, 204], "aspect": [126, 143, 145, 146, 164, 202, 248, 258, 268, 269], "285": 126, "filesystem": 126, "rewritten": [126, 251], "intact": 126, "281": [126, 282], "272": [126, 282], "286": [126, 283], "clippingoverflow": 126, "tabpanel2d": [126, 271], "scrollbarsupd": 126, "journei": [126, 216, 217, 218, 221, 245, 246, 286], "itsopen": 126, "googl": [127, 133, 152, 171, 221, 284], "opportun": [127, 221, 222, 232, 241, 246, 287], "programm": 127, "member": [127, 132, 147, 153, 155, 268], "throughout": [127, 233], "2021": [128, 139, 162, 163, 170, 272, 285, 286], "migrat": [129, 220, 283, 286], "charl": [129, 283], "poirier": [129, 283], "sajag": [129, 132, 157, 163, 167, 283, 284, 285], "swami": [129, 132, 157, 163, 167, 283, 284, 285], "pietro": [129, 283], "astolfi": [129, 283], "sanjai": [129, 283], "marreddi": [129, 283], "ganimtron": [129, 216, 283], "haran2001": [129, 283], "aju100": [129, 283], "aman": [129, 283], "soni": [129, 283], "bruno": [130, 157, 167, 172, 220, 233, 236, 245, 284, 285, 286], "messia": [130, 157, 167, 220, 284, 285, 286], "ph": 130, "brazil": 130, "bond": [130, 131, 138, 141, 150, 163, 261, 284], "paragraph": 130, "stream": [130, 133, 136, 145, 164, 165, 166, 220, 271, 286], "propos": [130, 131, 133, 136, 169, 170, 171, 237, 286, 287], "internet": [130, 139, 145, 164, 169], "spec": 130, "hous": [130, 169], "discov": [130, 133, 136, 154, 171, 175, 192, 201, 223, 226, 244], "432": [130, 136, 154, 164, 165, 285], "422": [130, 136, 137, 284], "antriksh": [131, 157, 162, 167, 220, 284, 285, 286], "misri": [131, 157, 162, 167, 220, 284, 285, 286], "mit": 131, "pune": 131, "primari": [131, 137, 162, 169], "stretch": [131, 132, 162, 163, 164, 216, 218], "seen": [131, 214, 216, 264, 287], "movi": 131, "guardian": 131, "galaxi": 131, "hinder": [131, 235], "introductori": [131, 204, 215], "compli": 131, "windowresizeev": [131, 140, 149, 162], "invok": [131, 140, 143, 166, 182, 213, 248, 266], "partial": [131, 180, 202, 285, 287], "functool": 131, "sophomor": 132, "indian": [132, 170, 171], "technologi": [132, 170, 171], "roorke": [132, 170], "shall": [132, 144, 190, 288], "protein": [132, 135, 144, 147, 163, 261], "richardson": [132, 163, 261], "aka": [132, 144], "ribbon": [132, 135, 138, 141, 147, 150, 153, 159, 162, 163, 271], "diagram": [132, 135, 163], "molecular": [132, 141, 144, 147, 150, 153, 156, 159, 163, 167, 271, 285], "expand": [132, 140, 143, 264, 286], "stick": [132, 138, 144, 163, 271], "wire": [132, 163], "pipe": [132, 139, 163], "plank": [132, 163], "acquaint": [132, 221], "learnt": 132, "vision": 132, "pars": [132, 135], "pdb": [132, 135], "pdbx": [132, 135], "pro": [132, 175], "con": [132, 175], "upon": [132, 153], "docstr": [132, 154, 179, 181, 254, 280, 285, 286, 287], "syntax": [132, 189], "colleg": [132, 170, 171, 184, 191], "courtesi": [132, 147], "covid": 132, "backbon": [132, 163], "1mb0": 132, "carbon": 132, "vtkproteinribbonfilt": [132, 135, 138, 141, 147, 163], "prove": [132, 135, 161, 171, 244], "au": [132, 135, 138, 141, 144, 147, 150, 153, 156, 159, 161], "revoir": [132, 135, 138, 141, 144, 147, 150, 153, 156, 159, 161], "437": [133, 136, 139, 145, 154, 165, 166, 286], "phd": 133, "cheapest": 133, "price": [133, 283], "convinc": 133, "brazilian": 133, "friend": [133, 169, 170], "budget": 133, "scenario": [133, 136, 137, 139, 164, 232], "resid": [133, 164], "bandwidth": [133, 164], "circumv": [133, 164], "gil": [133, 145, 164], "alon": [133, 164], "enough": [133, 139, 164, 169, 170, 236], "cpu": [133, 217], "uncoupl": [133, 164], "believ": [133, 169], "protocol": [133, 139, 164], "myriad": 133, "hangout": 133, "econom": 133, "One": [133, 136, 137, 139, 145, 161, 164, 166, 170, 218, 223, 233, 236, 251, 256, 267], "hardest": 133, "webserv": [133, 266], "technic": [133, 173], "kind": [133, 145, 163, 164, 171, 197, 202, 239, 246, 268], "unnecessari": [133, 145, 163], "duplic": [133, 139, 264, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287], "economi": 133, "trick": [133, 172, 239], "older": [133, 172], "stage": [133, 217, 222, 234, 240], "saw": [133, 136, 172], "l101": 133, "raw_arr_buff": 133, "new_data": 133, "explan": [133, 233, 240], "bad": 133, "demystifi": 133, "sharedctyp": 133, "stupend": 133, "memoryview": 133, "memview": 133, "arr_buff": 133, "arr_buffer_uint8": 133, "new_data_uint8": 133, "cast": [133, 285], "rescu": 133, "arr_uint8_repr": 133, "ctypeslib": 133, "as_arrai": 133, "behav": [133, 164, 166, 195, 250, 268], "spawm": [133, 136], "sai": [133, 169, 172, 254, 268, 287], "uniti": [134, 169, 171], "unreal": [134, 171], "customiz": [134, 137, 226], "css": [134, 137], "getter": 134, "watcher": [134, 137, 140, 162], "monitor": [134, 140, 145, 162, 164], "fatal": 134, "error": [134, 171, 175, 176, 179, 184, 202, 206, 209, 224, 227, 241, 253, 255, 259, 265, 274, 280, 283, 286], "sideeffect": 134, "wherein": [134, 152, 162], "faulthandl": 134, "suppress": 134, "adapt": [134, 146, 162, 213, 286], "preview": [135, 138, 143, 199, 203, 208, 210, 214], "3pgk": 135, "space_filling_model": 135, "myself": [135, 239, 240], "atom": [135, 141, 150, 163, 261], "biopython": 135, "vtkmoleculereaderbas": 135, "unsuccess": [135, 141, 144, 150, 171], "endeavour": 135, "maker": 136, "helio": [136, 145, 148, 151, 164], "hour": [136, 171, 236], "devmessia": [136, 139, 145, 285], "071dab85": 136, "unrel": 136, "subprocess": [136, 139], "popen": [136, 139, 286], "shell": [136, 139], "unlink": [136, 139], "flawless": 136, "issue38119": [136, 266], "cpython": [136, 139], "21516": [136, 139], "monkei": [136, 164, 266], "patch": [136, 164, 266, 283, 285], "meanwhil": [136, 139, 142, 240], "resource_track": [136, 139, 266], "38119": [136, 139], "revolv": [137, 140], "redesign": [137, 217], "cellshap": 137, "filedialog2d": 137, "briefli": [137, 246], "job": [137, 236], "studi": [137, 154, 183, 233], "contour": [137, 277], "meant": [137, 143, 255], "tax": 137, "million": [137, 164], "interestingli": 137, "tripl": [138, 261], "presenc": 138, "interatom": [138, 261], "intrigu": 138, "molecul": [138, 141, 150, 159, 163, 271], "ethan": 138, "ethen": 138, "ethyn": 138, "vtkmolecul": [138, 141, 261], "vtksimplebondperceiv": [138, 141, 163, 261], "vtkmoleculemapp": [138, 141], "vtkperiodict": [138, 141, 261], "great": [138, 171, 173, 176, 209, 222, 246], "crucial": 138, "utilis": 138, "predict": [138, 236], "resolv": [138, 140, 150, 160, 202, 207, 216, 223, 226, 232, 238, 241, 244, 277, 284, 286], "extent": 138, "inabl": 138, "blob": [139, 160, 175], "b1e985": 139, "l20": 139, "mess": [139, 171], "obviou": [139, 152, 237], "mayb": [139, 170, 245, 269], "socket": 139, "abc": [139, 266], "genericimagebuffermanag": [139, 271], "create_mem_resourc": [139, 266, 271], "imagebuffermanag": [139, 266], "load_mem_resourc": [139, 266, 271], "sketch": [139, 165], "abstractmethod": 139, "num_buff": [139, 266], "use_shared_mem": [139, 266], "imagebuffermang": 139, "440a39d427822096679ba384c7d1d9a362dab061": 139, "l491": 139, "info_buffer_s": 139, "_use_shared_mem": 139, "omit": 139, "next_buffer_index": [139, 266, 271], "info_buffer_repr": 139, "buffer_index": [139, 266, 271], "write_into": [139, 266, 271], "np_arr": [139, 266], "buffer_s": 139, "get_current_fram": [139, 266, 271], "image_buffer_repr": 139, "get_jpeg": [139, 266, 271], "image_encod": 139, "tobyt": 139, "async_get_jpeg": [139, 266, 271], "rawarrayimagebuffermanag": [139, 271], "sharedmemimagebuffermanag": [139, 271], "dry": 139, "readabl": [139, 211, 215, 228], "circularqueu": [139, 266], "violat": 139, "tail": [139, 266, 271], "busi": [139, 288], "get_lock": 139, "dosen": 139, "peculiar": 139, "358402e": 139, "weel": [139, 266], "ctrl": [139, 185, 216, 266], "press": [139, 164, 171, 185, 268, 270], "test_stream": 139, "steam": 139, "app_async": 139, "problemat": [139, 152], "mitig": 139, "event_id": [139, 266], "mouse_mov": [139, 266], "mouse_weel": [139, 266], "anywher": 139, "chose": [139, 140, 171], "situat": 139, "realpython": 139, "shared_memori": 139, "shm_a": 139, "command_str": [139, 266, 271], "shm_b": 139, "stdout": 139, "stderr": 139, "nstdout": 139, "nstderr": 139, "l776": 139, "l112": 139, "l296": 139, "souli": 139, "apr": 139, "towardsdatasci": 139, "9062272e6bdc": 139, "jun": 139, "corrupt": [139, 166], "archiv": [139, 171, 263], "msg22935": 139, "388287": 139, "tracker": 139, "msg388287": 139, "bpo": 139, "shmem": 139, "vinay0410": 139, "stuff": [140, 147, 158, 164, 166, 169, 171], "led": [140, 169, 171, 198, 234, 241], "meantim": 140, "primarili": [140, 146, 162, 179], "trigger": [140, 162, 173, 176, 245, 265], "hook": [140, 189, 217, 286], "ambigu": 140, "unmonitor": 140, "automat": [140, 152, 166, 169, 178, 183, 188, 216, 226, 238, 241, 248, 250, 268, 269, 270, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287], "whole": [140, 152, 162, 169, 171, 240, 244], "accordion": [140, 162], "treenode2d": [140, 143, 149, 155], "children": [140, 146, 152, 162], "chow": 140, "panle2d": 140, "retain": [140, 162, 288], "fourth": [141, 269], "chemic": [141, 163], "obelisk": [141, 261], "molecular_viz_vtk": 141, "paper": [141, 156, 157, 159, 161, 163, 284], "potenti": [141, 245], "vtkpdbreader": 141, "endeavor": 141, "vtkpolydata": [141, 144, 163, 257, 269], "confound": 141, "8c670c2": 142, "fall": 142, "silent": 142, "troublesom": 142, "4086": 142, "byte": [142, 251, 256, 266], "independ": [142, 216, 217, 229, 232, 236, 238, 277], "multidimensionalbuff": [142, 266], "max_siz": [142, 266], "uniformtool": 142, "424": [142, 172], "characterist": 142, "usefulli": 142, "convic": 142, "group": [142, 170, 175, 185, 202, 207, 209, 216, 217, 248, 250, 253, 265], "scientist": 142, "minimum": [142, 145, 164, 167, 197, 217, 250, 251, 256, 268, 285], "embed": [142, 145, 164, 253], "pymd": [142, 145, 164], "perfect": [142, 169, 216], "heliospr": 142, "submodul": 143, "conflict": [143, 160, 284, 287], "reveal": 143, "brainstorm": 143, "annoi": 143, "attent": [143, 169, 171, 227, 242], "beyond": [143, 174, 223, 245], "secondli": 143, "fluid": 143, "gone": 143, "guess": [143, 169, 239], "fifth": 144, "calott": [144, 163], "cpk": [144, 261], "mid": 144, "proteinribbonfilt": [144, 271], "hashtag": [145, 164], "social": [145, 164], "insight": [145, 164], "epidem": [145, 164], "spread": [145, 164, 224], "kuramoto": [145, 164], "delet": [145, 164, 173, 174, 216, 243, 253, 281, 287], "di": [145, 164], "diseas": [145, 164], "recomput": [145, 164], "shouldn": [145, 152, 203], "wrapper": [145, 164], "rememb": [145, 169, 287], "unfeas": 145, "hundr": [145, 164, 165, 166, 217], "cugraph": [145, 148, 164], "forceatla": [145, 164], "networkdraw": 145, "weight": [145, 203, 218, 236, 256], "consum": [145, 159, 162, 169, 188, 255, 266], "shmmanagermultiarrai": 145, "pain": 145, "inter": [145, 166], "networklayoutipcservercalc": 145, "networklayoutipcrend": 145, "bore": 145, "_check_and_sync": 145, "mde": [145, 164], "l180": 145, "test_mde_layout": 145, "l43": 145, "until": [145, 165, 169, 236, 242, 255], "atla": [145, 158, 160, 166], "viz_helios_md": 145, "anchor": [145, 248, 268, 271], "forceatlas2": [145, 148, 164], "cuda": [145, 164], "flicker": [145, 164], "a94e22dbc2854ec87b8c934f6cabdf48931dc279": 145, "flaw": [146, 188, 223, 239], "restructur": [146, 162, 192, 215], "indirectli": [146, 238], "circularli": 146, "add_to_scen": [146, 248, 250, 268, 271], "exceed": [146, 179, 197], "came": [146, 169, 170, 173, 174, 236], "till": [146, 170, 171, 217], "sixth": 147, "generalis": [147, 199], "452": [147, 153, 156, 159, 161, 163, 285], "362": [147, 153, 159, 163, 264, 285], "grate": [147, 221], "ipc": [148, 164, 165, 166], "ipclayout": [148, 165], "evolut": 148, "record_posit": 148, "seem": [148, 152, 159, 161, 166, 173, 208, 209, 212, 224, 227, 233, 236, 239, 283], "mostli": [149, 204], "indent": 149, "feedback": [149, 153, 161, 222, 225, 228, 231, 234, 237, 243], "443": [149, 152, 162, 286], "comment": [149, 152, 237, 254, 280, 283, 284, 286], "442": [149, 152, 284], "reus": [149, 228, 248], "has_bord": [149, 268], "wast": [149, 172, 209, 212], "seventh": 150, "add_atom": [150, 271], "462": [150, 153, 159, 163], "discours": [150, 209], "gap": [150, 188], "vtkproperti": 150, "backfacecul": 150, "frontfacecul": 150, "onlin": [151, 164, 251], "tomorrow": [151, 154, 165], "besid": [152, 166, 197, 217], "windowsresizeev": 152, "ignor": [152, 248, 258, 277], "leav": [152, 245, 251, 286, 287], "redon": 152, "is_ui": [152, 271], "wouldn": 152, "mistak": 152, "wrap_overflow": [152, 271], "freetyp": [152, 155, 158, 160, 166], "desktop": 152, "bitmap": [152, 165], "hihgli": 152, "inspir": [152, 169, 170, 171], "difficult": [152, 185, 188, 209, 243], "fortunalt": 152, "eighth": 153, "thursdai": [153, 233, 236], "474": [154, 165, 285], "mehabhalodiya": 154, "tree2d": [155, 158, 162], "mobil": [155, 286], "pose": [155, 203, 218, 256], "troubl": 155, "accordion2d": [155, 158, 162], "spinbox2d": [155, 162], "ninth": 156, "optimis": 156, "solvent": [156, 161, 163], "exclud": [156, 163, 251], "se": 156, "bioconda": 156, "msm": 156, "michel": 156, "sanner": 156, "arthur": 156, "olson": 156, "jean": 156, "claud": 156, "spehner": 156, "475": [156, 163, 284], "fast": [156, 157, 188, 284], "triangular": [157, 248, 264, 269, 284], "amit": [157, 284], "chaudhari": [157, 284], "daniel": [157, 284], "katz": [157, 284], "gurdit": [157, 284], "siyan": [157, 284], "jhalak": [157, 284], "gupta": [157, 284], "loopthrough": [157, 284], "mihir": [157, 284], "praneeth": [157, 167, 171, 172, 175, 216, 220, 284, 285, 286], "shetti": [157, 167, 171, 216, 220, 284, 285, 286], "hariharan": [157, 284], "ayappan": [157, 284], "revers": 158, "chunk": [158, 162], "tenth": 159, "archaic": 159, "tad": 159, "intimid": 159, "never": [159, 169, 216, 227, 246], "domain": [159, 241, 286], "reckon": 159, "brought": [160, 171], "email": [160, 169, 170], "string": [160, 196, 218, 248, 249, 251, 253, 255, 256, 257, 259, 260, 261, 265, 266, 267, 268, 270], "3a4fdea8d23207d67431973fe5df1811605c4132": 160, "artist": 160, "l94": 160, "raster": [160, 170], "patheffectrender": 160, "submit": [160, 222, 228, 230, 235, 240], "gist": 160, "eleventh": 161, "van": [161, 163, 261], "der": [161, 163, 261], "waal": [161, 163, 261], "492": [161, 163], "alien": 161, "fruit": 161, "understood": [161, 239], "vtkmarchingcub": 161, "earliest": 161, "sa": [161, 163], "256": [161, 280, 281], "cool": [161, 251], "lai": [162, 216, 248, 258], "480": [162, 164, 285], "479": [162, 285], "486": [162, 286], "460": [162, 232], "visul": 162, "themselv": 162, "487": 162, "vtkactor2d": [162, 268], "stall": 162, "491": [162, 285], "398": [162, 229, 232], "ratio": [162, 248, 258, 268, 269, 270, 271], "446": [162, 232], "wathcer": 162, "448": 162, "entiti": [162, 169], "compris": 162, "obvious": 162, "heavi": [162, 196, 248, 265], "pattern": [162, 263], "441": [162, 284], "477": [162, 284], "494": 162, "rebas": [162, 214, 223, 226, 232, 241], "schemat": 163, "polypeptid": 163, "\u03b1": 163, "coil": 163, "\u03b2": 163, "strand": 163, "repetit": [163, 216, 286], "strip": [163, 248, 251, 286], "unclear": 163, "filter": [163, 245, 248], "substanc": 163, "typic": 163, "tube": [163, 248, 261, 277], "vtkopenglmoleculemapp": 163, "chemistri": [163, 261], "proport": [163, 169], "triangul": [163, 248, 264], "macromolecular": 163, "euclidean": [163, 250], "dong": 163, "xu": 163, "yang": 163, "zhang": 163, "miscellan": 163, "emwav": 163, "493": [163, 285], "genesi": 163, "misc": 163, "vdw": [163, 261], "effort": 164, "opt": 164, "stadia": 164, "cheap": 164, "reach": [164, 169, 181, 236, 245, 286], "concurr": [164, 166], "emploi": [164, 232], "transfer": 164, "latter": [164, 192], "smothli": 164, "gave": [164, 169, 170, 171], "intel": 164, "hd": 164, "3000": 164, "tun": 164, "finer": 164, "superactor": 164, "host": [164, 266], "heliosnetwork": 164, "consumpt": 164, "489": [164, 166], "476": [164, 284], "tbd": 164, "fake": 164, "demvessia": 164, "demvessiass": 164, "rougier": 164, "2018": [164, 246, 272, 277], "book": [164, 170], "2007": 164, "magnif": [164, 270, 286], "acm": 164, "san": 164, "diego": 164, "california": 164, "doi": [164, 284], "1145": 164, "1281500": 164, "1281665": 164, "484": 165, "pack": 166, "glyp": 166, "fortunelli": 166, "woke": [166, 170], "viz_huge_amount_of_label": 166, "viz_billboad_label": 166, "tricki": 166, "acrro": 166, "timeinterv": 166, "imposs": [166, 217], "approcach": 166, "strang": [166, 184], "mousewheelforwardev": 166, "mousewheelbackwardev": 166, "glitch": 166, "prfuri": 166, "grant": 166, "stand": [167, 285, 287], "rhombicuboctahedron": [167, 264, 271, 280, 285], "anand": [167, 218, 220, 285, 286], "shivam": [167, 170, 172, 189, 192, 213, 218, 220, 285, 286], "meha": [167, 285], "bhalodiya": [167, 285], "prayasj": [167, 285], "moham": [169, 187, 188, 190, 193, 197, 205, 217, 220, 286], "egypt": 169, "2023": [169, 239, 246, 272, 288], "tanta": 169, "2008": [169, 251], "pc": [169, 271], "128mb": 169, "ram": 169, "ran": [169, 172], "xp": 169, "2013": 169, "answer": [169, 171, 203, 205, 236], "english": 169, "arab": 169, "peopl": [169, 246], "speak": 169, "sens": [169, 224], "amaz": [169, 171], "lucki": 169, "2009": 169, "beg": 169, "touch": 169, "sight": 169, "interior": 169, "poli": [169, 182, 192], "human": [169, 251], "curiou": 169, "cryengin": 169, "udk": 169, "terrain": 169, "pyramid": [169, 248, 281], "languag": [169, 170, 171], "harvard": 169, "cs50": 169, "competit": 169, "heard": [169, 170, 171], "senior": [169, 170], "hit": 169, "fog": 169, "taught": 169, "professor": 169, "v1": [169, 250, 251], "pyopengl": 169, "pygam": 169, "pyglm": 169, "disappoint": [169, 171], "publicli": 169, "scratch": [169, 171, 226, 238], "walk": 169, "sound": 169, "intens": [169, 260], "player": [169, 217], "bilinear": 169, "sequenc": [169, 241, 251, 261, 262, 267, 270], "mummyisland": 169, "recogn": [169, 287], "anki": 169, "godot": [169, 171], "glanc": [169, 225], "lumin": 169, "hors": 169, "felt": [169, 170, 171], "fxaa": 169, "fire": 169, "gaussian": [169, 245], "train": 169, "postpon": [169, 172], "bother": 169, "match": [169, 189, 225, 251, 253], "552": [169, 286], "555": [169, 286], "mission": 169, "pm": [169, 170, 171], "cairo": 169, "timezon": 169, "whatsoev": 169, "dashboard": 169, "stori": 169, "promot": [169, 288], "spam": 169, "conclus": 169, "celebr": 169, "shortli": 169, "receiv": [169, 170, 171, 222, 228, 234, 237, 243], "ever": 169, "2024": 170, "product": [170, 235, 270, 288], "industri": 170, "iit": 170, "teach": 170, "compet": 170, "hackathon": 170, "lost": 170, "enjoy": 170, "enthusiast": 170, "told": [170, 175, 239, 242, 243, 245], "motiv": [170, 171, 239], "octob": 170, "hactoberfest": 170, "him": [170, 172], "shortlist": 170, "android": 170, "kotlin": 170, "hadn": 170, "brush": 170, "remark": [170, 171, 221], "ucsc": 170, "lectur": 170, "victor": 170, "gordon": 170, "straight": 170, "loader": [170, 175, 218], "gltfreader": 170, "forgot": [170, 227], "fact": [170, 227], "examin": [170, 251], "somehow": 170, "april": 170, "520": [170, 285], "533": [170, 218, 286], "547": [170, 218, 286], "556": [170, 218, 286], "559": [170, 218, 286], "anxiou": 170, "18th": 170, "reject": [170, 171], "morn": 170, "profil": 170, "dad": 170, "night": 170, "refresh": [170, 171, 268, 286], "site": 170, "shout": 170, "numfocu": 170, "moment": [170, 238], "bless": 170, "gsoc22": [171, 217], "lesson": 171, "javascript": 171, "struggl": [171, 218, 227, 233], "twice": [171, 208, 277], "laptop": 171, "cousin": 171, "brother": 171, "enquir": 171, "academ": 171, "greet": 171, "flood": 171, "whatev": [171, 270], "vacat": [171, 184], "gameplai": 171, "youtub": 171, "brackei": 171, "grab": [171, 197, 268], "ie": [171, 173, 205, 256, 269], "rigidbodi": 171, "replic": [171, 267], "gigabyt": 171, "2g": 171, "megabyt": 171, "inr": 171, "unknown": [171, 188], "playlist": 171, "lightweight": 171, "80": [171, 278], "satisfi": [171, 232], "spend": [171, 176, 204], "exact": [171, 270], "surpris": 171, "wherea": 171, "bulki": 171, "mini": 171, "gdscript": 171, "resembl": 171, "drown": 171, "hacktoberfest": 171, "girlscript": 171, "gssoc": 171, "guidanc": [171, 233], "interview": 171, "flow": 171, "consider": [171, 232], "p5": 171, "creativ": 171, "attempt": 171, "rais": [171, 176, 179, 194, 248, 253, 255, 265, 285], "old": [171, 189, 215, 217, 255, 286], "beginn": [171, 204], "analysi": [171, 226], "comfort": 171, "fascin": 171, "hasn": 171, "engag": 171, "newbi": 171, "skill": [171, 222], "disengag": 171, "energi": 171, "enthusiasm": 171, "arriv": 171, "anxieti": 171, "peak": [171, 271, 277, 283, 285, 286], "alarm": 171, "remind": [171, 172], "straightforward": [172, 245], "verifi": [172, 173, 253, 287], "filip": 172, "attend": [172, 239], "604": 172, "movabl": 173, "unintention": 173, "599": [173, 174, 216, 286], "scan": 173, "actor2d": [173, 209, 271], "cleaner": [174, 252], "aris": [174, 176, 288], "deselect": [174, 185, 216, 268, 271], "keyboard": [174, 268], "shortcut": 174, "clamp": [174, 176, 202, 216, 268], "met": [175, 288], "panda3d": 175, "pyrend": 175, "dataclass": 175, "json": [175, 179, 181, 218, 280], "accident": 175, "darker": 175, "602": [175, 218, 286], "asynchron": [175, 218], "var": 175, "typeerror": [175, 255], "subscript": 175, "weren": [175, 179, 193, 197, 202, 227], "gimp": 175, "vtktextur": [175, 191, 236, 248, 257], "get_accessor_data": 175, "prototyp": [176, 182, 200, 218, 286], "alongsid": [176, 268], "polylin": [176, 182, 185, 188, 194, 197, 209, 212, 216, 248], "quadrant": 176, "li": [176, 248], "th": [177, 250], "612": [177, 286], "613": [177, 286], "seek": [177, 250, 268, 271], "matric": [177, 195, 198, 199, 201, 203, 256], "dig": [177, 224], "newer": 177, "b\u00e9zier": [177, 217, 250], "disappear": 177, "phew": 178, "tediou": 178, "parallelli": 178, "sem": 178, "exam": [178, 235], "off": [178, 188, 212, 248, 270], "aabb": 178, "enhanc": [178, 182, 200, 217, 226, 244, 286], "get_polydata_triangl": [179, 271], "basetextur": 179, "compositetimelin": [180, 183], "617": [180, 217, 286], "mergeabl": [180, 181], "616": [181, 218, 286], "upcom": [182, 221, 223, 226, 232, 235, 240], "left_mouse_click": [182, 216], "sub_timelin": 183, "actors_list": 183, "add_timelin": 183, "unbound": 183, "travel": 184, "load_io": 184, "pil": 184, "pallet": 184, "glb": [184, 218], "bufferview": [184, 256], "khronoosgroup": 184, "boxinterleav": 184, "ye": 184, "speculartest": 184, "animatedcub": 184, "normaltangentmirrortest": 184, "animatedtriangl": 184, "specglossvsmetalrough": 184, "nonetyp": 184, "basecolortextur": [184, 256], "cesiummilktruck": 184, "vc": 184, "waterbottl": 184, "animatedmorphcub": [184, 214], "sponza": 184, "scifihelmet": 184, "iridescencemetallicspher": 184, "corset": 184, "texturelinearinterpolationtest": 184, "simplemesh": 184, "lantern": 184, "texturetransformmultitest": 184, "texturesettingstest": 184, "lightspunctuallamp": 184, "damagedhelmet": 184, "cesiumman": [184, 210], "barramundifish": 184, "metalroughspheresnotextur": 184, "environmenttest": 184, "mosquitoinamb": 184, "boxtexturednonpoweroftwo": 184, "brainstem": [184, 214, 218], "simplemorph": 184, "orientationtest": 184, "boxanim": 184, "stainedglasslamp": 184, "texturetransformtest": 184, "clearcoattest": 184, "iridescencelamp": 184, "dragonattenu": 184, "recursiveskeleton": 184, "riggedsimpl": [184, 203, 205], "textureencodingtest": 184, "2cylinderengin": 184, "normaltangenttest": 184, "iridescencedielectricspher": 184, "texturecoordinatetest": 184, "alphablendmodetest": 184, "trianglewithoutindic": 184, "multiuvtest": 184, "boomboxwithax": 184, "20with": 184, "20space": 184, "sheencloth": 184, "toycar": 184, "materialsvariantssho": 184, "iridescentdishwithol": 184, "vertexcolortest": 184, "sheenchair": 184, "fox": [184, 214, 218], "antiquecamera": 184, "transmissiontest": 184, "transmissionroughnesstest": 184, "boxvertexcolor": 184, "reciprocatingsaw": 184, "morphprimitivestest": 184, "metalroughspher": 184, "gearboxassi": 184, "twosidedplan": 184, "buggi": 184, "simplesparseaccessor": 184, "unlittest": 184, "simpleskin": [184, 199, 203], "flighthelmet": [184, 253], "unicod": 184, "e2": 184, "9d": 184, "a4": 184, "bbtest": 184, "avocado": 184, "glamvelvetsofa": 184, "boombox": 184, "emissivestrengthtest": 184, "attenuationtest": 184, "animatedmorphspher": [184, 214], "iridescencesuzann": 184, "pil_imag": 184, "uri": [184, 256], "glb2gltf": 184, "investig": [185, 188, 191, 195, 213, 223, 224, 226, 229, 241, 246, 252, 286], "preced": [185, 250], "631": [186, 217], "626": [186, 187, 190, 286], "finalis": 187, "permit": [187, 252, 288], "reli": [187, 224, 230, 237, 238, 239, 243, 245], "623": [188, 191, 194, 200, 202, 206, 216, 286], "ubuntu": [188, 277, 281, 286], "on_value_chang": 189, "on_moving_slid": 189, "634": [189, 217, 286], "643": [189, 208, 210, 214, 218, 286], "custominterpol": 189, "mousemoveev": [191, 270], "prop": [191, 250, 256, 268, 269], "mipmapon": 191, "interpolateon": 191, "settl": 191, "reopen": 191, "freehand": [191, 194, 197, 202, 216], "tracer": 191, "rotation_slid": [191, 212, 216, 286], "647": [192, 217, 286], "euler": [192, 250, 267], "renam": [192, 248, 255, 277, 282, 285], "draft": [192, 217, 228, 239], "linearinterpol": 193, "smoothen": [193, 200], "645": [194, 197, 216, 286], "zerodivsionerror": 194, "653": [194, 200, 202, 206, 216], "tr": [195, 256], "invertbindmatric": 195, "globaltransformmatric": 195, "ago": [196, 230], "bigger": [196, 206], "slower": 196, "unbind": 196, "compact": 196, "160k": 196, "encount": [196, 223, 226, 229, 232, 235, 237, 241], "vtkimagetrac": [197, 200], "imagesourc": 197, "pure": [197, 209], "architectur": [197, 216], "partialactor": [198, 201], "imit": 200, "drawback": 200, "overcom": [200, 226], "promis": 200, "drawshap": [202, 207, 212, 216, 271, 286], "analyz": [202, 270], "overlapp": 202, "nearer": 202, "throw": [202, 255, 286], "analyse_snapshot": 202, "inversebindmatrix": 203, "short": [203, 245, 263], "undo": 203, "extrus": [204, 248], "irrad": 205, "invert": [205, 280, 285, 286], "skin_mat": 205, "harder": [206, 227], "674": [206, 216, 286], "redund": [206, 212], "in_progress": [206, 216, 286], "overlap": 207, "mode_panel": [207, 216, 286], "mode_text": [207, 216, 286], "678": [207, 216, 286], "duplicaci": 207, "brighter": [207, 209], "fault": [208, 284, 286], "impress": 208, "elimin": 208, "get_valu": [208, 250, 271], "get_skin_timelin": [208, 214], "grei": [209, 261], "skinmatrix": 210, "inversebindpos": 210, "bonedeform": 210, "currentbonetransform": 210, "parentbonetransform": 210, "parti": 211, "665": [211, 217, 286], "common": [212, 225, 256], "688": [212, 216, 286], "694": [213, 217, 286], "xtanion": [213, 218], "689": [214, 218, 286], "685": [214, 218, 286], "getconsum": 215, "scene_idx": 215, "frustum": [215, 264, 271, 281], "eras": 216, "depict": 216, "wysiwyg": 216, "695": 216, "doodl": 216, "696": 216, "exce": [216, 250, 261], "eveyth": 216, "609": [216, 286], "701": [216, 286], "zerodivisionerror": [216, 286], "2022": [216, 217, 218, 272, 286], "abouagour": 217, "rewind": 217, "blank": 217, "transit": 217, "bottleneck": 217, "690": [217, 286], "687": [217, 286], "changer": 217, "inevit": 217, "692": [217, 286], "massiv": 217, "cleanest": 217, "660": 217, "702": 217, "extrud": 217, "661": [217, 286], "594": [217, 286], "597": [217, 286], "591": [217, 286], "598": [217, 286], "equip": 217, "base64": 218, "bin": [218, 253, 256], "timlelin": 218, "though": 218, "condit": [218, 236, 250, 266, 286, 288], "account": [218, 222, 226, 269, 287], "frequent": 218, "estim": [218, 234, 236, 246], "khronosgroup": [218, 253, 265], "setuptool": [220, 286], "hatch": [220, 286], "dwij": [220, 286], "raj": [220, 286], "hari": [220, 286], "francoi": [220, 286], "rheault": [220, 286], "frank": [220, 286], "cerasoli": [220, 286], "johni": [220, 286], "dara": [220, 286], "agour": [220, 286], "rohit": [220, 286], "kharsan": [220, 286], "sara": [220, 286], "hamza": [220, 286], "siddharth": [220, 286], "sreekar": [220, 286], "chigurupati": [220, 286], "tania": [220, 222, 239, 286], "castillo": [220, 222, 286], "zhiwen": [220, 286], "shi": [220, 286], "maharshigor": [220, 286], "sailesh": [220, 286], "sparshg": [220, 286], "thrill": 221, "catch": [221, 232, 255], "regul": 221, "excel": [221, 267], "virtual": 221, "air": 221, "stai": 221, "breakthrough": 221, "dti": [222, 240], "tensor": [222, 225, 231, 234, 237, 240, 248, 251, 271], "hardi": 222, "former": 222, "guidelin": [222, 246], "meticul": 223, "categor": 223, "499": 223, "spinboxui": 223, "rectifi": 223, "devis": 223, "appeal": 223, "signific": [223, 226, 227], "790": [223, 226], "576": [223, 226, 229], "blogpost": [224, 227, 230, 233, 236, 239, 242, 245, 286], "inde": 224, "stencil": 224, "warn": [224, 233, 247, 255, 277, 282, 283, 284, 285], "vtktextureobject": [224, 227], "allocate2d": [224, 227], "create2d": 224, "create2dfromraw": 224, "nor": [224, 250, 288], "anyon": [224, 236], "color_textur": [224, 227], "setdatatyp": [224, 227], "vtk_unsigned_char": [224, 227, 233], "datatyp": [224, 227], "unsign": [224, 227, 265], "char": [224, 227], "setinternalformat": [224, 227], "vtk_rgba": [224, 227], "setformat": [224, 227], "setminificationfilt": [224, 227], "minfilt": [224, 227], "setmagnificationfilt": [224, 227], "magfilt": [224, 227], "contrast": 224, "allocate3d": [224, 227], "wish": [224, 233, 236, 239, 245], "encapsul": 224, "palat": 224, "strict": [224, 253, 259, 265, 288], "expend": 224, "wors": 224, "accomplish": [224, 232, 242], "forward": [224, 227, 232, 283], "kernel": [224, 236, 245, 246], "luck": [224, 233, 239, 245], "791": [225, 228, 235, 237, 239, 240], "3x1": 225, "tensor_slic": [225, 237, 240, 271, 286], "aros": [226, 229, 244], "unexpect": [226, 281], "furthermor": 226, "562": 226, "731": 226, "author": [226, 241, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287], "portion": [226, 263], "dedic": [226, 235, 239, 244, 264], "stakehold": 226, "everybodi": 227, "admit": 227, "framebufferobject": 227, "textureobject": 227, "caught": 227, "setcontext": [227, 230, 233], "fbo": [227, 230, 233, 236, 246], "vtk_rgb": 227, "spot": 227, "assert": [227, 279], "nullptr": 227, "vtkerrormacro": 227, "push": [227, 287], "realis": [227, 230], "offscreen": [227, 242, 245, 270, 286], "uncertainti": [228, 240], "double_con": 228, "dti_uncertainti": 228, "boundingbox": 229, "settextscalemodetonon": 229, "settextscalemodetoprop": 229, "position1": 229, "misalign": 229, "ongo": [229, 235], "803": [229, 238, 245], "occasion": 229, "malfunct": 229, "cardui": [229, 232], "segreg": 229, "540": [229, 232], "numpy_to_vtk_image_data": [229, 232, 271, 285], "supposedli": [230, 233], "stuck": 230, "appar": [230, 233, 236], "createfbo": 230, "getfboindex": [230, 233], "glgenframebuff": 230, "getcontext": 230, "conclud": [230, 238], "gonna": 230, "addon": 230, "783": [230, 233], "wip": [231, 237, 280, 284, 285, 286], "articl": [231, 287], "amidst": 232, "notabl": 232, "dive": [232, 233, 239], "success": [232, 233, 242, 270], "revisit": 232, "restart": [232, 250, 271], "decis": [232, 238], "obstacl": [232, 237], "eagerli": 232, "comeback": 232, "intric": 233, "recal": 233, "numba": 233, "vtkopenglframebufferobject": 233, "setoffscreenrend": 233, "populateframebuff": 233, "suffer": [233, 239, 245], "getnumberofcolorattach": 233, "synchron": 233, "someon": 233, "torment": 233, "proof": 233, "bumpier": 233, "810": [234, 237, 245], "estimate_sigma": 234, "design_matrix": 234, "tensor_predict": 234, "signal": [234, 236], "refin": 234, "bval": 234, "bvec": 234, "readjust": 234, "812": 235, "roadblock": 235, "bumpi": 236, "simplest": 236, "dug": 236, "deep": [236, 261, 265, 269], "vtkwindowtoimagefilt": 236, "windowtoimagefilt": [236, 271], "setinput": 236, "setinputconnect": 236, "getoutputport": 236, "settextur": 236, "kde": [236, 239, 242, 245, 246], "statist": 236, "parametr": [236, 284, 285], "fundament": 236, "infer": 236, "finit": 236, "econometr": 236, "parzen": 236, "rosenblatt": 236, "emanuel": 236, "murrai": 236, "credit": [236, 287], "famou": 236, "margin": [236, 270], "naiv": 236, "bay": 236, "accuraci": 236, "sentenc": 236, "greener": 236, "clarifi": 237, "auto_font_scal": [238, 268, 271], "justifi": 238, "spinbox": 238, "joaodellagli": 239, "graduat": 239, "capston": 239, "polish": [239, 245], "600x600": 239, "modular": 239, "delic": 239, "ruin": 239, "failur": [239, 241], "804": [239, 242], "818": 240, "724": [240, 286], "difficulti": [240, 241], "improp": 241, "814": 241, "769": [241, 286], "redirect": [241, 284], "spoiler": 242, "recap": 242, "sigma": [242, 245, 255], "worth": 242, "window_to_textur": 242, "texture_to_actor": 242, "colormap_to_textur": 242, "flatten": [242, 251], "onscreen": [242, 245], "ponder": 242, "preprocess": 243, "revis": 243, "deeper": [243, 244], "forese": 243, "goe": [243, 268], "delv": 244, "stem": 244, "began": 244, "seamlessli": 244, "treeui": 244, "debat": 245, "tradeoff": 245, "hidden": 245, "prefix": 245, "effectmanag": 245, "onscreen_manag": 245, "kde_actor": 245, "inferno": [245, 248, 249, 251], "laplacian": 245, "hint": 245, "laplac": 245, "sudden": 245, "grayscal": [245, 248], "blur": 245, "honour": 246, "profession": 246, "webgl": 246, "macro": 246, "spatial": 246, "benefit": [246, 270], "devic": 246, "renderbuff": 246, "init": [247, 268, 271], "verbos": [247, 270, 287], "pkg_path": [247, 263], "warnings_origin": 247, "pad_x_neg": 248, "pad_x_po": 248, "pad_y_neg": 248, "pad_y_po": 248, "pad_z_neg": 248, "pad_z_po": 248, "addposit": [248, 271], "getbound": [248, 271], "getcent": [248, 271], "getlength": [248, 271], "getposit": [248, 271], "getvis": [248, 271], "newinst": [248, 271], "shallowcopi": [248, 271], "kwarg": [248, 250, 255, 266, 267], "vtkprop3d": [248, 258, 269], "borrow": 248, "shallow": [248, 265, 269], "elsewher": 248, "remove_from_scen": [248, 250, 271], "picking_tol": 248, "cut": 248, "vtklookupt": [248, 249], "nearest": 248, "neighbor": [248, 258], "toler": [248, 261], "vtkcellpick": 248, "imageactor": [248, 271], "subdivis": 248, "precomput": 248, "butterfli": 248, "surface_actor": 248, "binar": 248, "contour_assembli": 248, "vtkassembli": 248, "tube_sid": 248, "lod_point": 248, "lod_points_s": 248, "spline_subdiv": 248, "replace_strip": 248, "colour": [248, 269], "trilinear": [248, 269], "opaqu": [248, 249, 270], "lodactor": [248, 271], "straighter": 248, "curvier": 248, "approx_polygon_track": 248, "boolean": [248, 268], "cue": 248, "lookup_t": [248, 251], "colorbar": 248, "vtkscalarbaractor": 248, "colorx": 248, "colori": 248, "colorz": 248, "suppli": 248, "4x4": [248, 249], "amplitud": [248, 249], "plain": 248, "n_coeff": [248, 249], "n_vertic": [248, 249], "odfsliceractor": [248, 271], "evec": 248, "scalar_color": 248, "eigenvalu": 248, "eigenvector": [248, 251], "sphere_valu": 248, "color_fa": 248, "tensor_actor": 248, "peaks_dir": [248, 249], "peaks_valu": 248, "dec": [248, 251], "peak_actor": 248, "magnitud": 248, "peakactor": [248, 271], "peak_dir": 248, "dot_siz": 248, "dot_actor": 248, "deprec": [248, 251, 265, 271, 277, 280, 281, 282, 283, 284, 285, 286], "expireddeprecationerror": [248, 265, 271], "coral": 248, "facet": 248, "sector": [248, 264], "repeat_sourc": [248, 271], "cylinder_actor": 248, "rinner": 248, "router": 248, "cresolut": 248, "rresolut": 248, "outer": [248, 268], "perimet": 248, "radial": 248, "disk_actor": 248, "sq_actor": 248, "rect_actor": 248, "tip": [248, 264], "cone_actor": 248, "tprism_actor": 248, "rcoh_actor": 248, "pent_actor": 248, "actor_pentagon": 248, "octagon": [248, 264, 281], "oct_actor": 248, "frustum_actor": 248, "spq_actor": 248, "gs_prog": 248, "bb_type": 248, "cylindrical_x": 248, "cylindrical_i": 248, "billboard_actor": 248, "align_cent": 248, "array_lik": [248, 251, 267], "text3d": [248, 285], "7777777777777777": [248, 258, 268, 269], "necessarili": [248, 250, 251, 270], "pad_x": [248, 258], "pad_i": [248, 258], "tightest": [248, 258], "nb_row": [248, 257, 258, 269], "nb_col": [248, 257, 258, 269], "pic": 248, "vtkimageactor": 248, "interp": 248, "texture_actor": 248, "arr": [248, 252, 257, 265, 266, 269, 270], "viz_video_on_plan": 248, "vtktexturedactor": 248, "edge_opac": 248, "tensor_ellipsoid": [248, 271], "vtkactor": [249, 250, 256, 261, 265, 268, 269, 285], "x_indic": 249, "y_indic": 249, "z_indic": 249, "inclus": 249, "slice_index": 249, "zaxi": 249, "dwi": 249, "rgb_standard": [249, 251], "cross_sect": [249, 271], "display_cross_sect": [249, 271], "global_opac": [249, 269, 271], "high_rang": [249, 271], "is_rang": [249, 271], "low_rang": [249, 271], "max_cent": [249, 271], "min_cent": [249, 271], "add_static_actor": [250, 271], "add_to_scene_at": [250, 271], "add_update_callback": [250, 271], "callabl": [250, 251, 255, 264, 265, 268], "child_anim": [250, 271], "current_timestamp": [250, 271], "get_color": [250, 271], "get_current_valu": [250, 271], "attrib": 250, "get_keyfram": [250, 271], "get_opac": [250, 271], "get_posit": [250, 271], "get_rot": [250, 271], "as_quat": 250, "get_scal": [250, 271], "is_inside_scene_at": [250, 271], "is_interpolat": [250, 271], "interpolat": 250, "safe": 250, "opposit": [250, 269, 270], "parent_anim": [250, 256, 271], "remove_actor": [250, 271], "remove_anim": [250, 270, 271], "remove_from_scene_at": [250, 271], "set_color_keyfram": [250, 271], "timestamp_1": 250, "color_1": 250, "timestamp_2": 250, "color_2": 250, "color_keyfram": 250, "spline_degre": 250, "1x3": 250, "1x1": 250, "pos_fun": 250, "lambda": 250, "set_keyfram": [250, 271], "update_interpol": 250, "reiniti": 250, "key_frames_simpl": 250, "key_frames_bezi": 250, "pos_keyfram": 250, "set_opacity_interpol": [250, 271], "set_opacity_keyfram": [250, 271], "opacity_1": 250, "opacity_2": 250, "set_scale_keyfram": [250, 271], "position_1": 250, "position_2": 250, "set_rotation_as_vector": [250, 271], "set_scale_interpol": [250, 271], "scale_1": 250, "scale_2": 250, "scale_keyfram": 250, "static_actor": [250, 271], "update_dur": [250, 271], "update_motion_path": [250, 271], "vtkcamera": [250, 256], "get_foc": [250, 271], "get_view_up": [250, 271], "set_foc": [250, 271], "focal_1": 250, "focal_po": 250, "set_view_up": [250, 271], "set_view_up_interpol": [250, 271], "set_view_up_keyfram": [250, 271], "view_up_1": 250, "view_up_2": 250, "current_tim": [250, 268, 271], "include_last": 250, "include_first": 250, "tau": 250, "v0": [250, 272, 287], "consecut": [250, 266], "rgb2space": 250, "space2rgb": 250, "has_playback_panel": [250, 271], "max_peel": [250, 270], "show_panel": 250, "peel": [250, 270], "seek_perc": [250, 271], "percent": 250, "lookupt": [251, 271], "na": 251, "nd": 251, "boi": 251, "undirect": 251, "glu": 251, "mobiu": 251, "crosscap": 251, "roman": 251, "steiner": 251, "homeomorph": 251, "pinkal": 251, "1986": 251, "singular": 251, "visit": 251, "brown": 251, "edu": [251, 267], "cad": 251, "rp2color": 251, "cagatai": 251, "demiralp": 251, "matlab": [251, 267], "boys_standard": 251, "maptlotlib": 251, "pyplot": 251, "jet": 251, "accent": 251, "often": [251, 287], "mislead": 251, "bg": 251, "maxim": 251, "perceptu": 251, "distinct": 251, "percept": 251, "farthest": 251, "greedi": 251, "facilit": 251, "rbg": 251, "75862069": 251, "03448276": 251, "89655172": 251, "17241379": 251, "tim": 251, "holi": 251, "mathwork": 251, "matlabcentr": 251, "fileexchang": 251, "29702": 251, "2010": 251, "feb": 251, "2011": 251, "hexadecim": [251, 280, 281], "hexcod": 251, "hash": [251, 263, 287], "ffffff": 251, "denot": 251, "scikit": 251, "stride": [251, 256, 271], "multidimension": [251, 266], "instanti": 251, "__new__": 251, "style": [251, 253, 270, 271, 280, 287], "fortran": 251, "transpos": 251, "c_contigu": 251, "owndata": 251, "writeabl": 251, "flat": [251, 260, 271], "todo": [251, 268], "flatit": 251, "items": [251, 271], "nbyte": [251, 271], "ndim": [251, 271], "contigu": 251, "impli": [251, 288], "ctype": [251, 271], "unchang": 251, "garbag": 251, "alia": [251, 286], "keyword": [251, 255, 267, 280, 286], "0e": 251, "nan": 251, "5e": 251, "323": 251, "int_": 251, "d50": 251, "d55": 251, "d65": 251, "d75": 251, "NOT": [251, 288], "sensit": 251, "grdevic": 251, "convertcolor": 251, "cie": 251, "xyzcolor": 251, "apertur": 251, "srgb": 251, "iec": 251, "61966": 251, "1999": 251, "colorspac": 251, "fig": 252, "dpi": [252, 257, 270, 286], "flip_up_down": 252, "inch": [252, 257, 270], "matlplotlib": 252, "safest": 252, "savefig": 252, "icar": 252, "univ": 252, "lille1": 252, "fr": 252, "drupal": 252, "1141": 252, "tostring_argb": 252, "stabl": 252, "bytes_or_buff": [253, 259, 265], "decod": [253, 259, 265], "__str__": [253, 259, 265], "repr": [253, 259, 265], "getdefaultencod": [253, 259, 265], "total_length": 253, "progressbar": 253, "fsrc": 253, "fdst": 253, "16384": 253, "stored_sha256": 253, "sha": [253, 280], "checksum": 253, "data_s": 253, "91": [253, 278], "mb": 253, "log": [253, 270], "fetchererror": 253, "draco": 253, "fetech": 253, "informationinterdisciplinari": 253, "suffix_typ": 253, "ext": [253, 277, 287], "suffix": 253, "numer": [253, 269], "skybox_0": 253, "skybox_1": 253, "nc": 253, "px": 253, "ny": 253, "negc": 253, "skybox_posx": 253, "skybox_negi": 253, "skybox_right": 253, "skybox_front": 253, "icomoon": 253, "infin": 253, "dmri": 253, "model_nam": 253, "compil": [254, 255, 286], "func": [254, 255, 264], "markup": 254, "doctest": [254, 255, 287], "have_amodul": 254, "have_bmodul": 254, "scope": [254, 287], "report": [255, 270, 286], "nipi": 255, "copyright": [255, 281, 287, 288], "licens": [255, 287], "runtimeerror": 255, "expir": 255, "deprecationwarn": [255, 277], "version_str": 255, "pkg_version_str": 255, "dev197": 255, "g9a9cf7f0": 255, "__version__": [255, 287], "version_cmp": 255, "0dev": 255, "version_compar": 255, "warn_class": 255, "error_class": 255, "decor": [255, 271, 280], "warning_class": 255, "old_nam": 255, "new_nam": 255, "arg_in_kwarg": 255, "signatur": 255, "thereof": 255, "relax": 255, "astropi": 255, "sig": 255, "apply_morph_vertic": [256, 271], "apply_skin_matrix": [256, 271], "joint_matric": 256, "actor_index": 256, "skinnig": 256, "join_matric": 256, "generate_tmatrix": [256, 271], "transf": 256, "ransform": 256, "get_acc_data": [256, 271], "acc_id": 256, "accessor": 256, "buffer_arrai": 256, "get_anim": [256, 271], "get_buff_arrai": [256, 271], "buff_id": 256, "d_type": 256, "byte_length": 256, "byte_offset": 256, "byte_strid": 256, "out_arr": 256, "get_joint_actor": [256, 271], "with_transform": 256, "get_materi": [256, 271], "mat_id": 256, "get_matrix_from_sampl": [256, 271], "anim_channel": 256, "sampler": 256, "gltflib": 256, "get_morph_data": [256, 271], "mesh_id": 256, "get_sampler_data": [256, 271], "node_id": 256, "transform_typ": 256, "sampler_data": 256, "get_skin_data": [256, 271], "skin_id": 256, "joint_nod": 256, "inv_bind_matrix": 256, "get_textur": [256, 271], "tex_id": 256, "atextur": 256, "inspect_scen": [256, 271], "scene_id": 256, "load_camera": [256, 271], "camera_id": 256, "transform_mat": 256, "load_mesh": [256, 271], "root_anim": 256, "transverse_anim": [256, 271], "bone_id": 256, "parent_bone_deform": 256, "parent_bone_transform": 256, "transverse_bon": [256, 271], "channel_nam": 256, "transverse_channel": [256, 271], "transverse_nod": [256, 271], "nextnode_id": 256, "is_joint": 256, "gltf2": 256, "tcoord": [256, 265, 269], "topologi": 256, "prim": [256, 280], "comp_typ": 256, "accssor_typ": 256, "objecomp_typ": 256, "byteoffset": 256, "interpolate_on": 257, "mipmap_on": 257, "tif": 257, "tiff": 257, "use_pillow": 257, "pillow": [257, 286], "compression_typ": 257, "deflat": 257, "72": [257, 270, 278], "compress": 257, "lzw": 257, "imageio": 257, "vtp": [257, 283], "color_array_nam": 257, "sheet_path": 257, "compute_posit": [258, 271], "_actor": 258, "lie": 258, "compute_s": [258, 271], "get_cells_shap": [258, 271], "glossi": 260, "anisotropic_direct": 260, "scatter": 260, "principled_param": 260, "ambient_level": 260, "ambient_color": 260, "diffuse_level": 260, "diffuse_color": 260, "specular_level": 260, "specular_color": 260, "specular_pow": 260, "gouraud": 260, "ambient": 260, "atomic_numb": [261, 271], "coord": [261, 262, 264, 268], "atom_nam": 261, "residue_seq": 261, "helix": 261, "is_hetatm": 261, "residu": 261, "heteroatom": 261, "total_num_atom": [261, 271], "total_num_bond": [261, 271], "eg": 261, "coval": 261, "symbol": 261, "atom_color": [261, 271], "atomicnumb": 261, "element_nam": [261, 271], "insensit": 261, "atomic_radiu": [261, 271], "radius_typ": 261, "\u00e5": 261, "atomic_symbol": [261, 271], "atomic_num": 261, "x_coord": 261, "y_coord": 261, "z_coord": 261, "atom1_index": 261, "atom2_index": 261, "bond_ord": 261, "establish": 261, "errat": 261, "atom_index": 261, "belong": [261, 268], "whom": 261, "atom_num": 261, "atom_coordin": 261, "bond_index": 261, "molecule1": 261, "molecule2": 261, "valenc": 261, "hybrid": 261, "aromat": 261, "colormod": 261, "molecule_actor": 261, "corei": 261, "paul": 261, "amino": 261, "acid": 261, "peptid": 261, "instrument": 261, "1953": 261, "621": [261, 286], "627": [261, 286], "atom_scale_factor": 261, "bond_thick": 261, "multiple_bond": 261, "dark": 261, "turner": 261, "chem": 261, "educ": 261, "1971": 261, "407": [261, 280, 284], "rubbon": 261, "anatomi": 261, "taxonomi": 261, "1981": 261, "167": [261, 280], "339": [261, 283], "bbox_actor": 261, "disp_xi": 262, "sc": 262, "pickable_off": [262, 271], "pickable_on": [262, 271], "selectable_on": [262, 271], "update_selection_typ": [262, 271], "commit_hash": 263, "substitut": [263, 265, 288], "archive_subst_hash": 263, "truncat": 263, "hash_from": 263, "hash_str": 263, "func_arg": 264, "superquadr": [264, 271, 280, 281, 283], "big_vertic": 264, "big_triangl": 264, "big_color": 264, "have_tiled_vert": 264, "big_cent": 264, "symmetric642": 264, "symmetric724": 264, "repulsion724": 264, "repulsion200": 264, "sphere_nam": 264, "pyramid_vert": 264, "icosahedron": [264, 280], "icosahedron_vertic": 264, "icosahedron_mesh": 264, "36": [264, 269, 278], "glsl_code": 265, "shader_fil": 265, "glslang": 265, "reimplement": 265, "shader_typ": 265, "valuepass": 265, "keep_default": 265, "replace_first": 265, "replace_al": 265, "shaders_in_vtk": 265, "prim_id": 265, "tag": [265, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287], "caller": 265, "updateshaderev": 265, "vtkcommand": 265, "nightli": 265, "classvtkobject": 265, "func_call1": 265, "func_call2": 265, "removeobserv": 265, "test_valu": 265, "callbacklow": 265, "callbackhigh": 265, "999": 265, "callbackmean": 265, "id_mean": 265, "renderwindow": [265, 270, 271], "overrid": 265, "attr_nam": 265, "whithout_iren_start": 266, "streamclient": 266, "vtkinteractor": 266, "use_asyncio": 266, "showmmanag": 266, "stream_client": 266, "imagemanag": 266, "render_aft": 266, "dequeu": [266, 271], "cqueue_event_id": 266, "mouse_id": 266, "left_btn_press": 266, "left_btn_releas": 266, "middle_btn_press": 266, "middle_btn_releas": 266, "right_btn_press": 266, "right_btn_releas": 266, "cqueue_index_info": 266, "shift": 266, "user_timestamp": 266, "cqueue": 266, "index_info": 266, "unord": 266, "leftbuttonreleaseev": 266, "middlebuttonpressev": 266, "middlebuttonreleaseev": 266, "rightbuttonpressev": 266, "rightbuttonreleaseev": 266, "rtc_server": 266, "image_buffer_manag": 266, "provides_mjpeg": 266, "broadcast": 266, "videostream": 266, "webrtcserv": 266, "recv": [266, 271], "videofram": 266, "queue_head_tail_buff": 266, "queue_buff": 266, "provides_webrtc": 266, "ms_jpeg": 266, "run_app": 266, "queue_head_tail_buffer_nam": 266, "queue_buffer_nam": 266, "avoid_unlink_shared_mem": 266, "image_buffers_nam": 266, "get_start_end": [266, 271], "enqueu": [266, 271], "set_head_tail": [266, 271], "is_unlock": [266, 271], "unlock": [266, 271], "setinterv": 266, "interval_tim": 266, "stackoverflow": 266, "3393612": 266, "queue_siz": 266, "ifram": 266, "return_ifram": [266, 271], "div": 266, "run_command": [266, 271], "ai": 267, "aj": 267, "ak": 267, "sxyz": 267, "christoph": 267, "gohlk": 267, "lfd": 267, "uci": 267, "yaw": [267, 270, 271], "syxz": 267, "allclos": 267, "34786452": 267, "383436184": 267, "_axes2tupl": 267, "inclin": 267, "imagin": 267, "south": 267, "north": 267, "west": 267, "east": 267, "posterior": 267, "anterior": 267, "zenith": 267, "equival": [267, 269], "nomenclatur": 267, "cartes": 267, "spherical_coordinate_system": 267, "mathworld": 267, "wolfram": 267, "sphericalcoordin": 267, "hypotenus": 267, "q": 267, "deliber": 267, "sph2cart": 267, "unusu": 267, "trivial": 267, "0lethetamathrm": 267, "lepi": 267, "pilephimathrm": 267, "tran": 267, "quat": 267, "rotation_mat": 267, "259": [267, 281], "966": 267, "866": 267, "scale_mat": 267, "overal": 268, "left_button_drag": [268, 271], "_panel2d_object": 268, "left_button_press": [268, 271], "panel2d_object": 268, "window_size_chang": 268, "remove_el": [268, 271], "update_border_coord": [268, 271], "update_el": [268, 271], "content_panel": [268, 271], "title_bold": [268, 271], "title_color": [268, 271], "title_font_s": [268, 271], "title_ital": [268, 271], "active_color": [268, 271], "inactive_color": 268, "startup_tab_id": 268, "inact": 268, "uncollaps": 268, "startup": 268, "tab_idx": 268, "collapse_tab_ui": [268, 271], "_tab_comp": 268, "_sub_compon": 268, "select_tab_callback": [268, 271], "update_tab": [268, 271], "imagedata": [268, 271], "vtktexturedactor2d": 268, "rotation_spe": 268, "anticlockwise_rotation_x": [268, 271], "anticlockwise_rotation_i": [268, 271], "clockwise_rotation_x": [268, 271], "clockwise_rotation_i": [268, 271], "key_press_callback": [268, 271], "istyl": 268, "_what": 268, "left_click_callback2": [268, 271], "left_release_callback": [268, 271], "left_release_callback2": [268, 271], "mouse_move_callback": [268, 271], "mouse_move_callback2": [268, 271], "on_left_mouse_button_releas": [268, 271], "on_left_mouse_double_click": [268, 271], "on_left_mouse_button_drag": [268, 271], "on_right_mouse_button_press": [268, 271], "on_right_mouse_button_releas": [268, 271], "on_right_mouse_button_click": [268, 271], "on_right_mouse_double_click": [268, 271], "on_right_mouse_button_drag": [268, 271], "on_middle_mouse_button_press": [268, 271], "on_middle_mouse_button_releas": [268, 271], "on_middle_mouse_button_click": [268, 271], "on_middle_mouse_double_click": [268, 271], "on_middle_mouse_button_drag": [268, 271], "on_key_press": [268, 271], "add_callback": [268, 271], "event_typ": 268, "vtkprop": 268, "handle_ev": [268, 271], "left_button_click_callback": [268, 271], "left_button_release_callback": [268, 271], "middle_button_click_callback": [268, 271], "middle_button_release_callback": [268, 271], "right_button_click_callback": [268, 271], "right_button_release_callback": [268, 271], "dynamic_bbox": [268, 271], "italicis": 268, "auto_font_sc": 268, "cal_size_from_messag": [268, 271], "famili": 268, "update_align": [268, 271], "update_bounding_box": [268, 271], "overlai": 268, "iconnam": 268, "next_icon_id": [268, 271], "cycl": [268, 272], "set_icon": [268, 271], "set_icon_by_nam": [268, 271], "icon_nam": 268, "cursor": 268, "beforehand": 268, "window_left": [268, 271], "window_right": [268, 271], "caret_po": [268, 271], "caret": 268, "add_charact": [268, 271], "edit_mod": [268, 271], "handle_charact": [268, 271], "key_char": 268, "key_press": [268, 271], "_textbox_object": 268, "textboxself": 268, "custominteractorstyl": [268, 270], "left_move_left": [268, 271], "ward": 268, "left_move_right": [268, 271], "move_caret_left": [268, 271], "move_caret_right": [268, 271], "move_left": [268, 271], "move_right": [268, 271], "remove_charact": [268, 271], "render_text": [268, 271], "show_caret": 268, "right_move_left": [268, 271], "right_move_right": [268, 271], "set_messag": [268, 271], "showable_text": [268, 271], "chop": 268, "width_set_text": [268, 271], "newlin": 268, "slide": 268, "default_color": [268, 271], "unpress": 268, "bottom_y_posit": [268, 271], "format_text": [268, 271], "handle_move_callback": [268, 271], "_vtkactor": 268, "_slider": 268, "handle_release_callback": [268, 271], "left_x_posit": [268, 271], "right_x_posit": [268, 271], "top_y_posit": [268, 271], "track_click_callback": [268, 271], "bottom_disk_ratio": [268, 271], "bottom_disk_valu": [268, 271], "coord_to_ratio": [268, 271], "disk_numb": 268, "left_disk_ratio": [268, 271], "left_disk_valu": [268, 271], "ratio_to_coord": [268, 271], "ratio_to_valu": [268, 271], "right_disk_ratio": [268, 271], "right_disk_valu": [268, 271], "top_disk_ratio": [268, 271], "top_disk_valu": [268, 271], "value_to_ratio": [268, 271], "slider_inner_radiu": 268, "slider_outer_radiu": 268, "handle_inner_radiu": 268, "handle_outer_radiu": 268, "mid_track_radiu": [268, 271], "move_handl": [268, 271], "click_posit": 268, "range_slid": [268, 271], "value_slid": [268, 271], "range_slider_handle_move_callback": [268, 271], "_element": 268, "adjac": 268, "selection_text_color": 268, "selection_bg_color": 268, "menu_text_color": 268, "selected_color": 268, "unselected_color": 268, "scroll_bar_active_color": 268, "scroll_bar_inactive_color": 268, "menu_opac": 268, "reverse_scrol": 268, "line_spac": 268, "menu": 268, "selection_box": [268, 271], "drop_down_button": [268, 271, 286], "drop_down_menu": [268, 271], "unselect": 268, "append_item": [268, 271], "menu_toggle_callback": [268, 271], "_combobox": 268, "select_option_callback": [268, 271], "listboxitem": 268, "selected_text_index": [268, 271], "text_color": 268, "background_opac": 268, "castabl": 268, "clear_select": [268, 271], "down_button_callback": [268, 271], "_list_box": 268, "scroll_click_callback": [268, 271], "_rect_obj": 268, "scroll_drag_callback": [268, 271], "rect_obj": 268, "scroll_release_callback": [268, 271], "range_select": 268, "multi_select": 268, "up_button_callback": [268, 271], "update_scrollbar": [268, 271], "list_box": 268, "left_button_click": [268, 271], "_list_box_item": 268, "directory_path": 268, "extension1": 268, "extension2": 268, "directory_click_callback": [268, 271], "get_all_file_nam": [268, 271], "all_file_nam": 268, "get_directory_nam": [268, 271], "current_directori": 268, "directory_nam": 268, "get_file_nam": [268, 271], "scroll_callback": [268, 271], "_filemenu_item": 268, "slot": 268, "set_slot_color": [268, 271], "cal_bounding_box": [268, 271], "clamp_posit": [268, 271], "new_cent": 268, "is_select": [268, 271], "left_button_releas": [268, 271], "selection_chang": [268, 271], "update_shape_posit": [268, 271], "center_posit": 268, "is_dragg": 268, "draggbl": 268, "cal_min_boundary_dist": [268, 271], "clamp_mouse_posit": [268, 271], "mouse_posit": 268, "handle_mouse_click": [268, 271], "handle_mouse_drag": [268, 271], "resize_shap": [268, 271], "show_rotation_slid": [268, 271], "update_button_icon": [268, 271], "update_shape_select": [268, 271], "selected_shap": 268, "current_time_str": [268, 271], "hh": 268, "mm": 268, "ss": [268, 271], "final_tim": [268, 271], "play_onc": [268, 271], "body_color": 268, "maintain_aspect": 268, "title_box": [268, 271], "body_box": [268, 271], "wrap_width": 268, "overflow_postfix": 268, "postfix": 268, "mid_ptr": 268, "vtk_object": 269, "inp": 269, "vtkalgorithmoutput": 269, "poly_mapp": 269, "polydatamapp": [269, 271], "poly_data": 269, "vtk_point": 269, "vtkpoint": 269, "vtk_color": 269, "vtkdataarrai": 269, "unsigned_char": 269, "rgb_arrai": 269, "is_coord": 269, "vtk_cell": 269, "vtkcellarrai": 269, "vtk_imag": 269, "input_arrai": 269, "1d": 269, "color_is_scalar": 269, "line_polydata": 269, "nx3": 269, "nx2": 269, "field_nam": 269, "as_vtk": 269, "field_data": 269, "array_typ": 269, "vtkarraytyp": 269, "primitives_count": 269, "array_nam": 269, "vtkpolydatamapp": 269, "prim_count": 269, "mx3": 269, "nx4": 269, "cull": 269, "backfac": 269, "active_scalar": 269, "transformed_act": 269, "aff": 269, "transformed_pt": 269, "routin": 269, "contrari": 269, "largest": 269, "cell_width": 269, "cell_height": 269, "vtkobject": 269, "norm_arrai": 269, "veric": 269, "ccw": 269, "new_triangl": 269, "corrected_triangl": 269, "as_vtk_typ": 269, "all_arrai": 269, "pts_len": 269, "polici": 269, "predefin": 269, "vtkopenglrender": 270, "vtkrender": 270, "setviewup": 270, "camera_direct": [270, 271], "viewplanenorm": 270, "obliqu": 270, "dolli": [270, 271], "fxaa_off": [270, 271], "fxaa_on": [270, 271], "get_camera": [270, 271], "last_render_tim": [270, 271], "proj_typ": 270, "reset_camera_tight": [270, 271], "margin_factor": 270, "tightli": 270, "rm_all": [270, 271], "gamma_correct": 270, "rescal": 270, "png_magnifi": 270, "interactor_styl": 270, "occlusion_ratio": 270, "magnifi": 270, "vtkinteractorstyl": 270, "trackbal": 270, "vtkinteractorstyletrackballcamera": 270, "vtkinteractorstyleimag": 270, "sequenti": 270, "crystaley": 270, "anaglyph": 270, "glass": 270, "interlac": 270, "checkerboard": 270, "aliaz": 270, "ration": 270, "vtkrenderwindowinteractor": 270, "vtkrenderwindow": 270, "iren_callback": 270, "acquir": 270, "play_ev": [270, 271], "play_events_from_fil": [270, 271], "record_ev": [270, 271], "temporari": 270, "record_events_to_fil": [270, 271], "release_lock": [270, 271], "save_screenshot": [270, 271], "200x200": 270, "400x400": 270, "desired_fp": 270, "cam_po": 270, "cam_foc": 270, "cam_view": 270, "path_numb": 270, "n_frame": 270, "az_ang": 270, "screen_clip": 270, "az_angl": 270, "win": 270, "render_window": 270, "stealth": 270, "im": 270, "find_object": 270, "strel": 270, "colors_found": 270, "reportsnapshot": 270, "renwin": 270, "stereo_typ": 270, "gl_state": 270, "vtkopenglst": 270, "redefin": 270, "enable_warn": 271, "disable_warn": 271, "peak_slic": [271, 277, 286], "triangularpr": 271, "pentagonalpr": 271, "octagonalpr": 271, "get_values_from_keyfram": 271, "lerp": 271, "euclidean_dist": 271, "color_interpol": 271, "cc": 271, "boys2rgb": 271, "orient2rgb": 271, "get_cmap": 271, "hex_to_rgb": 271, "rgb2hsv": 271, "hsv2rgb": 271, "xyz_from_rgb": 271, "rgb_from_xyz": 271, "xyz2rgb": 271, "rgb2xyz": 271, "get_xyz_coord": 271, "xyz2lab": 271, "lab2xyz": 271, "rgb2lab": 271, "lab2rgb": 271, "matplotlib_figure_to_numpi": 271, "data_dir": 271, "update_progressbar": [271, 286], "copyfileobj_withprogress": 271, "check_sha": 271, "fetch_data": 271, "list_gltf_sample_model": 271, "skip_r": 271, "doctest_skip_pars": 271, "argsdeprecationwarn": 271, "_leading_whit": 271, "cmp_pkg_version": 271, "is_bad_vers": 271, "deprecate_with_vers": 271, "deprecated_param": 271, "write_scen": 271, "write_nod": 271, "write_mesh": 271, "write_camera": 271, "get_prim": 271, "write_materi": 271, "write_accessor": 271, "write_bufferview": 271, "write_buff": 271, "load_text": 271, "horizontallayout": 271, "verticallayout": 271, "xlayout": 271, "ylayout": 271, "zlayout": 271, "idtypearrai": 271, "floatarrai": 271, "doublearrai": 271, "stringarrai": 271, "unsignedchararrai": 271, "algorithmoutput": 271, "renderwindowinteractor": 271, "interactoreventrecord": 271, "interactorstyl": 271, "proppick": 271, "pointpick": 271, "cellpick": 271, "worldpointpick": 271, "hardwareselector": 271, "polydatamapper2d": 271, "assembli": 271, "datasetmapp": 271, "texturedactor2d": 271, "textactor": 271, "textactor3d": 271, "property2d": 271, "vectortext": 271, "scalarbaractor": 271, "openglrender": 271, "interactorstyleimag": 271, "interactorstyletrackballactor": 271, "interactorstyletrackballcamera": 271, "interactorstyleus": 271, "cleanpolydata": 271, "polydatanorm": 271, "contourfilt": 271, "tubefilt": 271, "glyph3d": 271, "trianglefilt": 271, "splinefilt": 271, "transformpolydatafilt": 271, "renderlargeimag": 271, "loopsubdivisionfilt": 271, "butterflysubdivisionfilt": 271, "outlinefilt": 271, "linearextrusionfilt": 271, "texturemaptoplan": 271, "spheresourc": 271, "cylindersourc": 271, "arrowsourc": 271, "conesourc": 271, "disksourc": 271, "texturedspheresourc": 271, "regularpolygonsourc": 271, "dataobject": 271, "cellarrai": 271, "polyvertex": 271, "unstructuredgrid": 271, "datasetattribut": 271, "matrix4x4": 271, "matrix3x3": 271, "imageflip": 271, "imagereslic": 271, "imagemaptocolor": 271, "imagereader2factori": 271, "pngreader": 271, "bmpreader": 271, "jpegread": 271, "tiffread": 271, "plyread": 271, "stlreader": 271, "objread": 271, "mniobjectread": 271, "polydataread": 271, "xmlpolydataread": 271, "pngwriter": 271, "bmpwriter": 271, "jpegwrit": 271, "tiffwrit": 271, "plywrit": 271, "stlwriter": 271, "mniobjectwrit": 271, "polydatawrit": 271, "xmlpolydatawrit": 271, "simplebondperceiv": 271, "periodict": 271, "openglmoleculemapp": 271, "vtk_version": 271, "manifest_standard": [271, 285], "ptabl": 271, "add_bond": 271, "get_atomic_numb": 271, "set_atomic_numb": 271, "get_atomic_posit": 271, "set_atomic_posit": 271, "get_bond_ord": 271, "set_bond_ord": 271, "get_all_atomic_numb": 271, "get_all_bond_ord": 271, "get_all_atomic_posit": 271, "deep_copy_molecul": 271, "compute_bond": 271, "sphere_cpk": 271, "ball_stick": 271, "bounding_box": 271, "pkg_info": 271, "pkg_commit_hash": 271, "faces_from_sphere_vertic": 271, "repeat_primitive_funct": 271, "prim_squar": 271, "prim_superquadr": 271, "prim_icosahedron": 271, "prim_rhombicuboctahedron": 271, "prim_star": 271, "prim_triangularpr": 271, "prim_pentagonalpr": 271, "prim_octagonalpr": 271, "prim_frustum": 271, "prim_cylind": 271, "prim_arrow": 271, "prim_con": 271, "shaders_dir": 271, "load_shad": 271, "replace_shader_in_actor": 271, "async_app": 271, "callback_stream_cli": 271, "interaction_callback": 271, "_cqueue_event_id": 271, "_cqueue_index_info": 271, "_cqueue": 271, "set_weel": 271, "set_mous": 271, "set_mouse_click": 271, "get_app": 271, "rtcserver": 271, "genericmultidimensionalbuff": 271, "rawarraymultidimensionalbuff": 271, "sharedmemmultidimensionalbuff": 271, "genericcircularqueu": 271, "arraycircularqueu": 271, "sharedmemcircularqueu": 271, "intervaltimerthread": 271, "intervaltim": 271, "remove_shm_from_resource_track": 271, "check_port_is_avail": 271, "_tuple2ax": 271, "euler_matrix": 271, "sphere2cart": 271, "cart2spher": 271, "apply_transform": 271, "transform_from_matrix": 271, "textbox2d": [271, 283, 284, 286], "linedoubleslider2d": [271, 280], "clip_overflow": 271, "check_overflow": 271, "cal_bounding_box_2d": 271, "rotate_2d": 271, "set_input": 271, "numpy_to_vtk_point": 271, "numpy_to_vtk_color": 271, "numpy_to_vtk_cel": [271, 285], "map_coordinates_3d_4d": 271, "lines_to_vtk_polydata": 271, "get_polydata_lin": 271, "get_polydata_tcoord": 271, "get_polydata_norm": 271, "get_polydata_tang": 271, "get_polydata_field": 271, "add_polydata_numeric_field": 271, "set_polydata_primitives_count": 271, "get_polydata_primitives_count": 271, "primitives_count_to_actor": 271, "primitives_count_from_actor": 271, "set_polydata_norm": 271, "set_polydata_tang": 271, "set_polydata_tcoord": 271, "update_polydata_norm": 271, "apply_affine_to_actor": 271, "apply_affin": 271, "asbyt": 271, "vtk_matrix_to_numpi": 271, "numpy_to_vtk_matrix": 271, "get_bounding_box_s": 271, "get_grid_cells_posit": 271, "shallow_copi": 271, "rgb_to_vtk": 271, "normalize_v3": 271, "triangle_ord": 271, "change_vertices_ord": 271, "tangents_from_actor": 271, "array_from_actor": 271, "normals_to_actor": 271, "get_bound": 271, "color_check": 271, "analyze_scen": 271, "analyze_snapshot": 271, "enable_stereo": 271, "gl_get_current_st": 271, "gl_enable_blend": 271, "gl_set_additive_blending_white_background": 271, "release_context": 271, "186": [277, 280], "github_tool": [277, 287], "61": [277, 283], "nf": [277, 280, 281], "filterwarn": 277, "codaci": 277, "rank": 277, "47": [277, 285], "tensorsliceractor": 277, "enforc": 277, "enh": [277, 283, 285], "exercis": 277, "peaksliceractor": 277, "43": 277, "peaks_slic": [277, 283], "elementwis": 277, "crash": 277, "numpy_vtk": 277, "badg": 277, "honor": 277, "miniconda": [277, 279], "voxsz": 277, "vtk6": 277, "sphinx_galleri": 277, "master": [277, 280, 283, 287], "reorient": 277, "sierra": 277, "ananoda": 277, "164": [278, 280, 282], "github_stat": [278, 279, 280, 281, 282, 283, 284, 285, 286], "53": 278, "88": 278, "69": 278, "83": 278, "87": 278, "bot": 278, "67": 278, "62": 278, "x64": 278, "84": 278, "test_order_transpar": 278, "63": 278, "65": 278, "169": [279, 281], "109": 279, "112": 279, "110": 279, "107": 279, "106": 279, "104": [279, 280], "105": 279, "103": 279, "101": 279, "102": 279, "npt_assert_equ": 279, "97": 279, "92": 279, "96": 279, "153": 280, "227": 280, "210": 280, "225": 280, "223": 280, "218": 280, "220": 280, "213": [280, 286], "215": 280, "207": 280, "206": 280, "203": 280, "namanb009": 280, "windowtitlefix": 280, "204": 280, "190": 280, "201": 280, "181": 280, "192": 280, "189": 280, "182": 280, "177": 280, "191": 280, "173": 280, "165": 280, "154": 280, "sep": 280, "132": 280, "163": 280, "spell": 280, "157": 280, "145": 280, "144": 280, "restructuredtext": 280, "143": 280, "139": 280, "136": 280, "134": 280, "129": 280, "131": 280, "126": 280, "124": 280, "python2": 280, "pickl": 280, "events_count": 280, "serial": 280, "115": 280, "135": 280, "137": 280, "152": 280, "219": 280, "occur": 280, "217": 280, "179": 280, "212": 280, "133": 280, "214": 280, "211": [280, 284], "187": 280, "te": 280, "209": 280, "202": 280, "199": 280, "175": 280, "185": 280, "170": 280, "rhombi": 280, "171": 280, "156": 280, "155": 280, "122": 280, "193": 280, "178": 280, "188": 280, "166": [280, 286], "184": 280, "183": 280, "star2d": 280, "tests_primit": 280, "54": [280, 284], "174": 280, "108": 280, "172": 280, "151": 280, "162": 280, "168": 280, "158": 280, "71": 280, "expans": 280, "161": 280, "121": 280, "sha2": 280, "sha3": 280, "147": 280, "146": 280, "142": 280, "markdown": 280, "81": [280, 285], "117": 280, "123": 280, "119": 280, "266": 281, "241": 281, "265": 281, "262": 281, "263": 281, "127": 281, "233": 281, "261": 281, "249": 281, "258": 281, "ssl": 281, "certif": 281, "245": 281, "244": 281, "238": 281, "237": 281, "264": 281, "247": 281, "138": 281, "51": 281, "253": 281, "hang": 281, "254": 281, "251": 281, "226": 281, "197": 281, "216": 281, "utiltii": 281, "288": 282, "292": 282, "289": 282, "284": 282, "208": 282, "283": 282, "282": 282, "279": 282, "solarsystem": 282, "273": 282, "276": 282, "19th": 282, "juli": 282, "260": 282, "270": 282, "236": 282, "205": 282, "269": 282, "242": 282, "271": 282, "280": 282, "278": 282, "277": 282, "388": 283, "389": 283, "asymmetr": 283, "370": 283, "385": 283, "387": 283, "382": 283, "383": 283, "376": 283, "phenomena": 283, "374": 283, "373": 283, "368": 283, "343": 283, "353": 283, "346": 283, "351": 283, "modelsuzann": 283, "348": 283, "341": 283, "342": 283, "340": 283, "oauth": 283, "token": 283, "header": 283, "337": 283, "clip_overflow_text": 283, "336": 283, "334": 283, "332": 283, "328": 283, "329": 283, "319": 283, "311": 283, "python35": 283, "307": 283, "304": 283, "306": 283, "302": 283, "303": 283, "reader": 283, "bf": 283, "295": 283, "364": 283, "379": [283, 286], "361": 283, "352": 283, "372": 283, "369": 283, "363": 283, "366": 283, "357": 283, "vulner": [283, 284], "rce": [283, 284], "359": 283, "312": 283, "310": 283, "335": 283, "_opac": 283, "345": 283, "338": 283, "315": 283, "authent": 283, "308": 283, "309": 283, "333": 283, "32bit": 283, "239": 283, "318": 283, "313": 283, "274": 283, "297": 283, "298": 283, "466": 284, "bib": 284, "464": 284, "dan": 284, "459": 284, "430": 284, "456": 284, "455": 284, "bibtex": 284, "454": 284, "451": 284, "447": 284, "438": 284, "420": 284, "stochast": 284, "444": 284, "440": [284, 287], "356": 284, "436": 284, "434": 284, "426": 284, "vtkeventid": 284, "394": 284, "test_util": 284, "415": 284, "sk": 284, "orcid": 284, "413": 284, "nanohub": 284, "412": 284, "386": 284, "joss": 284, "371": 284, "408": 284, "parenthesi": 284, "406": 284, "unus": 284, "405": 284, "399": 284, "317": 284, "355": 284, "393": 284, "396": 284, "421": 284, "416": 284, "445": 284, "410": 284, "bulletlist": 284, "429": 284, "453": 284, "439": 284, "403": 284, "411": 284, "417": 284, "pep": [284, 287], "414": 284, "409": 284, "375": 284, "blacklist": 284, "danger": 284, "395": 284, "358": 284, "523": 285, "536": 285, "vtk_9_plu": 285, "535": 285, "532": 285, "503": 285, "534": 285, "update_user_matrix": 285, "509": 285, "507": 285, "524": 285, "521": 285, "518": 285, "519": 285, "515": 285, "516": 285, "514": 285, "513": 285, "mesa": [285, 286], "506": 285, "504": 285, "470": 285, "496": 285, "498": 285, "488": 285, "449": 285, "python3": [285, 287], "433": 285, "526": 285, "vtktextactor3d": 285, "431": 285, "457": 285, "468": 285, "467": 285, "505": 285, "512": 285, "flock": 285, "boid": 285, "511": 285, "404": 285, "469": 285, "324": 285, "1835": 286, "782": 286, "codespel": 286, "587": 286, "781": 286, "779": 286, "741": 286, "unneed": 286, "778": 286, "777": 286, "771": 286, "770": 286, "766": 286, "767": 286, "677": 286, "765": 286, "764": 286, "748": 286, "ex": 286, "754": 286, "760": 286, "fdata": 286, "761": 286, "762": 286, "get_data": 286, "756": 286, "747": 286, "744": 286, "710": 286, "734": 286, "736": 286, "727": 286, "478": 286, "502": 286, "739": 286, "tput": 286, "737": 286, "726": 286, "735": 286, "precommit": 286, "728": 286, "730": 286, "pyproject": 286, "toml": 286, "729": 286, "725": 286, "721": 286, "723": 286, "722": 286, "719": 286, "718": 286, "717": 286, "712": 286, "segfault": 286, "706": 286, "seg": 286, "697": 286, "693": 286, "699": 286, "698": 286, "667": 286, "686": 286, "684": 286, "691": 286, "683": 286, "682": 286, "681": 286, "672": 286, "675": 286, "676": 286, "671": 286, "670": 286, "666": 286, "669": 286, "620": 286, "663": 286, "656": 286, "662": 286, "654": 286, "659": 286, "655": 286, "648": 286, "649": 286, "646": 286, "641": 286, "644": 286, "638": 286, "639": 286, "gha": 286, "intervent": 286, "637": 286, "632": 286, "bugfix": [286, 287], "610": 286, "633": 286, "624": 286, "625": 286, "622": 286, "619": 286, "611": 286, "614": 286, "615": 286, "607": 286, "606": 286, "608": 286, "605": 286, "week1": 286, "501": 286, "off_focu": 286, "601": 286, "593": 286, "arraysequ": 286, "581": 286, "595": 286, "589": 286, "586": 286, "590": 286, "584": 286, "582": 286, "580": 286, "574": 286, "561": 286, "577": 286, "570": 286, "569": 286, "572": 286, "571": 286, "567": 286, "theme": 286, "566": 286, "footer": 286, "551": 286, "ac": 286, "565": 286, "563": 286, "564": 286, "557": 286, "544": 286, "542": 286, "nearli": 286, "537": 286, "713": 286, "pydata": 286, "776": 286, "732": 286, "772": 286, "82": 286, "354": 286, "grammat": 286, "708": 286, "745": 286, "743": 286, "709": 286, "463": 286, "738": 286, "664": 286, "642": 286, "316": 286, "714": 286, "upsidedown": 286, "716": 286, "603": 286, "705": 286, "stress": 286, "435": 286, "rtmp": 286, "704": 286, "419": 286, "htc": 286, "vive": 286, "657": 286, "618": 286, "418": 286, "553": 286, "588": 286, "596": 286, "585": 286, "vtkbillboardtextactor": 286, "546": 286, "528": 286, "529": 286, "530": 286, "test_materi": 286, "554": 286, "573": 286, "541": 286, "548": 286, "549": 286, "helica": 286, "greatli": 287, "appreci": 287, "troubleshoot": 287, "reproduc": [287, 288], "whoever": 287, "pep8": 287, "narrow": 287, "volunt": 287, "your_name_her": 287, "remot": 287, "checkout": 287, "unittest": 287, "flake8": 287, "virtualenv": 287, "pypi": 287, "outstand": 287, "shortlog": 287, "nse": 287, "mailmap": 287, "release0": 287, "release_not": 287, "autom": 287, "cd": 287, "histori": 287, "uncommit": 287, "skim": 287, "vx": 287, "forget": 287, "strongli": 287, "editor": 287, "incident": [287, 288], "resum": 287, "g58ad5f7": 287, "58ad5f7": 287, "letter": 287, "twine": 287, "upload": 287, "extran": 287, "dfx": 287, "sdist": 287, "bdist_wheel": 287, "substanti": 287, "trunk": 287, "maint": 287, "upstream": 287, "rw": 287, "strategi": 287, "spuriou": 287, "fear": 287, "trembl": 287, "reserv": 288, "redistribut": 288, "disclaim": 288, "neither": 288, "endors": 288, "permiss": 288, "BY": 288, "THE": 288, "holder": 288, "AND": 288, "AS": 288, "OR": 288, "warranti": 288, "BUT": 288, "TO": 288, "merchant": 288, "FOR": 288, "NO": 288, "BE": 288, "liabl": 288, "indirect": 288, "exemplari": 288, "consequenti": 288, "damag": 288, "procur": 288, "servic": 288, "loss": 288, "profit": 288, "interrupt": 288, "ON": 288, "liabil": 288, "contract": 288, "tort": 288, "neglig": 288, "IF": 288, "SUCH": 288}, "objects": {"": [[247, 0, 0, "-", "fury"]], "fury": [[248, 0, 0, "-", "actor"], [249, 0, 0, "-", "actors"], [250, 0, 0, "-", "animation"], [251, 0, 0, "-", "colormap"], [252, 0, 0, "-", "convert"], [253, 0, 0, "-", "data"], [254, 0, 0, "-", "decorators"], [255, 0, 0, "-", "deprecator"], [247, 5, 1, "", "disable_warnings"], [247, 5, 1, "", "enable_warnings"], [247, 5, 1, "", "get_info"], [256, 0, 0, "-", "gltf"], [257, 0, 0, "-", "io"], [258, 0, 0, "-", "layout"], [259, 0, 0, "-", "lib"], [260, 0, 0, "-", "material"], [261, 0, 0, "-", "molecular"], [262, 0, 0, "-", "pick"], [263, 0, 0, "-", "pkg_info"], [264, 0, 0, "-", "primitive"], [265, 0, 0, "-", "shaders"], [266, 0, 0, "-", "stream"], [267, 0, 0, "-", "transform"], [268, 0, 0, "-", "ui"], [269, 0, 0, "-", "utils"], [270, 0, 0, "-", "window"]], "fury.actor": [[248, 1, 1, "", "Container"], [248, 5, 1, "", "arrow"], [248, 5, 1, "", "axes"], [248, 5, 1, "", "billboard"], [248, 5, 1, "", "box"], [248, 5, 1, "", "cone"], [248, 5, 1, "", "contour_from_label"], [248, 5, 1, "", "contour_from_roi"], [248, 5, 1, "", "cube"], [248, 5, 1, "", "cylinder"], [248, 5, 1, "", "disk"], [248, 5, 1, "", "dot"], [248, 5, 1, "", "dots"], [248, 5, 1, "", "ellipsoid"], [248, 5, 1, "", "figure"], [248, 5, 1, "", "frustum"], [248, 5, 1, "", "grid"], [248, 5, 1, "", "label"], [248, 5, 1, "", "line"], [248, 5, 1, "", "markers"], [248, 5, 1, "", "octagonalprism"], [248, 5, 1, "", "odf_slicer"], [248, 5, 1, "", "peak"], [248, 5, 1, "", "peak_slicer"], [248, 5, 1, "", "pentagonalprism"], [248, 5, 1, "", "point"], [248, 5, 1, "", "rectangle"], [248, 5, 1, "", "rhombicuboctahedron"], [248, 5, 1, "", "scalar_bar"], [248, 5, 1, "", "sdf"], [248, 5, 1, "", "slicer"], [248, 5, 1, "", "sphere"], [248, 5, 1, "", "square"], [248, 5, 1, "", "streamtube"], [248, 5, 1, "", "superquadric"], [248, 5, 1, "", "surface"], [248, 5, 1, "", "tensor_slicer"], [248, 5, 1, "", "text_3d"], [248, 5, 1, "", "texture"], [248, 5, 1, "", "texture_2d"], [248, 5, 1, "", "texture_on_sphere"], [248, 5, 1, "", "texture_update"], [248, 5, 1, "", "triangularprism"], [248, 5, 1, "", "vector_text"]], "fury.actor.Container": [[248, 2, 1, "", "AddPosition"], [248, 2, 1, "", "GetBounds"], [248, 2, 1, "", "GetCenter"], [248, 2, 1, "", "GetLength"], [248, 2, 1, "", "GetPosition"], [248, 2, 1, "", "GetVisibility"], [248, 2, 1, "", "NewInstance"], [248, 2, 1, "", "SetPosition"], [248, 2, 1, "", "SetVisibility"], [248, 2, 1, "", "ShallowCopy"], [248, 2, 1, "", "__init__"], [248, 2, 1, "", "add"], [248, 2, 1, "", "add_to_scene"], [248, 3, 1, "", "anchor"], [248, 2, 1, "", "clear"], [248, 4, 1, "", "items"], [248, 3, 1, "", "padding"], [248, 2, 1, "", "remove_from_scene"], [248, 2, 1, "", "update"]], "fury.actors": [[249, 0, 0, "-", "odf_slicer"], [249, 0, 0, "-", "peak"], [249, 0, 0, "-", "tensor"]], "fury.actors.odf_slicer": [[249, 1, 1, "", "OdfSlicerActor"]], "fury.actors.odf_slicer.OdfSlicerActor": [[249, 2, 1, "", "__init__"], [249, 2, 1, "", "display"], [249, 2, 1, "", "display_extent"], [249, 2, 1, "", "set_opacity"], [249, 2, 1, "", "slice_along_axis"], [249, 2, 1, "", "update_sphere"]], "fury.actors.peak": [[249, 1, 1, "", "PeakActor"]], "fury.actors.peak.PeakActor": [[249, 2, 1, "", "__init__"], [249, 4, 1, "", "cross_section"], [249, 2, 1, "", "display_cross_section"], [249, 2, 1, "", "display_extent"], [249, 4, 1, "", "global_opacity"], [249, 4, 1, "", "high_ranges"], [249, 4, 1, "", "is_range"], [249, 4, 1, "", "linewidth"], [249, 4, 1, "", "low_ranges"], [249, 4, 1, "", "max_centers"], [249, 4, 1, "", "min_centers"]], "fury.actors.tensor": [[249, 5, 1, "", "tensor_ellipsoid"]], "fury.animation": [[250, 0, 0, "-", "animation"], [250, 0, 0, "-", "helpers"], [250, 0, 0, "-", "interpolator"], [250, 0, 0, "-", "timeline"]], "fury.animation.animation": [[250, 1, 1, "", "Animation"], [250, 1, 1, "", "CameraAnimation"]], "fury.animation.animation.Animation": [[250, 2, 1, "", "__init__"], [250, 4, 1, "id0", "actors"], [250, 2, 1, "", "add"], [250, 2, 1, "", "add_actor"], [250, 2, 1, "", "add_child_animation"], [250, 2, 1, "", "add_static_actor"], [250, 2, 1, "", "add_to_scene"], [250, 2, 1, "", "add_to_scene_at"], [250, 2, 1, "", "add_update_callback"], [250, 4, 1, "", "child_animations"], [250, 4, 1, "", "current_timestamp"], [250, 4, 1, "", "duration"], [250, 2, 1, "", "get_color"], [250, 2, 1, "", "get_current_value"], [250, 2, 1, "", "get_keyframes"], [250, 2, 1, "", "get_opacity"], [250, 2, 1, "", "get_position"], [250, 2, 1, "", "get_rotation"], [250, 2, 1, "", "get_scale"], [250, 2, 1, "", "get_value"], [250, 2, 1, "", "is_inside_scene_at"], [250, 2, 1, "", "is_interpolatable"], [250, 3, 1, "", "length"], [250, 4, 1, "id2", "loop"], [250, 3, 1, "", "motion_path_res"], [250, 4, 1, "", "parent_animation"], [250, 2, 1, "", "remove_actor"], [250, 2, 1, "", "remove_actors"], [250, 2, 1, "", "remove_animations"], [250, 2, 1, "", "remove_from_scene"], [250, 2, 1, "", "remove_from_scene_at"], [250, 2, 1, "", "set_color"], [250, 2, 1, "", "set_color_interpolator"], [250, 2, 1, "", "set_color_keyframes"], [250, 2, 1, "", "set_interpolator"], [250, 2, 1, "", "set_keyframe"], [250, 2, 1, "", "set_keyframes"], [250, 2, 1, "", "set_opacity"], [250, 2, 1, "", "set_opacity_interpolator"], [250, 2, 1, "", "set_opacity_keyframes"], [250, 2, 1, "", "set_position"], [250, 2, 1, "", "set_position_interpolator"], [250, 2, 1, "", "set_position_keyframes"], [250, 2, 1, "", "set_rotation"], [250, 2, 1, "", "set_rotation_as_vector"], [250, 2, 1, "", "set_rotation_interpolator"], [250, 2, 1, "", "set_scale"], [250, 2, 1, "", "set_scale_interpolator"], [250, 2, 1, "", "set_scale_keyframes"], [250, 4, 1, "", "static_actors"], [250, 4, 1, "", "timeline"], [250, 2, 1, "", "update_animation"], [250, 2, 1, "", "update_duration"], [250, 2, 1, "", "update_motion_path"]], "fury.animation.animation.CameraAnimation": [[250, 2, 1, "", "__init__"], [250, 4, 1, "id3", "camera"], [250, 2, 1, "", "get_focal"], [250, 2, 1, "", "get_view_up"], [250, 3, 1, "", "length"], [250, 3, 1, "", "loop"], [250, 3, 1, "", "motion_path_res"], [250, 2, 1, "", "set_focal"], [250, 2, 1, "", "set_focal_interpolator"], [250, 2, 1, "", "set_focal_keyframes"], [250, 2, 1, "", "set_view_up"], [250, 2, 1, "", "set_view_up_interpolator"], [250, 2, 1, "", "set_view_up_keyframes"], [250, 2, 1, "", "update_animation"]], "fury.animation.helpers": [[250, 5, 1, "", "euclidean_distances"], [250, 5, 1, "", "get_next_timestamp"], [250, 5, 1, "", "get_previous_timestamp"], [250, 5, 1, "", "get_time_tau"], [250, 5, 1, "", "get_timestamps_from_keyframes"], [250, 5, 1, "", "get_values_from_keyframes"], [250, 5, 1, "", "lerp"]], "fury.animation.interpolator": [[250, 5, 1, "", "color_interpolator"], [250, 5, 1, "", "cubic_bezier_interpolator"], [250, 5, 1, "", "cubic_spline_interpolator"], [250, 5, 1, "", "hsv_color_interpolator"], [250, 5, 1, "", "lab_color_interpolator"], [250, 5, 1, "", "linear_interpolator"], [250, 5, 1, "", "slerp"], [250, 5, 1, "", "spline_interpolator"], [250, 5, 1, "", "step_interpolator"], [250, 5, 1, "", "tan_cubic_spline_interpolator"], [250, 5, 1, "", "xyz_color_interpolator"]], "fury.animation.timeline": [[250, 1, 1, "", "Timeline"]], "fury.animation.timeline.Timeline": [[250, 2, 1, "", "__init__"], [250, 2, 1, "", "add_animation"], [250, 2, 1, "", "add_to_scene"], [250, 4, 1, "id4", "animations"], [250, 4, 1, "", "current_timestamp"], [250, 4, 1, "", "duration"], [250, 4, 1, "", "has_playback_panel"], [250, 3, 1, "", "length"], [250, 4, 1, "id5", "loop"], [250, 2, 1, "", "pause"], [250, 4, 1, "", "paused"], [250, 2, 1, "", "play"], [250, 3, 1, "", "playback_panel"], [250, 4, 1, "", "playing"], [250, 2, 1, "", "record"], [250, 2, 1, "", "remove_from_scene"], [250, 2, 1, "", "restart"], [250, 2, 1, "", "seek"], [250, 2, 1, "", "seek_percent"], [250, 4, 1, "", "speed"], [250, 2, 1, "", "stop"], [250, 4, 1, "", "stopped"], [250, 2, 1, "", "update"], [250, 2, 1, "", "update_duration"]], "fury.colormap": [[251, 3, 1, "id0", "T"], [251, 3, 1, "id15", "base"], [251, 5, 1, "", "boys2rgb"], [251, 5, 1, "", "cc"], [251, 5, 1, "", "colormap_lookup_table"], [251, 5, 1, "", "create_colormap"], [251, 3, 1, "id14", "ctypes"], [251, 3, 1, "id2", "data"], [251, 5, 1, "", "distinguishable_colormap"], [251, 3, 1, "id3", "dtype"], [251, 3, 1, "id4", "flags"], [251, 3, 1, "id5", "flat"], [251, 5, 1, "", "get_cmap"], [251, 5, 1, "", "get_xyz_coords"], [251, 5, 1, "", "hex_to_rgb"], [251, 5, 1, "", "hsv2rgb"], [251, 3, 1, "id6", "imag"], [251, 3, 1, "id9", "itemsize"], [251, 5, 1, "", "lab2rgb"], [251, 5, 1, "", "lab2xyz"], [251, 5, 1, "", "line_colors"], [251, 3, 1, "id10", "nbytes"], [251, 3, 1, "id11", "ndim"], [251, 5, 1, "", "orient2rgb"], [251, 3, 1, "id7", "real"], [251, 5, 1, "", "rgb2hsv"], [251, 5, 1, "", "rgb2lab"], [251, 5, 1, "", "rgb2xyz"], [251, 5, 1, "", "rgb_from_xyz"], [251, 3, 1, "id12", "shape"], [251, 3, 1, "id8", "size"], [251, 5, 1, "", "ss"], [251, 3, 1, "id13", "strides"], [251, 5, 1, "", "xyz2lab"], [251, 5, 1, "", "xyz2rgb"], [251, 5, 1, "", "xyz_from_rgb"]], "fury.convert": [[252, 5, 1, "", "matplotlib_figure_to_numpy"]], "fury.data": [[253, 5, 1, "", "DATA_DIR"], [253, 0, 0, "-", "fetcher"]], "fury.data.fetcher": [[253, 5, 1, "", "check_sha"], [253, 5, 1, "", "copyfileobj_withprogress"], [253, 5, 1, "", "fetch_data"], [253, 5, 1, "", "fetch_gltf"], [253, 5, 1, "", "fetch_viz_cubemaps"], [253, 5, 1, "", "fetch_viz_dmri"], [253, 5, 1, "", "fetch_viz_icons"], [253, 5, 1, "", "fetch_viz_models"], [253, 5, 1, "", "fetch_viz_new_icons"], [253, 5, 1, "", "fetch_viz_textures"], [253, 5, 1, "", "fetch_viz_wiki_nw"], [253, 5, 1, "", "list_gltf_sample_models"], [253, 5, 1, "", "read_viz_cubemap"], [253, 5, 1, "", "read_viz_dmri"], [253, 5, 1, "", "read_viz_gltf"], [253, 5, 1, "", "read_viz_icons"], [253, 5, 1, "", "read_viz_models"], [253, 5, 1, "", "read_viz_textures"], [253, 5, 1, "", "update_progressbar"]], "fury.decorators": [[254, 5, 1, "", "SKIP_RE"], [254, 5, 1, "", "doctest_skip_parser"]], "fury.deprecator": [[255, 1, 1, "", "ArgsDeprecationWarning"], [255, 1, 1, "", "ExpiredDeprecationError"], [255, 5, 1, "", "_LEADING_WHITE"], [255, 5, 1, "", "cmp_pkg_version"], [255, 5, 1, "", "deprecate_with_version"], [255, 5, 1, "", "deprecated_params"], [255, 5, 1, "", "is_bad_version"]], "fury.deprecator.ArgsDeprecationWarning": [[255, 2, 1, "", "__init__"]], "fury.deprecator.ExpiredDeprecationError": [[255, 2, 1, "", "__init__"]], "fury.gltf": [[256, 5, 1, "", "export_scene"], [256, 5, 1, "", "get_prim"], [256, 1, 1, "", "glTF"], [256, 5, 1, "", "write_accessor"], [256, 5, 1, "", "write_buffer"], [256, 5, 1, "", "write_bufferview"], [256, 5, 1, "", "write_camera"], [256, 5, 1, "", "write_material"], [256, 5, 1, "", "write_mesh"], [256, 5, 1, "", "write_node"], [256, 5, 1, "", "write_scene"]], "fury.gltf.glTF": [[256, 2, 1, "", "__init__"], [256, 2, 1, "", "actors"], [256, 2, 1, "", "apply_morph_vertices"], [256, 2, 1, "", "apply_skin_matrix"], [256, 2, 1, "", "generate_tmatrix"], [256, 2, 1, "", "get_acc_data"], [256, 2, 1, "", "get_animations"], [256, 2, 1, "", "get_buff_array"], [256, 2, 1, "", "get_joint_actors"], [256, 2, 1, "", "get_materials"], [256, 2, 1, "", "get_matrix_from_sampler"], [256, 2, 1, "", "get_morph_data"], [256, 2, 1, "", "get_sampler_data"], [256, 2, 1, "", "get_skin_data"], [256, 2, 1, "", "get_texture"], [256, 2, 1, "", "initialize_skin"], [256, 2, 1, "", "inspect_scene"], [256, 2, 1, "", "load_camera"], [256, 2, 1, "", "load_mesh"], [256, 2, 1, "", "main_animation"], [256, 2, 1, "", "morph_animation"], [256, 2, 1, "", "skin_animation"], [256, 2, 1, "", "transverse_animations"], [256, 2, 1, "", "transverse_bones"], [256, 2, 1, "", "transverse_channels"], [256, 2, 1, "", "transverse_node"], [256, 2, 1, "", "update_morph"], [256, 2, 1, "", "update_skin"]], "fury.io": [[257, 5, 1, "", "load_cubemap_texture"], [257, 5, 1, "", "load_image"], [257, 5, 1, "", "load_polydata"], [257, 5, 1, "", "load_sprite_sheet"], [257, 5, 1, "", "load_text"], [257, 5, 1, "", "save_image"], [257, 5, 1, "", "save_polydata"]], "fury.layout": [[258, 1, 1, "", "GridLayout"], [258, 1, 1, "", "HorizontalLayout"], [258, 1, 1, "", "Layout"], [258, 1, 1, "", "VerticalLayout"], [258, 1, 1, "", "XLayout"], [258, 1, 1, "", "YLayout"], [258, 1, 1, "", "ZLayout"]], "fury.layout.GridLayout": [[258, 2, 1, "", "__init__"], [258, 2, 1, "", "compute_positions"], [258, 2, 1, "", "compute_sizes"], [258, 2, 1, "", "get_cells_shape"]], "fury.layout.HorizontalLayout": [[258, 2, 1, "", "__init__"], [258, 2, 1, "", "compute_positions"]], "fury.layout.Layout": [[258, 2, 1, "", "__init__"], [258, 2, 1, "", "apply"], [258, 2, 1, "", "compute_positions"]], "fury.layout.VerticalLayout": [[258, 2, 1, "", "__init__"], [258, 2, 1, "", "compute_positions"]], "fury.layout.XLayout": [[258, 2, 1, "", "__init__"], [258, 2, 1, "", "apply"], [258, 2, 1, "", "compute_positions"], [258, 2, 1, "", "get_cells_shape"]], "fury.layout.YLayout": [[258, 2, 1, "", "__init__"], [258, 2, 1, "", "apply"], [258, 2, 1, "", "compute_positions"], [258, 2, 1, "", "get_cells_shape"]], "fury.layout.ZLayout": [[258, 2, 1, "", "__init__"], [258, 2, 1, "", "apply"], [258, 2, 1, "", "compute_positions"], [258, 2, 1, "", "get_cells_shape"]], "fury.lib": [[259, 3, 1, "", "Actor"], [259, 3, 1, "", "Actor2D"], [259, 3, 1, "", "AlgorithmOutput"], [259, 3, 1, "", "ArrowSource"], [259, 3, 1, "", "Assembly"], [259, 3, 1, "", "BMPReader"], [259, 3, 1, "", "BMPWriter"], [259, 3, 1, "", "ButterflySubdivisionFilter"], [259, 3, 1, "", "Camera"], [259, 3, 1, "", "CellArray"], [259, 3, 1, "", "CellPicker"], [259, 3, 1, "", "CleanPolyData"], [259, 3, 1, "", "Command"], [259, 3, 1, "", "ConeSource"], [259, 3, 1, "", "ContourFilter"], [259, 3, 1, "", "CylinderSource"], [259, 3, 1, "id0", "DataObject"], [259, 3, 1, "", "DataSetAttributes"], [259, 3, 1, "", "DataSetMapper"], [259, 3, 1, "", "DiskSource"], [259, 3, 1, "", "DoubleArray"], [259, 3, 1, "", "FloatArray"], [259, 3, 1, "", "Follower"], [259, 3, 1, "", "Glyph3D"], [259, 3, 1, "", "HardwareSelector"], [259, 3, 1, "", "IdTypeArray"], [259, 3, 1, "", "ImageActor"], [259, 3, 1, "", "ImageData"], [259, 3, 1, "", "ImageFlip"], [259, 3, 1, "", "ImageMapToColors"], [259, 3, 1, "", "ImageReader2Factory"], [259, 3, 1, "", "ImageReslice"], [259, 3, 1, "", "InteractorEventRecorder"], [259, 3, 1, "", "InteractorStyle"], [259, 3, 1, "", "InteractorStyleImage"], [259, 3, 1, "", "InteractorStyleTrackballActor"], [259, 3, 1, "", "InteractorStyleTrackballCamera"], [259, 3, 1, "", "InteractorStyleUser"], [259, 3, 1, "", "JPEGReader"], [259, 3, 1, "", "JPEGWriter"], [259, 3, 1, "", "LODActor"], [259, 3, 1, "", "LinearExtrusionFilter"], [259, 3, 1, "", "LookupTable"], [259, 3, 1, "", "LoopSubdivisionFilter"], [259, 3, 1, "", "MNIObjectReader"], [259, 3, 1, "", "MNIObjectWriter"], [259, 3, 1, "", "Matrix3x3"], [259, 3, 1, "", "Matrix4x4"], [259, 3, 1, "", "Molecule"], [259, 3, 1, "", "OBJReader"], [259, 3, 1, "", "OpenGLMoleculeMapper"], [259, 3, 1, "", "OpenGLRenderer"], [259, 3, 1, "", "OutlineFilter"], [259, 3, 1, "", "PLYReader"], [259, 3, 1, "", "PLYWriter"], [259, 3, 1, "", "PNGReader"], [259, 3, 1, "", "PNGWriter"], [259, 3, 1, "", "PeriodicTable"], [259, 3, 1, "", "PointPicker"], [259, 3, 1, "", "Points"], [259, 3, 1, "", "PolyData"], [259, 3, 1, "", "PolyDataMapper"], [259, 3, 1, "", "PolyDataMapper2D"], [259, 3, 1, "", "PolyDataNormals"], [259, 3, 1, "", "PolyDataReader"], [259, 3, 1, "", "PolyDataWriter"], [259, 3, 1, "", "PolyVertex"], [259, 3, 1, "", "Polygon"], [259, 3, 1, "", "PropPicker"], [259, 3, 1, "", "Property2D"], [259, 3, 1, "", "ProteinRibbonFilter"], [259, 3, 1, "", "RegularPolygonSource"], [259, 3, 1, "", "RenderLargeImage"], [259, 3, 1, "", "RenderWindow"], [259, 3, 1, "", "RenderWindowInteractor"], [259, 3, 1, "", "Renderer"], [259, 3, 1, "", "STLReader"], [259, 3, 1, "", "STLWriter"], [259, 3, 1, "", "ScalarBarActor"], [259, 3, 1, "", "Shader"], [259, 3, 1, "", "SimpleBondPerceiver"], [259, 3, 1, "", "Skybox"], [259, 3, 1, "", "SphereSource"], [259, 3, 1, "", "SplineFilter"], [259, 3, 1, "", "StringArray"], [259, 3, 1, "", "TIFFReader"], [259, 3, 1, "", "TIFFWriter"], [259, 3, 1, "", "TextActor"], [259, 3, 1, "", "TextActor3D"], [259, 3, 1, "", "Texture"], [259, 3, 1, "", "TextureMapToPlane"], [259, 3, 1, "", "TexturedActor2D"], [259, 3, 1, "", "TexturedSphereSource"], [259, 3, 1, "", "Transform"], [259, 3, 1, "", "TransformPolyDataFilter"], [259, 3, 1, "", "TriangleFilter"], [259, 3, 1, "", "TubeFilter"], [259, 3, 1, "", "UnsignedCharArray"], [259, 3, 1, "", "UnstructuredGrid"], [259, 5, 1, "", "VTK_VERSION"], [259, 3, 1, "", "VectorText"], [259, 3, 1, "", "Volume"], [259, 3, 1, "", "WindowToImageFilter"], [259, 3, 1, "", "WorldPointPicker"], [259, 3, 1, "", "XMLPolyDataReader"], [259, 3, 1, "", "XMLPolyDataWriter"]], "fury.material": [[260, 5, 1, "", "manifest_pbr"], [260, 5, 1, "", "manifest_principled"], [260, 5, 1, "", "manifest_standard"]], "fury.molecular": [[261, 1, 1, "", "Molecule"], [261, 1, 1, "", "PTable"], [261, 5, 1, "", "add_atom"], [261, 5, 1, "", "add_bond"], [261, 5, 1, "", "ball_stick"], [261, 5, 1, "", "bounding_box"], [261, 5, 1, "", "compute_bonding"], [261, 5, 1, "", "deep_copy_molecule"], [261, 5, 1, "", "get_all_atomic_numbers"], [261, 5, 1, "", "get_all_atomic_positions"], [261, 5, 1, "", "get_all_bond_orders"], [261, 5, 1, "", "get_atomic_number"], [261, 5, 1, "", "get_atomic_position"], [261, 5, 1, "", "get_bond_order"], [261, 5, 1, "", "ribbon"], [261, 5, 1, "", "set_atomic_number"], [261, 5, 1, "", "set_atomic_position"], [261, 5, 1, "", "set_bond_order"], [261, 5, 1, "", "sphere_cpk"], [261, 5, 1, "", "stick"]], "fury.molecular.Molecule": [[261, 2, 1, "", "__init__"], [261, 4, 1, "", "total_num_atoms"], [261, 4, 1, "", "total_num_bonds"]], "fury.molecular.PTable": [[261, 2, 1, "", "__init__"], [261, 2, 1, "", "atom_color"], [261, 2, 1, "", "atomic_number"], [261, 2, 1, "", "atomic_radius"], [261, 2, 1, "", "atomic_symbol"], [261, 2, 1, "", "element_name"]], "fury.pick": [[262, 1, 1, "", "PickingManager"], [262, 1, 1, "", "SelectionManager"]], "fury.pick.PickingManager": [[262, 2, 1, "", "__init__"], [262, 2, 1, "", "event_position"], [262, 2, 1, "", "pick"], [262, 2, 1, "", "pickable_off"], [262, 2, 1, "", "pickable_on"]], "fury.pick.SelectionManager": [[262, 2, 1, "", "__init__"], [262, 2, 1, "", "event_position"], [262, 2, 1, "id0", "pick"], [262, 2, 1, "id1", "select"], [262, 2, 1, "", "selectable_off"], [262, 2, 1, "", "selectable_on"], [262, 2, 1, "", "update_selection_type"]], "fury.pkg_info": [[263, 5, 1, "", "pkg_commit_hash"]], "fury.primitive": [[264, 5, 1, "", "faces_from_sphere_vertices"], [264, 5, 1, "", "prim_arrow"], [264, 5, 1, "", "prim_box"], [264, 5, 1, "", "prim_cone"], [264, 5, 1, "", "prim_cylinder"], [264, 5, 1, "", "prim_frustum"], [264, 5, 1, "", "prim_icosahedron"], [264, 5, 1, "", "prim_octagonalprism"], [264, 5, 1, "", "prim_pentagonalprism"], [264, 5, 1, "", "prim_rhombicuboctahedron"], [264, 5, 1, "", "prim_sphere"], [264, 5, 1, "", "prim_square"], [264, 5, 1, "", "prim_star"], [264, 5, 1, "", "prim_superquadric"], [264, 5, 1, "", "prim_tetrahedron"], [264, 5, 1, "", "prim_triangularprism"], [264, 5, 1, "", "repeat_primitive"], [264, 5, 1, "", "repeat_primitive_function"]], "fury.shaders": [[265, 0, 0, "-", "base"]], "fury.shaders.base": [[265, 5, 1, "", "SHADERS_DIR"], [265, 5, 1, "", "add_shader_callback"], [265, 5, 1, "", "attribute_to_actor"], [265, 5, 1, "", "compose_shader"], [265, 5, 1, "", "import_fury_shader"], [265, 5, 1, "", "load"], [265, 5, 1, "", "load_shader"], [265, 5, 1, "", "replace_shader_in_actor"], [265, 5, 1, "", "shader_apply_effects"], [265, 5, 1, "", "shader_to_actor"]], "fury.stream": [[266, 0, 0, "-", "client"], [266, 0, 0, "-", "constants"], [266, 0, 0, "-", "server"], [266, 0, 0, "-", "tools"], [266, 0, 0, "-", "widget"]], "fury.stream.client": [[266, 1, 1, "", "FuryStreamClient"], [266, 1, 1, "", "FuryStreamInteraction"], [266, 5, 1, "", "callback_stream_client"], [266, 5, 1, "", "interaction_callback"]], "fury.stream.client.FuryStreamClient": [[266, 2, 1, "", "__init__"], [266, 2, 1, "", "cleanup"], [266, 2, 1, "", "start"], [266, 2, 1, "", "stop"]], "fury.stream.client.FuryStreamInteraction": [[266, 2, 1, "", "__init__"], [266, 2, 1, "", "cleanup"], [266, 2, 1, "", "start"], [266, 2, 1, "", "stop"]], "fury.stream.constants": [[266, 5, 1, "", "_CQUEUE"], [266, 5, 1, "", "_CQUEUE_EVENT_IDs"], [266, 5, 1, "", "_CQUEUE_INDEX_INFO"]], "fury.stream.server": [[266, 0, 0, "-", "async_app"], [266, 0, 0, "-", "main"]], "fury.stream.server.async_app": [[266, 5, 1, "", "get_app"], [266, 5, 1, "", "pcs"], [266, 5, 1, "", "set_mouse"], [266, 5, 1, "", "set_mouse_click"], [266, 5, 1, "", "set_weel"]], "fury.stream.server.main": [[266, 1, 1, "", "RTCServer"], [266, 5, 1, "", "web_server"], [266, 5, 1, "", "web_server_raw_array"]], "fury.stream.server.main.RTCServer": [[266, 2, 1, "", "__init__"], [266, 2, 1, "", "recv"], [266, 2, 1, "", "release"]], "fury.stream.tools": [[266, 1, 1, "", "ArrayCircularQueue"], [266, 1, 1, "", "GenericCircularQueue"], [266, 1, 1, "", "GenericImageBufferManager"], [266, 1, 1, "", "GenericMultiDimensionalBuffer"], [266, 1, 1, "", "IntervalTimer"], [266, 1, 1, "", "IntervalTimerThreading"], [266, 1, 1, "", "RawArrayImageBufferManager"], [266, 1, 1, "", "RawArrayMultiDimensionalBuffer"], [266, 1, 1, "", "SharedMemCircularQueue"], [266, 1, 1, "", "SharedMemImageBufferManager"], [266, 1, 1, "", "SharedMemMultiDimensionalBuffer"], [266, 5, 1, "", "remove_shm_from_resource_tracker"]], "fury.stream.tools.ArrayCircularQueue": [[266, 2, 1, "", "__init__"], [266, 2, 1, "", "cleanup"], [266, 2, 1, "", "create_mem_resource"], [266, 2, 1, "", "dequeue"], [266, 2, 1, "", "enqueue"], [266, 2, 1, "", "load_mem_resource"]], "fury.stream.tools.GenericCircularQueue": [[266, 2, 1, "", "__init__"], [266, 2, 1, "", "cleanup"], [266, 2, 1, "", "create_mem_resource"], [266, 2, 1, "", "dequeue"], [266, 2, 1, "", "enqueue"], [266, 4, 1, "", "head"], [266, 2, 1, "", "load_mem_resource"], [266, 2, 1, "", "set_head_tail"], [266, 4, 1, "", "tail"]], "fury.stream.tools.GenericImageBufferManager": [[266, 2, 1, "", "__init__"], [266, 2, 1, "", "async_get_jpeg"], [266, 4, 1, "", "buffer_index"], [266, 2, 1, "", "cleanup"], [266, 2, 1, "", "create_mem_resource"], [266, 2, 1, "", "get_current_frame"], [266, 2, 1, "", "get_jpeg"], [266, 2, 1, "", "load_mem_resource"], [266, 4, 1, "", "next_buffer_index"], [266, 2, 1, "", "write_into"]], "fury.stream.tools.GenericMultiDimensionalBuffer": [[266, 2, 1, "", "__init__"], [266, 4, 1, "", "buffer"], [266, 2, 1, "", "cleanup"], [266, 2, 1, "", "create_mem_resource"], [266, 2, 1, "", "get_start_end"], [266, 2, 1, "", "load_mem_resource"]], "fury.stream.tools.IntervalTimer": [[266, 2, 1, "", "__init__"], [266, 2, 1, "", "start"], [266, 2, 1, "", "stop"]], "fury.stream.tools.IntervalTimerThreading": [[266, 2, 1, "", "__init__"], [266, 2, 1, "", "start"], [266, 2, 1, "", "stop"]], "fury.stream.tools.RawArrayImageBufferManager": [[266, 2, 1, "", "__init__"], [266, 2, 1, "", "cleanup"], [266, 2, 1, "", "create_mem_resource"], [266, 2, 1, "", "load_mem_resource"]], "fury.stream.tools.RawArrayMultiDimensionalBuffer": [[266, 2, 1, "", "__init__"], [266, 2, 1, "", "cleanup"], [266, 2, 1, "", "create_mem_resource"], [266, 2, 1, "", "load_mem_resource"]], "fury.stream.tools.SharedMemCircularQueue": [[266, 2, 1, "", "__init__"], [266, 2, 1, "", "cleanup"], [266, 2, 1, "", "create_mem_resource"], [266, 2, 1, "", "dequeue"], [266, 2, 1, "", "enqueue"], [266, 2, 1, "", "is_unlocked"], [266, 2, 1, "", "load_mem_resource"], [266, 2, 1, "", "lock"], [266, 2, 1, "", "unlock"]], "fury.stream.tools.SharedMemImageBufferManager": [[266, 2, 1, "", "__init__"], [266, 2, 1, "", "cleanup"], [266, 2, 1, "", "create_mem_resource"], [266, 2, 1, "", "load_mem_resource"]], "fury.stream.tools.SharedMemMultiDimensionalBuffer": [[266, 2, 1, "", "__init__"], [266, 2, 1, "", "cleanup"], [266, 2, 1, "", "create_mem_resource"], [266, 2, 1, "", "load_mem_resource"]], "fury.stream.widget": [[266, 1, 1, "", "Widget"], [266, 5, 1, "", "check_port_is_available"]], "fury.stream.widget.Widget": [[266, 2, 1, "", "__init__"], [266, 2, 1, "", "cleanup"], [266, 4, 1, "", "command_string"], [266, 2, 1, "", "display"], [266, 2, 1, "", "return_iframe"], [266, 2, 1, "", "run_command"], [266, 2, 1, "", "start"], [266, 2, 1, "", "stop"], [266, 4, 1, "", "url"]], "fury.transform": [[267, 5, 1, "", "_TUPLE2AXES"], [267, 5, 1, "", "apply_transformation"], [267, 5, 1, "", "cart2sphere"], [267, 5, 1, "", "euler_matrix"], [267, 5, 1, "", "rotate"], [267, 5, 1, "", "scale"], [267, 5, 1, "", "sphere2cart"], [267, 5, 1, "", "transform_from_matrix"], [267, 5, 1, "", "translate"]], "fury.ui": [[268, 0, 0, "-", "containers"], [268, 0, 0, "-", "core"], [268, 0, 0, "-", "elements"], [268, 0, 0, "-", "helpers"]], "fury.ui.containers": [[268, 1, 1, "", "GridUI"], [268, 1, 1, "", "ImageContainer2D"], [268, 1, 1, "", "Panel2D"], [268, 1, 1, "", "TabPanel2D"], [268, 1, 1, "", "TabUI"]], "fury.ui.containers.GridUI": [[268, 3, 1, "", "ANTICLOCKWISE_ROTATION_X"], [268, 3, 1, "", "ANTICLOCKWISE_ROTATION_Y"], [268, 3, 1, "", "CLOCKWISE_ROTATION_X"], [268, 3, 1, "", "CLOCKWISE_ROTATION_Y"], [268, 2, 1, "", "__init__"], [268, 2, 1, "", "key_press_callback"], [268, 2, 1, "", "left_click_callback"], [268, 2, 1, "", "left_click_callback2"], [268, 2, 1, "", "left_release_callback"], [268, 2, 1, "", "left_release_callback2"], [268, 2, 1, "", "mouse_move_callback"], [268, 2, 1, "", "mouse_move_callback2"], [268, 2, 1, "", "resize"]], "fury.ui.containers.ImageContainer2D": [[268, 2, 1, "", "__init__"], [268, 3, 1, "", "img"], [268, 2, 1, "", "resize"], [268, 2, 1, "", "scale"], [268, 2, 1, "", "set_img"], [268, 3, 1, "", "size"]], "fury.ui.containers.Panel2D": [[268, 2, 1, "", "__init__"], [268, 2, 1, "", "add_element"], [268, 3, 1, "", "alignment"], [268, 4, 1, "", "border_color"], [268, 4, 1, "", "border_width"], [268, 4, 1, "", "color"], [268, 2, 1, "", "left_button_dragged"], [268, 2, 1, "", "left_button_pressed"], [268, 4, 1, "", "opacity"], [268, 2, 1, "", "re_align"], [268, 2, 1, "", "remove_element"], [268, 2, 1, "", "resize"], [268, 2, 1, "", "set_visibility"], [268, 2, 1, "", "update_border_coords"], [268, 2, 1, "", "update_element"]], "fury.ui.containers.TabPanel2D": [[268, 2, 1, "", "__init__"], [268, 2, 1, "", "add_element"], [268, 4, 1, "", "color"], [268, 3, 1, "", "content_panel"], [268, 2, 1, "", "remove_element"], [268, 2, 1, "", "resize"], [268, 3, 1, "", "text_block"], [268, 4, 1, "", "title"], [268, 4, 1, "", "title_bold"], [268, 4, 1, "", "title_color"], [268, 4, 1, "", "title_font_size"], [268, 4, 1, "", "title_italic"], [268, 2, 1, "", "update_element"]], "fury.ui.containers.TabUI": [[268, 2, 1, "", "__init__"], [268, 2, 1, "", "add_element"], [268, 2, 1, "", "collapse_tab_ui"], [268, 2, 1, "", "left_button_dragged"], [268, 2, 1, "", "left_button_pressed"], [268, 2, 1, "", "remove_element"], [268, 2, 1, "", "select_tab_callback"], [268, 3, 1, "", "tabs"], [268, 2, 1, "", "update_element"], [268, 2, 1, "", "update_tabs"]], "fury.ui.core": [[268, 1, 1, "", "Button2D"], [268, 1, 1, "", "Disk2D"], [268, 1, 1, "", "Rectangle2D"], [268, 1, 1, "", "TextBlock2D"], [268, 1, 1, "", "UI"]], "fury.ui.core.Button2D": [[268, 2, 1, "", "__init__"], [268, 4, 1, "", "color"], [268, 2, 1, "", "next_icon"], [268, 2, 1, "", "next_icon_id"], [268, 2, 1, "", "resize"], [268, 2, 1, "", "scale"], [268, 2, 1, "", "set_icon"], [268, 2, 1, "", "set_icon_by_name"]], "fury.ui.core.Disk2D": [[268, 2, 1, "", "__init__"], [268, 4, 1, "", "color"], [268, 4, 1, "", "inner_radius"], [268, 4, 1, "", "opacity"], [268, 4, 1, "", "outer_radius"]], "fury.ui.core.Rectangle2D": [[268, 2, 1, "", "__init__"], [268, 4, 1, "", "color"], [268, 4, 1, "", "height"], [268, 4, 1, "", "opacity"], [268, 2, 1, "", "resize"], [268, 4, 1, "", "width"]], "fury.ui.core.TextBlock2D": [[268, 2, 1, "", "__init__"], [268, 3, 1, "", "actor"], [268, 4, 1, "id4", "auto_font_scale"], [268, 4, 1, "", "background_color"], [268, 3, 1, "", "bg_color"], [268, 4, 1, "id5", "bold"], [268, 2, 1, "", "cal_size_from_message"], [268, 4, 1, "id6", "color"], [268, 4, 1, "id7", "dynamic_bbox"], [268, 4, 1, "id8", "font_family"], [268, 4, 1, "id9", "font_size"], [268, 4, 1, "id10", "italic"], [268, 4, 1, "id11", "justification"], [268, 4, 1, "id12", "message"], [268, 3, 1, "", "position"], [268, 2, 1, "", "resize"], [268, 4, 1, "id13", "shadow"], [268, 3, 1, "", "size"], [268, 2, 1, "", "update_alignment"], [268, 2, 1, "", "update_bounding_box"], [268, 4, 1, "id14", "vertical_justification"]], "fury.ui.core.UI": [[268, 2, 1, "", "__init__"], [268, 4, 1, "", "actors"], [268, 2, 1, "", "add_callback"], [268, 2, 1, "", "add_to_scene"], [268, 4, 1, "id0", "center"], [268, 2, 1, "", "handle_events"], [268, 2, 1, "", "key_press_callback"], [268, 2, 1, "", "left_button_click_callback"], [268, 2, 1, "", "left_button_release_callback"], [268, 2, 1, "", "middle_button_click_callback"], [268, 2, 1, "", "middle_button_release_callback"], [268, 2, 1, "", "mouse_move_callback"], [268, 3, 1, "", "on_key_press"], [268, 3, 1, "", "on_left_mouse_button_clicked"], [268, 3, 1, "", "on_left_mouse_button_dragged"], [268, 3, 1, "", "on_left_mouse_button_pressed"], [268, 3, 1, "", "on_left_mouse_button_released"], [268, 3, 1, "", "on_left_mouse_double_clicked"], [268, 3, 1, "", "on_middle_mouse_button_clicked"], [268, 3, 1, "", "on_middle_mouse_button_dragged"], [268, 3, 1, "", "on_middle_mouse_button_pressed"], [268, 3, 1, "", "on_middle_mouse_button_released"], [268, 3, 1, "", "on_middle_mouse_double_clicked"], [268, 3, 1, "", "on_right_mouse_button_clicked"], [268, 3, 1, "", "on_right_mouse_button_dragged"], [268, 3, 1, "", "on_right_mouse_button_pressed"], [268, 3, 1, "", "on_right_mouse_button_released"], [268, 3, 1, "", "on_right_mouse_double_clicked"], [268, 4, 1, "id2", "position"], [268, 2, 1, "", "right_button_click_callback"], [268, 2, 1, "", "right_button_release_callback"], [268, 2, 1, "", "set_visibility"], [268, 4, 1, "id3", "size"]], "fury.ui.elements": [[268, 1, 1, "", "Card2D"], [268, 1, 1, "", "Checkbox"], [268, 1, 1, "", "ComboBox2D"], [268, 1, 1, "", "DrawPanel"], [268, 1, 1, "", "DrawShape"], [268, 1, 1, "", "FileMenu2D"], [268, 1, 1, "", "LineDoubleSlider2D"], [268, 1, 1, "", "LineSlider2D"], [268, 1, 1, "", "ListBox2D"], [268, 1, 1, "", "ListBoxItem2D"], [268, 1, 1, "", "Option"], [268, 1, 1, "", "PlaybackPanel"], [268, 1, 1, "", "RadioButton"], [268, 1, 1, "", "RangeSlider"], [268, 1, 1, "", "RingSlider2D"], [268, 1, 1, "", "TextBox2D"]], "fury.ui.elements.Card2D": [[268, 2, 1, "", "__init__"], [268, 4, 1, "", "body"], [268, 3, 1, "", "body_box"], [268, 4, 1, "", "color"], [268, 3, 1, "", "image"], [268, 2, 1, "", "left_button_dragged"], [268, 2, 1, "", "left_button_pressed"], [268, 2, 1, "", "resize"], [268, 4, 1, "", "title"], [268, 3, 1, "", "title_box"]], "fury.ui.elements.Checkbox": [[268, 2, 1, "", "__init__"], [268, 4, 1, "", "font_size"], [268, 3, 1, "", "labels"], [268, 3, 1, "", "options"], [268, 4, 1, "id17", "padding"]], "fury.ui.elements.ComboBox2D": [[268, 2, 1, "", "__init__"], [268, 2, 1, "", "append_item"], [268, 3, 1, "", "drop_down_button"], [268, 3, 1, "", "drop_down_menu"], [268, 2, 1, "", "left_button_dragged"], [268, 2, 1, "", "left_button_pressed"], [268, 2, 1, "", "menu_toggle_callback"], [268, 2, 1, "", "resize"], [268, 2, 1, "", "select_option_callback"], [268, 4, 1, "", "selected_text"], [268, 4, 1, "", "selected_text_index"], [268, 3, 1, "", "selection_box"], [268, 2, 1, "", "set_visibility"]], "fury.ui.elements.DrawPanel": [[268, 2, 1, "", "__init__"], [268, 2, 1, "", "cal_min_boundary_distance"], [268, 2, 1, "", "clamp_mouse_position"], [268, 4, 1, "", "current_mode"], [268, 2, 1, "", "draw_shape"], [268, 2, 1, "", "handle_mouse_click"], [268, 2, 1, "", "handle_mouse_drag"], [268, 2, 1, "", "left_button_dragged"], [268, 2, 1, "", "left_button_pressed"], [268, 2, 1, "", "resize"], [268, 2, 1, "", "resize_shape"], [268, 2, 1, "", "show_rotation_slider"], [268, 2, 1, "", "update_button_icons"], [268, 2, 1, "", "update_shape_selection"]], "fury.ui.elements.DrawShape": [[268, 2, 1, "", "__init__"], [268, 2, 1, "", "cal_bounding_box"], [268, 4, 1, "", "center"], [268, 2, 1, "", "clamp_position"], [268, 4, 1, "", "is_selected"], [268, 2, 1, "", "left_button_dragged"], [268, 2, 1, "", "left_button_pressed"], [268, 2, 1, "", "left_button_released"], [268, 2, 1, "", "remove"], [268, 2, 1, "", "resize"], [268, 2, 1, "", "rotate"], [268, 2, 1, "", "selection_change"], [268, 2, 1, "", "update_shape_position"]], "fury.ui.elements.FileMenu2D": [[268, 2, 1, "", "__init__"], [268, 2, 1, "", "directory_click_callback"], [268, 3, 1, "", "extensions"], [268, 2, 1, "", "get_all_file_names"], [268, 2, 1, "", "get_directory_names"], [268, 2, 1, "", "get_file_names"], [268, 3, 1, "", "listbox"], [268, 2, 1, "", "resize"], [268, 2, 1, "", "scroll_callback"], [268, 2, 1, "", "set_slot_colors"]], "fury.ui.elements.LineDoubleSlider2D": [[268, 2, 1, "", "__init__"], [268, 3, 1, "", "active_color"], [268, 4, 1, "", "bottom_disk_ratio"], [268, 4, 1, "", "bottom_disk_value"], [268, 4, 1, "", "bottom_y_position"], [268, 2, 1, "", "coord_to_ratio"], [268, 3, 1, "", "default_color"], [268, 2, 1, "", "format_text"], [268, 2, 1, "", "handle_move_callback"], [268, 2, 1, "", "handle_release_callback"], [268, 3, 1, "", "handles"], [268, 4, 1, "", "left_disk_ratio"], [268, 4, 1, "", "left_disk_value"], [268, 4, 1, "", "left_x_position"], [268, 3, 1, "", "length"], [268, 3, 1, "", "line_width"], [268, 2, 1, "", "ratio_to_coord"], [268, 2, 1, "", "ratio_to_value"], [268, 4, 1, "", "right_disk_ratio"], [268, 4, 1, "", "right_disk_value"], [268, 4, 1, "", "right_x_position"], [268, 2, 1, "", "set_position"], [268, 3, 1, "", "shape"], [268, 3, 1, "", "text"], [268, 4, 1, "", "top_disk_ratio"], [268, 4, 1, "", "top_disk_value"], [268, 4, 1, "", "top_y_position"], [268, 3, 1, "", "track"], [268, 2, 1, "", "update"], [268, 2, 1, "", "value_to_ratio"]], "fury.ui.elements.LineSlider2D": [[268, 2, 1, "", "__init__"], [268, 3, 1, "", "active_color"], [268, 4, 1, "", "bottom_y_position"], [268, 3, 1, "", "default_color"], [268, 2, 1, "", "format_text"], [268, 3, 1, "", "handle"], [268, 2, 1, "", "handle_move_callback"], [268, 2, 1, "", "handle_release_callback"], [268, 4, 1, "", "left_x_position"], [268, 3, 1, "", "length"], [268, 3, 1, "", "line_width"], [268, 4, 1, "", "ratio"], [268, 4, 1, "", "right_x_position"], [268, 2, 1, "", "set_position"], [268, 3, 1, "", "shape"], [268, 3, 1, "", "text"], [268, 4, 1, "", "top_y_position"], [268, 3, 1, "", "track"], [268, 2, 1, "", "track_click_callback"], [268, 2, 1, "", "update"], [268, 4, 1, "", "value"]], "fury.ui.elements.ListBox2D": [[268, 2, 1, "", "__init__"], [268, 2, 1, "", "clear_selection"], [268, 2, 1, "", "down_button_callback"], [268, 3, 1, "", "on_change"], [268, 2, 1, "", "resize"], [268, 2, 1, "", "scroll_click_callback"], [268, 2, 1, "", "scroll_drag_callback"], [268, 2, 1, "", "scroll_release_callback"], [268, 2, 1, "", "select"], [268, 2, 1, "", "up_button_callback"], [268, 2, 1, "", "update"], [268, 2, 1, "", "update_scrollbar"]], "fury.ui.elements.ListBoxItem2D": [[268, 2, 1, "", "__init__"], [268, 2, 1, "", "deselect"], [268, 4, 1, "", "element"], [268, 2, 1, "", "left_button_clicked"], [268, 2, 1, "", "resize"], [268, 2, 1, "", "select"]], "fury.ui.elements.Option": [[268, 2, 1, "", "__init__"], [268, 2, 1, "", "deselect"], [268, 3, 1, "", "font_size"], [268, 3, 1, "", "label"], [268, 2, 1, "", "select"], [268, 2, 1, "", "toggle"]], "fury.ui.elements.PlaybackPanel": [[268, 2, 1, "", "__init__"], [268, 4, 1, "", "current_time"], [268, 4, 1, "", "current_time_str"], [268, 4, 1, "", "final_time"], [268, 2, 1, "", "hide"], [268, 2, 1, "", "loop"], [268, 2, 1, "", "pause"], [268, 2, 1, "", "play"], [268, 2, 1, "", "play_once"], [268, 2, 1, "", "show"], [268, 4, 1, "", "speed"], [268, 2, 1, "", "stop"], [268, 4, 1, "", "width"]], "fury.ui.elements.RadioButton": [[268, 2, 1, "", "__init__"], [268, 3, 1, "", "labels"], [268, 3, 1, "", "options"], [268, 3, 1, "", "padding"]], "fury.ui.elements.RangeSlider": [[268, 2, 1, "", "__init__"], [268, 3, 1, "", "range_slider"], [268, 3, 1, "", "range_slider_center"], [268, 2, 1, "", "range_slider_handle_move_callback"], [268, 3, 1, "", "value_slider"], [268, 3, 1, "", "value_slider_center"]], "fury.ui.elements.RingSlider2D": [[268, 2, 1, "", "__init__"], [268, 3, 1, "", "active_color"], [268, 4, 1, "", "angle"], [268, 3, 1, "", "default_color"], [268, 2, 1, "", "format_text"], [268, 3, 1, "", "handle"], [268, 2, 1, "", "handle_move_callback"], [268, 2, 1, "", "handle_release_callback"], [268, 4, 1, "id15", "mid_track_radius"], [268, 2, 1, "", "move_handle"], [268, 4, 1, "id16", "previous_value"], [268, 4, 1, "", "ratio"], [268, 3, 1, "", "text"], [268, 3, 1, "", "track"], [268, 2, 1, "", "track_click_callback"], [268, 2, 1, "", "update"], [268, 4, 1, "", "value"]], "fury.ui.elements.TextBox2D": [[268, 2, 1, "", "__init__"], [268, 3, 1, "", "actor"], [268, 2, 1, "", "add_character"], [268, 3, 1, "", "caret_pos"], [268, 2, 1, "", "edit_mode"], [268, 2, 1, "", "handle_character"], [268, 3, 1, "", "height"], [268, 3, 1, "", "init"], [268, 2, 1, "", "key_press"], [268, 2, 1, "", "left_button_press"], [268, 2, 1, "", "left_move_left"], [268, 2, 1, "", "left_move_right"], [268, 2, 1, "", "move_caret_left"], [268, 2, 1, "", "move_caret_right"], [268, 2, 1, "", "move_left"], [268, 2, 1, "", "move_right"], [268, 2, 1, "", "remove_character"], [268, 2, 1, "", "render_text"], [268, 2, 1, "", "right_move_left"], [268, 2, 1, "", "right_move_right"], [268, 2, 1, "", "set_message"], [268, 2, 1, "", "showable_text"], [268, 3, 1, "", "text"], [268, 3, 1, "", "width"], [268, 2, 1, "", "width_set_text"], [268, 3, 1, "", "window_left"], [268, 3, 1, "", "window_right"]], "fury.ui.helpers": [[268, 5, 1, "", "cal_bounding_box_2d"], [268, 5, 1, "", "check_overflow"], [268, 5, 1, "", "clip_overflow"], [268, 5, 1, "", "rotate_2d"], [268, 5, 1, "", "wrap_overflow"]], "fury.utils": [[269, 5, 1, "", "add_polydata_numeric_field"], [269, 5, 1, "", "apply_affine"], [269, 5, 1, "", "apply_affine_to_actor"], [269, 5, 1, "", "array_from_actor"], [269, 5, 1, "", "asbytes"], [269, 5, 1, "", "change_vertices_order"], [269, 5, 1, "", "color_check"], [269, 5, 1, "", "colors_from_actor"], [269, 5, 1, "", "compute_bounds"], [269, 5, 1, "", "fix_winding_order"], [269, 5, 1, "", "get_actor_from_polydata"], [269, 5, 1, "", "get_actor_from_polymapper"], [269, 5, 1, "", "get_actor_from_primitive"], [269, 5, 1, "", "get_bounding_box_sizes"], [269, 5, 1, "", "get_bounds"], [269, 5, 1, "", "get_grid_cells_position"], [269, 5, 1, "", "get_polydata_colors"], [269, 5, 1, "", "get_polydata_field"], [269, 5, 1, "", "get_polydata_lines"], [269, 5, 1, "", "get_polydata_normals"], [269, 5, 1, "", "get_polydata_primitives_count"], [269, 5, 1, "", "get_polydata_tangents"], [269, 5, 1, "", "get_polydata_tcoord"], [269, 5, 1, "", "get_polydata_triangles"], [269, 5, 1, "", "get_polydata_vertices"], [269, 5, 1, "", "get_polymapper_from_polydata"], [269, 5, 1, "", "is_ui"], [269, 5, 1, "", "lines_to_vtk_polydata"], [269, 5, 1, "", "map_coordinates_3d_4d"], [269, 5, 1, "", "normalize_v3"], [269, 5, 1, "", "normals_from_actor"], [269, 5, 1, "", "normals_from_v_f"], [269, 5, 1, "", "normals_to_actor"], [269, 5, 1, "", "numpy_to_vtk_cells"], [269, 5, 1, "", "numpy_to_vtk_colors"], [269, 5, 1, "", "numpy_to_vtk_image_data"], [269, 5, 1, "", "numpy_to_vtk_matrix"], [269, 5, 1, "", "numpy_to_vtk_points"], [269, 5, 1, "", "primitives_count_from_actor"], [269, 5, 1, "", "primitives_count_to_actor"], [269, 5, 1, "", "remove_observer_from_actor"], [269, 5, 1, "", "repeat_sources"], [269, 5, 1, "", "represent_actor_as_wireframe"], [269, 5, 1, "", "rgb_to_vtk"], [269, 5, 1, "", "rotate"], [269, 5, 1, "", "set_actor_origin"], [269, 5, 1, "", "set_input"], [269, 5, 1, "", "set_polydata_colors"], [269, 5, 1, "", "set_polydata_normals"], [269, 5, 1, "", "set_polydata_primitives_count"], [269, 5, 1, "", "set_polydata_tangents"], [269, 5, 1, "", "set_polydata_tcoords"], [269, 5, 1, "", "set_polydata_triangles"], [269, 5, 1, "", "set_polydata_vertices"], [269, 5, 1, "", "shallow_copy"], [269, 5, 1, "", "tangents_from_actor"], [269, 5, 1, "", "tangents_from_direction_of_anisotropy"], [269, 5, 1, "", "tangents_to_actor"], [269, 5, 1, "", "triangle_order"], [269, 5, 1, "", "update_actor"], [269, 5, 1, "", "update_polydata_normals"], [269, 5, 1, "", "update_surface_actor_colors"], [269, 5, 1, "", "vertices_from_actor"], [269, 5, 1, "", "vtk_matrix_to_numpy"]], "fury.window": [[270, 1, 1, "", "Scene"], [270, 1, 1, "", "ShowManager"], [270, 5, 1, "", "analyze_scene"], [270, 5, 1, "", "analyze_snapshot"], [270, 5, 1, "", "antialiasing"], [270, 5, 1, "", "enable_stereo"], [270, 5, 1, "", "gl_disable_blend"], [270, 5, 1, "", "gl_disable_depth"], [270, 5, 1, "", "gl_enable_blend"], [270, 5, 1, "", "gl_enable_depth"], [270, 5, 1, "", "gl_get_current_state"], [270, 5, 1, "", "gl_reset_blend"], [270, 5, 1, "", "gl_set_additive_blending"], [270, 5, 1, "", "gl_set_additive_blending_white_background"], [270, 5, 1, "", "gl_set_multiplicative_blending"], [270, 5, 1, "", "gl_set_normal_blending"], [270, 5, 1, "", "gl_set_subtractive_blending"], [270, 5, 1, "", "record"], [270, 5, 1, "", "release_context"], [270, 5, 1, "", "show"], [270, 5, 1, "", "snapshot"]], "fury.window.Scene": [[270, 2, 1, "", "__init__"], [270, 2, 1, "", "add"], [270, 2, 1, "", "azimuth"], [270, 2, 1, "", "background"], [270, 2, 1, "", "camera"], [270, 2, 1, "", "camera_direction"], [270, 2, 1, "", "camera_info"], [270, 2, 1, "", "clear"], [270, 2, 1, "", "dolly"], [270, 2, 1, "", "elevation"], [270, 2, 1, "", "fxaa_off"], [270, 2, 1, "", "fxaa_on"], [270, 2, 1, "", "get_camera"], [270, 4, 1, "", "last_render_time"], [270, 2, 1, "", "pitch"], [270, 2, 1, "", "projection"], [270, 2, 1, "", "reset_camera"], [270, 2, 1, "", "reset_camera_tight"], [270, 2, 1, "", "reset_clipping_range"], [270, 2, 1, "", "rm"], [270, 2, 1, "", "rm_all"], [270, 2, 1, "", "roll"], [270, 2, 1, "", "set_camera"], [270, 2, 1, "", "size"], [270, 2, 1, "", "skybox"], [270, 2, 1, "", "yaw"], [270, 2, 1, "", "zoom"]], "fury.window.ShowManager": [[270, 2, 1, "", "__init__"], [270, 2, 1, "", "add_animation"], [270, 2, 1, "", "add_iren_callback"], [270, 2, 1, "", "add_timer_callback"], [270, 2, 1, "", "add_window_callback"], [270, 4, 1, "", "animations"], [270, 2, 1, "", "destroy_timer"], [270, 2, 1, "", "destroy_timers"], [270, 2, 1, "", "exit"], [270, 4, 1, "", "frame_rate"], [270, 2, 1, "", "initialize"], [270, 3, 1, "", "iren"], [270, 2, 1, "", "is_done"], [270, 2, 1, "", "lock"], [270, 2, 1, "", "lock_current"], [270, 2, 1, "", "play_events"], [270, 2, 1, "", "play_events_from_file"], [270, 2, 1, "", "record_events"], [270, 2, 1, "", "record_events_to_file"], [270, 2, 1, "", "release_current"], [270, 2, 1, "", "release_lock"], [270, 2, 1, "", "remove_animation"], [270, 2, 1, "", "render"], [270, 2, 1, "", "save_screenshot"], [270, 3, 1, "", "scene"], [270, 2, 1, "", "start"], [270, 3, 1, "", "style"], [270, 4, 1, "", "timelines"], [270, 2, 1, "", "wait"], [270, 3, 1, "", "window"]]}, "objtypes": {"0": "py:module", "1": "py:class", "2": "py:method", "3": "py:attribute", "4": "py:property", "5": "py:function"}, "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"]}, "titleterms": {"introductori": [0, 81], "furi": [1, 2, 15, 31, 48, 54, 59, 78, 79, 80, 84, 89, 90, 91, 92, 93, 94, 95, 97, 113, 123, 129, 139, 142, 154, 157, 165, 166, 167, 168, 211, 213, 219, 220, 247], "arrow": [1, 248], "actor": [1, 2, 15, 54, 69, 84, 118, 198, 208, 218, 225, 228, 248, 249, 259], "cone": [2, 243, 248], "textur": [3, 18, 248, 259], "sphere": [3, 15, 16, 18, 46, 48, 54, 59, 65, 66, 67, 192, 248], "anim": [3, 8, 12, 14, 23, 26, 33, 52, 54, 57, 58, 59, 60, 61, 63, 81, 158, 171, 172, 183, 190, 193, 195, 197, 198, 199, 201, 210, 211, 213, 218, 250], "earth": 4, "coordin": 4, "convers": 4, "visual": [5, 6, 17, 22, 25, 32, 33, 36, 69, 133, 139, 234, 243], "gltf": [5, 6, 7, 8, 12, 56, 175, 179, 184, 187, 218, 256], "file": [5, 6, 7, 12, 56, 218], "export": [7, 179, 187, 218], "scene": [7, 53, 84, 218, 270], "morph": [8, 214, 218], "multithread": 9, "exampl": [9, 84], "simpl": [10, 13, 47, 84, 218], "pick": [10, 262], "select": [11, 49], "multipl": [11, 84, 111, 205], "object": [11, 80, 84, 125, 126, 162, 163, 164, 216, 217, 218], "skelet": [12, 199, 210, 218], "volum": [13, 25, 259], "slice": 13, "render": [13, 25, 36, 65, 66, 84, 259], "from": [13, 25, 56, 185, 218], "t1": 13, "specif": [13, 25], "valu": [13, 25], "rang": [13, 49], "fa": 13, "your": [13, 25, 230], "colormap": [13, 25, 251], "creat": [13, 54, 58, 62, 84, 187, 200], "mosaic": 13, "solar": 14, "system": [14, 133, 139, 142], "spiki": 16, "surfac": [17, 36, 248], "us": [19, 28, 42, 45, 46, 53, 68, 71, 80, 81, 93, 139, 145, 192], "timer": [19, 84], "collis": [20, 72, 84, 107], "particl": [20, 30], "box": [20, 42, 248], "demo": [21, 34, 81], "advanc": 22, "interact": [22, 34, 78], "2d": 23, "function": [23, 125], "brownian": 24, "motion": [24, 30], "bundl": 25, "metric": 25, "show": [25, 42, 43, 44, 46, 49, 51, 84, 270], "everi": 25, "streamlin": [25, 36], "an": [25, 58], "orient": [25, 110], "color": [25, 42, 46, 48, 55, 70, 177], "point": [25, 248, 259], "default": [25, 58], "differ": [25, 45, 133], "add": 25, "depth": 25, "cue": 25, "fake": 25, "tube": 25, "combin": [25, 30], "electromagnet": 26, "wave": 26, "propag": 26, "brain": [27, 93], "fiber": 27, "odf": 27, "visualis": 27, "fine": 28, "tune": 28, "opengl": 28, "state": 28, "shader": [28, 64, 67, 81, 117, 119, 127, 196, 259, 265], "callback": [28, 43, 84], "fractal": 29, "charg": 30, "magnet": 30, "electr": 30, "field": 30, "marker": [31, 248], "interdisciplinari": 32, "map": 32, "journal": 32, "network": [32, 33, 139, 142, 145], "version": [33, 196], "pbr": [34, 66, 218], "plai": [35, 197], "video": 35, "3d": [35, 169], "world": 35, "roi": 36, "tesseract": 37, "hypercub": 37, "user": [38, 49, 78, 81], "interfac": [38, 49, 81], "element": [38, 45, 81, 268], "button": [39, 42, 46, 49], "text": [39, 49, 54, 226], "card": [40, 41], "figur": [42, 248], "control": [42, 46, 48, 51], "check": [42, 98, 130, 136, 142, 148, 151], "radio": [42, 46], "manag": [42, 43, 44, 46, 49, 51, 84], "combobox": [43, 48, 229], "drawpanel": [44, 173, 174, 207, 268], "layout": [45, 139, 142, 145, 155, 258], "ui": [45, 48, 110, 115, 134, 137, 140, 143, 146, 149, 158, 173, 174, 268], "shape": [47, 49, 185, 194], "tab": [48, 110, 115], "slider": [48, 49, 51], "cube": [48, 49, 51, 248], "index": 48, "0": [48, 89, 90, 91, 92, 94, 95, 97, 113, 123, 129, 157, 167, 220, 221, 222, 246, 273, 277, 278, 279, 281, 283, 285, 286], "checkbox": [48, 268], "For": 48, "cylind": [48, 68, 248], "1": [48, 89, 90, 91, 97, 98, 123, 130, 131, 142, 172, 173, 175, 223, 224, 225, 273, 274, 275, 276, 280, 282, 284], "2": [48, 92, 134, 174, 177, 179, 226, 227, 228, 275, 277], "imag": 49, "panel": 49, "menu": 49, "listbox": 50, "bezier": [53, 180], "interpol": [53, 55, 56, 58, 61, 177, 180, 183, 192, 250], "posit": [53, 56, 58], "cubic": [53, 56, 180], "curv": 53, "paramet": 53, "set": [53, 55, 56, 58, 62, 84], "keyfram": [53, 54, 55, 56, 57, 58, 59, 61, 62, 63, 172, 211, 213], "A": [53, 133, 136, 145, 169, 175], "more": [53, 117, 119, 155, 189], "complex": 53, "camera": [54, 183, 259], "opac": 54, "The": [54, 145, 169, 170, 171, 224, 227, 245, 246], "plan": [54, 235], "main": [54, 266], "timelin": [54, 62, 125, 126, 162, 163, 164, 183, 186, 189, 196, 216, 217, 218, 250], "ad": [54, 84, 140, 181, 186, 205, 208, 215], "static": [54, 218], "50": 54, "make": [56, 68, 180, 228], "custom": [56, 154], "implement": [56, 145, 172, 177, 180, 186, 192, 225, 287], "spline": [56, 61], "data": [56, 133, 190, 237, 253], "same": [56, 198], "one": 56, "you": [56, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 114, 115, 116, 117, 118, 119, 120, 121, 122, 124, 127, 132, 135, 136, 138, 141, 142, 144, 147, 150, 153, 156, 159, 161, 172, 173, 174, 175, 176, 177, 178, 179, 180, 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, 223, 226, 229, 235, 238, 241, 244], "get": [56, 85, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 114, 115, 116, 117, 118, 119, 120, 121, 122, 124, 127, 130, 131, 134, 135, 136, 137, 138, 140, 141, 142, 143, 144, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 158, 159, 160, 161, 165, 166, 169, 172, 173, 174, 175, 176, 177, 178, 179, 180, 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, 222, 223, 225, 226, 228, 229, 231, 232, 234, 235, 237, 238, 240, 241, 243, 244, 287], "hierarch": [57, 201], "what": [58, 59, 62, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 114, 115, 116, 117, 118, 119, 120, 121, 122, 124, 127, 130, 131, 132, 134, 135, 136, 137, 138, 140, 141, 142, 143, 144, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 158, 159, 160, 161, 165, 166, 172, 173, 174, 175, 176, 177, 178, 179, 180, 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, 222, 223, 224, 225, 226, 228, 229, 231, 232, 234, 235, 237, 238, 239, 240, 241, 243, 244], "i": [58, 59, 62, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 114, 115, 116, 117, 118, 119, 120, 121, 122, 124, 127, 130, 131, 132, 134, 135, 136, 137, 138, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 158, 159, 160, 161, 165, 166, 169, 172, 173, 174, 175, 176, 177, 178, 179, 180, 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, 222, 223, 225, 226, 228, 229, 231, 232, 233, 234, 235, 237, 238, 239, 240, 241, 243, 244], "ar": [58, 239], "environ": 58, "chang": [58, 84], "singl": [58, 84, 118, 183], "properti": [58, 84], "introduct": [59, 125], "exactli": 59, "translat": [59, 109, 202, 267], "arm": 60, "robot": 60, "wrap": 61, "up": [61, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 114, 115, 116, 117, 118, 119, 120, 121, 122, 124, 127, 130, 131, 132, 134, 135, 136, 137, 138, 140, 141, 142, 143, 144, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 158, 159, 160, 161, 165, 172, 173, 174, 175, 176, 177, 178, 179, 180, 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, 222, 223, 225, 226, 228, 229, 231, 232, 234, 235, 237, 238, 239, 240, 241, 243, 244], "sdf": [65, 68, 69, 111, 114, 116, 165, 225, 248], "impostor": 65, "billboard": [65, 192, 248], "tradit": 65, "refer": [65, 68, 164, 271], "physic": [66, 71, 75, 81, 118, 121], "base": [66, 196, 200, 265], "principl": 67, "brdf": 67, "polygon": [68, 259], "v": 68, "vari": 70, "integr": [71, 81, 84], "pybullet": [71, 81, 84], "ball": [72, 76, 84, 107, 121], "simul": [72, 73, 74, 75, 76, 84, 107, 120, 121], "brick": [73, 84, 107], "wall": [73, 84, 107], "sync": [73, 75, 84], "chain": [74, 84, 120], "domino": [75, 84], "wreck": [76, 84, 121], "stream": [77, 78, 79, 80, 81, 139, 142, 266], "note": [78, 80, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286], "webrtc": [79, 80, 139, 142], "mjpeg": [79, 80], "widget": [80, 266], "tutori": [81, 115, 120, 121, 204, 215, 237, 240], "blog": [82, 98, 99, 131, 132, 216, 218], "commun": [83, 98, 99, 132, 172, 175, 221, 222, 246], "join": 83, "u": 83, "contributor": 83, "guid": 84, "rigid": 84, "bodi": 84, "dynam": 84, "necessari": 84, "import": [84, 145, 175, 218, 227], "connect": 84, "mode": 84, "disconnect": 84, "graviti": 84, "applic": 84, "forc": [84, 107], "torqu": 84, "enabl": 84, "creation": 84, "initi": 84, "joint": 84, "start": [85, 239, 287], "instal": 87, "depend": 87, "pypi": 87, "conda": 87, "via": [87, 168, 219], "sourc": [87, 124, 170], "test": [87, 139, 181, 186, 202, 205, 206], "run": 87, "offscreen": 87, "popul": 87, "our": 87, "document": [87, 186, 227, 287], "folder": 87, "structur": 87, "build": [87, 239], "about": [88, 169, 170, 224], "overview": [88, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286], "statement": 88, "need": [88, 287], "mission": 88, "featur": [88, 134, 182, 189, 191, 287], "architectur": [88, 207], "licens": [88, 288], "credit": 88, "bug": [88, 139, 143, 146, 193, 195, 206, 287], "report": [88, 164, 287], "support": [88, 158, 185, 201, 203, 205, 210], "releas": [89, 90, 91, 92, 94, 95, 97, 113, 123, 129, 157, 167, 220, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287], "3": [90, 94, 136, 137, 176, 180, 181, 229, 230, 231, 275, 278], "4": [91, 95, 140, 178, 183, 184, 232, 233, 234, 276, 279], "success": 93, "art": 93, "competit": 93, "googl": [96, 125, 126, 128, 162, 163, 164, 168, 216, 217, 218, 219], "summer": [96, 125, 126, 128, 162, 163, 164, 168, 216, 217, 218, 219], "code": [96, 100, 101, 125, 126, 128, 135, 138, 139, 141, 144, 145, 147, 150, 152, 153, 156, 159, 161, 162, 163, 164, 168, 169, 197, 216, 217, 218, 219], "5": [97, 142, 143, 182, 186, 187, 235, 236, 237, 280], "weekli": [98, 130, 131, 136, 142, 148, 151, 216, 218], "welcom": [98, 99, 131, 132], "my": [98, 99, 131, 132, 169, 170, 224], "gsoc": [98, 99, 132, 170, 171, 216, 218, 221, 222], "did": [98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 114, 115, 116, 117, 118, 119, 120, 121, 122, 124, 127, 130, 131, 132, 134, 135, 136, 137, 138, 140, 141, 142, 143, 144, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 158, 159, 160, 161, 165, 166, 172, 173, 174, 175, 176, 177, 178, 179, 180, 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, 222, 223, 225, 226, 228, 229, 231, 232, 234, 235, 237, 238, 239, 240, 241, 243, 244, 245], "do": [98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 114, 115, 116, 117, 118, 119, 120, 121, 122, 124, 127, 130, 131, 132, 134, 135, 136, 137, 138, 140, 141, 142, 143, 144, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 158, 159, 160, 161, 165, 166, 172, 173, 174, 175, 176, 177, 178, 179, 180, 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, 222, 223, 225, 226, 228, 229, 231, 232, 234, 235, 237, 238, 240, 241, 243, 244, 287], "dure": [98, 99, 132, 172, 175], "bond": [98, 99, 132, 172, 175, 221, 222, 246], "period": [98, 99, 132, 172, 175, 221, 222, 246], "come": [98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 114, 115, 116, 117, 118, 119, 120, 121, 122, 124, 127, 130, 131, 132, 134, 135, 136, 137, 138, 140, 141, 142, 143, 144, 146, 147, 148, 150, 151, 152, 153, 154, 155, 156, 158, 159, 160, 161, 165, 172, 173, 174, 175, 176, 177, 178, 179, 180, 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, 222, 223, 225, 226, 228, 229, 231, 232, 234, 235, 237, 238, 240, 241, 243, 244], "next": [98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 114, 115, 116, 117, 118, 119, 120, 121, 122, 124, 127, 130, 131, 132, 134, 135, 136, 137, 138, 140, 141, 142, 143, 144, 145, 146, 147, 148, 150, 151, 152, 153, 154, 155, 156, 158, 159, 160, 161, 165, 172, 173, 174, 175, 176, 177, 178, 179, 180, 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, 222, 223, 224, 225, 226, 228, 229, 231, 232, 234, 235, 237, 238, 240, 241, 243, 244], "week": [98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 114, 115, 116, 117, 118, 119, 120, 121, 122, 124, 127, 130, 131, 132, 134, 135, 136, 137, 138, 140, 141, 142, 143, 144, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 158, 159, 160, 161, 165, 166, 172, 173, 174, 175, 176, 177, 178, 179, 180, 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, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246], "first": [100, 101, 135, 169, 199, 231, 234, 240], "thi": [100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 114, 115, 116, 117, 118, 119, 120, 121, 122, 124, 127, 130, 131, 134, 135, 136, 137, 138, 140, 141, 142, 143, 144, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 158, 159, 160, 161, 165, 166, 172, 173, 174, 175, 176, 177, 178, 179, 180, 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, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246], "stuck": [100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 114, 115, 116, 117, 118, 119, 120, 121, 122, 124, 127, 130, 131, 134, 135, 136, 137, 138, 140, 141, 142, 143, 144, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 158, 159, 160, 161, 165, 166, 172, 173, 174, 175, 176, 177, 178, 179, 180, 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, 222, 223, 225, 226, 228, 229, 231, 232, 234, 235, 237, 238, 240, 241, 243, 244], "anywher": [100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 114, 115, 116, 117, 118, 119, 120, 121, 122, 124, 127, 130, 131, 134, 135, 136, 137, 138, 140, 141, 142, 143, 144, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 158, 159, 160, 161, 165, 166, 172, 173, 174, 175, 176, 177, 178, 179, 180, 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, 222, 223, 225, 226, 228, 229, 231, 232, 234, 235, 237, 238, 240, 241, 243, 244], "raymarch": [102, 104], "combobox2d": [103, 112, 268], "progress": [103, 105, 126, 162, 163, 180, 216, 217, 218], "continu": [104, 108, 152], "textblock2d": [105, 112, 238, 268], "spheric": [106, 108], "harmon": [106, 108], "mai": 107, "reposit": 109, "rotat": [109, 185, 188, 212, 267, 269], "size": 110, "primit": [111, 114, 116, 198, 264], "clip": 112, "overflow": 112, "6": [113, 123, 146, 185, 189, 190, 238, 239, 240, 281, 282], "improv": [114, 174, 179, 204], "tabpanel2d": [115, 268], "merg": 116, "scrollbar": [118, 120, 121], "refactor": [120, 139], "updat": [120, 121, 202, 207], "outlin": 122, "picker": 122, "part": 124, "journei": [124, 169, 170, 171], "end": 124, "unless": 124, "its": 124, "open": [124, 152, 160, 170], "dialog": 124, "save": 124, "2020": [125, 280, 281, 282], "final": [125, 126, 149, 160, 162, 163, 164, 184, 216, 217, 218], "work": [125, 126, 133, 137, 146, 152, 162, 163, 182, 188, 191, 199, 212, 216, 217, 218, 223, 231], "product": [125, 126, 162, 163, 216, 217, 218], "propos": [125, 126, 162, 163, 164, 216, 217, 218], "unsubmit": 125, "complet": [125, 126, 162, 163, 164, 216, 217, 218], "other": [125, 126, 162, 163, 216, 217, 218, 287], "modifi": [126, 217], "showcas": 127, "7": [129, 148, 149, 157, 188, 192, 193, 241, 242, 243, 283, 284], "In": [130, 136, 142, 148, 151], "stadia": 133, "like": 133, "how": [133, 145, 245], "doe": 133, "share": 133, "between": 133, "process": 133, "multiprocess": 133, "rawarrai": 133, "insid": 133, "oper": 133, "addit": 134, "io": [134, 257], "modul": [134, 140, 249, 250, 253, 265, 266, 268], "python": [136, 139, 145], "core": [136, 268], "issu": [136, 139, 178, 189, 202, 226], "adapt": 137, "gridlayout": [137, 258], "second": 138, "solid": 139, "monkei": 139, "patch": 139, "through": 139, "abstract": [139, 164], "class": 139, "namedtupl": 139, "grant": 139, "immut": 139, "avoid": 139, "silent": 139, "most": [139, 145], "relev": 139, "helio": [139, 142, 154, 165, 166], "ref": 139, "tree": 140, "third": 141, "gl": 142, "pr": [142, 143, 149, 152, 187, 188, 231, 235], "437": 142, "superactor": 142, "rebas": 143, "all": [143, 236], "w": 143, "r": 143, "t": 143, "restructur": 143, "tree2d": [143, 146, 149, 152], "fix": [143, 146, 178, 181, 187, 189, 193, 195, 202, 206, 208, 287], "fourth": 144, "algorithm": 145, "ipc": 145, "problem": [145, 176, 224, 227, 230, 233, 236, 239], "block": 145, "behavior": 145, "why": 145, "thread": 145, "good": [145, 227], "solut": 145, "have": 145, "b": 145, "result": 145, "step": 145, "summari": [145, 154], "pull": [145, 160, 218, 287], "request": [145, 160, 218, 287], "fifth": 147, "stall": 149, "finish": [149, 152], "sixth": 150, "8": [151, 152, 167, 191, 195, 196, 244, 245, 285], "cleanup": 152, "seventh": 153, "09": [154, 273], "sphinx": 154, "9": [155, 194, 198, 199, 220, 286], "eighth": 156, "10": [158, 165, 197, 201, 203, 274, 275, 279], "accordion": 158, "sprite": 158, "sheet": 158, "ninth": 159, "11": [160, 166, 200, 204, 205, 276], "tenth": 161, "2021": [164, 283, 284], "bruno": 164, "messia": 164, "font": 165, "remov": 166, "flicker": 166, "effect": 166, "contribut": [168, 219, 287], "2022": [168, 170, 285], "till": 169, "accept": 169, "gsoc22": 169, "littl": [169, 204], "myself": [169, 170], "experi": 169, "develop": [169, 171], "game": [169, 171], "dai": [169, 170], "got": 169, "intro": [170, 171], "pre": 171, "begin": [171, 246], "program": 171, "interest": 171, "opensourc": 171, "21": [171, 273], "22": 171, "basic": [172, 175], "api": [172, 180, 245, 271], "lai": 173, "foundat": 173, "deal": 176, "non": 177, "linear": 177, "clamp": 178, "fetcher": [179, 181, 218, 253], "redesign": 180, "gpu": 180, "side": 180, "doc": 181, "new": [182, 215], "glsl": 183, "loader": [184, 187], "center": 185, "slerp": [186, 250], "unit": 186, "try": [188, 235], "freehand": [188, 200], "draw": [188, 200], "equip": 189, "extract": 190, "polylin": 191, "closur": 192, "group": 194, "transform": [194, 205, 208, 259, 267], "back": 196, "understand": 197, "prototyp": 199, "12": [202, 208, 215], "multi": [203, 210], "node": 203, "skin": [203, 218], "13": [206, 210, 211, 283], "separ": 206, "14": [207, 213, 214], "skeleton": 208, "global": 208, "15": [209, 286], "highlight": 209, "drawshap": [209, 268], "bone": 210, "now": [211, 213], "bit": [211, 213], "easier": [211, 213], "16": 212, "here": 214, "load": [218, 265], "model": 218, "skine": 218, "emiss": 218, "materi": [218, 260], "indic": 218, "khrono": 218, "sampl": 218, "2023": [219, 221, 222, 286], "bound": [221, 222], "spinbox": 223, "textbox": [223, 229], "enhanc": 223, "fbo": 224, "saga": 224, "past": 224, "current": 224, "ellipsoid": [225, 228, 237, 240, 248], "tackl": 226, "justif": [226, 229], "icon": [226, 229], "flaw": [226, 229], "last": [227, 230, 233, 236, 239, 242, 245], "": [227, 230, 233, 236, 239, 242, 245, 246], "effort": [227, 230, 233, 236, 242, 245], "where": [227, 230, 233, 236, 239], "wa": [227, 230, 233, 236, 239, 242], "goal": [227, 230, 233, 236, 239, 242, 245, 246], "adjust": [228, 243], "resolv": 229, "watch": 230, "expect": 230, "uncertainti": [231, 234, 243], "detail": [231, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286], "exam": 232, "prepar": [232, 237], "review": 232, "noth": 233, "ever": 233, "lost": 233, "draft": [234, 240], "dti": 234, "out": 235, "ahead": 235, "road": 236, "lead": 236, "rome": 236, "boundingbox": 238, "thing": 239, "sow": 241, "seed": 241, "treeui": 241, "experiment": 242, "done": 242, "hard": 242, "anoth": 244, "textblockui": 244, "birth": 245, "versatil": 245, "so": [245, 246], "go": 245, "everyth": 246, "project": 246, "get_info": 247, "enable_warn": 247, "disable_warn": 247, "contain": [248, 268], "slicer": 248, "contour_from_roi": 248, "contour_from_label": 248, "streamtub": 248, "line": 248, "scalar_bar": 248, "ax": 248, "odf_slic": [248, 249], "tensor_slic": 248, "peak_slic": 248, "peak": [248, 249], "dot": 248, "disk": 248, "squar": 248, "rectangl": 248, "triangularpr": 248, "rhombicuboctahedron": 248, "pentagonalpr": 248, "octagonalpr": 248, "frustum": 248, "superquadr": 248, "vector_text": 248, "label": 248, "text_3d": 248, "grid": 248, "texture_upd": 248, "texture_on_spher": 248, "texture_2d": 248, "tensor": 249, "odfsliceractor": 249, "peakactor": 249, "tensor_ellipsoid": 249, "helper": [250, 268], "cameraanim": 250, "get_previous_timestamp": 250, "get_next_timestamp": 250, "get_timestamps_from_keyfram": 250, "get_values_from_keyfram": 250, "get_time_tau": 250, "lerp": 250, "euclidean_dist": 250, "spline_interpol": 250, "cubic_spline_interpol": 250, "step_interpol": 250, "linear_interpol": 250, "cubic_bezier_interpol": 250, "color_interpol": 250, "hsv_color_interpol": 250, "lab_color_interpol": 250, "xyz_color_interpol": 250, "tan_cubic_spline_interpol": 250, "colormap_lookup_t": 251, "cc": 251, "ss": 251, "boys2rgb": 251, "orient2rgb": 251, "line_color": 251, "get_cmap": 251, "create_colormap": 251, "distinguishable_colormap": 251, "hex_to_rgb": 251, "rgb2hsv": 251, "hsv2rgb": 251, "xyz_from_rgb": 251, "rgb_from_xyz": 251, "xyz2rgb": 251, "rgb2xyz": 251, "get_xyz_coord": 251, "xyz2lab": 251, "lab2xyz": 251, "rgb2lab": 251, "lab2rgb": 251, "convert": 252, "matplotlib_figure_to_numpi": 252, "data_dir": 253, "update_progressbar": 253, "copyfileobj_withprogress": 253, "check_sha": 253, "fetch_data": 253, "fetch_gltf": 253, "fetch_viz_cubemap": 253, "fetch_viz_icon": 253, "fetch_viz_new_icon": 253, "fetch_viz_wiki_nw": 253, "fetch_viz_model": 253, "fetch_viz_dmri": 253, "fetch_viz_textur": 253, "read_viz_cubemap": 253, "read_viz_icon": 253, "read_viz_model": 253, "read_viz_textur": 253, "read_viz_dmri": 253, "read_viz_gltf": 253, "list_gltf_sample_model": 253, "decor": 254, "skip_r": 254, "doctest_skip_pars": 254, "deprec": 255, "expireddeprecationerror": 255, "argsdeprecationwarn": 255, "_leading_whit": 255, "cmp_pkg_version": 255, "is_bad_vers": 255, "deprecate_with_vers": 255, "deprecated_param": 255, "export_scen": 256, "write_scen": 256, "write_nod": 256, "write_mesh": 256, "write_camera": 256, "get_prim": 256, "write_materi": 256, "write_accessor": 256, "write_bufferview": 256, "write_buff": 256, "load_cubemap_textur": 257, "load_imag": 257, "load_text": 257, "save_imag": 257, "load_polydata": 257, "save_polydata": 257, "load_sprite_sheet": 257, "horizontallayout": 258, "verticallayout": 258, "xlayout": 258, "ylayout": 258, "zlayout": 258, "lib": 259, "command": 259, "lookupt": 259, "idtypearrai": 259, "floatarrai": 259, "doublearrai": 259, "stringarrai": 259, "unsignedchararrai": 259, "algorithmoutput": 259, "skybox": 259, "actor2d": 259, "renderwindow": 259, "renderwindowinteractor": 259, "interactoreventrecord": 259, "windowtoimagefilt": 259, "interactorstyl": 259, "proppick": 259, "pointpick": 259, "cellpick": 259, "worldpointpick": 259, "hardwareselector": 259, "imageactor": 259, "polydatamapp": 259, "polydatamapper2d": 259, "assembli": 259, "datasetmapp": 259, "texturedactor2d": 259, "follow": 259, "textactor": 259, "textactor3d": 259, "property2d": 259, "vectortext": 259, "lodactor": 259, "scalarbaractor": 259, "openglrender": 259, "interactorstyleimag": 259, "interactorstyletrackballactor": 259, "interactorstyletrackballcamera": 259, "interactorstyleus": 259, "cleanpolydata": 259, "polydatanorm": 259, "contourfilt": 259, "tubefilt": 259, "glyph3d": 259, "trianglefilt": 259, "splinefilt": 259, "transformpolydatafilt": 259, "renderlargeimag": 259, "loopsubdivisionfilt": 259, "butterflysubdivisionfilt": 259, "outlinefilt": 259, "linearextrusionfilt": 259, "texturemaptoplan": 259, "spheresourc": 259, "cylindersourc": 259, "arrowsourc": 259, "conesourc": 259, "disksourc": 259, "texturedspheresourc": 259, "regularpolygonsourc": 259, "polydata": 259, "imagedata": 259, "dataobject": 259, "cellarrai": 259, "polyvertex": 259, "unstructuredgrid": 259, "molecul": [259, 261], "datasetattribut": 259, "matrix4x4": 259, "matrix3x3": 259, "imageflip": 259, "imagereslic": 259, "imagemaptocolor": 259, "imagereader2factori": 259, "pngreader": 259, "bmpreader": 259, "jpegread": 259, "tiffread": 259, "plyread": 259, "stlreader": 259, "objread": 259, "mniobjectread": 259, "polydataread": 259, "xmlpolydataread": 259, "pngwriter": 259, "bmpwriter": 259, "jpegwrit": 259, "tiffwrit": 259, "plywrit": 259, "stlwriter": 259, "mniobjectwrit": 259, "polydatawrit": 259, "xmlpolydatawrit": 259, "simplebondperceiv": 259, "proteinribbonfilt": 259, "periodict": 259, "openglmoleculemapp": 259, "vtk_version": 259, "manifest_pbr": 260, "manifest_principl": 260, "manifest_standard": 260, "molecular": 261, "ptabl": 261, "add_atom": 261, "add_bond": 261, "get_atomic_numb": 261, "set_atomic_numb": 261, "get_atomic_posit": 261, "set_atomic_posit": 261, "get_bond_ord": 261, "set_bond_ord": 261, "get_all_atomic_numb": 261, "get_all_bond_ord": 261, "get_all_atomic_posit": 261, "deep_copy_molecul": 261, "compute_bond": 261, "sphere_cpk": 261, "ball_stick": 261, "stick": 261, "ribbon": 261, "bounding_box": 261, "pickingmanag": 262, "selectionmanag": 262, "pkg_info": 263, "pkg_commit_hash": 263, "faces_from_sphere_vertic": 264, "repeat_primitive_funct": 264, "repeat_primit": 264, "prim_squar": 264, "prim_box": 264, "prim_spher": 264, "prim_superquadr": 264, "prim_tetrahedron": 264, "prim_icosahedron": 264, "prim_rhombicuboctahedron": 264, "prim_star": 264, "prim_triangularpr": 264, "prim_pentagonalpr": 264, "prim_octagonalpr": 264, "prim_frustum": 264, "prim_cylind": 264, "prim_arrow": 264, "prim_con": 264, "shaders_dir": 265, "compose_shad": 265, "import_fury_shad": 265, "load_shad": 265, "shader_to_actor": 265, "replace_shader_in_actor": 265, "add_shader_callback": 265, "shader_apply_effect": 265, "attribute_to_actor": 265, "client": 266, "constant": 266, "server": 266, "async_app": 266, "tool": 266, "furystreamcli": 266, "furystreaminteract": 266, "callback_stream_cli": 266, "interaction_callback": 266, "_cqueue_event_id": 266, "_cqueue_index_info": 266, "_cqueue": 266, "pc": 266, "set_weel": 266, "set_mous": 266, "set_mouse_click": 266, "get_app": 266, "rtcserver": 266, "web_server_raw_arrai": 266, "web_serv": 266, "genericmultidimensionalbuff": 266, "rawarraymultidimensionalbuff": 266, "sharedmemmultidimensionalbuff": 266, "genericcircularqueu": 266, "arraycircularqueu": 266, "sharedmemcircularqueu": 266, "genericimagebuffermanag": 266, "rawarrayimagebuffermanag": 266, "sharedmemimagebuffermanag": 266, "intervaltimerthread": 266, "intervaltim": 266, "remove_shm_from_resource_track": 266, "check_port_is_avail": 266, "_tuple2ax": 267, "euler_matrix": 267, "sphere2cart": 267, "cart2spher": 267, "scale": 267, "apply_transform": 267, "transform_from_matrix": 267, "panel2d": 268, "tabui": 268, "imagecontainer2d": 268, "gridui": 268, "rectangle2d": 268, "disk2d": 268, "button2d": 268, "textbox2d": 268, "lineslider2d": 268, "linedoubleslider2d": 268, "ringslider2d": 268, "rangeslid": 268, "option": 268, "radiobutton": 268, "listbox2d": 268, "listboxitem2d": 268, "filemenu2d": 268, "playbackpanel": 268, "card2d": 268, "clip_overflow": 268, "wrap_overflow": 268, "check_overflow": 268, "cal_bounding_box_2d": 268, "rotate_2d": 268, "util": 269, "remove_observer_from_actor": 269, "set_input": 269, "numpy_to_vtk_point": 269, "numpy_to_vtk_color": 269, "numpy_to_vtk_cel": 269, "numpy_to_vtk_image_data": 269, "map_coordinates_3d_4d": 269, "lines_to_vtk_polydata": 269, "get_polydata_lin": 269, "get_polydata_triangl": 269, "get_polydata_vertic": 269, "get_polydata_tcoord": 269, "get_polydata_norm": 269, "get_polydata_tang": 269, "get_polydata_color": 269, "get_polydata_field": 269, "add_polydata_numeric_field": 269, "set_polydata_primitives_count": 269, "get_polydata_primitives_count": 269, "primitives_count_to_actor": 269, "primitives_count_from_actor": 269, "set_polydata_triangl": 269, "set_polydata_vertic": 269, "set_polydata_norm": 269, "set_polydata_tang": 269, "set_polydata_color": 269, "set_polydata_tcoord": 269, "update_polydata_norm": 269, "get_polymapper_from_polydata": 269, "get_actor_from_polymapp": 269, "get_actor_from_polydata": 269, "get_actor_from_primit": 269, "repeat_sourc": 269, "apply_affine_to_actor": 269, "apply_affin": 269, "asbyt": 269, "vtk_matrix_to_numpi": 269, "numpy_to_vtk_matrix": 269, "get_bounding_box_s": 269, "get_grid_cells_posit": 269, "shallow_copi": 269, "rgb_to_vtk": 269, "normalize_v3": 269, "normals_from_v_f": 269, "tangents_from_direction_of_anisotropi": 269, "triangle_ord": 269, "change_vertices_ord": 269, "fix_winding_ord": 269, "vertices_from_actor": 269, "colors_from_actor": 269, "normals_from_actor": 269, "tangents_from_actor": 269, "array_from_actor": 269, "normals_to_actor": 269, "tangents_to_actor": 269, "compute_bound": 269, "update_actor": 269, "get_bound": 269, "represent_actor_as_wirefram": 269, "update_surface_actor_color": 269, "color_check": 269, "is_ui": 269, "set_actor_origin": 269, "window": 270, "showmanag": 270, "record": 270, "antialias": 270, "snapshot": 270, "analyze_scen": 270, "analyze_snapshot": 270, "enable_stereo": 270, "gl_get_current_st": 270, "gl_reset_blend": 270, "gl_enable_depth": 270, "gl_disable_depth": 270, "gl_enable_blend": 270, "gl_disable_blend": 270, "gl_set_additive_blend": 270, "gl_set_additive_blending_white_background": 270, "gl_set_normal_blend": 270, "gl_set_multiplicative_blend": 270, "gl_set_subtractive_blend": 270, "release_context": 270, "histori": 272, "v0": [273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286], "2018": [273, 274, 275, 276], "quick": [273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286], "29": [274, 279], "31": [275, 285], "26": 276, "2019": [277, 278, 279], "03": [277, 283, 284], "08": [277, 278, 282, 284], "02": 278, "04": [280, 286], "01": [280, 285], "07": 281, "20": [281, 282], "type": 287, "write": 287, "submit": 287, "feedback": 287, "guidelin": 287, "publish": 287, "checklist": 287, "befor": 287, "stuff": 287}, "envversion": {"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, "sphinx": 58}, "alltitles": {"Introductory": [[0, "introductory"], [81, "introductory"]], "Fury Arrow Actor": [[1, "fury-arrow-actor"]], "Fury Cone Actor": [[2, "fury-cone-actor"]], "Texture Sphere Animation": [[3, "texture-sphere-animation"]], "Earth Coordinate Conversion": [[4, "earth-coordinate-conversion"]], "Visualizing a glTF file": [[5, "visualizing-a-gltf-file"], [6, "visualizing-a-gltf-file"]], "Exporting scene as a glTF file": [[7, "exporting-scene-as-a-gltf-file"]], "Morphing Animation in a glTF": [[8, "morphing-animation-in-a-gltf"]], "Multithreading Example": [[9, "multithreading-example"]], "Simple picking": [[10, "simple-picking"]], "Selecting multiple objects": [[11, "selecting-multiple-objects"]], "Skeletal Animation in a glTF file": [[12, "skeletal-animation-in-a-gltf-file"]], "Simple volume slicing": [[13, "simple-volume-slicing"]], "Render slices from T1 with a specific value range": [[13, "render-slices-from-t1-with-a-specific-value-range"]], "Render slices from FA with your colormap": [[13, "render-slices-from-fa-with-your-colormap"]], "Create a mosaic": [[13, "create-a-mosaic"]], "Solar System Animation": [[14, "solar-system-animation"]], "FURY sphere Actor": [[15, "fury-sphere-actor"]], "Spiky Sphere": [[16, "spiky-sphere"]], "Visualize surfaces": [[17, "visualize-surfaces"]], "Sphere Texture": [[18, "sphere-texture"]], "Using a timer": [[19, "using-a-timer"]], "Collisions of particles in a box": [[20, "collisions-of-particles-in-a-box"]], "Demos": [[21, "demos"], [81, "demos"]], "Advanced interactive visualization": [[22, "advanced-interactive-visualization"]], "Animated 2D functions": [[23, "animated-2d-functions"]], "Brownian motion": [[24, "brownian-motion"]], "Visualize bundles and metrics on bundles": [[25, "visualize-bundles-and-metrics-on-bundles"]], "Show every streamline with an orientation color": [[25, "show-every-streamline-with-an-orientation-color"]], "Show every point with a value from a volume with default colormap": [[25, "show-every-point-with-a-value-from-a-volume-with-default-colormap"]], "Show every point with a value from a volume with your colormap": [[25, "show-every-point-with-a-value-from-a-volume-with-your-colormap"]], "Show every bundle with a specific color": [[25, "show-every-bundle-with-a-specific-color"]], "Show every streamline of a bundle with a different color": [[25, "show-every-streamline-of-a-bundle-with-a-different-color"]], "Show every point of every streamline with a different color": [[25, "show-every-point-of-every-streamline-with-a-different-color"]], "Add depth cues to streamline rendering": [[25, "add-depth-cues-to-streamline-rendering"]], "Render streamlines as fake tubes": [[25, "render-streamlines-as-fake-tubes"]], "Combine depth cues with fake tubes": [[25, "combine-depth-cues-with-fake-tubes"]], "Render streamlines as tubes": [[25, "render-streamlines-as-tubes"]], "Electromagnetic Wave Propagation Animation": [[26, "electromagnetic-wave-propagation-animation"]], "Brain Fiber ODF Visualisation": [[27, "brain-fiber-odf-visualisation"]], "Fine-tuning the OpenGL state using shader callbacks": [[28, "fine-tuning-the-opengl-state-using-shader-callbacks"]], "Fractals": [[29, "fractals"]], "Motion of a charged particle in a combined magnetic and electric field": [[30, "motion-of-a-charged-particle-in-a-combined-magnetic-and-electric-field"]], "Fury Markers": [[31, "fury-markers"]], "Visualize Interdisciplinary map of the journals network": [[32, "visualize-interdisciplinary-map-of-the-journals-network"]], "Visualize Networks (Animated version)": [[33, "visualize-networks-animated-version"]], "Interactive PBR demo": [[34, "interactive-pbr-demo"]], "Play a video in the 3D world": [[35, "play-a-video-in-the-3d-world"]], "Visualization of ROI Surface Rendered with Streamlines": [[36, "visualization-of-roi-surface-rendered-with-streamlines"]], "Tesseract (Hypercube)": [[37, "tesseract-hypercube"]], "User Interface Elements": [[38, "user-interface-elements"], [81, "user-interface-elements"]], "Buttons & Text": [[39, "buttons-text"]], "Card": [[40, "card"], [41, "card"]], "Figure and Color Control using Check boxes and Radio Buttons": [[42, "figure-and-color-control-using-check-boxes-and-radio-buttons"]], "Show Manager": [[42, "show-manager"], [43, "show-manager"], [44, "show-manager"], [46, "show-manager"], [49, "show-manager"], [51, "show-manager"]], "ComboBox": [[43, "combobox"], [43, "id1"]], "Callbacks": [[43, "callbacks"]], "DrawPanel": [[44, "drawpanel"], [268, "drawpanel"]], "Using Layouts with different UI elements": [[45, "using-layouts-with-different-ui-elements"]], "Sphere Color Control using Radio Buttons": [[46, "sphere-color-control-using-radio-buttons"]], "Sphere and Radio Buttons": [[46, "sphere-and-radio-buttons"]], "Simple Shapes": [[47, "simple-shapes"]], "Tab UI": [[48, "tab-ui"]], "Slider Controls for a Cube for Tab Index 0": [[48, "slider-controls-for-a-cube-for-tab-index-0"]], "CheckBoxes For Cylinder and Sphere for Tab Index 1": [[48, "checkboxes-for-cylinder-and-sphere-for-tab-index-1"]], "Color Combobox for Fury for Tab Index 2": [[48, "color-combobox-for-fury-for-tab-index-2"]], "User Interfaces": [[49, "user-interfaces"]], "Shapes": [[49, "shapes"]], "Image": [[49, "image"]], "Panel with buttons and text": [[49, "panel-with-buttons-and-text"]], "Cube and sliders": [[49, "cube-and-sliders"], [51, "cube-and-sliders"]], "Range Slider": [[49, "range-slider"]], "Select menu": [[49, "select-menu"]], "ListBox": [[50, "listbox"]], "Cube & Slider Control": [[51, "cube-slider-control"]], "Animation": [[52, "animation"], [81, "animation"], [250, "id1"]], "Bezier Interpolator": [[53, "bezier-interpolator"]], "Position interpolation using cubic Bezier curve": [[53, "position-interpolation-using-cubic-bezier-curve"]], "Cubic Bezier curve parameters": [[53, "cubic-bezier-curve-parameters"]], "Setting Cubic Bezier keyframes": [[53, "setting-cubic-bezier-keyframes"]], "A more complex scene scene": [[53, "a-more-complex-scene-scene"]], "Keyframe animation: Camera and opacity": [[54, "keyframe-animation-camera-and-opacity"]], "The Plan": [[54, "the-plan"]], "Creating the main Timeline and adding static actors to it": [[54, "creating-the-main-timeline-and-adding-static-actors-to-it"]], "Creating \u201cFURY\u201d text": [[54, "creating-fury-text"]], "Creating and animating 50 Spheres": [[54, "creating-and-animating-50-spheres"]], "Animating the camera": [[54, "animating-the-camera"]], "Keyframe Color Interpolators": [[55, "keyframe-color-interpolators"]], "Setting color keyframes": [[55, "setting-color-keyframes"]], "Making a custom interpolator": [[56, "making-a-custom-interpolator"]], "Implementing a custom interpolator": [[56, "implementing-a-custom-interpolator"]], "Cubic spline keyframes data same as the one you get from glTF file.": [[56, "cubic-spline-keyframes-data-same-as-the-one-you-get-from-gltf-file"]], "Setting position keyframes": [[56, "setting-position-keyframes"], [58, "setting-position-keyframes"]], "Keyframe hierarchical Animation": [[57, "keyframe-hierarchical-animation"]], "Keyframe animation": [[58, "keyframe-animation"], [63, "keyframe-animation"]], "What is an Animation": [[58, "what-is-an-animation"]], "What are the interpolators": [[58, "what-are-the-interpolators"]], "Creating the environment": [[58, "creating-the-environment"]], "Creating an Animation": [[58, "creating-an-animation"]], "Changing the default interpolator for a single property": [[58, "changing-the-default-interpolator-for-a-single-property"]], "Keyframe animation introduction": [[59, "keyframe-animation-introduction"]], "Animations in FURY": [[59, "animations-in-fury"]], "What exactly is a keyframe": [[59, "what-exactly-is-a-keyframe"]], "What is Keyframe Animation": [[59, "what-is-keyframe-animation"]], "Translating a sphere": [[59, "translating-a-sphere"]], "Arm Robot Animation": [[60, "arm-robot-animation"]], "Keyframes Spline Interpolator": [[61, "keyframes-spline-interpolator"]], "Wrapping animations up!": [[61, "wrapping-animations-up"]], "Timeline and setting keyframes": [[62, "timeline-and-setting-keyframes"]], "What is Timeline?": [[62, "what-is-timeline"]], "Creating a Timeline": [[62, "creating-a-timeline"]], "Setting Keyframes": [[62, "setting-keyframes"]], "Shaders": [[64, "shaders"], [81, "shaders"]], "SDF Impostors on Billboards": [[65, "sdf-impostors-on-billboards"]], "Traditional sphere rendering": [[65, "traditional-sphere-rendering"]], "SDF sphere rendering": [[65, "sdf-sphere-rendering"]], "References": [[65, "references"], [68, "references"], [164, "references"]], "Physically-Based Rendering (PBR) on spheres": [[66, "physically-based-rendering-pbr-on-spheres"]], "Principled BRDF shader on spheres": [[67, "principled-brdf-shader-on-spheres"]], "Make a Cylinder using polygons vs SDF": [[68, "make-a-cylinder-using-polygons-vs-sdf"]], "Cylinder using polygons": [[68, "cylinder-using-polygons"]], "Cylinder using SDF": [[68, "cylinder-using-sdf"]], "Visualize SDF Actor": [[69, "visualize-sdf-actor"]], "Varying Color": [[70, "varying-color"]], "Integrate Physics using pybullet": [[71, "integrate-physics-using-pybullet"], [81, "integrate-physics-using-pybullet"]], "Ball Collision Simulation": [[72, "ball-collision-simulation"], [84, "ball-collision-simulation"]], "Brick Wall Simulation": [[73, "brick-wall-simulation"], [84, "brick-wall-simulation"]], "Syncing Bricks": [[73, "syncing-bricks"]], "Chain Simulation": [[74, "chain-simulation"], [84, "chain-simulation"]], "Domino Physics Simulation": [[75, "domino-physics-simulation"]], "Syncing Dominoes": [[75, "syncing-dominoes"]], "Wrecking Ball Simulation": [[76, "wrecking-ball-simulation"], [84, "wrecking-ball-simulation"]], "Streaming": [[77, "streaming"], [81, "streaming"]], "Streaming FURY with user interaction": [[78, "streaming-fury-with-user-interaction"]], "Notes": [[78, "notes"], [80, "notes"]], "Streaming FURY with WebRTC/MJPEG": [[79, "streaming-fury-with-webrtc-mjpeg"]], "Streaming FURY with WebRTC/MJPEG using the Widget Object": [[80, "streaming-fury-with-webrtc-mjpeg-using-the-widget-object"]], "Tutorials": [[81, "tutorials"]], "Blog": [[82, "blog"]], "Community": [[83, "community"]], "Join Us!": [[83, "join-us"]], "Contributors": [[83, "contributors"]], "FURY - pyBullet Integration Guide": [[84, "fury-pybullet-integration-guide"]], "Simple Rigid Body Dynamics": [[84, "simple-rigid-body-dynamics"]], "Necessary Imports": [[84, "necessary-imports"]], "Connection Mode": [[84, "connection-mode"]], "Disconnection": [[84, "disconnection"]], "Setting Gravity": [[84, "setting-gravity"]], "Creating Objects": [[84, "creating-objects"]], "Changing Object Dynamics": [[84, "changing-object-dynamics"]], "Adding objects to the scene": [[84, "adding-objects-to-the-scene"]], "Application of Force/Torque": [[84, "application-of-force-torque"]], "Enabling collision": [[84, "enabling-collision"]], "Creation of Show Manager": [[84, "creation-of-show-manager"]], "Syncing properties of actors": [[84, "syncing-properties-of-actors"]], "Creation of Timer Callback": [[84, "creation-of-timer-callback"]], "Initiating the simulation": [[84, "initiating-the-simulation"]], "Rendering multiple objects by a single actor": [[84, "rendering-multiple-objects-by-a-single-actor"]], "Rendering objects in FURY": [[84, "rendering-objects-in-fury"]], "Render Pybullet Objects": [[84, "render-pybullet-objects"]], "Syncing objects": [[84, "syncing-objects"]], "Rendering Joints": [[84, "rendering-joints"]], "Examples": [[84, "examples"]], "Brick Wall Simulation(Single Actor)": [[84, "brick-wall-simulation-single-actor"]], "Domino Simulation": [[84, "domino-simulation"]], "Getting Started": [[85, "getting-started"]], "Installation": [[87, "installation"]], "Dependencies": [[87, "dependencies"]], "Installation with PyPi": [[87, "installation-with-pypi"]], "Installation with Conda": [[87, "installation-with-conda"]], "Installation via Source": [[87, "installation-via-source"]], "Test the Installation": [[87, "test-the-installation"]], "Running the Tests": [[87, "running-the-tests"]], "Running the Tests Offscreen": [[87, "running-the-tests-offscreen"]], "Populating our Documentation": [[87, "populating-our-documentation"]], "Folder Structure": [[87, "folder-structure"]], "Building the documentation": [[87, "building-the-documentation"]], "About": [[88, "about"]], "Overview": [[88, "overview"]], "Statement of Need": [[88, "statement-of-need"]], "Mission Statement": [[88, "mission-statement"]], "Features": [[88, "features"]], "Architecture": [[88, "architecture"]], "License": [[88, "license"], [288, "license"]], "Credits": [[88, "credits"]], "Bug reports and support": [[88, "bug-reports-and-support"]], "FURY 0.1.0 Released": [[89, "fury-0-1-0-released"]], "FURY 0.1.3 Released": [[90, "fury-0-1-3-released"]], "FURY 0.1.4 Released": [[91, "fury-0-1-4-released"]], "FURY 0.2.0 Released": [[92, "fury-0-2-0-released"]], "Success on Brain Art Competition using FURY": [[93, "success-on-brain-art-competition-using-fury"]], "FURY 0.3.0 Released": [[94, "fury-0-3-0-released"]], "FURY 0.4.0 Released": [[95, "fury-0-4-0-released"]], "Google Summer of Code": [[96, "google-summer-of-code"], [128, "google-summer-of-code"]], "FURY 0.5.1 Released": [[97, "fury-0-5-1-released"]], "Weekly Check-in #1": [[98, "weekly-check-in-1"]], "Welcome to my GSoC Blog!!!": [[98, "welcome-to-my-gsoc-blog"], [99, "welcome-to-my-gsoc-blog"]], "What did you do during the Community Bonding Period?": [[98, "what-did-you-do-during-the-community-bonding-period"], [99, "what-did-you-do-during-the-community-bonding-period"], [132, "what-did-you-do-during-the-community-bonding-period"], [172, "what-did-you-do-during-the-community-bonding-period"], [175, "what-did-you-do-during-the-community-bonding-period"]], "What is coming up next week?": [[98, "what-is-coming-up-next-week"], [99, "what-is-coming-up-next-week"], [100, "what-is-coming-up-next-week"], [101, "what-is-coming-up-next-week"], [102, "what-is-coming-up-next-week"], [103, "what-is-coming-up-next-week"], [104, "what-is-coming-up-next-week"], [105, "what-is-coming-up-next-week"], [106, "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"], [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"], [122, "what-is-coming-up-next-week"], [124, "what-is-coming-up-next-week"], [127, "what-is-coming-up-next-week"], [132, "what-is-coming-up-next-week"], [135, "what-is-coming-up-next-week"], [138, "what-is-coming-up-next-week"], [141, "what-is-coming-up-next-week"], [142, "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"], [152, "what-is-coming-up-next-week"], [153, "what-is-coming-up-next-week"], [155, "what-is-coming-up-next-week"], [156, "what-is-coming-up-next-week"], [158, "what-is-coming-up-next-week"], [159, "what-is-coming-up-next-week"], [160, "what-is-coming-up-next-week"], [161, "what-is-coming-up-next-week"], [172, "what-is-coming-up-next-week"], [175, "what-is-coming-up-next-week"], [177, "what-is-coming-up-next-week"], [179, "what-is-coming-up-next-week"], [180, "what-is-coming-up-next-week"], [181, "what-is-coming-up-next-week"], [183, "what-is-coming-up-next-week"], [184, "what-is-coming-up-next-week"], [186, "what-is-coming-up-next-week"], [187, "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"], [203, "what-is-coming-up-next-week"], [204, "what-is-coming-up-next-week"], [205, "what-is-coming-up-next-week"], [208, "what-is-coming-up-next-week"], [210, "what-is-coming-up-next-week"], [211, "what-is-coming-up-next-week"], [213, "what-is-coming-up-next-week"], [214, "what-is-coming-up-next-week"], [215, "what-is-coming-up-next-week"]], "First week of coding!!": [[100, "first-week-of-coding"], [101, "first-week-of-coding"]], "What did you do this week?": [[100, "what-did-you-do-this-week"], [101, "what-did-you-do-this-week"], [102, "what-did-you-do-this-week"], [103, "what-did-you-do-this-week"], [104, "what-did-you-do-this-week"], [105, "what-did-you-do-this-week"], [106, "what-did-you-do-this-week"], [107, "what-did-you-do-this-week"], [108, "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"], [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"], [122, "what-did-you-do-this-week"], [124, "what-did-you-do-this-week"], [127, "what-did-you-do-this-week"], [135, "what-did-you-do-this-week"], [136, "what-did-you-do-this-week"], [138, "what-did-you-do-this-week"], [141, "what-did-you-do-this-week"], [142, "what-did-you-do-this-week"], [144, "what-did-you-do-this-week"], [147, "what-did-you-do-this-week"], [150, "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"], [161, "what-did-you-do-this-week"], [172, "what-did-you-do-this-week"], [173, "what-did-you-do-this-week"], [174, "what-did-you-do-this-week"], [175, "what-did-you-do-this-week"], [176, "what-did-you-do-this-week"], [177, "what-did-you-do-this-week"], [178, "what-did-you-do-this-week"], [179, "what-did-you-do-this-week"], [180, "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"], [223, "what-did-you-do-this-week"], [226, "what-did-you-do-this-week"], [229, "what-did-you-do-this-week"], [235, "what-did-you-do-this-week"], [238, "what-did-you-do-this-week"], [241, "what-did-you-do-this-week"], [244, "what-did-you-do-this-week"]], "Did you get stuck anywhere?": [[100, "did-you-get-stuck-anywhere"], [101, "did-you-get-stuck-anywhere"], [102, "did-you-get-stuck-anywhere"], [103, "did-you-get-stuck-anywhere"], [104, "did-you-get-stuck-anywhere"], [105, "did-you-get-stuck-anywhere"], [106, "did-you-get-stuck-anywhere"], [107, "did-you-get-stuck-anywhere"], [108, "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"], [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"], [122, "did-you-get-stuck-anywhere"], [124, "did-you-get-stuck-anywhere"], [127, "did-you-get-stuck-anywhere"], [135, "did-you-get-stuck-anywhere"], [138, "did-you-get-stuck-anywhere"], [141, "did-you-get-stuck-anywhere"], [142, "did-you-get-stuck-anywhere"], [144, "did-you-get-stuck-anywhere"], [147, "did-you-get-stuck-anywhere"], [150, "did-you-get-stuck-anywhere"], [153, "did-you-get-stuck-anywhere"], [156, "did-you-get-stuck-anywhere"], [159, "did-you-get-stuck-anywhere"], [161, "did-you-get-stuck-anywhere"], [172, "did-you-get-stuck-anywhere"], [173, "did-you-get-stuck-anywhere"], [174, "did-you-get-stuck-anywhere"], [175, "did-you-get-stuck-anywhere"], [176, "did-you-get-stuck-anywhere"], [177, "did-you-get-stuck-anywhere"], [178, "did-you-get-stuck-anywhere"], [179, "did-you-get-stuck-anywhere"], [180, "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"], [223, "did-you-get-stuck-anywhere"], [226, "did-you-get-stuck-anywhere"], [229, "did-you-get-stuck-anywhere"], [235, "did-you-get-stuck-anywhere"], [238, "did-you-get-stuck-anywhere"], [241, "did-you-get-stuck-anywhere"], [244, "did-you-get-stuck-anywhere"]], "Raymarching!!": [[102, "raymarching"]], "ComboBox2D Progress!!": [[103, "combobox2d-progress"]], "Raymarching continued": [[104, "raymarching-continued"]], "TextBlock2D Progress!!": [[105, "textblock2d-progress"]], "Spherical harmonics": [[106, "spherical-harmonics"]], "May the Force be with you!!": [[107, "may-the-force-be-with-you"]], "Ball Collision Simulation:": [[107, "ball-collision-simulation"]], "Brick Wall Simulation:": [[107, "brick-wall-simulation"]], "Spherical harmonics, Continued.": [[108, "spherical-harmonics-continued"]], "Translation, Reposition, Rotation.": [[109, "translation-reposition-rotation"]], "Translation:": [[109, "translation"]], "Rotation:": [[109, "rotation"]], "Reposition:": [[109, "reposition"]], "Orientation, Sizing, Tab UI.": [[110, "orientation-sizing-tab-ui"]], "Multiple SDF primitives.": [[111, "multiple-sdf-primitives"]], "ComboBox2D, TextBlock2D, Clipping Overflow.": [[112, "combobox2d-textblock2d-clipping-overflow"]], "FURY 0.6.0 Released": [[113, "fury-0-6-0-released"]], "Improvements in SDF primitives.": [[114, "improvements-in-sdf-primitives"]], "Tab UI, TabPanel2D, Tab UI Tutorial.": [[115, "tab-ui-tabpanel2d-tab-ui-tutorial"]], "Merging SDF primitives.": [[116, "merging-sdf-primitives"]], "More Shaders!!": [[117, "more-shaders"], [119, "more-shaders"]], "Single Actor, Physics, Scrollbars.": [[118, "single-actor-physics-scrollbars"]], "Chain Simulation, Scrollbar Refactor, Tutorial Update.": [[120, "chain-simulation-scrollbar-refactor-tutorial-update"]], "Wrecking Ball Simulation, Scrollbars Update, Physics Tutorials.": [[121, "wrecking-ball-simulation-scrollbars-update-physics-tutorials"]], "Outline Picker": [[122, "outline-picker"]], "FURY 0.6.1 Released": [[123, "fury-0-6-1-released"]], "Part of the Journey is the end unless its Open Source!": [[124, "part-of-the-journey-is-the-end-unless-its-open-source"]], "Open Dialog:": [[124, "open-dialog"]], "Save Dialog:": [[124, "save-dialog"]], "Google Summer of Code 2020 Final Work Product": [[125, "google-summer-of-code-2020-final-work-product"]], "Introduction": [[125, "introduction"]], "Proposed Objectives": [[125, "proposed-objectives"], [126, "proposed-objectives"], [162, "proposed-objectives"], [163, "proposed-objectives"], [164, "proposed-objectives"], [216, "proposed-objectives"], [217, "proposed-objectives"], [218, "proposed-objectives"]], "Unsubmitted Functionalities": [[125, "unsubmitted-functionalities"]], "Objectives Completed": [[125, "objectives-completed"], [126, "objectives-completed"], [162, "objectives-completed"], [163, "objectives-completed"], [164, "objectives-completed"], [216, "objectives-completed"], [217, "objectives-completed"], [218, "objectives-completed"]], "Other Objectives": [[125, "other-objectives"], [126, "other-objectives"], [162, "other-objectives"], [163, "other-objectives"], [216, "other-objectives"], [217, "other-objectives"], [218, "other-objectives"]], "Timeline": [[125, "timeline"], [126, "timeline"], [162, "timeline"], [163, "timeline"], [164, "timeline"], [216, "timeline"], [217, "timeline"], [218, "timeline"], [250, "timeline"]], "Google Summer of Code Final Work Product": [[126, "google-summer-of-code-final-work-product"], [162, "google-summer-of-code-final-work-product"], [163, "google-summer-of-code-final-work-product"], [216, "google-summer-of-code-final-work-product"], [217, "google-summer-of-code-final-work-product"], [218, "google-summer-of-code-final-work-product"]], "Modified Objectives": [[126, "modified-objectives"], [217, "modified-objectives"]], "Objectives in Progress": [[126, "objectives-in-progress"], [162, "objectives-in-progress"], [163, "objectives-in-progress"], [216, "objectives-in-progress"], [217, "objectives-in-progress"], [218, "objectives-in-progress"]], "Shader Showcase": [[127, "shader-showcase"]], "FURY 0.7.0 Released": [[129, "fury-0-7-0-released"], [157, "fury-0-7-0-released"]], "Weekly Check-In #1": [[130, "weekly-check-in-1"]], "What did I do this week?": [[130, "what-did-i-do-this-week"], [131, "what-did-i-do-this-week"], [134, "what-did-i-do-this-week"], [137, "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"], [148, "what-did-i-do-this-week"], [149, "what-did-i-do-this-week"], [151, "what-did-i-do-this-week"], [152, "what-did-i-do-this-week"], [154, "what-did-i-do-this-week"], [155, "what-did-i-do-this-week"], [158, "what-did-i-do-this-week"], [160, "what-did-i-do-this-week"], [165, "what-did-i-do-this-week"], [166, "what-did-i-do-this-week"], [222, "what-did-i-do-this-week"], [225, "what-did-i-do-this-week"], [228, "what-did-i-do-this-week"], [231, "what-did-i-do-this-week"], [232, "what-did-i-do-this-week"], [234, "what-did-i-do-this-week"], [237, "what-did-i-do-this-week"], [240, "what-did-i-do-this-week"], [243, "what-did-i-do-this-week"]], "Did I get stuck anywhere?": [[130, "did-i-get-stuck-anywhere"], [131, "did-i-get-stuck-anywhere"], [134, "did-i-get-stuck-anywhere"], [136, "did-i-get-stuck-anywhere"], [137, "did-i-get-stuck-anywhere"], [140, "did-i-get-stuck-anywhere"], [143, "did-i-get-stuck-anywhere"], [146, "did-i-get-stuck-anywhere"], [148, "did-i-get-stuck-anywhere"], [149, "did-i-get-stuck-anywhere"], [151, "did-i-get-stuck-anywhere"], [152, "did-i-get-stuck-anywhere"], [154, "did-i-get-stuck-anywhere"], [155, "did-i-get-stuck-anywhere"], [158, "did-i-get-stuck-anywhere"], [160, "did-i-get-stuck-anywhere"], [165, "did-i-get-stuck-anywhere"], [166, "did-i-get-stuck-anywhere"], [222, "did-i-get-stuck-anywhere"], [225, "did-i-get-stuck-anywhere"], [228, "did-i-get-stuck-anywhere"], [231, "did-i-get-stuck-anywhere"], [232, "did-i-get-stuck-anywhere"], [234, "did-i-get-stuck-anywhere"], [237, "did-i-get-stuck-anywhere"], [240, "did-i-get-stuck-anywhere"], [243, "did-i-get-stuck-anywhere"]], "What is coming up next?": [[130, "what-is-coming-up-next"], [131, "what-is-coming-up-next"], [134, "what-is-coming-up-next"], [136, "what-is-coming-up-next"], [137, "what-is-coming-up-next"], [140, "what-is-coming-up-next"], [143, "what-is-coming-up-next"], [146, "what-is-coming-up-next"], [148, "what-is-coming-up-next"], [151, "what-is-coming-up-next"], [154, "what-is-coming-up-next"], [165, "what-is-coming-up-next"], [173, "what-is-coming-up-next"], [174, "what-is-coming-up-next"], [176, "what-is-coming-up-next"], [178, "what-is-coming-up-next"], [182, "what-is-coming-up-next"], [185, "what-is-coming-up-next"], [188, "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"], [202, "what-is-coming-up-next"], [206, "what-is-coming-up-next"], [207, "what-is-coming-up-next"], [209, "what-is-coming-up-next"], [212, "what-is-coming-up-next"], [222, "what-is-coming-up-next"], [223, "what-is-coming-up-next"], [225, "what-is-coming-up-next"], [226, "what-is-coming-up-next"], [228, "what-is-coming-up-next"], [229, "what-is-coming-up-next"], [231, "what-is-coming-up-next"], [232, "what-is-coming-up-next"], [234, "what-is-coming-up-next"], [235, "what-is-coming-up-next"], [237, "what-is-coming-up-next"], [238, "what-is-coming-up-next"], [240, "what-is-coming-up-next"], [241, "what-is-coming-up-next"], [243, "what-is-coming-up-next"], [244, "what-is-coming-up-next"]], "Week #1: Welcome to my weekly Blogs!": [[131, "week-1-welcome-to-my-weekly-blogs"]], "Welcome to my GSoC Blog!": [[132, "welcome-to-my-gsoc-blog"]], "A Stadia-like system for data visualization": [[133, "a-stadia-like-system-for-data-visualization"]], "How does it works?": [[133, "how-does-it-works"]], "Sharing data between process": [[133, "sharing-data-between-process"]], "multiprocessing RawArray": [[133, "multiprocessing-rawarray"]], "Multiprocessing inside of different Operating Systems": [[133, "multiprocessing-inside-of-different-operating-systems"]], "Week #2: Feature additions in UI and IO modules": [[134, "week-2-feature-additions-in-ui-and-io-modules"]], "First week of coding!": [[135, "first-week-of-coding"]], "Weekly Check-In #3": [[136, "weekly-check-in-3"]], "A python-core issue": [[136, "a-python-core-issue"]], "Week #3: Adapting GridLayout to work with UI": [[137, "week-3-adapting-gridlayout-to-work-with-ui"]], "Second week of coding!": [[138, "second-week-of-coding"]], "SOLID, monkey patching a python issue and network visualization through WebRTC": [[139, "solid-monkey-patching-a-python-issue-and-network-visualization-through-webrtc"]], "Streaming System": [[139, "streaming-system"]], "Code Refactoring": [[139, "code-refactoring"]], "Abstract class and SOLID": [[139, "abstract-class-and-solid"]], "Using namedtuples to grant immutability and to avoid silent bugs": [[139, "using-namedtuples-to-grant-immutability-and-to-avoid-silent-bugs"]], "Testing": [[139, "testing"]], "Most relevant bugs": [[139, "most-relevant-bugs"]], "Network Layout (Helios-FURY)": [[139, "network-layout-helios-fury"]], "Refs:": [[139, "refs"]], "Week #4: Adding Tree UI to the UI module": [[140, "week-4-adding-tree-ui-to-the-ui-module"]], "Third week of coding!": [[141, "third-week-of-coding"]], "Weekly Check-In #5": [[142, "weekly-check-in-5"]], "fury-gl/fury PR#437: WebRTC streaming system for FURY": [[142, "fury-gl-fury-pr-437-webrtc-streaming-system-for-fury"]], "fury-gl/helios PR 1: Network Layout and SuperActors": [[142, "fury-gl-helios-pr-1-network-layout-and-superactors"]], "Week #5: Rebasing all PRs w.r.t the UI restructuring, Tree2D, Bug Fixes": [[143, "week-5-rebasing-all-prs-w-r-t-the-ui-restructuring-tree2d-bug-fixes"]], "Fourth week of coding!": [[144, "fourth-week-of-coding"]], "Network layout algorithms using IPC": [[145, "network-layout-algorithms-using-ipc"]], "The problem: network layout algorithm implementations with a blocking behavior": [[145, "the-problem-network-layout-algorithm-implementations-with-a-blocking-behavior"]], "Why is using the python threading is not a good solution?": [[145, "why-is-using-the-python-threading-is-not-a-good-solution"]], "IPC using python": [[145, "ipc-using-python"]], "How have I implemented the code for A and B?": [[145, "how-have-i-implemented-the-code-for-a-and-b"]], "Results": [[145, "results"]], "Next steps": [[145, "next-steps"]], "Summary of most important pull-requests:": [[145, "summary-of-most-important-pull-requests"]], "Week #6: Bug fixes, Working on Tree2D UI": [[146, "week-6-bug-fixes-working-on-tree2d-ui"]], "Fifth week of coding!": [[147, "fifth-week-of-coding"]], "Weekly Check-In #7": [[148, "weekly-check-in-7"]], "Week #7: Finalizing the stalling PRs, finishing up Tree2D UI.": [[149, "week-7-finalizing-the-stalling-prs-finishing-up-tree2d-ui"]], "Sixth week of coding!": [[150, "sixth-week-of-coding"]], "Weekly Check-In #8": [[151, "weekly-check-in-8"]], "Week #8: Code Cleanup, Finishing up open PRs, Continuing work on Tree2D": [[152, "week-8-code-cleanup-finishing-up-open-prs-continuing-work-on-tree2d"]], "Seventh week of coding!": [[153, "seventh-week-of-coding"]], "Week #09: Sphinx custom summary": [[154, "week-09-sphinx-custom-summary"]], "FURY/Helios": [[154, "fury-helios"], [165, "fury-helios"], [166, "fury-helios"]], "FURY": [[154, "fury"], [165, "fury"], [166, "fury"]], "Week #9: More Layouts!": [[155, "week-9-more-layouts"]], "Eighth coding week!": [[156, "eighth-coding-week"]], "Week#10: Accordion UI, Support for sprite sheet animations": [[158, "week-10-accordion-ui-support-for-sprite-sheet-animations"]], "Ninth coding week!": [[159, "ninth-coding-week"]], "Week #11: Finalizing open Pull Requests": [[160, "week-11-finalizing-open-pull-requests"]], "Tenth coding week!": [[161, "tenth-coding-week"]], "Google Summer of Code 2021 - Final Report - Bruno Messias": [[164, "google-summer-of-code-2021-final-report-bruno-messias"]], "Abstract": [[164, "abstract"]], "Week #10: SDF Fonts": [[165, "week-10-sdf-fonts"]], "Week #11: Removing the flickering effect": [[166, "week-11-removing-the-flickering-effect"]], "FURY 0.8.0 Released": [[167, "fury-0-8-0-released"]], "Contribute to FURY via Google Summer of Code 2022": [[168, "contribute-to-fury-via-google-summer-of-code-2022"]], "My journey till getting accepted into GSoC22": [[169, "my-journey-till-getting-accepted-into-gsoc22"]], "A Little About Myself": [[169, "a-little-about-myself"]], "My first coding experience": [[169, "my-first-coding-experience"]], "Developing a 3D game": [[169, "developing-a-3d-game"]], "My journey to GSoC22": [[169, "my-journey-to-gsoc22"]], "The day I got accepted": [[169, "the-day-i-got-accepted"]], "My Journey to GSoC 2022": [[170, "my-journey-to-gsoc-2022"]], "About Myself": [[170, "about-myself"]], "Intro to Open-Source and GSoC": [[170, "intro-to-open-source-and-gsoc"]], "The Day": [[170, "the-day"]], "Pre-GSoC Journey": [[171, "pre-gsoc-journey"]], "The Beginning of Programming": [[171, "the-beginning-of-programming"]], "Interest in Game Development and Animation": [[171, "interest-in-game-development-and-animation"]], "Intro to Opensource": [[171, "intro-to-opensource"]], "GSoC - 21": [[171, "gsoc-21"]], "GSoC - 22": [[171, "gsoc-22"]], "Week 1: Implementing a basic Keyframe animation API": [[172, "week-1-implementing-a-basic-keyframe-animation-api"]], "Week 1 - Laying the Foundation of DrawPanel UI": [[173, "week-1-laying-the-foundation-of-drawpanel-ui"]], "Week 2 - Improving DrawPanel UI": [[174, "week-2-improving-drawpanel-ui"]], "Week 1 - A Basic glTF Importer": [[175, "week-1-a-basic-gltf-importer"]], "Week 3 - Dealing with Problems": [[176, "week-3-dealing-with-problems"]], "Week 2: Implementing non-linear and color interpolators": [[177, "week-2-implementing-non-linear-and-color-interpolators"]], "Week 4 - Fixing the Clamping Issue": [[178, "week-4-fixing-the-clamping-issue"]], "Week 2 - Improving Fetcher and Exporting glTF": [[179, "week-2-improving-fetcher-and-exporting-gltf"]], "Week 3: Redesigning the API, Implementing cubic Bezier Interpolator, and making progress on the GPU side!": [[180, "week-3-redesigning-the-api-implementing-cubic-bezier-interpolator-and-making-progress-on-the-gpu-side"]], "Week 3 - Fixing fetcher, adding tests and docs": [[181, "week-3-fixing-fetcher-adding-tests-and-docs"]], "Week 5 - Working on new features": [[182, "week-5-working-on-new-features"]], "Week 4: Camera animation, interpolation in GLSL, and a single Timeline!": [[183, "week-4-camera-animation-interpolation-in-glsl-and-a-single-timeline"]], "Week 4 - Finalizing glTF loader": [[184, "week-4-finalizing-gltf-loader"]], "Week 6 - Supporting Rotation of the Shapes from the Center": [[185, "week-6-supporting-rotation-of-the-shapes-from-the-center"]], "Week 5: Slerp implementation, documenting the Timeline, and adding unit tests": [[186, "week-5-slerp-implementation-documenting-the-timeline-and-adding-unit-tests"]], "Week 5 - Creating PR for glTF exporter and fixing the loader": [[187, "week-5-creating-pr-for-gltf-exporter-and-fixing-the-loader"]], "Week 7 - Working on Rotation PR and Trying Freehand Drawing": [[188, "week-7-working-on-rotation-pr-and-trying-freehand-drawing"]], "Week 6: Fixing the Timeline issues and equipping it with more features": [[189, "week-6-fixing-the-timeline-issues-and-equipping-it-with-more-features"]], "Week 6 - Extracting the animation data": [[190, "week-6-extracting-the-animation-data"]], "Week 8 - Working on the polyline feature": [[191, "week-8-working-on-the-polyline-feature"]], "Week 7: Billboard spheres and implementing interpolators using closures": [[192, "week-7-billboard-spheres-and-implementing-interpolators-using-closures"]], "Week 7 - Fixing bugs in animations": [[193, "week-7-fixing-bugs-in-animations"]], "Week 9 - Grouping and Transforming Shapes": [[194, "week-9-grouping-and-transforming-shapes"]], "Week 8 - Fixing animation bugs": [[195, "week-8-fixing-animation-bugs"]], "Week 8: Back to the shader-based version of the Timeline": [[196, "week-8-back-to-the-shader-based-version-of-the-timeline"]], "Week 10 - Understanding Codes and Playing with Animation": [[197, "week-10-understanding-codes-and-playing-with-animation"]], "Week 9: Animating primitives of the same actor": [[198, "week-9-animating-primitives-of-the-same-actor"]], "Week 9 - First working skeletal animation prototype": [[199, "week-9-first-working-skeletal-animation-prototype"]], "Week 11 - Creating a base for Freehand Drawing": [[200, "week-11-creating-a-base-for-freehand-drawing"]], "Week 10: Supporting hierarchical animating": [[201, "week-10-supporting-hierarchical-animating"]], "Week 12 - Fixing translating issues and updating tests": [[202, "week-12-fixing-translating-issues-and-updating-tests"]], "Week 10 - Multi-node skinning support": [[203, "week-10-multi-node-skinning-support"]], "Week 11: Improving tutorials a little": [[204, "week-11-improving-tutorials-a-little"]], "Week 11 - Multiple transformations support and adding tests": [[205, "week-11-multiple-transformations-support-and-adding-tests"]], "Week 13 - Separating tests and fixing bugs": [[206, "week-13-separating-tests-and-fixing-bugs"]], "Week 14 - Updating DrawPanel architecture": [[207, "week-14-updating-drawpanel-architecture"]], "Week 12 - Adding skeleton as actors and fix global transformation": [[208, "week-12-adding-skeleton-as-actors-and-fix-global-transformation"]], "Week 15 - Highlighting DrawShapes": [[209, "week-15-highlighting-drawshapes"]], "Week 13 - Multi-bone skeletal animation support": [[210, "week-13-multi-bone-skeletal-animation-support"]], "Week 13: Keyframes animation is now a bit easier in FURY": [[211, "week-13-keyframes-animation-is-now-a-bit-easier-in-fury"]], "Week 16 - Working with Rotations!": [[212, "week-16-working-with-rotations"]], "Week 14: Keyframes animation is now a bit easier in FURY": [[213, "week-14-keyframes-animation-is-now-a-bit-easier-in-fury"]], "Week 14 - Morphing is here!": [[214, "week-14-morphing-is-here"]], "Week 12: Adding new tutorials": [[215, "week-12-adding-new-tutorials"]], "GSoC Weekly Blogs": [[216, "gsoc-weekly-blogs"]], "Loading Static glTF models": [[218, "loading-static-gltf-models"]], "Exporting Scene as a glTF": [[218, "exporting-scene-as-a-gltf"]], "Simple Actor Animations": [[218, "simple-actor-animations"]], "Morphing in glTF": [[218, "morphing-in-gltf"]], "Skeletal Animations (Skining)": [[218, "skeletal-animations-skining"]], "PBR and emission materials in glTF": [[218, "pbr-and-emission-materials-in-gltf"]], "Skinning for models with no indices": [[218, "skinning-for-models-with-no-indices"]], "Fetcher for importing glTF files from Khronos-glTF-Samples": [[218, "fetcher-for-importing-gltf-files-from-khronos-gltf-samples"]], "Other Pull Requests": [[218, "other-pull-requests"]], "GSoC weekly blogs": [[218, "gsoc-weekly-blogs"]], "Contribute to FURY via Google Summer of Code 2023": [[219, "contribute-to-fury-via-google-summer-of-code-2023"]], "FURY 0.9.0 Released": [[220, "fury-0-9-0-released"]], "Week 0: Community Bounding Period": [[221, "week-0-community-bounding-period"], [222, "week-0-community-bounding-period"]], "GSoC 2023: Community Bonding Period": [[221, "gsoc-2023-community-bonding-period"], [222, "gsoc-2023-community-bonding-period"]], "Week 1: Working with SpinBox and TextBox Enhancements": [[223, "week-1-working-with-spinbox-and-textbox-enhancements"]], "The FBO Saga - Week 1": [[224, "the-fbo-saga-week-1"]], "This Past Week": [[224, "this-past-week"]], "My Current Problems": [[224, "my-current-problems"]], "What About Next Week?": [[224, "what-about-next-week"]], "Week 1: Ellipsoid actor implemented with SDF": [[225, "week-1-ellipsoid-actor-implemented-with-sdf"]], "Week 2: Tackling Text Justification and Icon Flaw Issues": [[226, "week-2-tackling-text-justification-and-icon-flaw-issues"]], "Week 2: The Importance of (good) Documentation": [[227, "week-2-the-importance-of-good-documentation"]], "This Last Week\u2019s Effort": [[227, "this-last-week-s-effort"], [230, "this-last-week-s-effort"]], "Where the Problem Was": [[227, "where-the-problem-was"], [230, "where-the-problem-was"], [233, "where-the-problem-was"], [236, "where-the-problem-was"], [239, "where-the-problem-was"]], "This Week\u2019s Goals": [[227, "this-week-s-goals"], [230, "this-week-s-goals"], [233, "this-week-s-goals"], [236, "this-week-s-goals"], [239, "this-week-s-goals"], [242, "this-week-s-goals"], [245, "this-week-s-goals"]], "Week 2: Making adjustments to the Ellipsoid Actor": [[228, "week-2-making-adjustments-to-the-ellipsoid-actor"]], "Week 3: Resolving Combobox Icon Flaw and TextBox Justification": [[229, "week-3-resolving-combobox-icon-flaw-and-textbox-justification"]], "Week 3: Watch Your Expectations": [[230, "week-3-watch-your-expectations"]], "Week 3: Working on uncertainty and details of the first PR": [[231, "week-3-working-on-uncertainty-and-details-of-the-first-pr"]], "Week 4: Exam Preparations and Reviewing": [[232, "week-4-exam-preparations-and-reviewing"]], "Week 4: Nothing is Ever Lost": [[233, "week-4-nothing-is-ever-lost"]], "Last Week\u2019s Effort": [[233, "last-week-s-effort"], [236, "last-week-s-effort"], [242, "last-week-s-effort"], [245, "last-week-s-effort"]], "Week 4: First draft of the DTI uncertainty visualization": [[234, "week-4-first-draft-of-the-dti-uncertainty-visualization"]], "Week 5: Trying out PRs and Planning Ahead": [[235, "week-5-trying-out-prs-and-planning-ahead"]], "Week 5: All Roads Lead to Rome": [[236, "week-5-all-roads-lead-to-rome"]], "Week 5: Preparing the data for the Ellipsoid tutorial": [[237, "week-5-preparing-the-data-for-the-ellipsoid-tutorial"]], "Week 6: BoundingBox for TextBlock2D!": [[238, "week-6-boundingbox-for-textblock2d"]], "Week 6: Things are Starting to Build Up": [[239, "week-6-things-are-starting-to-build-up"]], "What I did Last Week": [[239, "what-i-did-last-week"]], "Week 6: First draft of the Ellipsoid tutorial": [[240, "week-6-first-draft-of-the-ellipsoid-tutorial"]], "Week 7: Sowing the seeds for TreeUI": [[241, "week-7-sowing-the-seeds-for-treeui"]], "Week 7: Experimentation Done": [[242, "week-7-experimentation-done"]], "Was it Hard?": [[242, "was-it-hard"]], "Week 7: Adjustments on the Uncertainty Cones visualization": [[243, "week-7-adjustments-on-the-uncertainty-cones-visualization"]], "Week 8: Another week with TextBlockUI": [[244, "week-8-another-week-with-textblockui"]], "Week 8: The Birth of a Versatile API": [[245, "week-8-the-birth-of-a-versatile-api"]], "So how did it go?": [[245, "so-how-did-it-go"]], "The Beginning of Everything - Week 0": [[246, "the-beginning-of-everything-week-0"]], "So it begins\u2026": [[246, "so-it-begins"]], "The Community Bonding Period": [[246, "the-community-bonding-period"]], "The Project\u2019s Goal": [[246, "the-project-s-goal"]], "This Week\u2019s Goal": [[246, "this-week-s-goal"]], "fury": [[247, "module-fury"]], "get_info": [[247, "get-info"]], "enable_warnings": [[247, "enable-warnings"]], "disable_warnings": [[247, "disable-warnings"]], "actor": [[248, "module-fury.actor"]], "Container": [[248, "container"]], "slicer": [[248, "slicer"]], "surface": [[248, "surface"]], "contour_from_roi": [[248, "contour-from-roi"]], "contour_from_label": [[248, "contour-from-label"]], "streamtube": [[248, "streamtube"]], "line": [[248, "line"]], "scalar_bar": [[248, "scalar-bar"]], "axes": [[248, "axes"]], "odf_slicer": [[248, "odf-slicer"]], "tensor_slicer": [[248, "tensor-slicer"]], "peak_slicer": [[248, "peak-slicer"]], "peak": [[248, "peak"]], "dot": [[248, "dot"]], "dots": [[248, "dots"]], "point": [[248, "point"]], "sphere": [[248, "sphere"]], "cylinder": [[248, "cylinder"]], "disk": [[248, "disk"]], "square": [[248, "square"]], "rectangle": [[248, "rectangle"]], "box": [[248, "box"]], "cube": [[248, "cube"]], "arrow": [[248, "arrow"]], "cone": [[248, "cone"]], "triangularprism": [[248, "triangularprism"]], "rhombicuboctahedron": [[248, "rhombicuboctahedron"]], "pentagonalprism": [[248, "pentagonalprism"]], "octagonalprism": [[248, "octagonalprism"]], "frustum": [[248, "frustum"]], "superquadric": [[248, "superquadric"]], "billboard": [[248, "billboard"]], "vector_text": [[248, "vector-text"]], "label": [[248, "label"]], "text_3d": [[248, "text-3d"]], "grid": [[248, "grid"]], "figure": [[248, "figure"]], "texture": [[248, "texture"]], "texture_update": [[248, "texture-update"]], "texture_on_sphere": [[248, "texture-on-sphere"]], "texture_2d": [[248, "texture-2d"]], "sdf": [[248, "sdf"]], "markers": [[248, "markers"]], "ellipsoid": [[248, "ellipsoid"]], "actors": [[249, "module-fury.actors"]], "Module: actors.odf_slicer": [[249, "module-fury.actors.odf_slicer"]], "Module: actors.peak": [[249, "module-fury.actors.peak"]], "Module: actors.tensor": [[249, "module-fury.actors.tensor"]], "OdfSlicerActor": [[249, "odfsliceractor"]], "PeakActor": [[249, "peakactor"]], "tensor_ellipsoid": [[249, "tensor-ellipsoid"]], "animation": [[250, "module-fury.animation"]], "Module: animation.animation": [[250, "module-fury.animation.animation"]], "Module: animation.helpers": [[250, "module-fury.animation.helpers"]], "Module: animation.interpolator": [[250, "module-fury.animation.interpolator"]], "Module: animation.timeline": [[250, "module-fury.animation.timeline"]], "CameraAnimation": [[250, "cameraanimation"]], "get_previous_timestamp": [[250, "get-previous-timestamp"]], "get_next_timestamp": [[250, "get-next-timestamp"]], "get_timestamps_from_keyframes": [[250, "get-timestamps-from-keyframes"]], "get_values_from_keyframes": [[250, "get-values-from-keyframes"]], "get_time_tau": [[250, "get-time-tau"]], "lerp": [[250, "lerp"]], "euclidean_distances": [[250, "euclidean-distances"]], "spline_interpolator": [[250, "spline-interpolator"]], "cubic_spline_interpolator": [[250, "cubic-spline-interpolator"]], "step_interpolator": [[250, "step-interpolator"]], "linear_interpolator": [[250, "linear-interpolator"]], "cubic_bezier_interpolator": [[250, "cubic-bezier-interpolator"]], "slerp": [[250, "slerp"]], "color_interpolator": [[250, "color-interpolator"]], "hsv_color_interpolator": [[250, "hsv-color-interpolator"]], "lab_color_interpolator": [[250, "lab-color-interpolator"]], "xyz_color_interpolator": [[250, "xyz-color-interpolator"]], "tan_cubic_spline_interpolator": [[250, "tan-cubic-spline-interpolator"]], "colormap": [[251, "module-fury.colormap"]], "colormap_lookup_table": [[251, "colormap-lookup-table"]], "cc": [[251, "cc"]], "ss": [[251, "ss"]], "boys2rgb": [[251, "boys2rgb"]], "orient2rgb": [[251, "orient2rgb"]], "line_colors": [[251, "line-colors"]], "get_cmap": [[251, "get-cmap"]], "create_colormap": [[251, "create-colormap"]], "distinguishable_colormap": [[251, "distinguishable-colormap"]], "hex_to_rgb": [[251, "hex-to-rgb"]], "rgb2hsv": [[251, "rgb2hsv"]], "hsv2rgb": [[251, "hsv2rgb"]], "xyz_from_rgb": [[251, "xyz-from-rgb"]], "rgb_from_xyz": [[251, "rgb-from-xyz"]], "xyz2rgb": [[251, "xyz2rgb"]], "rgb2xyz": [[251, "rgb2xyz"]], "get_xyz_coords": [[251, "get-xyz-coords"]], "xyz2lab": [[251, "xyz2lab"]], "lab2xyz": [[251, "lab2xyz"]], "rgb2lab": [[251, "rgb2lab"]], "lab2rgb": [[251, "lab2rgb"]], "convert": [[252, "module-fury.convert"]], "matplotlib_figure_to_numpy": [[252, "matplotlib-figure-to-numpy"]], "data": [[253, "module-fury.data"]], "Module: data.fetcher": [[253, "module-fury.data.fetcher"]], "DATA_DIR": [[253, "data-dir"]], "update_progressbar": [[253, "update-progressbar"]], "copyfileobj_withprogress": [[253, "copyfileobj-withprogress"]], "check_sha": [[253, "check-sha"]], "fetch_data": [[253, "fetch-data"]], "fetch_gltf": [[253, "fetch-gltf"]], "fetch_viz_cubemaps": [[253, "fetch-viz-cubemaps"]], "fetch_viz_icons": [[253, "fetch-viz-icons"]], "fetch_viz_new_icons": [[253, "fetch-viz-new-icons"]], "fetch_viz_wiki_nw": [[253, "fetch-viz-wiki-nw"]], "fetch_viz_models": [[253, "fetch-viz-models"]], "fetch_viz_dmri": [[253, "fetch-viz-dmri"]], "fetch_viz_textures": [[253, "fetch-viz-textures"]], "read_viz_cubemap": [[253, "read-viz-cubemap"]], "read_viz_icons": [[253, "read-viz-icons"]], "read_viz_models": [[253, "read-viz-models"]], "read_viz_textures": [[253, "read-viz-textures"]], "read_viz_dmri": [[253, "read-viz-dmri"]], "read_viz_gltf": [[253, "read-viz-gltf"]], "list_gltf_sample_models": [[253, "list-gltf-sample-models"]], "decorators": [[254, "module-fury.decorators"]], "SKIP_RE": [[254, "skip-re"]], "doctest_skip_parser": [[254, "doctest-skip-parser"]], "deprecator": [[255, "module-fury.deprecator"]], "ExpiredDeprecationError": [[255, "expireddeprecationerror"]], "ArgsDeprecationWarning": [[255, "argsdeprecationwarning"]], "_LEADING_WHITE": [[255, "leading-white"]], "cmp_pkg_version": [[255, "cmp-pkg-version"]], "is_bad_version": [[255, "is-bad-version"]], "deprecate_with_version": [[255, "deprecate-with-version"]], "deprecated_params": [[255, "deprecated-params"]], "gltf": [[256, "module-fury.gltf"]], "glTF": [[256, "id1"]], "export_scene": [[256, "export-scene"]], "write_scene": [[256, "write-scene"]], "write_node": [[256, "write-node"]], "write_mesh": [[256, "write-mesh"]], "write_camera": [[256, "write-camera"]], "get_prim": [[256, "get-prim"]], "write_material": [[256, "write-material"]], "write_accessor": [[256, "write-accessor"]], "write_bufferview": [[256, "write-bufferview"]], "write_buffer": [[256, "write-buffer"]], "io": [[257, "module-fury.io"]], "load_cubemap_texture": [[257, "load-cubemap-texture"]], "load_image": [[257, "load-image"]], "load_text": [[257, "load-text"]], "save_image": [[257, "save-image"]], "load_polydata": [[257, "load-polydata"]], "save_polydata": [[257, "save-polydata"]], "load_sprite_sheet": [[257, "load-sprite-sheet"]], "layout": [[258, "module-fury.layout"]], "Layout": [[258, "id1"]], "GridLayout": [[258, "gridlayout"]], "HorizontalLayout": [[258, "horizontallayout"]], "VerticalLayout": [[258, "verticallayout"]], "XLayout": [[258, "xlayout"]], "YLayout": [[258, "ylayout"]], "ZLayout": [[258, "zlayout"]], "lib": [[259, "module-fury.lib"]], "Command": [[259, "command"]], "LookupTable": [[259, "lookuptable"]], "Points": [[259, "points"]], "IdTypeArray": [[259, "idtypearray"]], "FloatArray": [[259, "floatarray"]], "DoubleArray": [[259, "doublearray"]], "StringArray": [[259, "stringarray"]], "UnsignedCharArray": [[259, "unsignedchararray"]], "AlgorithmOutput": [[259, "algorithmoutput"]], "Renderer": [[259, "renderer"]], "Skybox": [[259, "skybox"]], "Volume": [[259, "volume"]], "Actor2D": [[259, "actor2d"]], "Actor": [[259, "actor"]], "RenderWindow": [[259, "renderwindow"]], "RenderWindowInteractor": [[259, "renderwindowinteractor"]], "InteractorEventRecorder": [[259, "interactoreventrecorder"]], "WindowToImageFilter": [[259, "windowtoimagefilter"]], "InteractorStyle": [[259, "interactorstyle"]], "PropPicker": [[259, "proppicker"]], "PointPicker": [[259, "pointpicker"]], "CellPicker": [[259, "cellpicker"]], "WorldPointPicker": [[259, "worldpointpicker"]], "HardwareSelector": [[259, "hardwareselector"]], "ImageActor": [[259, "imageactor"]], "PolyDataMapper": [[259, "polydatamapper"]], "PolyDataMapper2D": [[259, "polydatamapper2d"]], "Assembly": [[259, "assembly"]], "DataSetMapper": [[259, "datasetmapper"]], "Texture": [[259, "texture"]], "TexturedActor2D": [[259, "texturedactor2d"]], "Follower": [[259, "follower"]], "TextActor": [[259, "textactor"]], "TextActor3D": [[259, "textactor3d"]], "Property2D": [[259, "property2d"]], "Camera": [[259, "camera"]], "VectorText": [[259, "vectortext"]], "LODActor": [[259, "lodactor"]], "ScalarBarActor": [[259, "scalarbaractor"]], "OpenGLRenderer": [[259, "openglrenderer"]], "Shader": [[259, "shader"]], "InteractorStyleImage": [[259, "interactorstyleimage"]], "InteractorStyleTrackballActor": [[259, "interactorstyletrackballactor"]], "InteractorStyleTrackballCamera": [[259, "interactorstyletrackballcamera"]], "InteractorStyleUser": [[259, "interactorstyleuser"]], "CleanPolyData": [[259, "cleanpolydata"]], "PolyDataNormals": [[259, "polydatanormals"]], "ContourFilter": [[259, "contourfilter"]], "TubeFilter": [[259, "tubefilter"]], "Glyph3D": [[259, "glyph3d"]], "TriangleFilter": [[259, "trianglefilter"]], "SplineFilter": [[259, "splinefilter"]], "TransformPolyDataFilter": [[259, "transformpolydatafilter"]], "RenderLargeImage": [[259, "renderlargeimage"]], "LoopSubdivisionFilter": [[259, "loopsubdivisionfilter"]], "ButterflySubdivisionFilter": [[259, "butterflysubdivisionfilter"]], "OutlineFilter": [[259, "outlinefilter"]], "LinearExtrusionFilter": [[259, "linearextrusionfilter"]], "TextureMapToPlane": [[259, "texturemaptoplane"]], "SphereSource": [[259, "spheresource"]], "CylinderSource": [[259, "cylindersource"]], "ArrowSource": [[259, "arrowsource"]], "ConeSource": [[259, "conesource"]], "DiskSource": [[259, "disksource"]], "TexturedSphereSource": [[259, "texturedspheresource"]], "RegularPolygonSource": [[259, "regularpolygonsource"]], "PolyData": [[259, "polydata"]], "ImageData": [[259, "imagedata"]], "DataObject": [[259, "dataobject"], [259, "id1"]], "CellArray": [[259, "cellarray"]], "PolyVertex": [[259, "polyvertex"]], "UnstructuredGrid": [[259, "unstructuredgrid"]], "Polygon": [[259, "polygon"]], "Molecule": [[259, "molecule"], [261, "molecule"]], "DataSetAttributes": [[259, "datasetattributes"]], "Transform": [[259, "transform"]], "Matrix4x4": [[259, "matrix4x4"]], "Matrix3x3": [[259, "matrix3x3"]], "ImageFlip": [[259, "imageflip"]], "ImageReslice": [[259, "imagereslice"]], "ImageMapToColors": [[259, "imagemaptocolors"]], "ImageReader2Factory": [[259, "imagereader2factory"]], "PNGReader": [[259, "pngreader"]], "BMPReader": [[259, "bmpreader"]], "JPEGReader": [[259, "jpegreader"]], "TIFFReader": [[259, "tiffreader"]], "PLYReader": [[259, "plyreader"]], "STLReader": [[259, "stlreader"]], "OBJReader": [[259, "objreader"]], "MNIObjectReader": [[259, "mniobjectreader"]], "PolyDataReader": [[259, "polydatareader"]], "XMLPolyDataReader": [[259, "xmlpolydatareader"]], "PNGWriter": [[259, "pngwriter"]], "BMPWriter": [[259, "bmpwriter"]], "JPEGWriter": [[259, "jpegwriter"]], "TIFFWriter": [[259, "tiffwriter"]], "PLYWriter": [[259, "plywriter"]], "STLWriter": [[259, "stlwriter"]], "MNIObjectWriter": [[259, "mniobjectwriter"]], "PolyDataWriter": [[259, "polydatawriter"]], "XMLPolyDataWriter": [[259, "xmlpolydatawriter"]], "SimpleBondPerceiver": [[259, "simplebondperceiver"]], "ProteinRibbonFilter": [[259, "proteinribbonfilter"]], "PeriodicTable": [[259, "periodictable"]], "OpenGLMoleculeMapper": [[259, "openglmoleculemapper"]], "VTK_VERSION": [[259, "vtk-version"]], "material": [[260, "module-fury.material"]], "manifest_pbr": [[260, "manifest-pbr"]], "manifest_principled": [[260, "manifest-principled"]], "manifest_standard": [[260, "manifest-standard"]], "molecular": [[261, "module-fury.molecular"]], "PTable": [[261, "ptable"]], "add_atom": [[261, "add-atom"]], "add_bond": [[261, "add-bond"]], "get_atomic_number": [[261, "get-atomic-number"]], "set_atomic_number": [[261, "set-atomic-number"]], "get_atomic_position": [[261, "get-atomic-position"]], "set_atomic_position": [[261, "set-atomic-position"]], "get_bond_order": [[261, "get-bond-order"]], "set_bond_order": [[261, "set-bond-order"]], "get_all_atomic_numbers": [[261, "get-all-atomic-numbers"]], "get_all_bond_orders": [[261, "get-all-bond-orders"]], "get_all_atomic_positions": [[261, "get-all-atomic-positions"]], "deep_copy_molecule": [[261, "deep-copy-molecule"]], "compute_bonding": [[261, "compute-bonding"]], "sphere_cpk": [[261, "sphere-cpk"]], "ball_stick": [[261, "ball-stick"]], "stick": [[261, "stick"]], "ribbon": [[261, "ribbon"]], "bounding_box": [[261, "bounding-box"]], "pick": [[262, "module-fury.pick"]], "PickingManager": [[262, "pickingmanager"]], "SelectionManager": [[262, "selectionmanager"]], "pkg_info": [[263, "module-fury.pkg_info"]], "pkg_commit_hash": [[263, "pkg-commit-hash"]], "primitive": [[264, "module-fury.primitive"]], "faces_from_sphere_vertices": [[264, "faces-from-sphere-vertices"]], "repeat_primitive_function": [[264, "repeat-primitive-function"]], "repeat_primitive": [[264, "repeat-primitive"]], "prim_square": [[264, "prim-square"]], "prim_box": [[264, "prim-box"]], "prim_sphere": [[264, "prim-sphere"]], "prim_superquadric": [[264, "prim-superquadric"]], "prim_tetrahedron": [[264, "prim-tetrahedron"]], "prim_icosahedron": [[264, "prim-icosahedron"]], "prim_rhombicuboctahedron": [[264, "prim-rhombicuboctahedron"]], "prim_star": [[264, "prim-star"]], "prim_triangularprism": [[264, "prim-triangularprism"]], "prim_pentagonalprism": [[264, "prim-pentagonalprism"]], "prim_octagonalprism": [[264, "prim-octagonalprism"]], "prim_frustum": [[264, "prim-frustum"]], "prim_cylinder": [[264, "prim-cylinder"]], "prim_arrow": [[264, "prim-arrow"]], "prim_cone": [[264, "prim-cone"]], "shaders": [[265, "module-fury.shaders"]], "Module: shaders.base": [[265, "module-fury.shaders.base"]], "SHADERS_DIR": [[265, "shaders-dir"]], "compose_shader": [[265, "compose-shader"]], "import_fury_shader": [[265, "import-fury-shader"]], "load_shader": [[265, "load-shader"]], "load": [[265, "load"]], "shader_to_actor": [[265, "shader-to-actor"]], "replace_shader_in_actor": [[265, "replace-shader-in-actor"]], "add_shader_callback": [[265, "add-shader-callback"]], "shader_apply_effects": [[265, "shader-apply-effects"]], "attribute_to_actor": [[265, "attribute-to-actor"]], "stream": [[266, "module-fury.stream"]], "Module: stream.client": [[266, "module-fury.stream.client"]], "Module: stream.constants": [[266, "module-fury.stream.constants"]], "Module: stream.server": [[266, "module-fury.stream.server"]], "Module: stream.server.async_app": [[266, "module-fury.stream.server.async_app"]], "Module: stream.server.main": [[266, "module-fury.stream.server.main"]], "Module: stream.tools": [[266, "module-fury.stream.tools"]], "Module: stream.widget": [[266, "module-fury.stream.widget"]], "FuryStreamClient": [[266, "furystreamclient"]], "FuryStreamInteraction": [[266, "furystreaminteraction"]], "callback_stream_client": [[266, "callback-stream-client"]], "interaction_callback": [[266, "interaction-callback"]], "_CQUEUE_EVENT_IDs": [[266, "cqueue-event-ids"]], "_CQUEUE_INDEX_INFO": [[266, "cqueue-index-info"]], "_CQUEUE": [[266, "cqueue"]], "pcs": [[266, "pcs"]], "set_weel": [[266, "set-weel"]], "set_mouse": [[266, "set-mouse"]], "set_mouse_click": [[266, "set-mouse-click"]], "get_app": [[266, "get-app"]], "RTCServer": [[266, "rtcserver"]], "web_server_raw_array": [[266, "web-server-raw-array"]], "web_server": [[266, "web-server"]], "GenericMultiDimensionalBuffer": [[266, "genericmultidimensionalbuffer"]], "RawArrayMultiDimensionalBuffer": [[266, "rawarraymultidimensionalbuffer"]], "SharedMemMultiDimensionalBuffer": [[266, "sharedmemmultidimensionalbuffer"]], "GenericCircularQueue": [[266, "genericcircularqueue"]], "ArrayCircularQueue": [[266, "arraycircularqueue"]], "SharedMemCircularQueue": [[266, "sharedmemcircularqueue"]], "GenericImageBufferManager": [[266, "genericimagebuffermanager"]], "RawArrayImageBufferManager": [[266, "rawarrayimagebuffermanager"]], "SharedMemImageBufferManager": [[266, "sharedmemimagebuffermanager"]], "IntervalTimerThreading": [[266, "intervaltimerthreading"]], "IntervalTimer": [[266, "intervaltimer"]], "remove_shm_from_resource_tracker": [[266, "remove-shm-from-resource-tracker"]], "Widget": [[266, "widget"]], "check_port_is_available": [[266, "check-port-is-available"]], "transform": [[267, "module-fury.transform"]], "_TUPLE2AXES": [[267, "tuple2axes"]], "euler_matrix": [[267, "euler-matrix"]], "sphere2cart": [[267, "sphere2cart"]], "cart2sphere": [[267, "cart2sphere"]], "translate": [[267, "translate"]], "rotate": [[267, "rotate"], [269, "rotate"]], "scale": [[267, "scale"]], "apply_transformation": [[267, "apply-transformation"]], "transform_from_matrix": [[267, "transform-from-matrix"]], "ui": [[268, "module-fury.ui"]], "Module: ui.containers": [[268, "module-fury.ui.containers"]], "Module: ui.core": [[268, "module-fury.ui.core"]], "Module: ui.elements": [[268, "module-fury.ui.elements"]], "Module: ui.helpers": [[268, "module-fury.ui.helpers"]], "Panel2D": [[268, "panel2d"]], "TabPanel2D": [[268, "tabpanel2d"]], "TabUI": [[268, "tabui"]], "ImageContainer2D": [[268, "imagecontainer2d"]], "GridUI": [[268, "gridui"]], "UI": [[268, "id1"]], "Rectangle2D": [[268, "rectangle2d"]], "Disk2D": [[268, "disk2d"]], "TextBlock2D": [[268, "textblock2d"]], "Button2D": [[268, "button2d"]], "TextBox2D": [[268, "textbox2d"]], "LineSlider2D": [[268, "lineslider2d"]], "LineDoubleSlider2D": [[268, "linedoubleslider2d"]], "RingSlider2D": [[268, "ringslider2d"]], "RangeSlider": [[268, "rangeslider"]], "Option": [[268, "option"]], "Checkbox": [[268, "checkbox"]], "RadioButton": [[268, "radiobutton"]], "ComboBox2D": [[268, "combobox2d"]], "ListBox2D": [[268, "listbox2d"]], "ListBoxItem2D": [[268, "listboxitem2d"]], "FileMenu2D": [[268, "filemenu2d"]], "DrawShape": [[268, "drawshape"]], "PlaybackPanel": [[268, "playbackpanel"]], "Card2D": [[268, "card2d"]], "clip_overflow": [[268, "clip-overflow"]], "wrap_overflow": [[268, "wrap-overflow"]], "check_overflow": [[268, "check-overflow"]], "cal_bounding_box_2d": [[268, "cal-bounding-box-2d"]], "rotate_2d": [[268, "rotate-2d"]], "utils": [[269, "module-fury.utils"]], "remove_observer_from_actor": [[269, "remove-observer-from-actor"]], "set_input": [[269, "set-input"]], "numpy_to_vtk_points": [[269, "numpy-to-vtk-points"]], "numpy_to_vtk_colors": [[269, "numpy-to-vtk-colors"]], "numpy_to_vtk_cells": [[269, "numpy-to-vtk-cells"]], "numpy_to_vtk_image_data": [[269, "numpy-to-vtk-image-data"]], "map_coordinates_3d_4d": [[269, "map-coordinates-3d-4d"]], "lines_to_vtk_polydata": [[269, "lines-to-vtk-polydata"]], "get_polydata_lines": [[269, "get-polydata-lines"]], "get_polydata_triangles": [[269, "get-polydata-triangles"]], "get_polydata_vertices": [[269, "get-polydata-vertices"]], "get_polydata_tcoord": [[269, "get-polydata-tcoord"]], "get_polydata_normals": [[269, "get-polydata-normals"]], "get_polydata_tangents": [[269, "get-polydata-tangents"]], "get_polydata_colors": [[269, "get-polydata-colors"]], "get_polydata_field": [[269, "get-polydata-field"]], "add_polydata_numeric_field": [[269, "add-polydata-numeric-field"]], "set_polydata_primitives_count": [[269, "set-polydata-primitives-count"]], "get_polydata_primitives_count": [[269, "get-polydata-primitives-count"]], "primitives_count_to_actor": [[269, "primitives-count-to-actor"]], "primitives_count_from_actor": [[269, "primitives-count-from-actor"]], "set_polydata_triangles": [[269, "set-polydata-triangles"]], "set_polydata_vertices": [[269, "set-polydata-vertices"]], "set_polydata_normals": [[269, "set-polydata-normals"]], "set_polydata_tangents": [[269, "set-polydata-tangents"]], "set_polydata_colors": [[269, "set-polydata-colors"]], "set_polydata_tcoords": [[269, "set-polydata-tcoords"]], "update_polydata_normals": [[269, "update-polydata-normals"]], "get_polymapper_from_polydata": [[269, "get-polymapper-from-polydata"]], "get_actor_from_polymapper": [[269, "get-actor-from-polymapper"]], "get_actor_from_polydata": [[269, "get-actor-from-polydata"]], "get_actor_from_primitive": [[269, "get-actor-from-primitive"]], "repeat_sources": [[269, "repeat-sources"]], "apply_affine_to_actor": [[269, "apply-affine-to-actor"]], "apply_affine": [[269, "apply-affine"]], "asbytes": [[269, "asbytes"]], "vtk_matrix_to_numpy": [[269, "vtk-matrix-to-numpy"]], "numpy_to_vtk_matrix": [[269, "numpy-to-vtk-matrix"]], "get_bounding_box_sizes": [[269, "get-bounding-box-sizes"]], "get_grid_cells_position": [[269, "get-grid-cells-position"]], "shallow_copy": [[269, "shallow-copy"]], "rgb_to_vtk": [[269, "rgb-to-vtk"]], "normalize_v3": [[269, "normalize-v3"]], "normals_from_v_f": [[269, "normals-from-v-f"]], "tangents_from_direction_of_anisotropy": [[269, "tangents-from-direction-of-anisotropy"]], "triangle_order": [[269, "triangle-order"]], "change_vertices_order": [[269, "change-vertices-order"]], "fix_winding_order": [[269, "fix-winding-order"]], "vertices_from_actor": [[269, "vertices-from-actor"]], "colors_from_actor": [[269, "colors-from-actor"]], "normals_from_actor": [[269, "normals-from-actor"]], "tangents_from_actor": [[269, "tangents-from-actor"]], "array_from_actor": [[269, "array-from-actor"]], "normals_to_actor": [[269, "normals-to-actor"]], "tangents_to_actor": [[269, "tangents-to-actor"]], "compute_bounds": [[269, "compute-bounds"]], "update_actor": [[269, "update-actor"]], "get_bounds": [[269, "get-bounds"]], "represent_actor_as_wireframe": [[269, "represent-actor-as-wireframe"]], "update_surface_actor_colors": [[269, "update-surface-actor-colors"]], "color_check": [[269, "color-check"]], "is_ui": [[269, "is-ui"]], "set_actor_origin": [[269, "set-actor-origin"]], "window": [[270, "module-fury.window"]], "Scene": [[270, "scene"]], "ShowManager": [[270, "showmanager"]], "show": [[270, "show"]], "record": [[270, "record"]], "antialiasing": [[270, "antialiasing"]], "snapshot": [[270, "snapshot"]], "analyze_scene": [[270, "analyze-scene"]], "analyze_snapshot": [[270, "analyze-snapshot"]], "enable_stereo": [[270, "enable-stereo"]], "gl_get_current_state": [[270, "gl-get-current-state"]], "gl_reset_blend": [[270, "gl-reset-blend"]], "gl_enable_depth": [[270, "gl-enable-depth"]], "gl_disable_depth": [[270, "gl-disable-depth"]], "gl_enable_blend": [[270, "gl-enable-blend"]], "gl_disable_blend": [[270, "gl-disable-blend"]], "gl_set_additive_blending": [[270, "gl-set-additive-blending"]], "gl_set_additive_blending_white_background": [[270, "gl-set-additive-blending-white-background"]], "gl_set_normal_blending": [[270, "gl-set-normal-blending"]], "gl_set_multiplicative_blending": [[270, "gl-set-multiplicative-blending"]], "gl_set_subtractive_blending": [[270, "gl-set-subtractive-blending"]], "release_context": [[270, "release-context"]], "API Reference": [[271, "api-reference"]], "Release History": [[272, "release-history"]], "Release notes v0.1.0 (2018-09-21)": [[273, "release-notes-v0-1-0-2018-09-21"]], "Quick Overview": [[273, "quick-overview"], [274, "quick-overview"], [275, "quick-overview"], [276, "quick-overview"], [277, "quick-overview"], [278, "quick-overview"], [279, "quick-overview"], [280, "quick-overview"], [281, "quick-overview"], [282, "quick-overview"], [283, "quick-overview"], [284, "quick-overview"], [285, "quick-overview"], [286, "quick-overview"]], "Release notes v0.1.1 (2018-10-29)": [[274, "release-notes-v0-1-1-2018-10-29"]], "Release notes v0.1.2 and v0.1.3 (2018-10-31)": [[275, "release-notes-v0-1-2-and-v0-1-3-2018-10-31"]], "Release notes v0.1.4 (2018-11-26)": [[276, "release-notes-v0-1-4-2018-11-26"]], "Release notes v0.2.0 (2019-03-08)": [[277, "release-notes-v0-2-0-2019-03-08"]], "Details": [[277, "details"], [278, "details"], [279, "details"], [280, "details"], [281, "details"], [282, "details"], [283, "details"], [284, "details"], [285, "details"], [286, "details"]], "Release notes v0.3.0 (2019-08-02)": [[278, "release-notes-v0-3-0-2019-08-02"]], "Release notes v0.4.0 (2019-10-29)": [[279, "release-notes-v0-4-0-2019-10-29"]], "Release notes v0.5.1 (2020-04-01)": [[280, "release-notes-v0-5-1-2020-04-01"]], "Release notes v0.6.0 (2020-07-20)": [[281, "release-notes-v0-6-0-2020-07-20"]], "Release notes v0.6.1 (2020-08-20)": [[282, "release-notes-v0-6-1-2020-08-20"]], "Release notes v0.7.0 (2021/03/13)": [[283, "release-notes-v0-7-0-2021-03-13"]], "Release notes v0.7.1 (2021/08/03)": [[284, "release-notes-v0-7-1-2021-08-03"]], "Release notes v0.8.0 (2022/01/31)": [[285, "release-notes-v0-8-0-2022-01-31"]], "Release notes v0.9.0 (2023/04/15)": [[286, "release-notes-v0-9-0-2023-04-15"]], "Contributing": [[287, "contributing"]], "Types of Contributions": [[287, "types-of-contributions"]], "Report Bugs": [[287, "report-bugs"]], "Fix Bugs": [[287, "fix-bugs"]], "Implement Features": [[287, "implement-features"]], "Write Documentation": [[287, "write-documentation"]], "Submit Feedback": [[287, "submit-feedback"]], "Get Started!": [[287, "get-started"]], "Pull Request Guidelines": [[287, "pull-request-guidelines"]], "Publishing Releases": [[287, "publishing-releases"]], "Checklist before Releasing": [[287, "checklist-before-releasing"]], "Doing the release": [[287, "doing-the-release"]], "Other stuff that needs doing for the release": [[287, "other-stuff-that-needs-doing-for-the-release"]]}, "indexentries": {"disable_warnings() (in module fury)": [[247, "fury.disable_warnings"]], "enable_warnings() (in module fury)": [[247, "fury.enable_warnings"]], "fury": [[247, "module-fury"]], "get_info() (in module fury)": [[247, "fury.get_info"]], "module": [[247, "module-fury"], [248, "module-fury.actor"], [249, "module-fury.actors"], [249, "module-fury.actors.odf_slicer"], [249, "module-fury.actors.peak"], [249, "module-fury.actors.tensor"], [250, "module-fury.animation"], [250, "module-fury.animation.animation"], [250, "module-fury.animation.helpers"], [250, "module-fury.animation.interpolator"], [250, "module-fury.animation.timeline"], [251, "module-fury.colormap"], [252, "module-fury.convert"], [253, "module-fury.data"], [253, "module-fury.data.fetcher"], [254, "module-fury.decorators"], [255, "module-fury.deprecator"], [256, "module-fury.gltf"], [257, "module-fury.io"], [258, "module-fury.layout"], [259, "module-fury.lib"], [260, "module-fury.material"], [261, "module-fury.molecular"], [262, "module-fury.pick"], [263, "module-fury.pkg_info"], [264, "module-fury.primitive"], [265, "module-fury.shaders"], [265, "module-fury.shaders.base"], [266, "module-fury.stream"], [266, "module-fury.stream.client"], [266, "module-fury.stream.constants"], [266, "module-fury.stream.server"], [266, "module-fury.stream.server.async_app"], [266, "module-fury.stream.server.main"], [266, "module-fury.stream.tools"], [266, "module-fury.stream.widget"], [267, "module-fury.transform"], [268, "module-fury.ui"], [268, "module-fury.ui.containers"], [268, "module-fury.ui.core"], [268, "module-fury.ui.elements"], [268, "module-fury.ui.helpers"], [269, "module-fury.utils"], [270, "module-fury.window"]], "addposition() (fury.actor.container method)": [[248, "fury.actor.Container.AddPosition"]], "container (class in fury.actor)": [[248, "fury.actor.Container"]], "getbounds() (fury.actor.container method)": [[248, "fury.actor.Container.GetBounds"]], "getcenter() (fury.actor.container method)": [[248, "fury.actor.Container.GetCenter"]], "getlength() (fury.actor.container method)": [[248, "fury.actor.Container.GetLength"]], "getposition() (fury.actor.container method)": [[248, "fury.actor.Container.GetPosition"]], "getvisibility() (fury.actor.container method)": [[248, "fury.actor.Container.GetVisibility"]], "newinstance() (fury.actor.container method)": [[248, "fury.actor.Container.NewInstance"]], "setposition() (fury.actor.container method)": [[248, "fury.actor.Container.SetPosition"]], "setvisibility() (fury.actor.container method)": [[248, "fury.actor.Container.SetVisibility"]], "shallowcopy() (fury.actor.container method)": [[248, "fury.actor.Container.ShallowCopy"]], "__init__() (fury.actor.container method)": [[248, "fury.actor.Container.__init__"]], "add() (fury.actor.container method)": [[248, "fury.actor.Container.add"]], "add_to_scene() (fury.actor.container method)": [[248, "fury.actor.Container.add_to_scene"]], "anchor (fury.actor.container attribute)": [[248, "fury.actor.Container.anchor"]], "arrow() (in module fury.actor)": [[248, "fury.actor.arrow"]], "axes() (in module fury.actor)": [[248, "fury.actor.axes"]], "billboard() (in module fury.actor)": [[248, "fury.actor.billboard"]], "box() (in module fury.actor)": [[248, "fury.actor.box"]], "clear() (fury.actor.container method)": [[248, "fury.actor.Container.clear"]], "cone() (in module fury.actor)": [[248, "fury.actor.cone"]], "contour_from_label() (in module fury.actor)": [[248, "fury.actor.contour_from_label"]], "contour_from_roi() (in module fury.actor)": [[248, "fury.actor.contour_from_roi"]], "cube() (in module fury.actor)": [[248, "fury.actor.cube"]], "cylinder() (in module fury.actor)": [[248, "fury.actor.cylinder"]], "disk() (in module fury.actor)": [[248, "fury.actor.disk"]], "dot() (in module fury.actor)": [[248, "fury.actor.dot"]], "dots() (in module fury.actor)": [[248, "fury.actor.dots"]], "ellipsoid() (in module fury.actor)": [[248, "fury.actor.ellipsoid"]], "figure() (in module fury.actor)": [[248, "fury.actor.figure"]], "frustum() (in module fury.actor)": [[248, "fury.actor.frustum"]], "fury.actor": [[248, "module-fury.actor"]], "grid() (in module fury.actor)": [[248, "fury.actor.grid"]], "items (fury.actor.container property)": [[248, "fury.actor.Container.items"]], "label() (in module fury.actor)": [[248, "fury.actor.label"]], "line() (in module fury.actor)": [[248, "fury.actor.line"]], "markers() (in module fury.actor)": [[248, "fury.actor.markers"]], "octagonalprism() (in module fury.actor)": [[248, "fury.actor.octagonalprism"]], "odf_slicer() (in module fury.actor)": [[248, "fury.actor.odf_slicer"]], "padding (fury.actor.container attribute)": [[248, "fury.actor.Container.padding"]], "peak() (in module fury.actor)": [[248, "fury.actor.peak"]], "peak_slicer() (in module fury.actor)": [[248, "fury.actor.peak_slicer"]], "pentagonalprism() (in module fury.actor)": [[248, "fury.actor.pentagonalprism"]], "point() (in module fury.actor)": [[248, "fury.actor.point"]], "rectangle() (in module fury.actor)": [[248, "fury.actor.rectangle"]], "remove_from_scene() (fury.actor.container method)": [[248, "fury.actor.Container.remove_from_scene"]], "rhombicuboctahedron() (in module fury.actor)": [[248, "fury.actor.rhombicuboctahedron"]], "scalar_bar() (in module fury.actor)": [[248, "fury.actor.scalar_bar"]], "sdf() (in module fury.actor)": [[248, "fury.actor.sdf"]], "slicer() (in module fury.actor)": [[248, "fury.actor.slicer"]], "sphere() (in module fury.actor)": [[248, "fury.actor.sphere"]], "square() (in module fury.actor)": [[248, "fury.actor.square"]], "streamtube() (in module fury.actor)": [[248, "fury.actor.streamtube"]], "superquadric() (in module fury.actor)": [[248, "fury.actor.superquadric"]], "surface() (in module fury.actor)": [[248, "fury.actor.surface"]], "tensor_slicer() (in module fury.actor)": [[248, "fury.actor.tensor_slicer"]], "text_3d() (in module fury.actor)": [[248, "fury.actor.text_3d"]], "texture() (in module fury.actor)": [[248, "fury.actor.texture"]], "texture_2d() (in module fury.actor)": [[248, "fury.actor.texture_2d"]], "texture_on_sphere() (in module fury.actor)": [[248, "fury.actor.texture_on_sphere"]], "texture_update() (in module fury.actor)": [[248, "fury.actor.texture_update"]], "triangularprism() (in module fury.actor)": [[248, "fury.actor.triangularprism"]], "update() (fury.actor.container method)": [[248, "fury.actor.Container.update"]], "vector_text() (in module fury.actor)": [[248, "fury.actor.vector_text"]], "odfsliceractor (class in fury.actors.odf_slicer)": [[249, "fury.actors.odf_slicer.OdfSlicerActor"]], "peakactor (class in fury.actors.peak)": [[249, "fury.actors.peak.PeakActor"]], "__init__() (fury.actors.odf_slicer.odfsliceractor method)": [[249, "fury.actors.odf_slicer.OdfSlicerActor.__init__"]], "__init__() (fury.actors.peak.peakactor method)": [[249, "fury.actors.peak.PeakActor.__init__"]], "cross_section (fury.actors.peak.peakactor property)": [[249, "fury.actors.peak.PeakActor.cross_section"]], "display() (fury.actors.odf_slicer.odfsliceractor method)": [[249, "fury.actors.odf_slicer.OdfSlicerActor.display"]], "display_cross_section() (fury.actors.peak.peakactor method)": [[249, "fury.actors.peak.PeakActor.display_cross_section"]], "display_extent() (fury.actors.odf_slicer.odfsliceractor method)": [[249, "fury.actors.odf_slicer.OdfSlicerActor.display_extent"]], "display_extent() (fury.actors.peak.peakactor method)": [[249, "fury.actors.peak.PeakActor.display_extent"]], "fury.actors": [[249, "module-fury.actors"]], "fury.actors.odf_slicer": [[249, "module-fury.actors.odf_slicer"]], "fury.actors.peak": [[249, "module-fury.actors.peak"]], "fury.actors.tensor": [[249, "module-fury.actors.tensor"]], "global_opacity (fury.actors.peak.peakactor property)": [[249, "fury.actors.peak.PeakActor.global_opacity"]], "high_ranges (fury.actors.peak.peakactor property)": [[249, "fury.actors.peak.PeakActor.high_ranges"]], "is_range (fury.actors.peak.peakactor property)": [[249, "fury.actors.peak.PeakActor.is_range"]], "linewidth (fury.actors.peak.peakactor property)": [[249, "fury.actors.peak.PeakActor.linewidth"]], "low_ranges (fury.actors.peak.peakactor property)": [[249, "fury.actors.peak.PeakActor.low_ranges"]], "max_centers (fury.actors.peak.peakactor property)": [[249, "fury.actors.peak.PeakActor.max_centers"]], "min_centers (fury.actors.peak.peakactor property)": [[249, "fury.actors.peak.PeakActor.min_centers"]], "set_opacity() (fury.actors.odf_slicer.odfsliceractor method)": [[249, "fury.actors.odf_slicer.OdfSlicerActor.set_opacity"]], "slice_along_axis() (fury.actors.odf_slicer.odfsliceractor method)": [[249, "fury.actors.odf_slicer.OdfSlicerActor.slice_along_axis"]], "tensor_ellipsoid() (in module fury.actors.tensor)": [[249, "fury.actors.tensor.tensor_ellipsoid"]], "update_sphere() (fury.actors.odf_slicer.odfsliceractor method)": [[249, "fury.actors.odf_slicer.OdfSlicerActor.update_sphere"]], "animation (class in fury.animation.animation)": [[250, "fury.animation.animation.Animation"]], "cameraanimation (class in fury.animation.animation)": [[250, "fury.animation.animation.CameraAnimation"]], "timeline (class in fury.animation.timeline)": [[250, "fury.animation.timeline.Timeline"]], "__init__() (fury.animation.animation.animation method)": [[250, "fury.animation.animation.Animation.__init__"]], "__init__() (fury.animation.animation.cameraanimation method)": [[250, "fury.animation.animation.CameraAnimation.__init__"]], "__init__() (fury.animation.timeline.timeline method)": [[250, "fury.animation.timeline.Timeline.__init__"]], "actors (fury.animation.animation.animation attribute)": [[250, "fury.animation.animation.Animation.actors"]], "actors (fury.animation.animation.animation property)": [[250, "id0"]], "add() (fury.animation.animation.animation method)": [[250, "fury.animation.animation.Animation.add"]], "add_actor() (fury.animation.animation.animation method)": [[250, "fury.animation.animation.Animation.add_actor"]], "add_animation() (fury.animation.timeline.timeline method)": [[250, "fury.animation.timeline.Timeline.add_animation"]], "add_child_animation() (fury.animation.animation.animation method)": [[250, "fury.animation.animation.Animation.add_child_animation"]], "add_static_actor() (fury.animation.animation.animation method)": [[250, "fury.animation.animation.Animation.add_static_actor"]], "add_to_scene() (fury.animation.animation.animation method)": [[250, "fury.animation.animation.Animation.add_to_scene"]], "add_to_scene() (fury.animation.timeline.timeline method)": [[250, "fury.animation.timeline.Timeline.add_to_scene"]], "add_to_scene_at() (fury.animation.animation.animation method)": [[250, "fury.animation.animation.Animation.add_to_scene_at"]], "add_update_callback() (fury.animation.animation.animation method)": [[250, "fury.animation.animation.Animation.add_update_callback"]], "animations (fury.animation.timeline.timeline attribute)": [[250, "fury.animation.timeline.Timeline.animations"]], "animations (fury.animation.timeline.timeline property)": [[250, "id4"]], "camera (fury.animation.animation.cameraanimation attribute)": [[250, "fury.animation.animation.CameraAnimation.camera"]], "camera (fury.animation.animation.cameraanimation property)": [[250, "id3"]], "child_animations (fury.animation.animation.animation property)": [[250, "fury.animation.animation.Animation.child_animations"]], "color_interpolator() (in module fury.animation.interpolator)": [[250, "fury.animation.interpolator.color_interpolator"]], "cubic_bezier_interpolator() (in module fury.animation.interpolator)": [[250, "fury.animation.interpolator.cubic_bezier_interpolator"]], "cubic_spline_interpolator() (in module fury.animation.interpolator)": [[250, "fury.animation.interpolator.cubic_spline_interpolator"]], "current_timestamp (fury.animation.animation.animation property)": [[250, "fury.animation.animation.Animation.current_timestamp"]], "current_timestamp (fury.animation.timeline.timeline property)": [[250, "fury.animation.timeline.Timeline.current_timestamp"]], "duration (fury.animation.animation.animation property)": [[250, "fury.animation.animation.Animation.duration"]], "duration (fury.animation.timeline.timeline property)": [[250, "fury.animation.timeline.Timeline.duration"]], "euclidean_distances() (in module fury.animation.helpers)": [[250, "fury.animation.helpers.euclidean_distances"]], "fury.animation": [[250, "module-fury.animation"]], "fury.animation.animation": [[250, "module-fury.animation.animation"]], "fury.animation.helpers": [[250, "module-fury.animation.helpers"]], "fury.animation.interpolator": [[250, "module-fury.animation.interpolator"]], "fury.animation.timeline": [[250, "module-fury.animation.timeline"]], "get_color() (fury.animation.animation.animation method)": [[250, "fury.animation.animation.Animation.get_color"]], "get_current_value() (fury.animation.animation.animation method)": [[250, "fury.animation.animation.Animation.get_current_value"]], "get_focal() (fury.animation.animation.cameraanimation method)": [[250, "fury.animation.animation.CameraAnimation.get_focal"]], "get_keyframes() (fury.animation.animation.animation method)": [[250, "fury.animation.animation.Animation.get_keyframes"]], "get_next_timestamp() (in module fury.animation.helpers)": [[250, "fury.animation.helpers.get_next_timestamp"]], "get_opacity() (fury.animation.animation.animation method)": [[250, "fury.animation.animation.Animation.get_opacity"]], "get_position() (fury.animation.animation.animation method)": [[250, "fury.animation.animation.Animation.get_position"]], "get_previous_timestamp() (in module fury.animation.helpers)": [[250, "fury.animation.helpers.get_previous_timestamp"]], "get_rotation() (fury.animation.animation.animation method)": [[250, "fury.animation.animation.Animation.get_rotation"]], "get_scale() (fury.animation.animation.animation method)": [[250, "fury.animation.animation.Animation.get_scale"]], "get_time_tau() (in module fury.animation.helpers)": [[250, "fury.animation.helpers.get_time_tau"]], "get_timestamps_from_keyframes() (in module fury.animation.helpers)": [[250, "fury.animation.helpers.get_timestamps_from_keyframes"]], "get_value() (fury.animation.animation.animation method)": [[250, "fury.animation.animation.Animation.get_value"]], "get_values_from_keyframes() (in module fury.animation.helpers)": [[250, "fury.animation.helpers.get_values_from_keyframes"]], "get_view_up() (fury.animation.animation.cameraanimation method)": [[250, "fury.animation.animation.CameraAnimation.get_view_up"]], "has_playback_panel (fury.animation.timeline.timeline property)": [[250, "fury.animation.timeline.Timeline.has_playback_panel"]], "hsv_color_interpolator() (in module fury.animation.interpolator)": [[250, "fury.animation.interpolator.hsv_color_interpolator"]], "is_inside_scene_at() (fury.animation.animation.animation method)": [[250, "fury.animation.animation.Animation.is_inside_scene_at"]], "is_interpolatable() (fury.animation.animation.animation method)": [[250, "fury.animation.animation.Animation.is_interpolatable"]], "lab_color_interpolator() (in module fury.animation.interpolator)": [[250, "fury.animation.interpolator.lab_color_interpolator"]], "length (fury.animation.animation.animation attribute)": [[250, "fury.animation.animation.Animation.length"]], "length (fury.animation.animation.cameraanimation attribute)": [[250, "fury.animation.animation.CameraAnimation.length"]], "length (fury.animation.timeline.timeline attribute)": [[250, "fury.animation.timeline.Timeline.length"]], "lerp() (in module fury.animation.helpers)": [[250, "fury.animation.helpers.lerp"]], "linear_interpolator() (in module fury.animation.interpolator)": [[250, "fury.animation.interpolator.linear_interpolator"]], "loop (fury.animation.animation.animation attribute)": [[250, "fury.animation.animation.Animation.loop"]], "loop (fury.animation.animation.animation property)": [[250, "id2"]], "loop (fury.animation.animation.cameraanimation attribute)": [[250, "fury.animation.animation.CameraAnimation.loop"]], "loop (fury.animation.timeline.timeline attribute)": [[250, "fury.animation.timeline.Timeline.loop"]], "loop (fury.animation.timeline.timeline property)": [[250, "id5"]], "motion_path_res (fury.animation.animation.animation attribute)": [[250, "fury.animation.animation.Animation.motion_path_res"]], "motion_path_res (fury.animation.animation.cameraanimation attribute)": [[250, "fury.animation.animation.CameraAnimation.motion_path_res"]], "parent_animation (fury.animation.animation.animation property)": [[250, "fury.animation.animation.Animation.parent_animation"]], "pause() (fury.animation.timeline.timeline method)": [[250, "fury.animation.timeline.Timeline.pause"]], "paused (fury.animation.timeline.timeline property)": [[250, "fury.animation.timeline.Timeline.paused"]], "play() (fury.animation.timeline.timeline method)": [[250, "fury.animation.timeline.Timeline.play"]], "playback_panel (fury.animation.timeline.timeline attribute)": [[250, "fury.animation.timeline.Timeline.playback_panel"]], "playing (fury.animation.timeline.timeline property)": [[250, "fury.animation.timeline.Timeline.playing"]], "record() (fury.animation.timeline.timeline method)": [[250, "fury.animation.timeline.Timeline.record"]], "remove_actor() (fury.animation.animation.animation method)": [[250, "fury.animation.animation.Animation.remove_actor"]], "remove_actors() (fury.animation.animation.animation method)": [[250, "fury.animation.animation.Animation.remove_actors"]], "remove_animations() (fury.animation.animation.animation method)": [[250, "fury.animation.animation.Animation.remove_animations"]], "remove_from_scene() (fury.animation.animation.animation method)": [[250, "fury.animation.animation.Animation.remove_from_scene"]], "remove_from_scene() (fury.animation.timeline.timeline method)": [[250, "fury.animation.timeline.Timeline.remove_from_scene"]], "remove_from_scene_at() (fury.animation.animation.animation method)": [[250, "fury.animation.animation.Animation.remove_from_scene_at"]], "restart() (fury.animation.timeline.timeline method)": [[250, "fury.animation.timeline.Timeline.restart"]], "seek() (fury.animation.timeline.timeline method)": [[250, "fury.animation.timeline.Timeline.seek"]], "seek_percent() (fury.animation.timeline.timeline method)": [[250, "fury.animation.timeline.Timeline.seek_percent"]], "set_color() (fury.animation.animation.animation method)": [[250, "fury.animation.animation.Animation.set_color"]], "set_color_interpolator() (fury.animation.animation.animation method)": [[250, "fury.animation.animation.Animation.set_color_interpolator"]], "set_color_keyframes() (fury.animation.animation.animation method)": [[250, "fury.animation.animation.Animation.set_color_keyframes"]], "set_focal() (fury.animation.animation.cameraanimation method)": [[250, "fury.animation.animation.CameraAnimation.set_focal"]], "set_focal_interpolator() (fury.animation.animation.cameraanimation method)": [[250, "fury.animation.animation.CameraAnimation.set_focal_interpolator"]], "set_focal_keyframes() (fury.animation.animation.cameraanimation method)": [[250, "fury.animation.animation.CameraAnimation.set_focal_keyframes"]], "set_interpolator() (fury.animation.animation.animation method)": [[250, "fury.animation.animation.Animation.set_interpolator"]], "set_keyframe() (fury.animation.animation.animation method)": [[250, "fury.animation.animation.Animation.set_keyframe"]], "set_keyframes() (fury.animation.animation.animation method)": [[250, "fury.animation.animation.Animation.set_keyframes"]], "set_opacity() (fury.animation.animation.animation method)": [[250, "fury.animation.animation.Animation.set_opacity"]], "set_opacity_interpolator() (fury.animation.animation.animation method)": [[250, "fury.animation.animation.Animation.set_opacity_interpolator"]], "set_opacity_keyframes() (fury.animation.animation.animation method)": [[250, "fury.animation.animation.Animation.set_opacity_keyframes"]], "set_position() (fury.animation.animation.animation method)": [[250, "fury.animation.animation.Animation.set_position"]], "set_position_interpolator() (fury.animation.animation.animation method)": [[250, "fury.animation.animation.Animation.set_position_interpolator"]], "set_position_keyframes() (fury.animation.animation.animation method)": [[250, "fury.animation.animation.Animation.set_position_keyframes"]], "set_rotation() (fury.animation.animation.animation method)": [[250, "fury.animation.animation.Animation.set_rotation"]], "set_rotation_as_vector() (fury.animation.animation.animation method)": [[250, "fury.animation.animation.Animation.set_rotation_as_vector"]], "set_rotation_interpolator() (fury.animation.animation.animation method)": [[250, "fury.animation.animation.Animation.set_rotation_interpolator"]], "set_scale() (fury.animation.animation.animation method)": [[250, "fury.animation.animation.Animation.set_scale"]], "set_scale_interpolator() (fury.animation.animation.animation method)": [[250, "fury.animation.animation.Animation.set_scale_interpolator"]], "set_scale_keyframes() (fury.animation.animation.animation method)": [[250, "fury.animation.animation.Animation.set_scale_keyframes"]], "set_view_up() (fury.animation.animation.cameraanimation method)": [[250, "fury.animation.animation.CameraAnimation.set_view_up"]], "set_view_up_interpolator() (fury.animation.animation.cameraanimation method)": [[250, "fury.animation.animation.CameraAnimation.set_view_up_interpolator"]], "set_view_up_keyframes() (fury.animation.animation.cameraanimation method)": [[250, "fury.animation.animation.CameraAnimation.set_view_up_keyframes"]], "slerp() (in module fury.animation.interpolator)": [[250, "fury.animation.interpolator.slerp"]], "speed (fury.animation.timeline.timeline property)": [[250, "fury.animation.timeline.Timeline.speed"]], "spline_interpolator() (in module fury.animation.interpolator)": [[250, "fury.animation.interpolator.spline_interpolator"]], "static_actors (fury.animation.animation.animation property)": [[250, "fury.animation.animation.Animation.static_actors"]], "step_interpolator() (in module fury.animation.interpolator)": [[250, "fury.animation.interpolator.step_interpolator"]], "stop() (fury.animation.timeline.timeline method)": [[250, "fury.animation.timeline.Timeline.stop"]], "stopped (fury.animation.timeline.timeline property)": [[250, "fury.animation.timeline.Timeline.stopped"]], "tan_cubic_spline_interpolator() (in module fury.animation.interpolator)": [[250, "fury.animation.interpolator.tan_cubic_spline_interpolator"]], "timeline (fury.animation.animation.animation property)": [[250, "fury.animation.animation.Animation.timeline"]], "update() (fury.animation.timeline.timeline method)": [[250, "fury.animation.timeline.Timeline.update"]], "update_animation() (fury.animation.animation.animation method)": [[250, "fury.animation.animation.Animation.update_animation"]], "update_animation() (fury.animation.animation.cameraanimation method)": [[250, "fury.animation.animation.CameraAnimation.update_animation"]], "update_duration() (fury.animation.animation.animation method)": [[250, "fury.animation.animation.Animation.update_duration"]], "update_duration() (fury.animation.timeline.timeline method)": [[250, "fury.animation.timeline.Timeline.update_duration"]], "update_motion_path() (fury.animation.animation.animation method)": [[250, "fury.animation.animation.Animation.update_motion_path"]], "xyz_color_interpolator() (in module fury.animation.interpolator)": [[250, "fury.animation.interpolator.xyz_color_interpolator"]], "t (in module fury.colormap)": [[251, "fury.colormap.T"], [251, "id0"]], "base (in module fury.colormap)": [[251, "fury.colormap.base"], [251, "id15"]], "boys2rgb() (in module fury.colormap)": [[251, "fury.colormap.boys2rgb"]], "cc() (in module fury.colormap)": [[251, "fury.colormap.cc"]], "colormap_lookup_table() (in module fury.colormap)": [[251, "fury.colormap.colormap_lookup_table"]], "create_colormap() (in module fury.colormap)": [[251, "fury.colormap.create_colormap"]], "ctypes (in module fury.colormap)": [[251, "fury.colormap.ctypes"], [251, "id14"]], "data (in module fury.colormap)": [[251, "fury.colormap.data"], [251, "id2"]], "distinguishable_colormap() (in module fury.colormap)": [[251, "fury.colormap.distinguishable_colormap"]], "dtype (in module fury.colormap)": [[251, "fury.colormap.dtype"], [251, "id3"]], "flags (in module fury.colormap)": [[251, "fury.colormap.flags"], [251, "id4"]], "flat (in module fury.colormap)": [[251, "fury.colormap.flat"], [251, "id5"]], "fury.colormap": [[251, "module-fury.colormap"]], "get_cmap() (in module fury.colormap)": [[251, "fury.colormap.get_cmap"]], "get_xyz_coords() (in module fury.colormap)": [[251, "fury.colormap.get_xyz_coords"]], "hex_to_rgb() (in module fury.colormap)": [[251, "fury.colormap.hex_to_rgb"]], "hsv2rgb() (in module fury.colormap)": [[251, "fury.colormap.hsv2rgb"]], "imag (in module fury.colormap)": [[251, "fury.colormap.imag"], [251, "id6"]], "itemsize (in module fury.colormap)": [[251, "fury.colormap.itemsize"], [251, "id9"]], "lab2rgb() (in module fury.colormap)": [[251, "fury.colormap.lab2rgb"]], "lab2xyz() (in module fury.colormap)": [[251, "fury.colormap.lab2xyz"]], "line_colors() (in module fury.colormap)": [[251, "fury.colormap.line_colors"]], "nbytes (in module fury.colormap)": [[251, "fury.colormap.nbytes"], [251, "id10"]], "ndim (in module fury.colormap)": [[251, "fury.colormap.ndim"], [251, "id11"]], "orient2rgb() (in module fury.colormap)": [[251, "fury.colormap.orient2rgb"]], "real (in module fury.colormap)": [[251, "fury.colormap.real"], [251, "id7"]], "rgb2hsv() (in module fury.colormap)": [[251, "fury.colormap.rgb2hsv"]], "rgb2lab() (in module fury.colormap)": [[251, "fury.colormap.rgb2lab"]], "rgb2xyz() (in module fury.colormap)": [[251, "fury.colormap.rgb2xyz"]], "rgb_from_xyz() (in module fury.colormap)": [[251, "fury.colormap.rgb_from_xyz"]], "shape (in module fury.colormap)": [[251, "fury.colormap.shape"], [251, "id12"]], "size (in module fury.colormap)": [[251, "fury.colormap.size"], [251, "id8"]], "ss() (in module fury.colormap)": [[251, "fury.colormap.ss"]], "strides (in module fury.colormap)": [[251, "fury.colormap.strides"], [251, "id13"]], "xyz2lab() (in module fury.colormap)": [[251, "fury.colormap.xyz2lab"]], "xyz2rgb() (in module fury.colormap)": [[251, "fury.colormap.xyz2rgb"]], "xyz_from_rgb() (in module fury.colormap)": [[251, "fury.colormap.xyz_from_rgb"]], "fury.convert": [[252, "module-fury.convert"]], "matplotlib_figure_to_numpy() (in module fury.convert)": [[252, "fury.convert.matplotlib_figure_to_numpy"]], "data_dir() (in module fury.data)": [[253, "fury.data.DATA_DIR"]], "check_sha() (in module fury.data.fetcher)": [[253, "fury.data.fetcher.check_sha"]], "copyfileobj_withprogress() (in module fury.data.fetcher)": [[253, "fury.data.fetcher.copyfileobj_withprogress"]], "fetch_data() (in module fury.data.fetcher)": [[253, "fury.data.fetcher.fetch_data"]], "fetch_gltf() (in module fury.data.fetcher)": [[253, "fury.data.fetcher.fetch_gltf"]], "fetch_viz_cubemaps() (in module fury.data.fetcher)": [[253, "fury.data.fetcher.fetch_viz_cubemaps"]], "fetch_viz_dmri() (in module fury.data.fetcher)": [[253, "fury.data.fetcher.fetch_viz_dmri"]], "fetch_viz_icons() (in module fury.data.fetcher)": [[253, "fury.data.fetcher.fetch_viz_icons"]], "fetch_viz_models() (in module fury.data.fetcher)": [[253, "fury.data.fetcher.fetch_viz_models"]], "fetch_viz_new_icons() (in module fury.data.fetcher)": [[253, "fury.data.fetcher.fetch_viz_new_icons"]], "fetch_viz_textures() (in module fury.data.fetcher)": [[253, "fury.data.fetcher.fetch_viz_textures"]], "fetch_viz_wiki_nw() (in module fury.data.fetcher)": [[253, "fury.data.fetcher.fetch_viz_wiki_nw"]], "fury.data": [[253, "module-fury.data"]], "fury.data.fetcher": [[253, "module-fury.data.fetcher"]], "list_gltf_sample_models() (in module fury.data.fetcher)": [[253, "fury.data.fetcher.list_gltf_sample_models"]], "read_viz_cubemap() (in module fury.data.fetcher)": [[253, "fury.data.fetcher.read_viz_cubemap"]], "read_viz_dmri() (in module fury.data.fetcher)": [[253, "fury.data.fetcher.read_viz_dmri"]], "read_viz_gltf() (in module fury.data.fetcher)": [[253, "fury.data.fetcher.read_viz_gltf"]], "read_viz_icons() (in module fury.data.fetcher)": [[253, "fury.data.fetcher.read_viz_icons"]], "read_viz_models() (in module fury.data.fetcher)": [[253, "fury.data.fetcher.read_viz_models"]], "read_viz_textures() (in module fury.data.fetcher)": [[253, "fury.data.fetcher.read_viz_textures"]], "update_progressbar() (in module fury.data.fetcher)": [[253, "fury.data.fetcher.update_progressbar"]], "skip_re() (in module fury.decorators)": [[254, "fury.decorators.SKIP_RE"]], "doctest_skip_parser() (in module fury.decorators)": [[254, "fury.decorators.doctest_skip_parser"]], "fury.decorators": [[254, "module-fury.decorators"]], "argsdeprecationwarning (class in fury.deprecator)": [[255, "fury.deprecator.ArgsDeprecationWarning"]], "expireddeprecationerror (class in fury.deprecator)": [[255, "fury.deprecator.ExpiredDeprecationError"]], "_leading_white() (in module fury.deprecator)": [[255, "fury.deprecator._LEADING_WHITE"]], "__init__() (fury.deprecator.argsdeprecationwarning method)": [[255, "fury.deprecator.ArgsDeprecationWarning.__init__"]], "__init__() (fury.deprecator.expireddeprecationerror method)": [[255, "fury.deprecator.ExpiredDeprecationError.__init__"]], "cmp_pkg_version() (in module fury.deprecator)": [[255, "fury.deprecator.cmp_pkg_version"]], "deprecate_with_version() (in module fury.deprecator)": [[255, "fury.deprecator.deprecate_with_version"]], "deprecated_params() (in module fury.deprecator)": [[255, "fury.deprecator.deprecated_params"]], "fury.deprecator": [[255, "module-fury.deprecator"]], "is_bad_version() (in module fury.deprecator)": [[255, "fury.deprecator.is_bad_version"]], "__init__() (fury.gltf.gltf method)": [[256, "fury.gltf.glTF.__init__"]], "actors() (fury.gltf.gltf method)": [[256, "fury.gltf.glTF.actors"]], "apply_morph_vertices() (fury.gltf.gltf method)": [[256, "fury.gltf.glTF.apply_morph_vertices"]], "apply_skin_matrix() (fury.gltf.gltf method)": [[256, "fury.gltf.glTF.apply_skin_matrix"]], "export_scene() (in module fury.gltf)": [[256, "fury.gltf.export_scene"]], "fury.gltf": [[256, "module-fury.gltf"]], "generate_tmatrix() (fury.gltf.gltf method)": [[256, "fury.gltf.glTF.generate_tmatrix"]], "get_acc_data() (fury.gltf.gltf method)": [[256, "fury.gltf.glTF.get_acc_data"]], "get_animations() (fury.gltf.gltf method)": [[256, "fury.gltf.glTF.get_animations"]], "get_buff_array() (fury.gltf.gltf method)": [[256, "fury.gltf.glTF.get_buff_array"]], "get_joint_actors() (fury.gltf.gltf method)": [[256, "fury.gltf.glTF.get_joint_actors"]], "get_materials() (fury.gltf.gltf method)": [[256, "fury.gltf.glTF.get_materials"]], "get_matrix_from_sampler() (fury.gltf.gltf method)": [[256, "fury.gltf.glTF.get_matrix_from_sampler"]], "get_morph_data() (fury.gltf.gltf method)": [[256, "fury.gltf.glTF.get_morph_data"]], "get_prim() (in module fury.gltf)": [[256, "fury.gltf.get_prim"]], "get_sampler_data() (fury.gltf.gltf method)": [[256, "fury.gltf.glTF.get_sampler_data"]], "get_skin_data() (fury.gltf.gltf method)": [[256, "fury.gltf.glTF.get_skin_data"]], "get_texture() (fury.gltf.gltf method)": [[256, "fury.gltf.glTF.get_texture"]], "gltf (class in fury.gltf)": [[256, "fury.gltf.glTF"]], "initialize_skin() (fury.gltf.gltf method)": [[256, "fury.gltf.glTF.initialize_skin"]], "inspect_scene() (fury.gltf.gltf method)": [[256, "fury.gltf.glTF.inspect_scene"]], "load_camera() (fury.gltf.gltf method)": [[256, "fury.gltf.glTF.load_camera"]], "load_mesh() (fury.gltf.gltf method)": [[256, "fury.gltf.glTF.load_mesh"]], "main_animation() (fury.gltf.gltf method)": [[256, "fury.gltf.glTF.main_animation"]], "morph_animation() (fury.gltf.gltf method)": [[256, "fury.gltf.glTF.morph_animation"]], "skin_animation() (fury.gltf.gltf method)": [[256, "fury.gltf.glTF.skin_animation"]], "transverse_animations() (fury.gltf.gltf method)": [[256, "fury.gltf.glTF.transverse_animations"]], "transverse_bones() (fury.gltf.gltf method)": [[256, "fury.gltf.glTF.transverse_bones"]], "transverse_channels() (fury.gltf.gltf method)": [[256, "fury.gltf.glTF.transverse_channels"]], "transverse_node() (fury.gltf.gltf method)": [[256, "fury.gltf.glTF.transverse_node"]], "update_morph() (fury.gltf.gltf method)": [[256, "fury.gltf.glTF.update_morph"]], "update_skin() (fury.gltf.gltf method)": [[256, "fury.gltf.glTF.update_skin"]], "write_accessor() (in module fury.gltf)": [[256, "fury.gltf.write_accessor"]], "write_buffer() (in module fury.gltf)": [[256, "fury.gltf.write_buffer"]], "write_bufferview() (in module fury.gltf)": [[256, "fury.gltf.write_bufferview"]], "write_camera() (in module fury.gltf)": [[256, "fury.gltf.write_camera"]], "write_material() (in module fury.gltf)": [[256, "fury.gltf.write_material"]], "write_mesh() (in module fury.gltf)": [[256, "fury.gltf.write_mesh"]], "write_node() (in module fury.gltf)": [[256, "fury.gltf.write_node"]], "write_scene() (in module fury.gltf)": [[256, "fury.gltf.write_scene"]], "fury.io": [[257, "module-fury.io"]], "load_cubemap_texture() (in module fury.io)": [[257, "fury.io.load_cubemap_texture"]], "load_image() (in module fury.io)": [[257, "fury.io.load_image"]], "load_polydata() (in module fury.io)": [[257, "fury.io.load_polydata"]], "load_sprite_sheet() (in module fury.io)": [[257, "fury.io.load_sprite_sheet"]], "load_text() (in module fury.io)": [[257, "fury.io.load_text"]], "save_image() (in module fury.io)": [[257, "fury.io.save_image"]], "save_polydata() (in module fury.io)": [[257, "fury.io.save_polydata"]], "gridlayout (class in fury.layout)": [[258, "fury.layout.GridLayout"]], "horizontallayout (class in fury.layout)": [[258, "fury.layout.HorizontalLayout"]], "layout (class in fury.layout)": [[258, "fury.layout.Layout"]], "verticallayout (class in fury.layout)": [[258, "fury.layout.VerticalLayout"]], "xlayout (class in fury.layout)": [[258, "fury.layout.XLayout"]], "ylayout (class in fury.layout)": [[258, "fury.layout.YLayout"]], "zlayout (class in fury.layout)": [[258, "fury.layout.ZLayout"]], "__init__() (fury.layout.gridlayout method)": [[258, "fury.layout.GridLayout.__init__"]], "__init__() (fury.layout.horizontallayout method)": [[258, "fury.layout.HorizontalLayout.__init__"]], "__init__() (fury.layout.layout method)": [[258, "fury.layout.Layout.__init__"]], "__init__() (fury.layout.verticallayout method)": [[258, "fury.layout.VerticalLayout.__init__"]], "__init__() (fury.layout.xlayout method)": [[258, "fury.layout.XLayout.__init__"]], "__init__() (fury.layout.ylayout method)": [[258, "fury.layout.YLayout.__init__"]], "__init__() (fury.layout.zlayout method)": [[258, "fury.layout.ZLayout.__init__"]], "apply() (fury.layout.layout method)": [[258, "fury.layout.Layout.apply"]], "apply() (fury.layout.xlayout method)": [[258, "fury.layout.XLayout.apply"]], "apply() (fury.layout.ylayout method)": [[258, "fury.layout.YLayout.apply"]], "apply() (fury.layout.zlayout method)": [[258, "fury.layout.ZLayout.apply"]], "compute_positions() (fury.layout.gridlayout method)": [[258, "fury.layout.GridLayout.compute_positions"]], "compute_positions() (fury.layout.horizontallayout method)": [[258, "fury.layout.HorizontalLayout.compute_positions"]], "compute_positions() (fury.layout.layout method)": [[258, "fury.layout.Layout.compute_positions"]], "compute_positions() (fury.layout.verticallayout method)": [[258, "fury.layout.VerticalLayout.compute_positions"]], "compute_positions() (fury.layout.xlayout method)": [[258, "fury.layout.XLayout.compute_positions"]], "compute_positions() (fury.layout.ylayout method)": [[258, "fury.layout.YLayout.compute_positions"]], "compute_positions() (fury.layout.zlayout method)": [[258, "fury.layout.ZLayout.compute_positions"]], "compute_sizes() (fury.layout.gridlayout method)": [[258, "fury.layout.GridLayout.compute_sizes"]], "fury.layout": [[258, "module-fury.layout"]], "get_cells_shape() (fury.layout.gridlayout method)": [[258, "fury.layout.GridLayout.get_cells_shape"]], "get_cells_shape() (fury.layout.xlayout method)": [[258, "fury.layout.XLayout.get_cells_shape"]], "get_cells_shape() (fury.layout.ylayout method)": [[258, "fury.layout.YLayout.get_cells_shape"]], "get_cells_shape() (fury.layout.zlayout method)": [[258, "fury.layout.ZLayout.get_cells_shape"]], "actor (in module fury.lib)": [[259, "fury.lib.Actor"]], "actor2d (in module fury.lib)": [[259, "fury.lib.Actor2D"]], "algorithmoutput (in module fury.lib)": [[259, "fury.lib.AlgorithmOutput"]], "arrowsource (in module fury.lib)": [[259, "fury.lib.ArrowSource"]], "assembly (in module fury.lib)": [[259, "fury.lib.Assembly"]], "bmpreader (in module fury.lib)": [[259, "fury.lib.BMPReader"]], "bmpwriter (in module fury.lib)": [[259, "fury.lib.BMPWriter"]], "butterflysubdivisionfilter (in module fury.lib)": [[259, "fury.lib.ButterflySubdivisionFilter"]], "camera (in module fury.lib)": [[259, "fury.lib.Camera"]], "cellarray (in module fury.lib)": [[259, "fury.lib.CellArray"]], "cellpicker (in module fury.lib)": [[259, "fury.lib.CellPicker"]], "cleanpolydata (in module fury.lib)": [[259, "fury.lib.CleanPolyData"]], "command (in module fury.lib)": [[259, "fury.lib.Command"]], "conesource (in module fury.lib)": [[259, "fury.lib.ConeSource"]], "contourfilter (in module fury.lib)": [[259, "fury.lib.ContourFilter"]], "cylindersource (in module fury.lib)": [[259, "fury.lib.CylinderSource"]], "dataobject (in module fury.lib)": [[259, "fury.lib.DataObject"], [259, "id0"]], "datasetattributes (in module fury.lib)": [[259, "fury.lib.DataSetAttributes"]], "datasetmapper (in module fury.lib)": [[259, "fury.lib.DataSetMapper"]], "disksource (in module fury.lib)": [[259, "fury.lib.DiskSource"]], "doublearray (in module fury.lib)": [[259, "fury.lib.DoubleArray"]], "floatarray (in module fury.lib)": [[259, "fury.lib.FloatArray"]], "follower (in module fury.lib)": [[259, "fury.lib.Follower"]], "glyph3d (in module fury.lib)": [[259, "fury.lib.Glyph3D"]], "hardwareselector (in module fury.lib)": [[259, "fury.lib.HardwareSelector"]], "idtypearray (in module fury.lib)": [[259, "fury.lib.IdTypeArray"]], "imageactor (in module fury.lib)": [[259, "fury.lib.ImageActor"]], "imagedata (in module fury.lib)": [[259, "fury.lib.ImageData"]], "imageflip (in module fury.lib)": [[259, "fury.lib.ImageFlip"]], "imagemaptocolors (in module fury.lib)": [[259, "fury.lib.ImageMapToColors"]], "imagereader2factory (in module fury.lib)": [[259, "fury.lib.ImageReader2Factory"]], "imagereslice (in module fury.lib)": [[259, "fury.lib.ImageReslice"]], "interactoreventrecorder (in module fury.lib)": [[259, "fury.lib.InteractorEventRecorder"]], "interactorstyle (in module fury.lib)": [[259, "fury.lib.InteractorStyle"]], "interactorstyleimage (in module fury.lib)": [[259, "fury.lib.InteractorStyleImage"]], "interactorstyletrackballactor (in module fury.lib)": [[259, "fury.lib.InteractorStyleTrackballActor"]], "interactorstyletrackballcamera (in module fury.lib)": [[259, "fury.lib.InteractorStyleTrackballCamera"]], "interactorstyleuser (in module fury.lib)": [[259, "fury.lib.InteractorStyleUser"]], "jpegreader (in module fury.lib)": [[259, "fury.lib.JPEGReader"]], "jpegwriter (in module fury.lib)": [[259, "fury.lib.JPEGWriter"]], "lodactor (in module fury.lib)": [[259, "fury.lib.LODActor"]], "linearextrusionfilter (in module fury.lib)": [[259, "fury.lib.LinearExtrusionFilter"]], "lookuptable (in module fury.lib)": [[259, "fury.lib.LookupTable"]], "loopsubdivisionfilter (in module fury.lib)": [[259, "fury.lib.LoopSubdivisionFilter"]], "mniobjectreader (in module fury.lib)": [[259, "fury.lib.MNIObjectReader"]], "mniobjectwriter (in module fury.lib)": [[259, "fury.lib.MNIObjectWriter"]], "matrix3x3 (in module fury.lib)": [[259, "fury.lib.Matrix3x3"]], "matrix4x4 (in module fury.lib)": [[259, "fury.lib.Matrix4x4"]], "molecule (in module fury.lib)": [[259, "fury.lib.Molecule"]], "objreader (in module fury.lib)": [[259, "fury.lib.OBJReader"]], "openglmoleculemapper (in module fury.lib)": [[259, "fury.lib.OpenGLMoleculeMapper"]], "openglrenderer (in module fury.lib)": [[259, "fury.lib.OpenGLRenderer"]], "outlinefilter (in module fury.lib)": [[259, "fury.lib.OutlineFilter"]], "plyreader (in module fury.lib)": [[259, "fury.lib.PLYReader"]], "plywriter (in module fury.lib)": [[259, "fury.lib.PLYWriter"]], "pngreader (in module fury.lib)": [[259, "fury.lib.PNGReader"]], "pngwriter (in module fury.lib)": [[259, "fury.lib.PNGWriter"]], "periodictable (in module fury.lib)": [[259, "fury.lib.PeriodicTable"]], "pointpicker (in module fury.lib)": [[259, "fury.lib.PointPicker"]], "points (in module fury.lib)": [[259, "fury.lib.Points"]], "polydata (in module fury.lib)": [[259, "fury.lib.PolyData"]], "polydatamapper (in module fury.lib)": [[259, "fury.lib.PolyDataMapper"]], "polydatamapper2d (in module fury.lib)": [[259, "fury.lib.PolyDataMapper2D"]], "polydatanormals (in module fury.lib)": [[259, "fury.lib.PolyDataNormals"]], "polydatareader (in module fury.lib)": [[259, "fury.lib.PolyDataReader"]], "polydatawriter (in module fury.lib)": [[259, "fury.lib.PolyDataWriter"]], "polyvertex (in module fury.lib)": [[259, "fury.lib.PolyVertex"]], "polygon (in module fury.lib)": [[259, "fury.lib.Polygon"]], "proppicker (in module fury.lib)": [[259, "fury.lib.PropPicker"]], "property2d (in module fury.lib)": [[259, "fury.lib.Property2D"]], "proteinribbonfilter (in module fury.lib)": [[259, "fury.lib.ProteinRibbonFilter"]], "regularpolygonsource (in module fury.lib)": [[259, "fury.lib.RegularPolygonSource"]], "renderlargeimage (in module fury.lib)": [[259, "fury.lib.RenderLargeImage"]], "renderwindow (in module fury.lib)": [[259, "fury.lib.RenderWindow"]], "renderwindowinteractor (in module fury.lib)": [[259, "fury.lib.RenderWindowInteractor"]], "renderer (in module fury.lib)": [[259, "fury.lib.Renderer"]], "stlreader (in module fury.lib)": [[259, "fury.lib.STLReader"]], "stlwriter (in module fury.lib)": [[259, "fury.lib.STLWriter"]], "scalarbaractor (in module fury.lib)": [[259, "fury.lib.ScalarBarActor"]], "shader (in module fury.lib)": [[259, "fury.lib.Shader"]], "simplebondperceiver (in module fury.lib)": [[259, "fury.lib.SimpleBondPerceiver"]], "skybox (in module fury.lib)": [[259, "fury.lib.Skybox"]], "spheresource (in module fury.lib)": [[259, "fury.lib.SphereSource"]], "splinefilter (in module fury.lib)": [[259, "fury.lib.SplineFilter"]], "stringarray (in module fury.lib)": [[259, "fury.lib.StringArray"]], "tiffreader (in module fury.lib)": [[259, "fury.lib.TIFFReader"]], "tiffwriter (in module fury.lib)": [[259, "fury.lib.TIFFWriter"]], "textactor (in module fury.lib)": [[259, "fury.lib.TextActor"]], "textactor3d (in module fury.lib)": [[259, "fury.lib.TextActor3D"]], "texture (in module fury.lib)": [[259, "fury.lib.Texture"]], "texturemaptoplane (in module fury.lib)": [[259, "fury.lib.TextureMapToPlane"]], "texturedactor2d (in module fury.lib)": [[259, "fury.lib.TexturedActor2D"]], "texturedspheresource (in module fury.lib)": [[259, "fury.lib.TexturedSphereSource"]], "transform (in module fury.lib)": [[259, "fury.lib.Transform"]], "transformpolydatafilter (in module fury.lib)": [[259, "fury.lib.TransformPolyDataFilter"]], "trianglefilter (in module fury.lib)": [[259, "fury.lib.TriangleFilter"]], "tubefilter (in module fury.lib)": [[259, "fury.lib.TubeFilter"]], "unsignedchararray (in module fury.lib)": [[259, "fury.lib.UnsignedCharArray"]], "unstructuredgrid (in module fury.lib)": [[259, "fury.lib.UnstructuredGrid"]], "vtk_version() (in module fury.lib)": [[259, "fury.lib.VTK_VERSION"]], "vectortext (in module fury.lib)": [[259, "fury.lib.VectorText"]], "volume (in module fury.lib)": [[259, "fury.lib.Volume"]], "windowtoimagefilter (in module fury.lib)": [[259, "fury.lib.WindowToImageFilter"]], "worldpointpicker (in module fury.lib)": [[259, "fury.lib.WorldPointPicker"]], "xmlpolydatareader (in module fury.lib)": [[259, "fury.lib.XMLPolyDataReader"]], "xmlpolydatawriter (in module fury.lib)": [[259, "fury.lib.XMLPolyDataWriter"]], "fury.lib": [[259, "module-fury.lib"]], "fury.material": [[260, "module-fury.material"]], "manifest_pbr() (in module fury.material)": [[260, "fury.material.manifest_pbr"]], "manifest_principled() (in module fury.material)": [[260, "fury.material.manifest_principled"]], "manifest_standard() (in module fury.material)": [[260, "fury.material.manifest_standard"]], "molecule (class in fury.molecular)": [[261, "fury.molecular.Molecule"]], "ptable (class in fury.molecular)": [[261, "fury.molecular.PTable"]], "__init__() (fury.molecular.molecule method)": [[261, "fury.molecular.Molecule.__init__"]], "__init__() (fury.molecular.ptable method)": [[261, "fury.molecular.PTable.__init__"]], "add_atom() (in module fury.molecular)": [[261, "fury.molecular.add_atom"]], "add_bond() (in module fury.molecular)": [[261, "fury.molecular.add_bond"]], "atom_color() (fury.molecular.ptable method)": [[261, "fury.molecular.PTable.atom_color"]], "atomic_number() (fury.molecular.ptable method)": [[261, "fury.molecular.PTable.atomic_number"]], "atomic_radius() (fury.molecular.ptable method)": [[261, "fury.molecular.PTable.atomic_radius"]], "atomic_symbol() (fury.molecular.ptable method)": [[261, "fury.molecular.PTable.atomic_symbol"]], "ball_stick() (in module fury.molecular)": [[261, "fury.molecular.ball_stick"]], "bounding_box() (in module fury.molecular)": [[261, "fury.molecular.bounding_box"]], "compute_bonding() (in module fury.molecular)": [[261, "fury.molecular.compute_bonding"]], "deep_copy_molecule() (in module fury.molecular)": [[261, "fury.molecular.deep_copy_molecule"]], "element_name() (fury.molecular.ptable method)": [[261, "fury.molecular.PTable.element_name"]], "fury.molecular": [[261, "module-fury.molecular"]], "get_all_atomic_numbers() (in module fury.molecular)": [[261, "fury.molecular.get_all_atomic_numbers"]], "get_all_atomic_positions() (in module fury.molecular)": [[261, "fury.molecular.get_all_atomic_positions"]], "get_all_bond_orders() (in module fury.molecular)": [[261, "fury.molecular.get_all_bond_orders"]], "get_atomic_number() (in module fury.molecular)": [[261, "fury.molecular.get_atomic_number"]], "get_atomic_position() (in module fury.molecular)": [[261, "fury.molecular.get_atomic_position"]], "get_bond_order() (in module fury.molecular)": [[261, "fury.molecular.get_bond_order"]], "ribbon() (in module fury.molecular)": [[261, "fury.molecular.ribbon"]], "set_atomic_number() (in module fury.molecular)": [[261, "fury.molecular.set_atomic_number"]], "set_atomic_position() (in module fury.molecular)": [[261, "fury.molecular.set_atomic_position"]], "set_bond_order() (in module fury.molecular)": [[261, "fury.molecular.set_bond_order"]], "sphere_cpk() (in module fury.molecular)": [[261, "fury.molecular.sphere_cpk"]], "stick() (in module fury.molecular)": [[261, "fury.molecular.stick"]], "total_num_atoms (fury.molecular.molecule property)": [[261, "fury.molecular.Molecule.total_num_atoms"]], "total_num_bonds (fury.molecular.molecule property)": [[261, "fury.molecular.Molecule.total_num_bonds"]], "pickingmanager (class in fury.pick)": [[262, "fury.pick.PickingManager"]], "selectionmanager (class in fury.pick)": [[262, "fury.pick.SelectionManager"]], "__init__() (fury.pick.pickingmanager method)": [[262, "fury.pick.PickingManager.__init__"]], "__init__() (fury.pick.selectionmanager method)": [[262, "fury.pick.SelectionManager.__init__"]], "event_position() (fury.pick.pickingmanager method)": [[262, "fury.pick.PickingManager.event_position"]], "event_position() (fury.pick.selectionmanager method)": [[262, "fury.pick.SelectionManager.event_position"]], "fury.pick": [[262, "module-fury.pick"]], "pick() (fury.pick.pickingmanager method)": [[262, "fury.pick.PickingManager.pick"]], "pick() (fury.pick.selectionmanager method)": [[262, "fury.pick.SelectionManager.pick"], [262, "id0"]], "pickable_off() (fury.pick.pickingmanager method)": [[262, "fury.pick.PickingManager.pickable_off"]], "pickable_on() (fury.pick.pickingmanager method)": [[262, "fury.pick.PickingManager.pickable_on"]], "select() (fury.pick.selectionmanager method)": [[262, "fury.pick.SelectionManager.select"], [262, "id1"]], "selectable_off() (fury.pick.selectionmanager method)": [[262, "fury.pick.SelectionManager.selectable_off"]], "selectable_on() (fury.pick.selectionmanager method)": [[262, "fury.pick.SelectionManager.selectable_on"]], "update_selection_type() (fury.pick.selectionmanager method)": [[262, "fury.pick.SelectionManager.update_selection_type"]], "fury.pkg_info": [[263, "module-fury.pkg_info"]], "pkg_commit_hash() (in module fury.pkg_info)": [[263, "fury.pkg_info.pkg_commit_hash"]], "faces_from_sphere_vertices() (in module fury.primitive)": [[264, "fury.primitive.faces_from_sphere_vertices"]], "fury.primitive": [[264, "module-fury.primitive"]], "prim_arrow() (in module fury.primitive)": [[264, "fury.primitive.prim_arrow"]], "prim_box() (in module fury.primitive)": [[264, "fury.primitive.prim_box"]], "prim_cone() (in module fury.primitive)": [[264, "fury.primitive.prim_cone"]], "prim_cylinder() (in module fury.primitive)": [[264, "fury.primitive.prim_cylinder"]], "prim_frustum() (in module fury.primitive)": [[264, "fury.primitive.prim_frustum"]], "prim_icosahedron() (in module fury.primitive)": [[264, "fury.primitive.prim_icosahedron"]], "prim_octagonalprism() (in module fury.primitive)": [[264, "fury.primitive.prim_octagonalprism"]], "prim_pentagonalprism() (in module fury.primitive)": [[264, "fury.primitive.prim_pentagonalprism"]], "prim_rhombicuboctahedron() (in module fury.primitive)": [[264, "fury.primitive.prim_rhombicuboctahedron"]], "prim_sphere() (in module fury.primitive)": [[264, "fury.primitive.prim_sphere"]], "prim_square() (in module fury.primitive)": [[264, "fury.primitive.prim_square"]], "prim_star() (in module fury.primitive)": [[264, "fury.primitive.prim_star"]], "prim_superquadric() (in module fury.primitive)": [[264, "fury.primitive.prim_superquadric"]], "prim_tetrahedron() (in module fury.primitive)": [[264, "fury.primitive.prim_tetrahedron"]], "prim_triangularprism() (in module fury.primitive)": [[264, "fury.primitive.prim_triangularprism"]], "repeat_primitive() (in module fury.primitive)": [[264, "fury.primitive.repeat_primitive"]], "repeat_primitive_function() (in module fury.primitive)": [[264, "fury.primitive.repeat_primitive_function"]], "shaders_dir() (in module fury.shaders.base)": [[265, "fury.shaders.base.SHADERS_DIR"]], "add_shader_callback() (in module fury.shaders.base)": [[265, "fury.shaders.base.add_shader_callback"]], "attribute_to_actor() (in module fury.shaders.base)": [[265, "fury.shaders.base.attribute_to_actor"]], "compose_shader() (in module fury.shaders.base)": [[265, "fury.shaders.base.compose_shader"]], "fury.shaders": [[265, "module-fury.shaders"]], "fury.shaders.base": [[265, "module-fury.shaders.base"]], "import_fury_shader() (in module fury.shaders.base)": [[265, "fury.shaders.base.import_fury_shader"]], "load() (in module fury.shaders.base)": [[265, "fury.shaders.base.load"]], "load_shader() (in module fury.shaders.base)": [[265, "fury.shaders.base.load_shader"]], "replace_shader_in_actor() (in module fury.shaders.base)": [[265, "fury.shaders.base.replace_shader_in_actor"]], "shader_apply_effects() (in module fury.shaders.base)": [[265, "fury.shaders.base.shader_apply_effects"]], "shader_to_actor() (in module fury.shaders.base)": [[265, "fury.shaders.base.shader_to_actor"]], "arraycircularqueue (class in fury.stream.tools)": [[266, "fury.stream.tools.ArrayCircularQueue"]], "furystreamclient (class in fury.stream.client)": [[266, "fury.stream.client.FuryStreamClient"]], "furystreaminteraction (class in fury.stream.client)": [[266, "fury.stream.client.FuryStreamInteraction"]], "genericcircularqueue (class in fury.stream.tools)": [[266, "fury.stream.tools.GenericCircularQueue"]], "genericimagebuffermanager (class in fury.stream.tools)": [[266, "fury.stream.tools.GenericImageBufferManager"]], "genericmultidimensionalbuffer (class in fury.stream.tools)": [[266, "fury.stream.tools.GenericMultiDimensionalBuffer"]], "intervaltimer (class in fury.stream.tools)": [[266, "fury.stream.tools.IntervalTimer"]], "intervaltimerthreading (class in fury.stream.tools)": [[266, "fury.stream.tools.IntervalTimerThreading"]], "rtcserver (class in fury.stream.server.main)": [[266, "fury.stream.server.main.RTCServer"]], "rawarrayimagebuffermanager (class in fury.stream.tools)": [[266, "fury.stream.tools.RawArrayImageBufferManager"]], "rawarraymultidimensionalbuffer (class in fury.stream.tools)": [[266, "fury.stream.tools.RawArrayMultiDimensionalBuffer"]], "sharedmemcircularqueue (class in fury.stream.tools)": [[266, "fury.stream.tools.SharedMemCircularQueue"]], "sharedmemimagebuffermanager (class in fury.stream.tools)": [[266, "fury.stream.tools.SharedMemImageBufferManager"]], "sharedmemmultidimensionalbuffer (class in fury.stream.tools)": [[266, "fury.stream.tools.SharedMemMultiDimensionalBuffer"]], "widget (class in fury.stream.widget)": [[266, "fury.stream.widget.Widget"]], "_cqueue() (in module fury.stream.constants)": [[266, "fury.stream.constants._CQUEUE"]], "_cqueue_event_ids() (in module fury.stream.constants)": [[266, "fury.stream.constants._CQUEUE_EVENT_IDs"]], "_cqueue_index_info() (in module fury.stream.constants)": [[266, "fury.stream.constants._CQUEUE_INDEX_INFO"]], "__init__() (fury.stream.client.furystreamclient method)": [[266, "fury.stream.client.FuryStreamClient.__init__"]], "__init__() (fury.stream.client.furystreaminteraction method)": [[266, "fury.stream.client.FuryStreamInteraction.__init__"]], "__init__() (fury.stream.server.main.rtcserver method)": [[266, "fury.stream.server.main.RTCServer.__init__"]], "__init__() (fury.stream.tools.arraycircularqueue method)": [[266, "fury.stream.tools.ArrayCircularQueue.__init__"]], "__init__() (fury.stream.tools.genericcircularqueue method)": [[266, "fury.stream.tools.GenericCircularQueue.__init__"]], "__init__() (fury.stream.tools.genericimagebuffermanager method)": [[266, "fury.stream.tools.GenericImageBufferManager.__init__"]], "__init__() (fury.stream.tools.genericmultidimensionalbuffer method)": [[266, "fury.stream.tools.GenericMultiDimensionalBuffer.__init__"]], "__init__() (fury.stream.tools.intervaltimer method)": [[266, "fury.stream.tools.IntervalTimer.__init__"]], "__init__() (fury.stream.tools.intervaltimerthreading method)": [[266, "fury.stream.tools.IntervalTimerThreading.__init__"]], "__init__() (fury.stream.tools.rawarrayimagebuffermanager method)": [[266, "fury.stream.tools.RawArrayImageBufferManager.__init__"]], "__init__() (fury.stream.tools.rawarraymultidimensionalbuffer method)": [[266, "fury.stream.tools.RawArrayMultiDimensionalBuffer.__init__"]], "__init__() (fury.stream.tools.sharedmemcircularqueue method)": [[266, "fury.stream.tools.SharedMemCircularQueue.__init__"]], "__init__() (fury.stream.tools.sharedmemimagebuffermanager method)": [[266, "fury.stream.tools.SharedMemImageBufferManager.__init__"]], "__init__() (fury.stream.tools.sharedmemmultidimensionalbuffer method)": [[266, "fury.stream.tools.SharedMemMultiDimensionalBuffer.__init__"]], "__init__() (fury.stream.widget.widget method)": [[266, "fury.stream.widget.Widget.__init__"]], "async_get_jpeg() (fury.stream.tools.genericimagebuffermanager method)": [[266, "fury.stream.tools.GenericImageBufferManager.async_get_jpeg"]], "buffer (fury.stream.tools.genericmultidimensionalbuffer property)": [[266, "fury.stream.tools.GenericMultiDimensionalBuffer.buffer"]], "buffer_index (fury.stream.tools.genericimagebuffermanager property)": [[266, "fury.stream.tools.GenericImageBufferManager.buffer_index"]], "callback_stream_client() (in module fury.stream.client)": [[266, "fury.stream.client.callback_stream_client"]], "check_port_is_available() (in module fury.stream.widget)": [[266, "fury.stream.widget.check_port_is_available"]], "cleanup() (fury.stream.client.furystreamclient method)": [[266, "fury.stream.client.FuryStreamClient.cleanup"]], "cleanup() (fury.stream.client.furystreaminteraction method)": [[266, "fury.stream.client.FuryStreamInteraction.cleanup"]], "cleanup() (fury.stream.tools.arraycircularqueue method)": [[266, "fury.stream.tools.ArrayCircularQueue.cleanup"]], "cleanup() (fury.stream.tools.genericcircularqueue method)": [[266, "fury.stream.tools.GenericCircularQueue.cleanup"]], "cleanup() (fury.stream.tools.genericimagebuffermanager method)": [[266, "fury.stream.tools.GenericImageBufferManager.cleanup"]], "cleanup() (fury.stream.tools.genericmultidimensionalbuffer method)": [[266, "fury.stream.tools.GenericMultiDimensionalBuffer.cleanup"]], "cleanup() (fury.stream.tools.rawarrayimagebuffermanager method)": [[266, "fury.stream.tools.RawArrayImageBufferManager.cleanup"]], "cleanup() (fury.stream.tools.rawarraymultidimensionalbuffer method)": [[266, "fury.stream.tools.RawArrayMultiDimensionalBuffer.cleanup"]], "cleanup() (fury.stream.tools.sharedmemcircularqueue method)": [[266, "fury.stream.tools.SharedMemCircularQueue.cleanup"]], "cleanup() (fury.stream.tools.sharedmemimagebuffermanager method)": [[266, "fury.stream.tools.SharedMemImageBufferManager.cleanup"]], "cleanup() (fury.stream.tools.sharedmemmultidimensionalbuffer method)": [[266, "fury.stream.tools.SharedMemMultiDimensionalBuffer.cleanup"]], "cleanup() (fury.stream.widget.widget method)": [[266, "fury.stream.widget.Widget.cleanup"]], "command_string (fury.stream.widget.widget property)": [[266, "fury.stream.widget.Widget.command_string"]], "create_mem_resource() (fury.stream.tools.arraycircularqueue method)": [[266, "fury.stream.tools.ArrayCircularQueue.create_mem_resource"]], "create_mem_resource() (fury.stream.tools.genericcircularqueue method)": [[266, "fury.stream.tools.GenericCircularQueue.create_mem_resource"]], "create_mem_resource() (fury.stream.tools.genericimagebuffermanager method)": [[266, "fury.stream.tools.GenericImageBufferManager.create_mem_resource"]], "create_mem_resource() (fury.stream.tools.genericmultidimensionalbuffer method)": [[266, "fury.stream.tools.GenericMultiDimensionalBuffer.create_mem_resource"]], "create_mem_resource() (fury.stream.tools.rawarrayimagebuffermanager method)": [[266, "fury.stream.tools.RawArrayImageBufferManager.create_mem_resource"]], "create_mem_resource() (fury.stream.tools.rawarraymultidimensionalbuffer method)": [[266, "fury.stream.tools.RawArrayMultiDimensionalBuffer.create_mem_resource"]], "create_mem_resource() (fury.stream.tools.sharedmemcircularqueue method)": [[266, "fury.stream.tools.SharedMemCircularQueue.create_mem_resource"]], "create_mem_resource() (fury.stream.tools.sharedmemimagebuffermanager method)": [[266, "fury.stream.tools.SharedMemImageBufferManager.create_mem_resource"]], "create_mem_resource() (fury.stream.tools.sharedmemmultidimensionalbuffer method)": [[266, "fury.stream.tools.SharedMemMultiDimensionalBuffer.create_mem_resource"]], "dequeue() (fury.stream.tools.arraycircularqueue method)": [[266, "fury.stream.tools.ArrayCircularQueue.dequeue"]], "dequeue() (fury.stream.tools.genericcircularqueue method)": [[266, "fury.stream.tools.GenericCircularQueue.dequeue"]], "dequeue() (fury.stream.tools.sharedmemcircularqueue method)": [[266, "fury.stream.tools.SharedMemCircularQueue.dequeue"]], "display() (fury.stream.widget.widget method)": [[266, "fury.stream.widget.Widget.display"]], "enqueue() (fury.stream.tools.arraycircularqueue method)": [[266, "fury.stream.tools.ArrayCircularQueue.enqueue"]], "enqueue() (fury.stream.tools.genericcircularqueue method)": [[266, "fury.stream.tools.GenericCircularQueue.enqueue"]], "enqueue() (fury.stream.tools.sharedmemcircularqueue method)": [[266, "fury.stream.tools.SharedMemCircularQueue.enqueue"]], "fury.stream": [[266, "module-fury.stream"]], "fury.stream.client": [[266, "module-fury.stream.client"]], "fury.stream.constants": [[266, "module-fury.stream.constants"]], "fury.stream.server": [[266, "module-fury.stream.server"]], "fury.stream.server.async_app": [[266, "module-fury.stream.server.async_app"]], "fury.stream.server.main": [[266, "module-fury.stream.server.main"]], "fury.stream.tools": [[266, "module-fury.stream.tools"]], "fury.stream.widget": [[266, "module-fury.stream.widget"]], "get_app() (in module fury.stream.server.async_app)": [[266, "fury.stream.server.async_app.get_app"]], "get_current_frame() (fury.stream.tools.genericimagebuffermanager method)": [[266, "fury.stream.tools.GenericImageBufferManager.get_current_frame"]], "get_jpeg() (fury.stream.tools.genericimagebuffermanager method)": [[266, "fury.stream.tools.GenericImageBufferManager.get_jpeg"]], "get_start_end() (fury.stream.tools.genericmultidimensionalbuffer method)": [[266, "fury.stream.tools.GenericMultiDimensionalBuffer.get_start_end"]], "head (fury.stream.tools.genericcircularqueue property)": [[266, "fury.stream.tools.GenericCircularQueue.head"]], "interaction_callback() (in module fury.stream.client)": [[266, "fury.stream.client.interaction_callback"]], "is_unlocked() (fury.stream.tools.sharedmemcircularqueue method)": [[266, "fury.stream.tools.SharedMemCircularQueue.is_unlocked"]], "load_mem_resource() (fury.stream.tools.arraycircularqueue method)": [[266, "fury.stream.tools.ArrayCircularQueue.load_mem_resource"]], "load_mem_resource() (fury.stream.tools.genericcircularqueue method)": [[266, "fury.stream.tools.GenericCircularQueue.load_mem_resource"]], "load_mem_resource() (fury.stream.tools.genericimagebuffermanager method)": [[266, "fury.stream.tools.GenericImageBufferManager.load_mem_resource"]], "load_mem_resource() (fury.stream.tools.genericmultidimensionalbuffer method)": [[266, "fury.stream.tools.GenericMultiDimensionalBuffer.load_mem_resource"]], "load_mem_resource() (fury.stream.tools.rawarrayimagebuffermanager method)": [[266, "fury.stream.tools.RawArrayImageBufferManager.load_mem_resource"]], "load_mem_resource() (fury.stream.tools.rawarraymultidimensionalbuffer method)": [[266, "fury.stream.tools.RawArrayMultiDimensionalBuffer.load_mem_resource"]], "load_mem_resource() (fury.stream.tools.sharedmemcircularqueue method)": [[266, "fury.stream.tools.SharedMemCircularQueue.load_mem_resource"]], "load_mem_resource() (fury.stream.tools.sharedmemimagebuffermanager method)": [[266, "fury.stream.tools.SharedMemImageBufferManager.load_mem_resource"]], "load_mem_resource() (fury.stream.tools.sharedmemmultidimensionalbuffer method)": [[266, "fury.stream.tools.SharedMemMultiDimensionalBuffer.load_mem_resource"]], "lock() (fury.stream.tools.sharedmemcircularqueue method)": [[266, "fury.stream.tools.SharedMemCircularQueue.lock"]], "next_buffer_index (fury.stream.tools.genericimagebuffermanager property)": [[266, "fury.stream.tools.GenericImageBufferManager.next_buffer_index"]], "pcs() (in module fury.stream.server.async_app)": [[266, "fury.stream.server.async_app.pcs"]], "recv() (fury.stream.server.main.rtcserver method)": [[266, "fury.stream.server.main.RTCServer.recv"]], "release() (fury.stream.server.main.rtcserver method)": [[266, "fury.stream.server.main.RTCServer.release"]], "remove_shm_from_resource_tracker() (in module fury.stream.tools)": [[266, "fury.stream.tools.remove_shm_from_resource_tracker"]], "return_iframe() (fury.stream.widget.widget method)": [[266, "fury.stream.widget.Widget.return_iframe"]], "run_command() (fury.stream.widget.widget method)": [[266, "fury.stream.widget.Widget.run_command"]], "set_head_tail() (fury.stream.tools.genericcircularqueue method)": [[266, "fury.stream.tools.GenericCircularQueue.set_head_tail"]], "set_mouse() (in module fury.stream.server.async_app)": [[266, "fury.stream.server.async_app.set_mouse"]], "set_mouse_click() (in module fury.stream.server.async_app)": [[266, "fury.stream.server.async_app.set_mouse_click"]], "set_weel() (in module fury.stream.server.async_app)": [[266, "fury.stream.server.async_app.set_weel"]], "start() (fury.stream.client.furystreamclient method)": [[266, "fury.stream.client.FuryStreamClient.start"]], "start() (fury.stream.client.furystreaminteraction method)": [[266, "fury.stream.client.FuryStreamInteraction.start"]], "start() (fury.stream.tools.intervaltimer method)": [[266, "fury.stream.tools.IntervalTimer.start"]], "start() (fury.stream.tools.intervaltimerthreading method)": [[266, "fury.stream.tools.IntervalTimerThreading.start"]], "start() (fury.stream.widget.widget method)": [[266, "fury.stream.widget.Widget.start"]], "stop() (fury.stream.client.furystreamclient method)": [[266, "fury.stream.client.FuryStreamClient.stop"]], "stop() (fury.stream.client.furystreaminteraction method)": [[266, "fury.stream.client.FuryStreamInteraction.stop"]], "stop() (fury.stream.tools.intervaltimer method)": [[266, "fury.stream.tools.IntervalTimer.stop"]], "stop() (fury.stream.tools.intervaltimerthreading method)": [[266, "fury.stream.tools.IntervalTimerThreading.stop"]], "stop() (fury.stream.widget.widget method)": [[266, "fury.stream.widget.Widget.stop"]], "tail (fury.stream.tools.genericcircularqueue property)": [[266, "fury.stream.tools.GenericCircularQueue.tail"]], "unlock() (fury.stream.tools.sharedmemcircularqueue method)": [[266, "fury.stream.tools.SharedMemCircularQueue.unlock"]], "url (fury.stream.widget.widget property)": [[266, "fury.stream.widget.Widget.url"]], "web_server() (in module fury.stream.server.main)": [[266, "fury.stream.server.main.web_server"]], "web_server_raw_array() (in module fury.stream.server.main)": [[266, "fury.stream.server.main.web_server_raw_array"]], "write_into() (fury.stream.tools.genericimagebuffermanager method)": [[266, "fury.stream.tools.GenericImageBufferManager.write_into"]], "_tuple2axes() (in module fury.transform)": [[267, "fury.transform._TUPLE2AXES"]], "apply_transformation() (in module fury.transform)": [[267, "fury.transform.apply_transformation"]], "cart2sphere() (in module fury.transform)": [[267, "fury.transform.cart2sphere"]], "euler_matrix() (in module fury.transform)": [[267, "fury.transform.euler_matrix"]], "fury.transform": [[267, "module-fury.transform"]], "rotate() (in module fury.transform)": [[267, "fury.transform.rotate"]], "scale() (in module fury.transform)": [[267, "fury.transform.scale"]], "sphere2cart() (in module fury.transform)": [[267, "fury.transform.sphere2cart"]], "transform_from_matrix() (in module fury.transform)": [[267, "fury.transform.transform_from_matrix"]], "translate() (in module fury.transform)": [[267, "fury.transform.translate"]], "anticlockwise_rotation_x (fury.ui.containers.gridui attribute)": [[268, "fury.ui.containers.GridUI.ANTICLOCKWISE_ROTATION_X"]], "anticlockwise_rotation_y (fury.ui.containers.gridui attribute)": [[268, "fury.ui.containers.GridUI.ANTICLOCKWISE_ROTATION_Y"]], "button2d (class in fury.ui.core)": [[268, "fury.ui.core.Button2D"]], "clockwise_rotation_x (fury.ui.containers.gridui attribute)": [[268, "fury.ui.containers.GridUI.CLOCKWISE_ROTATION_X"]], "clockwise_rotation_y (fury.ui.containers.gridui attribute)": [[268, "fury.ui.containers.GridUI.CLOCKWISE_ROTATION_Y"]], "card2d (class in fury.ui.elements)": [[268, "fury.ui.elements.Card2D"]], "checkbox (class in fury.ui.elements)": [[268, "fury.ui.elements.Checkbox"]], "combobox2d (class in fury.ui.elements)": [[268, "fury.ui.elements.ComboBox2D"]], "disk2d (class in fury.ui.core)": [[268, "fury.ui.core.Disk2D"]], "drawpanel (class in fury.ui.elements)": [[268, "fury.ui.elements.DrawPanel"]], "drawshape (class in fury.ui.elements)": [[268, "fury.ui.elements.DrawShape"]], "filemenu2d (class in fury.ui.elements)": [[268, "fury.ui.elements.FileMenu2D"]], "gridui (class in fury.ui.containers)": [[268, "fury.ui.containers.GridUI"]], "imagecontainer2d (class in fury.ui.containers)": [[268, "fury.ui.containers.ImageContainer2D"]], "linedoubleslider2d (class in fury.ui.elements)": [[268, "fury.ui.elements.LineDoubleSlider2D"]], "lineslider2d (class in fury.ui.elements)": [[268, "fury.ui.elements.LineSlider2D"]], "listbox2d (class in fury.ui.elements)": [[268, "fury.ui.elements.ListBox2D"]], "listboxitem2d (class in fury.ui.elements)": [[268, "fury.ui.elements.ListBoxItem2D"]], "option (class in fury.ui.elements)": [[268, "fury.ui.elements.Option"]], "panel2d (class in fury.ui.containers)": [[268, "fury.ui.containers.Panel2D"]], "playbackpanel (class in fury.ui.elements)": [[268, "fury.ui.elements.PlaybackPanel"]], "radiobutton (class in fury.ui.elements)": [[268, "fury.ui.elements.RadioButton"]], "rangeslider (class in fury.ui.elements)": [[268, "fury.ui.elements.RangeSlider"]], "rectangle2d (class in fury.ui.core)": [[268, "fury.ui.core.Rectangle2D"]], "ringslider2d (class in fury.ui.elements)": [[268, "fury.ui.elements.RingSlider2D"]], "tabpanel2d (class in fury.ui.containers)": [[268, "fury.ui.containers.TabPanel2D"]], "tabui (class in fury.ui.containers)": [[268, "fury.ui.containers.TabUI"]], "textblock2d (class in fury.ui.core)": [[268, "fury.ui.core.TextBlock2D"]], "textbox2d (class in fury.ui.elements)": [[268, "fury.ui.elements.TextBox2D"]], "ui (class in fury.ui.core)": [[268, "fury.ui.core.UI"]], "__init__() (fury.ui.containers.gridui method)": [[268, "fury.ui.containers.GridUI.__init__"]], "__init__() (fury.ui.containers.imagecontainer2d method)": [[268, "fury.ui.containers.ImageContainer2D.__init__"]], "__init__() (fury.ui.containers.panel2d method)": [[268, "fury.ui.containers.Panel2D.__init__"]], "__init__() (fury.ui.containers.tabpanel2d method)": [[268, "fury.ui.containers.TabPanel2D.__init__"]], "__init__() (fury.ui.containers.tabui method)": [[268, "fury.ui.containers.TabUI.__init__"]], "__init__() (fury.ui.core.button2d method)": [[268, "fury.ui.core.Button2D.__init__"]], "__init__() (fury.ui.core.disk2d method)": [[268, "fury.ui.core.Disk2D.__init__"]], "__init__() (fury.ui.core.rectangle2d method)": [[268, "fury.ui.core.Rectangle2D.__init__"]], "__init__() (fury.ui.core.textblock2d method)": [[268, "fury.ui.core.TextBlock2D.__init__"]], "__init__() (fury.ui.core.ui method)": [[268, "fury.ui.core.UI.__init__"]], "__init__() (fury.ui.elements.card2d method)": [[268, "fury.ui.elements.Card2D.__init__"]], "__init__() (fury.ui.elements.checkbox method)": [[268, "fury.ui.elements.Checkbox.__init__"]], "__init__() (fury.ui.elements.combobox2d method)": [[268, "fury.ui.elements.ComboBox2D.__init__"]], "__init__() (fury.ui.elements.drawpanel method)": [[268, "fury.ui.elements.DrawPanel.__init__"]], "__init__() (fury.ui.elements.drawshape method)": [[268, "fury.ui.elements.DrawShape.__init__"]], "__init__() (fury.ui.elements.filemenu2d method)": [[268, "fury.ui.elements.FileMenu2D.__init__"]], "__init__() (fury.ui.elements.linedoubleslider2d method)": [[268, "fury.ui.elements.LineDoubleSlider2D.__init__"]], "__init__() (fury.ui.elements.lineslider2d method)": [[268, "fury.ui.elements.LineSlider2D.__init__"]], "__init__() (fury.ui.elements.listbox2d method)": [[268, "fury.ui.elements.ListBox2D.__init__"]], "__init__() (fury.ui.elements.listboxitem2d method)": [[268, "fury.ui.elements.ListBoxItem2D.__init__"]], "__init__() (fury.ui.elements.option method)": [[268, "fury.ui.elements.Option.__init__"]], "__init__() (fury.ui.elements.playbackpanel method)": [[268, "fury.ui.elements.PlaybackPanel.__init__"]], "__init__() (fury.ui.elements.radiobutton method)": [[268, "fury.ui.elements.RadioButton.__init__"]], "__init__() (fury.ui.elements.rangeslider method)": [[268, "fury.ui.elements.RangeSlider.__init__"]], "__init__() (fury.ui.elements.ringslider2d method)": [[268, "fury.ui.elements.RingSlider2D.__init__"]], "__init__() (fury.ui.elements.textbox2d method)": [[268, "fury.ui.elements.TextBox2D.__init__"]], "active_color (fury.ui.elements.linedoubleslider2d attribute)": [[268, "fury.ui.elements.LineDoubleSlider2D.active_color"]], "active_color (fury.ui.elements.lineslider2d attribute)": [[268, "fury.ui.elements.LineSlider2D.active_color"]], "active_color (fury.ui.elements.ringslider2d attribute)": [[268, "fury.ui.elements.RingSlider2D.active_color"]], "actor (fury.ui.core.textblock2d attribute)": [[268, "fury.ui.core.TextBlock2D.actor"]], "actor (fury.ui.elements.textbox2d attribute)": [[268, "fury.ui.elements.TextBox2D.actor"]], "actors (fury.ui.core.ui property)": [[268, "fury.ui.core.UI.actors"]], "add_callback() (fury.ui.core.ui method)": [[268, "fury.ui.core.UI.add_callback"]], "add_character() (fury.ui.elements.textbox2d method)": [[268, "fury.ui.elements.TextBox2D.add_character"]], "add_element() (fury.ui.containers.panel2d method)": [[268, "fury.ui.containers.Panel2D.add_element"]], "add_element() (fury.ui.containers.tabpanel2d method)": [[268, "fury.ui.containers.TabPanel2D.add_element"]], "add_element() (fury.ui.containers.tabui method)": [[268, "fury.ui.containers.TabUI.add_element"]], "add_to_scene() (fury.ui.core.ui method)": [[268, "fury.ui.core.UI.add_to_scene"]], "alignment (fury.ui.containers.panel2d attribute)": [[268, "fury.ui.containers.Panel2D.alignment"]], "angle (fury.ui.elements.ringslider2d property)": [[268, "fury.ui.elements.RingSlider2D.angle"]], "append_item() (fury.ui.elements.combobox2d method)": [[268, "fury.ui.elements.ComboBox2D.append_item"]], "auto_font_scale (fury.ui.core.textblock2d attribute)": [[268, "fury.ui.core.TextBlock2D.auto_font_scale"]], "auto_font_scale (fury.ui.core.textblock2d property)": [[268, "id4"]], "background_color (fury.ui.core.textblock2d property)": [[268, "fury.ui.core.TextBlock2D.background_color"]], "bg_color (fury.ui.core.textblock2d attribute)": [[268, "fury.ui.core.TextBlock2D.bg_color"]], "body (fury.ui.elements.card2d property)": [[268, "fury.ui.elements.Card2D.body"]], "body_box (fury.ui.elements.card2d attribute)": [[268, "fury.ui.elements.Card2D.body_box"]], "bold (fury.ui.core.textblock2d attribute)": [[268, "fury.ui.core.TextBlock2D.bold"]], "bold (fury.ui.core.textblock2d property)": [[268, "id5"]], "border_color (fury.ui.containers.panel2d property)": [[268, "fury.ui.containers.Panel2D.border_color"]], "border_width (fury.ui.containers.panel2d property)": [[268, "fury.ui.containers.Panel2D.border_width"]], "bottom_disk_ratio (fury.ui.elements.linedoubleslider2d property)": [[268, "fury.ui.elements.LineDoubleSlider2D.bottom_disk_ratio"]], "bottom_disk_value (fury.ui.elements.linedoubleslider2d property)": [[268, "fury.ui.elements.LineDoubleSlider2D.bottom_disk_value"]], "bottom_y_position (fury.ui.elements.linedoubleslider2d property)": [[268, "fury.ui.elements.LineDoubleSlider2D.bottom_y_position"]], "bottom_y_position (fury.ui.elements.lineslider2d property)": [[268, "fury.ui.elements.LineSlider2D.bottom_y_position"]], "cal_bounding_box() (fury.ui.elements.drawshape method)": [[268, "fury.ui.elements.DrawShape.cal_bounding_box"]], "cal_bounding_box_2d() (in module fury.ui.helpers)": [[268, "fury.ui.helpers.cal_bounding_box_2d"]], "cal_min_boundary_distance() (fury.ui.elements.drawpanel method)": [[268, "fury.ui.elements.DrawPanel.cal_min_boundary_distance"]], "cal_size_from_message() (fury.ui.core.textblock2d method)": [[268, "fury.ui.core.TextBlock2D.cal_size_from_message"]], "caret_pos (fury.ui.elements.textbox2d attribute)": [[268, "fury.ui.elements.TextBox2D.caret_pos"]], "center (fury.ui.core.ui attribute)": [[268, "fury.ui.core.UI.center"]], "center (fury.ui.core.ui property)": [[268, "id0"]], "center (fury.ui.elements.drawshape property)": [[268, "fury.ui.elements.DrawShape.center"]], "check_overflow() (in module fury.ui.helpers)": [[268, "fury.ui.helpers.check_overflow"]], "clamp_mouse_position() (fury.ui.elements.drawpanel method)": [[268, "fury.ui.elements.DrawPanel.clamp_mouse_position"]], "clamp_position() (fury.ui.elements.drawshape method)": [[268, "fury.ui.elements.DrawShape.clamp_position"]], "clear_selection() (fury.ui.elements.listbox2d method)": [[268, "fury.ui.elements.ListBox2D.clear_selection"]], "clip_overflow() (in module fury.ui.helpers)": [[268, "fury.ui.helpers.clip_overflow"]], "collapse_tab_ui() (fury.ui.containers.tabui method)": [[268, "fury.ui.containers.TabUI.collapse_tab_ui"]], "color (fury.ui.containers.panel2d property)": [[268, "fury.ui.containers.Panel2D.color"]], "color (fury.ui.containers.tabpanel2d property)": [[268, "fury.ui.containers.TabPanel2D.color"]], "color (fury.ui.core.button2d property)": [[268, "fury.ui.core.Button2D.color"]], "color (fury.ui.core.disk2d property)": [[268, "fury.ui.core.Disk2D.color"]], "color (fury.ui.core.rectangle2d property)": [[268, "fury.ui.core.Rectangle2D.color"]], "color (fury.ui.core.textblock2d attribute)": [[268, "fury.ui.core.TextBlock2D.color"]], "color (fury.ui.core.textblock2d property)": [[268, "id6"]], "color (fury.ui.elements.card2d property)": [[268, "fury.ui.elements.Card2D.color"]], "content_panel (fury.ui.containers.tabpanel2d attribute)": [[268, "fury.ui.containers.TabPanel2D.content_panel"]], "coord_to_ratio() (fury.ui.elements.linedoubleslider2d method)": [[268, "fury.ui.elements.LineDoubleSlider2D.coord_to_ratio"]], "current_mode (fury.ui.elements.drawpanel property)": [[268, "fury.ui.elements.DrawPanel.current_mode"]], "current_time (fury.ui.elements.playbackpanel property)": [[268, "fury.ui.elements.PlaybackPanel.current_time"]], "current_time_str (fury.ui.elements.playbackpanel property)": [[268, "fury.ui.elements.PlaybackPanel.current_time_str"]], "default_color (fury.ui.elements.linedoubleslider2d attribute)": [[268, "fury.ui.elements.LineDoubleSlider2D.default_color"]], "default_color (fury.ui.elements.lineslider2d attribute)": [[268, "fury.ui.elements.LineSlider2D.default_color"]], "default_color (fury.ui.elements.ringslider2d attribute)": [[268, "fury.ui.elements.RingSlider2D.default_color"]], "deselect() (fury.ui.elements.listboxitem2d method)": [[268, "fury.ui.elements.ListBoxItem2D.deselect"]], "deselect() (fury.ui.elements.option method)": [[268, "fury.ui.elements.Option.deselect"]], "directory_click_callback() (fury.ui.elements.filemenu2d method)": [[268, "fury.ui.elements.FileMenu2D.directory_click_callback"]], "down_button_callback() (fury.ui.elements.listbox2d method)": [[268, "fury.ui.elements.ListBox2D.down_button_callback"]], "draw_shape() (fury.ui.elements.drawpanel method)": [[268, "fury.ui.elements.DrawPanel.draw_shape"]], "drop_down_button (fury.ui.elements.combobox2d attribute)": [[268, "fury.ui.elements.ComboBox2D.drop_down_button"]], "drop_down_menu (fury.ui.elements.combobox2d attribute)": [[268, "fury.ui.elements.ComboBox2D.drop_down_menu"]], "dynamic_bbox (fury.ui.core.textblock2d attribute)": [[268, "fury.ui.core.TextBlock2D.dynamic_bbox"]], "dynamic_bbox (fury.ui.core.textblock2d property)": [[268, "id7"]], "edit_mode() (fury.ui.elements.textbox2d method)": [[268, "fury.ui.elements.TextBox2D.edit_mode"]], "element (fury.ui.elements.listboxitem2d property)": [[268, "fury.ui.elements.ListBoxItem2D.element"]], "extensions (fury.ui.elements.filemenu2d attribute)": [[268, "fury.ui.elements.FileMenu2D.extensions"]], "final_time (fury.ui.elements.playbackpanel property)": [[268, "fury.ui.elements.PlaybackPanel.final_time"]], "font_family (fury.ui.core.textblock2d attribute)": [[268, "fury.ui.core.TextBlock2D.font_family"]], "font_family (fury.ui.core.textblock2d property)": [[268, "id8"]], "font_size (fury.ui.core.textblock2d attribute)": [[268, "fury.ui.core.TextBlock2D.font_size"]], "font_size (fury.ui.core.textblock2d property)": [[268, "id9"]], "font_size (fury.ui.elements.checkbox property)": [[268, "fury.ui.elements.Checkbox.font_size"]], "font_size (fury.ui.elements.option attribute)": [[268, "fury.ui.elements.Option.font_size"]], "format_text() (fury.ui.elements.linedoubleslider2d method)": [[268, "fury.ui.elements.LineDoubleSlider2D.format_text"]], "format_text() (fury.ui.elements.lineslider2d method)": [[268, "fury.ui.elements.LineSlider2D.format_text"]], "format_text() (fury.ui.elements.ringslider2d method)": [[268, "fury.ui.elements.RingSlider2D.format_text"]], "fury.ui": [[268, "module-fury.ui"]], "fury.ui.containers": [[268, "module-fury.ui.containers"]], "fury.ui.core": [[268, "module-fury.ui.core"]], "fury.ui.elements": [[268, "module-fury.ui.elements"]], "fury.ui.helpers": [[268, "module-fury.ui.helpers"]], "get_all_file_names() (fury.ui.elements.filemenu2d method)": [[268, "fury.ui.elements.FileMenu2D.get_all_file_names"]], "get_directory_names() (fury.ui.elements.filemenu2d method)": [[268, "fury.ui.elements.FileMenu2D.get_directory_names"]], "get_file_names() (fury.ui.elements.filemenu2d method)": [[268, "fury.ui.elements.FileMenu2D.get_file_names"]], "handle (fury.ui.elements.lineslider2d attribute)": [[268, "fury.ui.elements.LineSlider2D.handle"]], "handle (fury.ui.elements.ringslider2d attribute)": [[268, "fury.ui.elements.RingSlider2D.handle"]], "handle_character() (fury.ui.elements.textbox2d method)": [[268, "fury.ui.elements.TextBox2D.handle_character"]], "handle_events() (fury.ui.core.ui method)": [[268, "fury.ui.core.UI.handle_events"]], "handle_mouse_click() (fury.ui.elements.drawpanel method)": [[268, "fury.ui.elements.DrawPanel.handle_mouse_click"]], "handle_mouse_drag() (fury.ui.elements.drawpanel method)": [[268, "fury.ui.elements.DrawPanel.handle_mouse_drag"]], "handle_move_callback() (fury.ui.elements.linedoubleslider2d method)": [[268, "fury.ui.elements.LineDoubleSlider2D.handle_move_callback"]], "handle_move_callback() (fury.ui.elements.lineslider2d method)": [[268, "fury.ui.elements.LineSlider2D.handle_move_callback"]], "handle_move_callback() (fury.ui.elements.ringslider2d method)": [[268, "fury.ui.elements.RingSlider2D.handle_move_callback"]], "handle_release_callback() (fury.ui.elements.linedoubleslider2d method)": [[268, "fury.ui.elements.LineDoubleSlider2D.handle_release_callback"]], "handle_release_callback() (fury.ui.elements.lineslider2d method)": [[268, "fury.ui.elements.LineSlider2D.handle_release_callback"]], "handle_release_callback() (fury.ui.elements.ringslider2d method)": [[268, "fury.ui.elements.RingSlider2D.handle_release_callback"]], "handles (fury.ui.elements.linedoubleslider2d attribute)": [[268, "fury.ui.elements.LineDoubleSlider2D.handles"]], "height (fury.ui.core.rectangle2d property)": [[268, "fury.ui.core.Rectangle2D.height"]], "height (fury.ui.elements.textbox2d attribute)": [[268, "fury.ui.elements.TextBox2D.height"]], "hide() (fury.ui.elements.playbackpanel method)": [[268, "fury.ui.elements.PlaybackPanel.hide"]], "image (fury.ui.elements.card2d attribute)": [[268, "fury.ui.elements.Card2D.image"]], "img (fury.ui.containers.imagecontainer2d attribute)": [[268, "fury.ui.containers.ImageContainer2D.img"]], "init (fury.ui.elements.textbox2d attribute)": [[268, "fury.ui.elements.TextBox2D.init"]], "inner_radius (fury.ui.core.disk2d property)": [[268, "fury.ui.core.Disk2D.inner_radius"]], "is_selected (fury.ui.elements.drawshape property)": [[268, "fury.ui.elements.DrawShape.is_selected"]], "italic (fury.ui.core.textblock2d attribute)": [[268, "fury.ui.core.TextBlock2D.italic"]], "italic (fury.ui.core.textblock2d property)": [[268, "id10"]], "justification (fury.ui.core.textblock2d attribute)": [[268, "fury.ui.core.TextBlock2D.justification"]], "justification (fury.ui.core.textblock2d property)": [[268, "id11"]], "key_press() (fury.ui.elements.textbox2d method)": [[268, "fury.ui.elements.TextBox2D.key_press"]], "key_press_callback() (fury.ui.containers.gridui method)": [[268, "fury.ui.containers.GridUI.key_press_callback"]], "key_press_callback() (fury.ui.core.ui static method)": [[268, "fury.ui.core.UI.key_press_callback"]], "label (fury.ui.elements.option attribute)": [[268, "fury.ui.elements.Option.label"]], "labels (fury.ui.elements.checkbox attribute)": [[268, "fury.ui.elements.Checkbox.labels"]], "labels (fury.ui.elements.radiobutton attribute)": [[268, "fury.ui.elements.RadioButton.labels"]], "left_button_click_callback() (fury.ui.core.ui static method)": [[268, "fury.ui.core.UI.left_button_click_callback"]], "left_button_clicked() (fury.ui.elements.listboxitem2d method)": [[268, "fury.ui.elements.ListBoxItem2D.left_button_clicked"]], "left_button_dragged() (fury.ui.containers.panel2d method)": [[268, "fury.ui.containers.Panel2D.left_button_dragged"]], "left_button_dragged() (fury.ui.containers.tabui method)": [[268, "fury.ui.containers.TabUI.left_button_dragged"]], "left_button_dragged() (fury.ui.elements.card2d method)": [[268, "fury.ui.elements.Card2D.left_button_dragged"]], "left_button_dragged() (fury.ui.elements.combobox2d method)": [[268, "fury.ui.elements.ComboBox2D.left_button_dragged"]], "left_button_dragged() (fury.ui.elements.drawpanel method)": [[268, "fury.ui.elements.DrawPanel.left_button_dragged"]], "left_button_dragged() (fury.ui.elements.drawshape method)": [[268, "fury.ui.elements.DrawShape.left_button_dragged"]], "left_button_press() (fury.ui.elements.textbox2d method)": [[268, "fury.ui.elements.TextBox2D.left_button_press"]], "left_button_pressed() (fury.ui.containers.panel2d method)": [[268, "fury.ui.containers.Panel2D.left_button_pressed"]], "left_button_pressed() (fury.ui.containers.tabui method)": [[268, "fury.ui.containers.TabUI.left_button_pressed"]], "left_button_pressed() (fury.ui.elements.card2d method)": [[268, "fury.ui.elements.Card2D.left_button_pressed"]], "left_button_pressed() (fury.ui.elements.combobox2d method)": [[268, "fury.ui.elements.ComboBox2D.left_button_pressed"]], "left_button_pressed() (fury.ui.elements.drawpanel method)": [[268, "fury.ui.elements.DrawPanel.left_button_pressed"]], "left_button_pressed() (fury.ui.elements.drawshape method)": [[268, "fury.ui.elements.DrawShape.left_button_pressed"]], "left_button_release_callback() (fury.ui.core.ui static method)": [[268, "fury.ui.core.UI.left_button_release_callback"]], "left_button_released() (fury.ui.elements.drawshape method)": [[268, "fury.ui.elements.DrawShape.left_button_released"]], "left_click_callback() (fury.ui.containers.gridui static method)": [[268, "fury.ui.containers.GridUI.left_click_callback"]], "left_click_callback2() (fury.ui.containers.gridui static method)": [[268, "fury.ui.containers.GridUI.left_click_callback2"]], "left_disk_ratio (fury.ui.elements.linedoubleslider2d property)": [[268, "fury.ui.elements.LineDoubleSlider2D.left_disk_ratio"]], "left_disk_value (fury.ui.elements.linedoubleslider2d property)": [[268, "fury.ui.elements.LineDoubleSlider2D.left_disk_value"]], "left_move_left() (fury.ui.elements.textbox2d method)": [[268, "fury.ui.elements.TextBox2D.left_move_left"]], "left_move_right() (fury.ui.elements.textbox2d method)": [[268, "fury.ui.elements.TextBox2D.left_move_right"]], "left_release_callback() (fury.ui.containers.gridui static method)": [[268, "fury.ui.containers.GridUI.left_release_callback"]], "left_release_callback2() (fury.ui.containers.gridui static method)": [[268, "fury.ui.containers.GridUI.left_release_callback2"]], "left_x_position (fury.ui.elements.linedoubleslider2d property)": [[268, "fury.ui.elements.LineDoubleSlider2D.left_x_position"]], "left_x_position (fury.ui.elements.lineslider2d property)": [[268, "fury.ui.elements.LineSlider2D.left_x_position"]], "length (fury.ui.elements.linedoubleslider2d attribute)": [[268, "fury.ui.elements.LineDoubleSlider2D.length"]], "length (fury.ui.elements.lineslider2d attribute)": [[268, "fury.ui.elements.LineSlider2D.length"]], "line_width (fury.ui.elements.linedoubleslider2d attribute)": [[268, "fury.ui.elements.LineDoubleSlider2D.line_width"]], "line_width (fury.ui.elements.lineslider2d attribute)": [[268, "fury.ui.elements.LineSlider2D.line_width"]], "listbox (fury.ui.elements.filemenu2d attribute)": [[268, "fury.ui.elements.FileMenu2D.listbox"]], "loop() (fury.ui.elements.playbackpanel method)": [[268, "fury.ui.elements.PlaybackPanel.loop"]], "menu_toggle_callback() (fury.ui.elements.combobox2d method)": [[268, "fury.ui.elements.ComboBox2D.menu_toggle_callback"]], "message (fury.ui.core.textblock2d attribute)": [[268, "fury.ui.core.TextBlock2D.message"]], "message (fury.ui.core.textblock2d property)": [[268, "id12"]], "mid_track_radius (fury.ui.elements.ringslider2d attribute)": [[268, "fury.ui.elements.RingSlider2D.mid_track_radius"]], "mid_track_radius (fury.ui.elements.ringslider2d property)": [[268, "id15"]], "middle_button_click_callback() (fury.ui.core.ui static method)": [[268, "fury.ui.core.UI.middle_button_click_callback"]], "middle_button_release_callback() (fury.ui.core.ui static method)": [[268, "fury.ui.core.UI.middle_button_release_callback"]], "mouse_move_callback() (fury.ui.containers.gridui static method)": [[268, "fury.ui.containers.GridUI.mouse_move_callback"]], "mouse_move_callback() (fury.ui.core.ui static method)": [[268, "fury.ui.core.UI.mouse_move_callback"]], "mouse_move_callback2() (fury.ui.containers.gridui static method)": [[268, "fury.ui.containers.GridUI.mouse_move_callback2"]], "move_caret_left() (fury.ui.elements.textbox2d method)": [[268, "fury.ui.elements.TextBox2D.move_caret_left"]], "move_caret_right() (fury.ui.elements.textbox2d method)": [[268, "fury.ui.elements.TextBox2D.move_caret_right"]], "move_handle() (fury.ui.elements.ringslider2d method)": [[268, "fury.ui.elements.RingSlider2D.move_handle"]], "move_left() (fury.ui.elements.textbox2d method)": [[268, "fury.ui.elements.TextBox2D.move_left"]], "move_right() (fury.ui.elements.textbox2d method)": [[268, "fury.ui.elements.TextBox2D.move_right"]], "next_icon() (fury.ui.core.button2d method)": [[268, "fury.ui.core.Button2D.next_icon"]], "next_icon_id() (fury.ui.core.button2d method)": [[268, "fury.ui.core.Button2D.next_icon_id"]], "on_change (fury.ui.elements.listbox2d attribute)": [[268, "fury.ui.elements.ListBox2D.on_change"]], "on_key_press (fury.ui.core.ui attribute)": [[268, "fury.ui.core.UI.on_key_press"]], "on_left_mouse_button_clicked (fury.ui.core.ui attribute)": [[268, "fury.ui.core.UI.on_left_mouse_button_clicked"]], "on_left_mouse_button_dragged (fury.ui.core.ui attribute)": [[268, "fury.ui.core.UI.on_left_mouse_button_dragged"]], "on_left_mouse_button_pressed (fury.ui.core.ui attribute)": [[268, "fury.ui.core.UI.on_left_mouse_button_pressed"]], "on_left_mouse_button_released (fury.ui.core.ui attribute)": [[268, "fury.ui.core.UI.on_left_mouse_button_released"]], "on_left_mouse_double_clicked (fury.ui.core.ui attribute)": [[268, "fury.ui.core.UI.on_left_mouse_double_clicked"]], "on_middle_mouse_button_clicked (fury.ui.core.ui attribute)": [[268, "fury.ui.core.UI.on_middle_mouse_button_clicked"]], "on_middle_mouse_button_dragged (fury.ui.core.ui attribute)": [[268, "fury.ui.core.UI.on_middle_mouse_button_dragged"]], "on_middle_mouse_button_pressed (fury.ui.core.ui attribute)": [[268, "fury.ui.core.UI.on_middle_mouse_button_pressed"]], "on_middle_mouse_button_released (fury.ui.core.ui attribute)": [[268, "fury.ui.core.UI.on_middle_mouse_button_released"]], "on_middle_mouse_double_clicked (fury.ui.core.ui attribute)": [[268, "fury.ui.core.UI.on_middle_mouse_double_clicked"]], "on_right_mouse_button_clicked (fury.ui.core.ui attribute)": [[268, "fury.ui.core.UI.on_right_mouse_button_clicked"]], "on_right_mouse_button_dragged (fury.ui.core.ui attribute)": [[268, "fury.ui.core.UI.on_right_mouse_button_dragged"]], "on_right_mouse_button_pressed (fury.ui.core.ui attribute)": [[268, "fury.ui.core.UI.on_right_mouse_button_pressed"]], "on_right_mouse_button_released (fury.ui.core.ui attribute)": [[268, "fury.ui.core.UI.on_right_mouse_button_released"]], "on_right_mouse_double_clicked (fury.ui.core.ui attribute)": [[268, "fury.ui.core.UI.on_right_mouse_double_clicked"]], "opacity (fury.ui.containers.panel2d property)": [[268, "fury.ui.containers.Panel2D.opacity"]], "opacity (fury.ui.core.disk2d property)": [[268, "fury.ui.core.Disk2D.opacity"]], "opacity (fury.ui.core.rectangle2d property)": [[268, "fury.ui.core.Rectangle2D.opacity"]], "options (fury.ui.elements.checkbox attribute)": [[268, "fury.ui.elements.Checkbox.options"]], "options (fury.ui.elements.radiobutton attribute)": [[268, "fury.ui.elements.RadioButton.options"]], "outer_radius (fury.ui.core.disk2d property)": [[268, "fury.ui.core.Disk2D.outer_radius"]], "padding (fury.ui.elements.checkbox attribute)": [[268, "fury.ui.elements.Checkbox.padding"]], "padding (fury.ui.elements.checkbox property)": [[268, "id17"]], "padding (fury.ui.elements.radiobutton attribute)": [[268, "fury.ui.elements.RadioButton.padding"]], "pause() (fury.ui.elements.playbackpanel method)": [[268, "fury.ui.elements.PlaybackPanel.pause"]], "play() (fury.ui.elements.playbackpanel method)": [[268, "fury.ui.elements.PlaybackPanel.play"]], "play_once() (fury.ui.elements.playbackpanel method)": [[268, "fury.ui.elements.PlaybackPanel.play_once"]], "position (fury.ui.core.textblock2d attribute)": [[268, "fury.ui.core.TextBlock2D.position"]], "position (fury.ui.core.ui attribute)": [[268, "fury.ui.core.UI.position"]], "position (fury.ui.core.ui property)": [[268, "id2"]], "previous_value (fury.ui.elements.ringslider2d attribute)": [[268, "fury.ui.elements.RingSlider2D.previous_value"]], "previous_value (fury.ui.elements.ringslider2d property)": [[268, "id16"]], "range_slider (fury.ui.elements.rangeslider attribute)": [[268, "fury.ui.elements.RangeSlider.range_slider"]], "range_slider_center (fury.ui.elements.rangeslider attribute)": [[268, "fury.ui.elements.RangeSlider.range_slider_center"]], "range_slider_handle_move_callback() (fury.ui.elements.rangeslider method)": [[268, "fury.ui.elements.RangeSlider.range_slider_handle_move_callback"]], "ratio (fury.ui.elements.lineslider2d property)": [[268, "fury.ui.elements.LineSlider2D.ratio"]], "ratio (fury.ui.elements.ringslider2d property)": [[268, "fury.ui.elements.RingSlider2D.ratio"]], "ratio_to_coord() (fury.ui.elements.linedoubleslider2d method)": [[268, "fury.ui.elements.LineDoubleSlider2D.ratio_to_coord"]], "ratio_to_value() (fury.ui.elements.linedoubleslider2d method)": [[268, "fury.ui.elements.LineDoubleSlider2D.ratio_to_value"]], "re_align() (fury.ui.containers.panel2d method)": [[268, "fury.ui.containers.Panel2D.re_align"]], "remove() (fury.ui.elements.drawshape method)": [[268, "fury.ui.elements.DrawShape.remove"]], "remove_character() (fury.ui.elements.textbox2d method)": [[268, "fury.ui.elements.TextBox2D.remove_character"]], "remove_element() (fury.ui.containers.panel2d method)": [[268, "fury.ui.containers.Panel2D.remove_element"]], "remove_element() (fury.ui.containers.tabpanel2d method)": [[268, "fury.ui.containers.TabPanel2D.remove_element"]], "remove_element() (fury.ui.containers.tabui method)": [[268, "fury.ui.containers.TabUI.remove_element"]], "render_text() (fury.ui.elements.textbox2d method)": [[268, "fury.ui.elements.TextBox2D.render_text"]], "resize() (fury.ui.containers.gridui method)": [[268, "fury.ui.containers.GridUI.resize"]], "resize() (fury.ui.containers.imagecontainer2d method)": [[268, "fury.ui.containers.ImageContainer2D.resize"]], "resize() (fury.ui.containers.panel2d method)": [[268, "fury.ui.containers.Panel2D.resize"]], "resize() (fury.ui.containers.tabpanel2d method)": [[268, "fury.ui.containers.TabPanel2D.resize"]], "resize() (fury.ui.core.button2d method)": [[268, "fury.ui.core.Button2D.resize"]], "resize() (fury.ui.core.rectangle2d method)": [[268, "fury.ui.core.Rectangle2D.resize"]], "resize() (fury.ui.core.textblock2d method)": [[268, "fury.ui.core.TextBlock2D.resize"]], "resize() (fury.ui.elements.card2d method)": [[268, "fury.ui.elements.Card2D.resize"]], "resize() (fury.ui.elements.combobox2d method)": [[268, "fury.ui.elements.ComboBox2D.resize"]], "resize() (fury.ui.elements.drawpanel method)": [[268, "fury.ui.elements.DrawPanel.resize"]], "resize() (fury.ui.elements.drawshape method)": [[268, "fury.ui.elements.DrawShape.resize"]], "resize() (fury.ui.elements.filemenu2d method)": [[268, "fury.ui.elements.FileMenu2D.resize"]], "resize() (fury.ui.elements.listbox2d method)": [[268, "fury.ui.elements.ListBox2D.resize"]], "resize() (fury.ui.elements.listboxitem2d method)": [[268, "fury.ui.elements.ListBoxItem2D.resize"]], "resize_shape() (fury.ui.elements.drawpanel method)": [[268, "fury.ui.elements.DrawPanel.resize_shape"]], "right_button_click_callback() (fury.ui.core.ui static method)": [[268, "fury.ui.core.UI.right_button_click_callback"]], "right_button_release_callback() (fury.ui.core.ui static method)": [[268, "fury.ui.core.UI.right_button_release_callback"]], "right_disk_ratio (fury.ui.elements.linedoubleslider2d property)": [[268, "fury.ui.elements.LineDoubleSlider2D.right_disk_ratio"]], "right_disk_value (fury.ui.elements.linedoubleslider2d property)": [[268, "fury.ui.elements.LineDoubleSlider2D.right_disk_value"]], "right_move_left() (fury.ui.elements.textbox2d method)": [[268, "fury.ui.elements.TextBox2D.right_move_left"]], "right_move_right() (fury.ui.elements.textbox2d method)": [[268, "fury.ui.elements.TextBox2D.right_move_right"]], "right_x_position (fury.ui.elements.linedoubleslider2d property)": [[268, "fury.ui.elements.LineDoubleSlider2D.right_x_position"]], "right_x_position (fury.ui.elements.lineslider2d property)": [[268, "fury.ui.elements.LineSlider2D.right_x_position"]], "rotate() (fury.ui.elements.drawshape method)": [[268, "fury.ui.elements.DrawShape.rotate"]], "rotate_2d() (in module fury.ui.helpers)": [[268, "fury.ui.helpers.rotate_2d"]], "scale() (fury.ui.containers.imagecontainer2d method)": [[268, "fury.ui.containers.ImageContainer2D.scale"]], "scale() (fury.ui.core.button2d method)": [[268, "fury.ui.core.Button2D.scale"]], "scroll_callback() (fury.ui.elements.filemenu2d method)": [[268, "fury.ui.elements.FileMenu2D.scroll_callback"]], "scroll_click_callback() (fury.ui.elements.listbox2d method)": [[268, "fury.ui.elements.ListBox2D.scroll_click_callback"]], "scroll_drag_callback() (fury.ui.elements.listbox2d method)": [[268, "fury.ui.elements.ListBox2D.scroll_drag_callback"]], "scroll_release_callback() (fury.ui.elements.listbox2d method)": [[268, "fury.ui.elements.ListBox2D.scroll_release_callback"]], "select() (fury.ui.elements.listbox2d method)": [[268, "fury.ui.elements.ListBox2D.select"]], "select() (fury.ui.elements.listboxitem2d method)": [[268, "fury.ui.elements.ListBoxItem2D.select"]], "select() (fury.ui.elements.option method)": [[268, "fury.ui.elements.Option.select"]], "select_option_callback() (fury.ui.elements.combobox2d method)": [[268, "fury.ui.elements.ComboBox2D.select_option_callback"]], "select_tab_callback() (fury.ui.containers.tabui method)": [[268, "fury.ui.containers.TabUI.select_tab_callback"]], "selected_text (fury.ui.elements.combobox2d property)": [[268, "fury.ui.elements.ComboBox2D.selected_text"]], "selected_text_index (fury.ui.elements.combobox2d property)": [[268, "fury.ui.elements.ComboBox2D.selected_text_index"]], "selection_box (fury.ui.elements.combobox2d attribute)": [[268, "fury.ui.elements.ComboBox2D.selection_box"]], "selection_change() (fury.ui.elements.drawshape method)": [[268, "fury.ui.elements.DrawShape.selection_change"]], "set_icon() (fury.ui.core.button2d method)": [[268, "fury.ui.core.Button2D.set_icon"]], "set_icon_by_name() (fury.ui.core.button2d method)": [[268, "fury.ui.core.Button2D.set_icon_by_name"]], "set_img() (fury.ui.containers.imagecontainer2d method)": [[268, "fury.ui.containers.ImageContainer2D.set_img"]], "set_message() (fury.ui.elements.textbox2d method)": [[268, "fury.ui.elements.TextBox2D.set_message"]], "set_position() (fury.ui.elements.linedoubleslider2d method)": [[268, "fury.ui.elements.LineDoubleSlider2D.set_position"]], "set_position() (fury.ui.elements.lineslider2d method)": [[268, "fury.ui.elements.LineSlider2D.set_position"]], "set_slot_colors() (fury.ui.elements.filemenu2d method)": [[268, "fury.ui.elements.FileMenu2D.set_slot_colors"]], "set_visibility() (fury.ui.containers.panel2d method)": [[268, "fury.ui.containers.Panel2D.set_visibility"]], "set_visibility() (fury.ui.core.ui method)": [[268, "fury.ui.core.UI.set_visibility"]], "set_visibility() (fury.ui.elements.combobox2d method)": [[268, "fury.ui.elements.ComboBox2D.set_visibility"]], "shadow (fury.ui.core.textblock2d attribute)": [[268, "fury.ui.core.TextBlock2D.shadow"]], "shadow (fury.ui.core.textblock2d property)": [[268, "id13"]], "shape (fury.ui.elements.linedoubleslider2d attribute)": [[268, "fury.ui.elements.LineDoubleSlider2D.shape"]], "shape (fury.ui.elements.lineslider2d attribute)": [[268, "fury.ui.elements.LineSlider2D.shape"]], "show() (fury.ui.elements.playbackpanel method)": [[268, "fury.ui.elements.PlaybackPanel.show"]], "show_rotation_slider() (fury.ui.elements.drawpanel method)": [[268, "fury.ui.elements.DrawPanel.show_rotation_slider"]], "showable_text() (fury.ui.elements.textbox2d method)": [[268, "fury.ui.elements.TextBox2D.showable_text"]], "size (fury.ui.containers.imagecontainer2d attribute)": [[268, "fury.ui.containers.ImageContainer2D.size"]], "size (fury.ui.core.textblock2d attribute)": [[268, "fury.ui.core.TextBlock2D.size"]], "size (fury.ui.core.ui attribute)": [[268, "fury.ui.core.UI.size"]], "size (fury.ui.core.ui property)": [[268, "id3"]], "speed (fury.ui.elements.playbackpanel property)": [[268, "fury.ui.elements.PlaybackPanel.speed"]], "stop() (fury.ui.elements.playbackpanel method)": [[268, "fury.ui.elements.PlaybackPanel.stop"]], "tabs (fury.ui.containers.tabui attribute)": [[268, "fury.ui.containers.TabUI.tabs"]], "text (fury.ui.elements.linedoubleslider2d attribute)": [[268, "fury.ui.elements.LineDoubleSlider2D.text"]], "text (fury.ui.elements.lineslider2d attribute)": [[268, "fury.ui.elements.LineSlider2D.text"]], "text (fury.ui.elements.ringslider2d attribute)": [[268, "fury.ui.elements.RingSlider2D.text"]], "text (fury.ui.elements.textbox2d attribute)": [[268, "fury.ui.elements.TextBox2D.text"]], "text_block (fury.ui.containers.tabpanel2d attribute)": [[268, "fury.ui.containers.TabPanel2D.text_block"]], "title (fury.ui.containers.tabpanel2d property)": [[268, "fury.ui.containers.TabPanel2D.title"]], "title (fury.ui.elements.card2d property)": [[268, "fury.ui.elements.Card2D.title"]], "title_bold (fury.ui.containers.tabpanel2d property)": [[268, "fury.ui.containers.TabPanel2D.title_bold"]], "title_box (fury.ui.elements.card2d attribute)": [[268, "fury.ui.elements.Card2D.title_box"]], "title_color (fury.ui.containers.tabpanel2d property)": [[268, "fury.ui.containers.TabPanel2D.title_color"]], "title_font_size (fury.ui.containers.tabpanel2d property)": [[268, "fury.ui.containers.TabPanel2D.title_font_size"]], "title_italic (fury.ui.containers.tabpanel2d property)": [[268, "fury.ui.containers.TabPanel2D.title_italic"]], "toggle() (fury.ui.elements.option method)": [[268, "fury.ui.elements.Option.toggle"]], "top_disk_ratio (fury.ui.elements.linedoubleslider2d property)": [[268, "fury.ui.elements.LineDoubleSlider2D.top_disk_ratio"]], "top_disk_value (fury.ui.elements.linedoubleslider2d property)": [[268, "fury.ui.elements.LineDoubleSlider2D.top_disk_value"]], "top_y_position (fury.ui.elements.linedoubleslider2d property)": [[268, "fury.ui.elements.LineDoubleSlider2D.top_y_position"]], "top_y_position (fury.ui.elements.lineslider2d property)": [[268, "fury.ui.elements.LineSlider2D.top_y_position"]], "track (fury.ui.elements.linedoubleslider2d attribute)": [[268, "fury.ui.elements.LineDoubleSlider2D.track"]], "track (fury.ui.elements.lineslider2d attribute)": [[268, "fury.ui.elements.LineSlider2D.track"]], "track (fury.ui.elements.ringslider2d attribute)": [[268, "fury.ui.elements.RingSlider2D.track"]], "track_click_callback() (fury.ui.elements.lineslider2d method)": [[268, "fury.ui.elements.LineSlider2D.track_click_callback"]], "track_click_callback() (fury.ui.elements.ringslider2d method)": [[268, "fury.ui.elements.RingSlider2D.track_click_callback"]], "up_button_callback() (fury.ui.elements.listbox2d method)": [[268, "fury.ui.elements.ListBox2D.up_button_callback"]], "update() (fury.ui.elements.linedoubleslider2d method)": [[268, "fury.ui.elements.LineDoubleSlider2D.update"]], "update() (fury.ui.elements.lineslider2d method)": [[268, "fury.ui.elements.LineSlider2D.update"]], "update() (fury.ui.elements.listbox2d method)": [[268, "fury.ui.elements.ListBox2D.update"]], "update() (fury.ui.elements.ringslider2d method)": [[268, "fury.ui.elements.RingSlider2D.update"]], "update_alignment() (fury.ui.core.textblock2d method)": [[268, "fury.ui.core.TextBlock2D.update_alignment"]], "update_border_coords() (fury.ui.containers.panel2d method)": [[268, "fury.ui.containers.Panel2D.update_border_coords"]], "update_bounding_box() (fury.ui.core.textblock2d method)": [[268, "fury.ui.core.TextBlock2D.update_bounding_box"]], "update_button_icons() (fury.ui.elements.drawpanel method)": [[268, "fury.ui.elements.DrawPanel.update_button_icons"]], "update_element() (fury.ui.containers.panel2d method)": [[268, "fury.ui.containers.Panel2D.update_element"]], "update_element() (fury.ui.containers.tabpanel2d method)": [[268, "fury.ui.containers.TabPanel2D.update_element"]], "update_element() (fury.ui.containers.tabui method)": [[268, "fury.ui.containers.TabUI.update_element"]], "update_scrollbar() (fury.ui.elements.listbox2d method)": [[268, "fury.ui.elements.ListBox2D.update_scrollbar"]], "update_shape_position() (fury.ui.elements.drawshape method)": [[268, "fury.ui.elements.DrawShape.update_shape_position"]], "update_shape_selection() (fury.ui.elements.drawpanel method)": [[268, "fury.ui.elements.DrawPanel.update_shape_selection"]], "update_tabs() (fury.ui.containers.tabui method)": [[268, "fury.ui.containers.TabUI.update_tabs"]], "value (fury.ui.elements.lineslider2d property)": [[268, "fury.ui.elements.LineSlider2D.value"]], "value (fury.ui.elements.ringslider2d property)": [[268, "fury.ui.elements.RingSlider2D.value"]], "value_slider (fury.ui.elements.rangeslider attribute)": [[268, "fury.ui.elements.RangeSlider.value_slider"]], "value_slider_center (fury.ui.elements.rangeslider attribute)": [[268, "fury.ui.elements.RangeSlider.value_slider_center"]], "value_to_ratio() (fury.ui.elements.linedoubleslider2d method)": [[268, "fury.ui.elements.LineDoubleSlider2D.value_to_ratio"]], "vertical_justification (fury.ui.core.textblock2d attribute)": [[268, "fury.ui.core.TextBlock2D.vertical_justification"]], "vertical_justification (fury.ui.core.textblock2d property)": [[268, "id14"]], "width (fury.ui.core.rectangle2d property)": [[268, "fury.ui.core.Rectangle2D.width"]], "width (fury.ui.elements.playbackpanel property)": [[268, "fury.ui.elements.PlaybackPanel.width"]], "width (fury.ui.elements.textbox2d attribute)": [[268, "fury.ui.elements.TextBox2D.width"]], "width_set_text() (fury.ui.elements.textbox2d method)": [[268, "fury.ui.elements.TextBox2D.width_set_text"]], "window_left (fury.ui.elements.textbox2d attribute)": [[268, "fury.ui.elements.TextBox2D.window_left"]], "window_right (fury.ui.elements.textbox2d attribute)": [[268, "fury.ui.elements.TextBox2D.window_right"]], "wrap_overflow() (in module fury.ui.helpers)": [[268, "fury.ui.helpers.wrap_overflow"]], "add_polydata_numeric_field() (in module fury.utils)": [[269, "fury.utils.add_polydata_numeric_field"]], "apply_affine() (in module fury.utils)": [[269, "fury.utils.apply_affine"]], "apply_affine_to_actor() (in module fury.utils)": [[269, "fury.utils.apply_affine_to_actor"]], "array_from_actor() (in module fury.utils)": [[269, "fury.utils.array_from_actor"]], "asbytes() (in module fury.utils)": [[269, "fury.utils.asbytes"]], "change_vertices_order() (in module fury.utils)": [[269, "fury.utils.change_vertices_order"]], "color_check() (in module fury.utils)": [[269, "fury.utils.color_check"]], "colors_from_actor() (in module fury.utils)": [[269, "fury.utils.colors_from_actor"]], "compute_bounds() (in module fury.utils)": [[269, "fury.utils.compute_bounds"]], "fix_winding_order() (in module fury.utils)": [[269, "fury.utils.fix_winding_order"]], "fury.utils": [[269, "module-fury.utils"]], "get_actor_from_polydata() (in module fury.utils)": [[269, "fury.utils.get_actor_from_polydata"]], "get_actor_from_polymapper() (in module fury.utils)": [[269, "fury.utils.get_actor_from_polymapper"]], "get_actor_from_primitive() (in module fury.utils)": [[269, "fury.utils.get_actor_from_primitive"]], "get_bounding_box_sizes() (in module fury.utils)": [[269, "fury.utils.get_bounding_box_sizes"]], "get_bounds() (in module fury.utils)": [[269, "fury.utils.get_bounds"]], "get_grid_cells_position() (in module fury.utils)": [[269, "fury.utils.get_grid_cells_position"]], "get_polydata_colors() (in module fury.utils)": [[269, "fury.utils.get_polydata_colors"]], "get_polydata_field() (in module fury.utils)": [[269, "fury.utils.get_polydata_field"]], "get_polydata_lines() (in module fury.utils)": [[269, "fury.utils.get_polydata_lines"]], "get_polydata_normals() (in module fury.utils)": [[269, "fury.utils.get_polydata_normals"]], "get_polydata_primitives_count() (in module fury.utils)": [[269, "fury.utils.get_polydata_primitives_count"]], "get_polydata_tangents() (in module fury.utils)": [[269, "fury.utils.get_polydata_tangents"]], "get_polydata_tcoord() (in module fury.utils)": [[269, "fury.utils.get_polydata_tcoord"]], "get_polydata_triangles() (in module fury.utils)": [[269, "fury.utils.get_polydata_triangles"]], "get_polydata_vertices() (in module fury.utils)": [[269, "fury.utils.get_polydata_vertices"]], "get_polymapper_from_polydata() (in module fury.utils)": [[269, "fury.utils.get_polymapper_from_polydata"]], "is_ui() (in module fury.utils)": [[269, "fury.utils.is_ui"]], "lines_to_vtk_polydata() (in module fury.utils)": [[269, "fury.utils.lines_to_vtk_polydata"]], "map_coordinates_3d_4d() (in module fury.utils)": [[269, "fury.utils.map_coordinates_3d_4d"]], "normalize_v3() (in module fury.utils)": [[269, "fury.utils.normalize_v3"]], "normals_from_actor() (in module fury.utils)": [[269, "fury.utils.normals_from_actor"]], "normals_from_v_f() (in module fury.utils)": [[269, "fury.utils.normals_from_v_f"]], "normals_to_actor() (in module fury.utils)": [[269, "fury.utils.normals_to_actor"]], "numpy_to_vtk_cells() (in module fury.utils)": [[269, "fury.utils.numpy_to_vtk_cells"]], "numpy_to_vtk_colors() (in module fury.utils)": [[269, "fury.utils.numpy_to_vtk_colors"]], "numpy_to_vtk_image_data() (in module fury.utils)": [[269, "fury.utils.numpy_to_vtk_image_data"]], "numpy_to_vtk_matrix() (in module fury.utils)": [[269, "fury.utils.numpy_to_vtk_matrix"]], "numpy_to_vtk_points() (in module fury.utils)": [[269, "fury.utils.numpy_to_vtk_points"]], "primitives_count_from_actor() (in module fury.utils)": [[269, "fury.utils.primitives_count_from_actor"]], "primitives_count_to_actor() (in module fury.utils)": [[269, "fury.utils.primitives_count_to_actor"]], "remove_observer_from_actor() (in module fury.utils)": [[269, "fury.utils.remove_observer_from_actor"]], "repeat_sources() (in module fury.utils)": [[269, "fury.utils.repeat_sources"]], "represent_actor_as_wireframe() (in module fury.utils)": [[269, "fury.utils.represent_actor_as_wireframe"]], "rgb_to_vtk() (in module fury.utils)": [[269, "fury.utils.rgb_to_vtk"]], "rotate() (in module fury.utils)": [[269, "fury.utils.rotate"]], "set_actor_origin() (in module fury.utils)": [[269, "fury.utils.set_actor_origin"]], "set_input() (in module fury.utils)": [[269, "fury.utils.set_input"]], "set_polydata_colors() (in module fury.utils)": [[269, "fury.utils.set_polydata_colors"]], "set_polydata_normals() (in module fury.utils)": [[269, "fury.utils.set_polydata_normals"]], "set_polydata_primitives_count() (in module fury.utils)": [[269, "fury.utils.set_polydata_primitives_count"]], "set_polydata_tangents() (in module fury.utils)": [[269, "fury.utils.set_polydata_tangents"]], "set_polydata_tcoords() (in module fury.utils)": [[269, "fury.utils.set_polydata_tcoords"]], "set_polydata_triangles() (in module fury.utils)": [[269, "fury.utils.set_polydata_triangles"]], "set_polydata_vertices() (in module fury.utils)": [[269, "fury.utils.set_polydata_vertices"]], "shallow_copy() (in module fury.utils)": [[269, "fury.utils.shallow_copy"]], "tangents_from_actor() (in module fury.utils)": [[269, "fury.utils.tangents_from_actor"]], "tangents_from_direction_of_anisotropy() (in module fury.utils)": [[269, "fury.utils.tangents_from_direction_of_anisotropy"]], "tangents_to_actor() (in module fury.utils)": [[269, "fury.utils.tangents_to_actor"]], "triangle_order() (in module fury.utils)": [[269, "fury.utils.triangle_order"]], "update_actor() (in module fury.utils)": [[269, "fury.utils.update_actor"]], "update_polydata_normals() (in module fury.utils)": [[269, "fury.utils.update_polydata_normals"]], "update_surface_actor_colors() (in module fury.utils)": [[269, "fury.utils.update_surface_actor_colors"]], "vertices_from_actor() (in module fury.utils)": [[269, "fury.utils.vertices_from_actor"]], "vtk_matrix_to_numpy() (in module fury.utils)": [[269, "fury.utils.vtk_matrix_to_numpy"]], "scene (class in fury.window)": [[270, "fury.window.Scene"]], "showmanager (class in fury.window)": [[270, "fury.window.ShowManager"]], "__init__() (fury.window.scene method)": [[270, "fury.window.Scene.__init__"]], "__init__() (fury.window.showmanager method)": [[270, "fury.window.ShowManager.__init__"]], "add() (fury.window.scene method)": [[270, "fury.window.Scene.add"]], "add_animation() (fury.window.showmanager method)": [[270, "fury.window.ShowManager.add_animation"]], "add_iren_callback() (fury.window.showmanager method)": [[270, "fury.window.ShowManager.add_iren_callback"]], "add_timer_callback() (fury.window.showmanager method)": [[270, "fury.window.ShowManager.add_timer_callback"]], "add_window_callback() (fury.window.showmanager method)": [[270, "fury.window.ShowManager.add_window_callback"]], "analyze_scene() (in module fury.window)": [[270, "fury.window.analyze_scene"]], "analyze_snapshot() (in module fury.window)": [[270, "fury.window.analyze_snapshot"]], "animations (fury.window.showmanager property)": [[270, "fury.window.ShowManager.animations"]], "antialiasing() (in module fury.window)": [[270, "fury.window.antialiasing"]], "azimuth() (fury.window.scene method)": [[270, "fury.window.Scene.azimuth"]], "background() (fury.window.scene method)": [[270, "fury.window.Scene.background"]], "camera() (fury.window.scene method)": [[270, "fury.window.Scene.camera"]], "camera_direction() (fury.window.scene method)": [[270, "fury.window.Scene.camera_direction"]], "camera_info() (fury.window.scene method)": [[270, "fury.window.Scene.camera_info"]], "clear() (fury.window.scene method)": [[270, "fury.window.Scene.clear"]], "destroy_timer() (fury.window.showmanager method)": [[270, "fury.window.ShowManager.destroy_timer"]], "destroy_timers() (fury.window.showmanager method)": [[270, "fury.window.ShowManager.destroy_timers"]], "dolly() (fury.window.scene method)": [[270, "fury.window.Scene.dolly"]], "elevation() (fury.window.scene method)": [[270, "fury.window.Scene.elevation"]], "enable_stereo() (in module fury.window)": [[270, "fury.window.enable_stereo"]], "exit() (fury.window.showmanager method)": [[270, "fury.window.ShowManager.exit"]], "frame_rate (fury.window.showmanager property)": [[270, "fury.window.ShowManager.frame_rate"]], "fury.window": [[270, "module-fury.window"]], "fxaa_off() (fury.window.scene method)": [[270, "fury.window.Scene.fxaa_off"]], "fxaa_on() (fury.window.scene method)": [[270, "fury.window.Scene.fxaa_on"]], "get_camera() (fury.window.scene method)": [[270, "fury.window.Scene.get_camera"]], "gl_disable_blend() (in module fury.window)": [[270, "fury.window.gl_disable_blend"]], "gl_disable_depth() (in module fury.window)": [[270, "fury.window.gl_disable_depth"]], "gl_enable_blend() (in module fury.window)": [[270, "fury.window.gl_enable_blend"]], "gl_enable_depth() (in module fury.window)": [[270, "fury.window.gl_enable_depth"]], "gl_get_current_state() (in module fury.window)": [[270, "fury.window.gl_get_current_state"]], "gl_reset_blend() (in module fury.window)": [[270, "fury.window.gl_reset_blend"]], "gl_set_additive_blending() (in module fury.window)": [[270, "fury.window.gl_set_additive_blending"]], "gl_set_additive_blending_white_background() (in module fury.window)": [[270, "fury.window.gl_set_additive_blending_white_background"]], "gl_set_multiplicative_blending() (in module fury.window)": [[270, "fury.window.gl_set_multiplicative_blending"]], "gl_set_normal_blending() (in module fury.window)": [[270, "fury.window.gl_set_normal_blending"]], "gl_set_subtractive_blending() (in module fury.window)": [[270, "fury.window.gl_set_subtractive_blending"]], "initialize() (fury.window.showmanager method)": [[270, "fury.window.ShowManager.initialize"]], "iren (fury.window.showmanager attribute)": [[270, "fury.window.ShowManager.iren"]], "is_done() (fury.window.showmanager method)": [[270, "fury.window.ShowManager.is_done"]], "last_render_time (fury.window.scene property)": [[270, "fury.window.Scene.last_render_time"]], "lock() (fury.window.showmanager method)": [[270, "fury.window.ShowManager.lock"]], "lock_current() (fury.window.showmanager method)": [[270, "fury.window.ShowManager.lock_current"]], "pitch() (fury.window.scene method)": [[270, "fury.window.Scene.pitch"]], "play_events() (fury.window.showmanager method)": [[270, "fury.window.ShowManager.play_events"]], "play_events_from_file() (fury.window.showmanager method)": [[270, "fury.window.ShowManager.play_events_from_file"]], "projection() (fury.window.scene method)": [[270, "fury.window.Scene.projection"]], "record() (in module fury.window)": [[270, "fury.window.record"]], "record_events() (fury.window.showmanager method)": [[270, "fury.window.ShowManager.record_events"]], "record_events_to_file() (fury.window.showmanager method)": [[270, "fury.window.ShowManager.record_events_to_file"]], "release_context() (in module fury.window)": [[270, "fury.window.release_context"]], "release_current() (fury.window.showmanager method)": [[270, "fury.window.ShowManager.release_current"]], "release_lock() (fury.window.showmanager method)": [[270, "fury.window.ShowManager.release_lock"]], "remove_animation() (fury.window.showmanager method)": [[270, "fury.window.ShowManager.remove_animation"]], "render() (fury.window.showmanager method)": [[270, "fury.window.ShowManager.render"]], "reset_camera() (fury.window.scene method)": [[270, "fury.window.Scene.reset_camera"]], "reset_camera_tight() (fury.window.scene method)": [[270, "fury.window.Scene.reset_camera_tight"]], "reset_clipping_range() (fury.window.scene method)": [[270, "fury.window.Scene.reset_clipping_range"]], "rm() (fury.window.scene method)": [[270, "fury.window.Scene.rm"]], "rm_all() (fury.window.scene method)": [[270, "fury.window.Scene.rm_all"]], "roll() (fury.window.scene method)": [[270, "fury.window.Scene.roll"]], "save_screenshot() (fury.window.showmanager method)": [[270, "fury.window.ShowManager.save_screenshot"]], "scene (fury.window.showmanager attribute)": [[270, "fury.window.ShowManager.scene"]], "set_camera() (fury.window.scene method)": [[270, "fury.window.Scene.set_camera"]], "show() (in module fury.window)": [[270, "fury.window.show"]], "size() (fury.window.scene method)": [[270, "fury.window.Scene.size"]], "skybox() (fury.window.scene method)": [[270, "fury.window.Scene.skybox"]], "snapshot() (in module fury.window)": [[270, "fury.window.snapshot"]], "start() (fury.window.showmanager method)": [[270, "fury.window.ShowManager.start"]], "style (fury.window.showmanager attribute)": [[270, "fury.window.ShowManager.style"]], "timelines (fury.window.showmanager property)": [[270, "fury.window.ShowManager.timelines"]], "wait() (fury.window.showmanager method)": [[270, "fury.window.ShowManager.wait"]], "window (fury.window.showmanager attribute)": [[270, "fury.window.ShowManager.window"]], "yaw() (fury.window.scene method)": [[270, "fury.window.Scene.yaw"]], "zoom() (fury.window.scene method)": [[270, "fury.window.Scene.zoom"]]}})
\ No newline at end of file
diff --git a/dev/symlink/contributing.html b/dev/symlink/contributing.html
index 6ab0120ae..164633be0 100644
--- a/dev/symlink/contributing.html
+++ b/dev/symlink/contributing.html
@@ -5,7 +5,7 @@
- Contributing — FURY 0.10.0.dev192+g2551b7f4 documentation
+ Contributing — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,7 @@
-
+
diff --git a/dev/symlink/license.html b/dev/symlink/license.html
index ed3329c94..e71b403e0 100644
--- a/dev/symlink/license.html
+++ b/dev/symlink/license.html
@@ -5,7 +5,7 @@
- License — FURY 0.10.0.dev192+g2551b7f4 documentation
+ License — FURY 0.10.0.dev197+g9a9cf7f0 documentation
@@ -25,7 +25,7 @@
-
+
@@ -40,7 +40,7 @@
-
+