Skip to content
This repository was archived by the owner on Jul 13, 2021. It is now read-only.

Commit d04b6f9

Browse files
authored
Merge pull request #193 from logankilpatrick/patch-1
Update layouting.jl
2 parents 84f10dd + 8732cb2 commit d04b6f9

File tree

1 file changed

+19
-3
lines changed

1 file changed

+19
-3
lines changed

src/layouting/layouting.jl

Lines changed: 19 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -176,15 +176,31 @@ ispixelcam(x) = false
176176
"""
177177
vbox(scenes...; parent = Scene(clear = false), kwargs...)
178178
179-
Lay the given Scenes out on the vertical axis. For example, two Scenes `vbox`ed
179+
Box the scenes together on the vertical axis. For example, two Scenes `vbox`ed
180180
will be placed side-by-side.
181+
-------------------- --------------------
182+
-- -- -- --
183+
-- Scene 1 -- -- Scene 2 --
184+
-- -- -- --
185+
-------------------- --------------------
181186
"""
182187
vbox(plots::Transformable...; kw_args...) = vbox([plots...]; kw_args...)
183188
"""
184189
hbox(scenes...; parent = Scene(clear = false), kwargs...)
185190
186-
Lay the given Scenes out on the horizonral axis. For example, two Scenes `vbox`ed
187-
will be placed side-by-side.
191+
Attach the given Scenes together on the horizontal axis. For example, two Scenes `hbox`ed
192+
will be placed one on top of the other.
193+
194+
--------------------
195+
-- --
196+
-- Scene 1 --
197+
-- --
198+
--------------------
199+
--------------------
200+
-- --
201+
-- Scene 2 --
202+
-- --
203+
--------------------
188204
"""
189205
hbox(plots::Transformable...; kw_args...) = hbox([plots...]; kw_args...)
190206

0 commit comments

Comments
 (0)