question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Inconsistent behaviour of fullscreen and offscreen options for Plotter

See original GitHub issue

Hi 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:

  1. 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)
  1. if I specify the size when I call show, then the size parameter is ignored:
from vedo import Plotter

plt = Plotter(
            axes=4,
            
        )

plt.show(offscreen=True, size="full",)
  1. 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:closed
  • Created 3 years ago
  • Reactions:2
  • Comments:6 (6 by maintainers)

github_iconTop GitHub Comments

1reaction
FedeClaudicommented, Nov 23, 2020

everything seems to be working fine here!

1reaction
FedeClaudicommented, Nov 22, 2020

Hi Marco thanks for getting back to me.

Thanks for the clarification, that makes a lot of sense.

Read more comments on GitHub >

github_iconTop 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 >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found