This repository was archived by the owner on Jul 13, 2021. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +19
-3
lines changed Expand file tree Collapse file tree 1 file changed +19
-3
lines changed Original file line number Diff line number Diff 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
180180will be placed side-by-side.
181+ -------------------- --------------------
182+ -- -- -- --
183+ -- Scene 1 -- -- Scene 2 --
184+ -- -- -- --
185+ -------------------- --------------------
181186"""
182187vbox (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"""
189205hbox (plots:: Transformable... ; kw_args... ) = hbox ([plots... ]; kw_args... )
190206
You can’t perform that action at this time.
0 commit comments