Inconsistent behaviour of fullscreen and offscreen options for Plotter
See original GitHub issueHi Marco,
I’m trying to get a Plotter
to have size='full'
and render with offscreen=True
, but the behaviour seems to be a bit inconsistent.
Some minimal code examples to reproduce:
- if I specify the size when I create the plotter, then the
offscreen
parameter is ignored:
from vedo import Plotter
plt = Plotter(
axes=4,
size="full",
)
plt.show(offscreen=True)
- if I specify the size when I call
show
, then thesize
parameter is ignored:
from vedo import Plotter
plt = Plotter(
axes=4,
)
plt.show(offscreen=True, size="full",)
- if I specify both when I crate the plotter then the plotter window closes instantly as if I used
interactive=False
(perhaps this is the intended behaviour?)
from vedo import Plotter
plt = Plotter(
axes=4,
offscreen=True,
size="full"
)
plt.show()
Option 3 works for what I need (avoid rendering on screen during video creation), but I just thought I’d report this.
Issue Analytics
- State:
- Created 3 years ago
- Reactions:2
- Comments:6 (6 by maintainers)
Top Results From Across the Web
Foxit Reader 4.2 User Manual
Foxit Reader 4.3 supports the viewing of PDF documents that are embedded inside HTML, giving users many advantages and flexibility when viewing. PDF...
Read more >Issue List
ID Product Comp Assignee△ Status△ Changed
22319 gsl code issues UNCO 2013‑02‑07
61665 Writer ui issues UNCO 2014‑05‑07
72552 Draw ui issues UNCO 2013‑09‑12
Read more >Human Factors of Integrating Speech and Manual Input Devices
Both types of behaviour - off-screen gazing and between-device hand transitions - are regarded here as non-optimal behaviours.
Read more >BricsCAD (Mac) Release Notes
BIMATTACHCOMPOSITIONThe new Detach option of the command now allows the user ... SR 120355; Point CloudsThe display behavior of the Point Cloud Bounding...
Read more ><52>
The most significant changes occur within the following menu choices: ... This long program format is incompatible with the UTF object format; therefore....
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
everything seems to be working fine here!
Hi Marco thanks for getting back to me.
Thanks for the clarification, that makes a lot of sense.