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

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/XRayView/XRayPass.py')
-rw-r--r--plugins/XRayView/XRayPass.py39
1 files changed, 0 insertions, 39 deletions
diff --git a/plugins/XRayView/XRayPass.py b/plugins/XRayView/XRayPass.py
deleted file mode 100644
index a75d393b35..0000000000
--- a/plugins/XRayView/XRayPass.py
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright (c) 2018 Ultimaker B.V.
-# Cura is released under the terms of the LGPLv3 or higher.
-
-import os.path
-
-from UM.Application import Application
-from UM.PluginRegistry import PluginRegistry
-
-from UM.View.RenderPass import RenderPass
-from UM.View.RenderBatch import RenderBatch
-from UM.View.GL.OpenGL import OpenGL
-
-from cura.Scene.CuraSceneNode import CuraSceneNode
-from UM.Scene.Iterator.DepthFirstIterator import DepthFirstIterator
-
-class XRayPass(RenderPass):
- def __init__(self, width, height):
- super().__init__("xray", width, height)
-
- self._shader = None
- self._gl = OpenGL.getInstance().getBindingsObject()
- self._scene = Application.getInstance().getController().getScene()
-
- def render(self):
- if not self._shader:
- self._shader = OpenGL.getInstance().createShaderProgram(os.path.join(PluginRegistry.getInstance().getPluginPath("XRayView"), "xray.shader"))
-
- batch = RenderBatch(self._shader, type = RenderBatch.RenderType.NoType, backface_cull = False, blend_mode = RenderBatch.BlendMode.Additive)
- for node in DepthFirstIterator(self._scene.getRoot()):
- if isinstance(node, CuraSceneNode) and node.getMeshData() and node.isVisible():
- batch.addItem(node.getWorldTransformation(), node.getMeshData())
-
- self.bind()
-
- self._gl.glDisable(self._gl.GL_DEPTH_TEST)
- batch.render(self._scene.getActiveCamera())
- self._gl.glEnable(self._gl.GL_DEPTH_TEST)
-
- self.release()