Skip to content

Commit

Permalink
Deploying to gh-pages from @ fury-gl/fury@0fa1af5 🚀
Browse files Browse the repository at this point in the history
  • Loading branch information
skoudoro committed Jul 31, 2024
1 parent 5b717e7 commit 4af90e5
Show file tree
Hide file tree
Showing 335 changed files with 2,941 additions and 1,050 deletions.
2 changes: 1 addition & 1 deletion v0.10.x/.buildinfo
Original file line number Diff line number Diff line change
@@ -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: 7502726615872f4608e55b6ade70be87
config: 4c66981a366c0e547f6767476215b199
tags: 645f666f9bcd5a90fca523b33c5a78b7
Binary file modified v0.10.x/.doctrees/environment.pickle
Binary file not shown.
Binary file not shown.
Binary file modified v0.10.x/.doctrees/reference/fury.actor.doctree
Binary file not shown.
Binary file modified v0.10.x/.doctrees/reference/fury.animation.doctree
Binary file not shown.
Binary file modified v0.10.x/.doctrees/reference/fury.colormap.doctree
Binary file not shown.
Binary file modified v0.10.x/.doctrees/reference/fury.decorators.doctree
Binary file not shown.
Binary file modified v0.10.x/.doctrees/reference/fury.deprecator.doctree
Binary file not shown.
Binary file modified v0.10.x/.doctrees/reference/fury.transform.doctree
Binary file not shown.
Binary file modified v0.10.x/.doctrees/reference/fury.utils.doctree
Binary file not shown.
Binary file modified v0.10.x/.doctrees/reference/fury.window.doctree
Binary file not shown.
Binary file modified v0.10.x/.doctrees/release-history.doctree
Binary file not shown.
Binary file not shown.
Binary file modified v0.10.x/.doctrees/symlink/contributing.doctree
Binary file not shown.
4 changes: 2 additions & 2 deletions v0.10.x/_modules/fury.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>fury &#8212; FURY 0.11.0.dev70+gee3b579e documentation</title>
<title>fury &#8212; FURY 0.11.0.dev73+g0fa1af5d documentation</title>



Expand Down Expand Up @@ -43,7 +43,7 @@
<link rel="preload" as="script" href="../_static/scripts/pydata-sphinx-theme.js?digest=8d27b9dea8ad943066ae" />
<script src="../_static/vendor/fontawesome/6.5.1/js/all.min.js?digest=8d27b9dea8ad943066ae"></script>

<script src="../_static/documentation_options.js?v=53c330aa"></script>
<script src="../_static/documentation_options.js?v=5fc59825"></script>
<script src="../_static/doctools.js?v=9a2dae69"></script>
<script src="../_static/sphinx_highlight.js?v=dc90522c"></script>
<script src="../_static/clipboard.min.js?v=a7894cd8"></script>
Expand Down
32 changes: 16 additions & 16 deletions v0.10.x/_modules/fury/actor.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>fury.actor &#8212; FURY 0.11.0.dev70+gee3b579e documentation</title>
<title>fury.actor &#8212; FURY 0.11.0.dev73+g0fa1af5d documentation</title>



Expand Down Expand Up @@ -43,7 +43,7 @@
<link rel="preload" as="script" href="../../_static/scripts/pydata-sphinx-theme.js?digest=8d27b9dea8ad943066ae" />
<script src="../../_static/vendor/fontawesome/6.5.1/js/all.min.js?digest=8d27b9dea8ad943066ae"></script>

<script src="../../_static/documentation_options.js?v=53c330aa"></script>
<script src="../../_static/documentation_options.js?v=5fc59825"></script>
<script src="../../_static/doctools.js?v=9a2dae69"></script>
<script src="../../_static/sphinx_highlight.js?v=dc90522c"></script>
<script src="../../_static/clipboard.min.js?v=a7894cd8"></script>
Expand Down Expand Up @@ -1064,7 +1064,7 @@ <h1>Source code for fury.actor</h1><div class="highlight"><pre>
<span class="sd"> &gt;&gt;&gt; scene = window.Scene()</span>
<span class="sd"> &gt;&gt;&gt; lines = [np.random.rand(10, 3), np.random.rand(20, 3)]</span>
<span class="sd"> &gt;&gt;&gt; colors = np.random.rand(2, 3)</span>
<span class="sd"> &gt;&gt;&gt; c = actor.streamtube(lines, colores=colors)</span>
<span class="sd"> &gt;&gt;&gt; c = actor.streamtube(lines, colors=colors)</span>
<span class="sd"> &gt;&gt;&gt; scene.add(c)</span>
<span class="sd"> &gt;&gt;&gt; #window.show(scene)</span>

Expand Down Expand Up @@ -2489,9 +2489,9 @@ <h1>Source code for fury.actor</h1><div class="highlight"><pre>
<span class="sd"> &gt;&gt;&gt; dirs = np.random.rand(5, 3)</span>
<span class="sd"> &gt;&gt;&gt; colors = np.random.rand(5, 4)</span>
<span class="sd"> &gt;&gt;&gt; actor = actor.disk(centers, dirs, colors,</span>
<span class="sd"> &gt;&gt;&gt; rinner=.1, router=.8, cresolution=30)</span>
<span class="sd"> ... rinner=.1, router=.8, cresolution=30)</span>
<span class="sd"> &gt;&gt;&gt; scene.add(actor)</span>
<span class="sd"> &gt;&gt;&gt; window.show(scene)</span>
<span class="sd"> &gt;&gt;&gt; # window.show(scene)</span>

