Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGaia Clary <gaia.clary@machinimatrix.org>2019-04-01 13:00:36 +0300
committerGaia Clary <gaia.clary@machinimatrix.org>2019-04-01 13:00:36 +0300
commit0d3cc9a06dfd3f77fa9bd20c5013ae9b050b4fae (patch)
treeac818b4ba189f46dee38c937a17c51b6822af56b /space_view3d_math_vis
parent3456a058ac4c3c366262b2c4a5da03c0bbb250f9 (diff)
new: MathVis: Added option to display points and lines in front
Diffstat (limited to 'space_view3d_math_vis')
-rw-r--r--space_view3d_math_vis/__init__.py7
-rw-r--r--space_view3d_math_vis/draw.py6
2 files changed, 13 insertions, 0 deletions
diff --git a/space_view3d_math_vis/__init__.py b/space_view3d_math_vis/__init__.py
index f64de364..94d871d3 100644
--- a/space_view3d_math_vis/__init__.py
+++ b/space_view3d_math_vis/__init__.py
@@ -88,6 +88,7 @@ class PanelConsoleVars(Panel):
col = layout.column()
col.prop(bpy.context.window_manager.MathVisProp, "name_hide")
col.prop(bpy.context.window_manager.MathVisProp, "bbox_hide")
+ col.prop(bpy.context.window_manager.MathVisProp, "in_front")
col.prop(bpy.context.window_manager.MathVisProp, "bbox_scale")
col.operator("mathvis.cleanup_console")
@@ -242,6 +243,12 @@ class MathVis(PropertyGroup):
"lines for the display of Matrix items"
)
+ in_front: BoolProperty(
+ name="Always In Front",
+ default=True,
+ description="Draw Points and lines alwasy in front",
+ update=call_console_hook
+ )
classes = (
PanelConsoleVars,
diff --git a/space_view3d_math_vis/draw.py b/space_view3d_math_vis/draw.py
index a9c38fbe..a31d284b 100644
--- a/space_view3d_math_vis/draw.py
+++ b/space_view3d_math_vis/draw.py
@@ -21,6 +21,7 @@
import bpy
import blf
import gpu
+import bgl
from gpu_extras.batch import batch_for_shader
from . import utils
@@ -132,6 +133,11 @@ def draw_callback_view():
scale = settings.bbox_scale
with_bounding_box = not settings.bbox_hide
+ if settings.in_front:
+ bgl.glDepthFunc(bgl.GL_ALWAYS)
+ else:
+ bgl.glDepthFunc(bgl.GL_LESS)
+
data_matrix, data_quat, data_euler, data_vector, data_vector_array = utils.console_math_data()
if data_vector: