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
path: root/docs
diff options
context:
space:
mode:
authorKostas Karmas <konskarm@gmail.com>2021-01-29 19:33:39 +0300
committerKostas Karmas <konskarm@gmail.com>2021-01-29 19:33:39 +0300
commit6b194a819382d2b3670465bcbb443c8e7c7c9597 (patch)
tree7bd6de2badb5fdf19d095d73bda548debbccbfc4 /docs
parent1db4cbe5f097b67679ef333ccd6b290cf6f815c2 (diff)
Fix image not showing up correctly
CURA-7502
Diffstat (limited to 'docs')
-rw-r--r--docs/scene/images/layer_data_scene_node.jpgbin83599 -> 36002 bytes
-rw-r--r--docs/scene/scene.md4
2 files changed, 2 insertions, 2 deletions
diff --git a/docs/scene/images/layer_data_scene_node.jpg b/docs/scene/images/layer_data_scene_node.jpg
index e153953213..751f228a0b 100644
--- a/docs/scene/images/layer_data_scene_node.jpg
+++ b/docs/scene/images/layer_data_scene_node.jpg
Binary files differ
diff --git a/docs/scene/scene.md b/docs/scene/scene.md
index 70361e3786..71214da8e3 100644
--- a/docs/scene/scene.md
+++ b/docs/scene/scene.md
@@ -36,7 +36,7 @@ As it is visible, aside from the BuildVolume, the Cameras, and the objects, the
Accessing SceneNodes in the Scene
----
-SceneNodes can be accessed using a BreadthFirstIterator or a DepthFirstIterator. Each iterator traverses the scene graph and returns a Python iterator, which yield all the SceneNodes and their children.
+SceneNodes can be accessed using a `BreadthFirstIterator` or a `DepthFirstIterator`. Each iterator traverses the scene graph and returns a Python iterator, which yields all the SceneNodes and their children.
``` python
for node in BreadthFirstIterator(scene.getRoot()):
@@ -73,6 +73,6 @@ Layer Data
Once the Slicing has completed and the CuraEngine has returned the slicing data, Cura creates a CuraSceneNode inside the BuildVolume which holds all the layer data. This CuraSceneNode can be identified via its LayerDataDecorator.
-<img src = "https://github.com/Ultimaker/Cura/blob/master/docs/scene/images/layer_data_scene_node.jpg" width = "250" alt="Layer Data Scene Node">
+![Layer Data Scene Node](images/layer_data_scene_node.jpg)
**Note:** This CuraSceneNode is created once Cura has completed processing the Layer data (after the user clicks on the Preview tab after slicing). The CuraSceneNode then is destroyed once any action that changes the Scene occurs (e.g. if the user moves/rotates/scales an object or changes a setting value). \ No newline at end of file