<span class="sd"> &quot;&quot;&quot;</span>
<span class="k">if</span> <span class="n">faces</span> <span class="ow">is</span> <span class="kc">None</span><span class="p">:</span>
Expand Down Expand Up @@ -4292,19 +4292,19 @@ <h1>Source code for fury.actor</h1><div class="highlight"><pre>
<span class="sd"> &gt;&gt;&gt; centers = np.random.normal(size=(n, 3), scale=10)</span>
<span class="sd"> &gt;&gt;&gt; colors = np.random.rand(n, 4)</span>
<span class="sd"> &gt;&gt;&gt; nodes_actor = actor.markers(</span>
<span class="sd"> centers,</span>
<span class="sd"> marker=markers,</span>
<span class="sd"> edge_width=.1,</span>
<span class="sd"> edge_color=[255, 255, 0],</span>
<span class="sd"> colors=colors,</span>
<span class="sd"> scales=10,</span>
<span class="sd"> )</span>
<span class="sd"> ... centers,</span>
<span class="sd"> ... marker=markers,</span>
<span class="sd"> ... edge_width=.1,</span>
<span class="sd"> ... edge_color=[255, 255, 0],</span>
<span class="sd"> ... colors=colors,</span>
<span class="sd"> ... scales=10,</span>
<span class="sd"> ... )</span>
<span class="sd"> &gt;&gt;&gt; center = np.random.normal(size=(1, 3), scale=10)</span>
<span class="sd"> &gt;&gt;&gt; nodes_3d_actor = actor.markers(</span>
<span class="sd"> center,</span>
<span class="sd"> marker=&#39;3d&#39;,</span>
<span class="sd"> scales=5,</span>
<span class="sd"> )</span>
<span class="sd"> ... center,</span>
<span class="sd"> ... marker=&#39;3d&#39;,</span>
<span class="sd"> ... scales=5,</span>
<span class="sd"> ... )</span>
<span class="sd"> &gt;&gt;&gt; scene.add(nodes_actor, nodes_3d_actor)</span>
<span class="sd"> &gt;&gt;&gt; # window.show(scene, size=(600, 600))</span>

Expand Down
4 changes: 2 additions & 2 deletions v0.10.x/_modules/fury/actors/odf_slicer.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>fury.actors.odf_slicer &#8212; FURY 0.11.0.dev70+gee3b579e documentation</title>
<title>fury.actors.odf_slicer &#8212; FURY 0.11.0.dev73+g0fa1af5d documentation</title>



Expand Down Expand Up @@ -43,7 +43,7 @@
<link rel="preload" as="script" href="../../../_static/scripts/pydata-sphinx-theme.js?digest=8d27b9dea8ad943066ae" />
<script src="../../../_static/vendor/fontawesome/6.5.1/js/all.min.js?digest=8d27b9dea8ad943066ae"></script>

<script src="../../../_static/documentation_options.js?v=53c330aa"></script>
<script src="../../../_static/documentation_options.js?v=5fc59825"></script>
<script src="../../../_static/doctools.js?v=9a2dae69"></script>
<script src="../../../_static/sphinx_highlight.js?v=dc90522c"></script>
<script src="../../../_static/clipboard.min.js?v=a7894cd8"></script>
Expand Down
4 changes: 2 additions & 2 deletions v0.10.x/_modules/fury/actors/peak.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>fury.actors.peak &#8212; FURY 0.11.0.dev70+gee3b579e documentation</title>
<title>fury.actors.peak &#8212; FURY 0.11.0.dev73+g0fa1af5d documentation</title>



Expand Down Expand Up @@ -43,7 +43,7 @@
<link rel="preload" as="script" href="../../../_static/scripts/pydata-sphinx-theme.js?digest=8d27b9dea8ad943066ae" />
<script src="../../../_static/vendor/fontawesome/6.5.1/js/all.min.js?digest=8d27b9dea8ad943066ae"></script>

<script src="../../../_static/documentation_options.js?v=53c330aa"></script>
<script src="../../../_static/documentation_options.js?v=5fc59825"></script>
<script src="../../../_static/doctools.js?v=9a2dae69"></script>
<script src="../../../_static/sphinx_highlight.js?v=dc90522c"></script>
<script src="../../../_static/clipboard.min.js?v=a7894cd8"></script>
Expand Down
4 changes: 2 additions & 2 deletions v0.10.x/_modules/fury/actors/tensor.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>fury.actors.tensor &#8212; FURY 0.11.0.dev70+gee3b579e documentation</title>
<title>fury.actors.tensor &#8212; FURY 0.11.0.dev73+g0fa1af5d documentation</title>



Expand Down Expand Up @@ -43,7 +43,7 @@
<link rel="preload" as="script" href="../../../_static/scripts/pydata-sphinx-theme.js?digest=8d27b9dea8ad943066ae" />
<script src="../../../_static/vendor/fontawesome/6.5.1/js/all.min.js?digest=8d27b9dea8ad943066ae"></script>

<script src="../../../_static/documentation_options.js?v=53c330aa"></script>
<script src="../../../_static/documentation_options.js?v=5fc59825"></script>
<script src="../../../_static/doctools.js?v=9a2dae69"></script>
<script src="../../../_static/sphinx_highlight.js?v=dc90522c"></script>
<script src="../../../_static/clipboard.min.js?v=a7894cd8"></script>
Expand Down
Loading

0 comments on commit 4af90e5

Please sign in to comment.