Skip to content

Commit 061bb34

Browse files
committed
suggested change
1 parent 7599a51 commit 061bb34

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/userguide/basics.visualisation.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ PointObject
119119
Scene Context
120120
=============
121121

122-
Depends on where the code is executed, the "scene" will detect the current visualisation context.
122+
Depending on where the code is executed, the "scene" will detect the current visualisation context.
123123
If the code is executed in the Rhino, the scene context will be automatically set as "Rhino".
124124

125125
>>> from compas.scene import Scene
@@ -128,13 +128,13 @@ If the code is executed in the Rhino, the scene context will be automatically se
128128
>>> scene.context
129129
Rhino
130130

131-
Depends on the context, the different implementations of the scene objects will be used.
131+
For every context, the appropriate scene object implementations will be used automatically.
132132

133133
>>> box = Box.from_width_height_depth(1, 1, 1)
134134
>>> scene.add(box)
135135
<compas_rhino.scene.BoxObject>
136136

137-
User can also mannually set the scene context by using the following code:
137+
Users can also set the scene context manually:
138138

139139
>>> scene = Scene(context="MyContextName")
140140
>>> scene.context

0 commit comments

Comments
 (0)