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:
authorJelle Spijker <j.spijker@ultimaker.com>2020-04-21 17:58:45 +0300
committerJelle Spijker <spijker.jelle@gmail.com>2020-04-21 17:58:45 +0300
commit6aedab78dc2e8c55fe6323ff3647203d8b994509 (patch)
tree536bc25c1adc134bf4ce675fb0336f73974f1dff /cura/Snapshot.py
parentfb4aec96a86c8a13109997c52528ba84ba103e25 (diff)
Converted comments in dir Cura/cura to rst style
Converted doxygen style comments to reStructuredText style in the files found in Cura/cura directory using the script dox_2_rst.py (provided in the Uranium repo). Comments were manually checked and changed if needed.
Diffstat (limited to 'cura/Snapshot.py')
-rw-r--r--cura/Snapshot.py12
1 files changed, 9 insertions, 3 deletions
diff --git a/cura/Snapshot.py b/cura/Snapshot.py
index 353b5ae17c..6f12aa88ba 100644
--- a/cura/Snapshot.py
+++ b/cura/Snapshot.py
@@ -30,11 +30,17 @@ class Snapshot:
return min_x, max_x, min_y, max_y
- ## Return a QImage of the scene
- # Uses PreviewPass that leaves out some elements
- # Aspect ratio assumes a square
@staticmethod
def snapshot(width = 300, height = 300):
+ """Return a QImage of the scene
+
+ Uses PreviewPass that leaves out some elements Aspect ratio assumes a square
+
+ :param width: width of the aspect ratio default 300
+ :param height: height of the aspect ratio default 300
+ :return: None when there is no model on the build plate otherwise it will return an image
+ """
+
scene = Application.getInstance().getController().getScene()
active_camera = scene.getActiveCamera()
render_width, render_height = active_camera.getWindowSize()