Skip to content

Commit

Permalink
DOC: address some warnings during doc generation
Browse files Browse the repository at this point in the history
  • Loading branch information
skoudoro committed Aug 21, 2024
1 parent 6c2337c commit ba6ef77
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 10 deletions.
1 change: 0 additions & 1 deletion docs/examples/viz_billboard_sdf_spheres.py
Original file line number Diff line number Diff line change
Expand Up @@ -289,4 +289,3 @@
# antialiased ray tracing of implicit surfaces." The Visual
# Computer 12.10 (1996): 527-545.
#
# .. include:: ../links_names.inc
1 change: 0 additions & 1 deletion docs/examples/viz_sdf_cylinder.py
Original file line number Diff line number Diff line change
Expand Up @@ -369,4 +369,3 @@
# antialiased ray tracing of implicit surfaces." The Visual
# Computer 12.10 (1996): 527-545.
#
# .. include:: ../links_names.inc
4 changes: 2 additions & 2 deletions fury/actor.py
Original file line number Diff line number Diff line change
Expand Up @@ -3482,8 +3482,8 @@ def texture_update(texture_actor, arr):
This is the new image to be rendered on the actor.
Dtype should be uint8.
Implementation
--------------
Notes
-----
Check docs/examples/viz_video_on_plane.py
"""
Expand Down
11 changes: 5 additions & 6 deletions fury/window.py
Original file line number Diff line number Diff line change
Expand Up @@ -1395,8 +1395,8 @@ def gl_reset_blend(gl_state):
----------
gl_state : vtkOpenGLState
See more
---------
References
----------
[1] https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glBlendEquation.xhtml
[2] https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glBlendFunc.xhtml
vtk specification:
Expand Down Expand Up @@ -1449,12 +1449,11 @@ def gl_disable_blend(gl_state):
----------
gl_state : vtkOpenGLState
See more
--------
References
----------
[1] https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glFrontFace.xhtml
""" # noqa

"""
gl_state.vtkglDisable(_GL["GL_CULL_FACE"])
gl_state.vtkglDisable(_GL["GL_BLEND"])

Expand Down

0 comments on commit ba6ef77

Please sign in to comment.