yade-users team mailing list archive
-
yade-users team
-
Mailing list archive
-
Message #01739
Re: Background color
> Where is it possible to get all of possible parameters to change?
r=qt.Renderer()
r.keys() # get just the keys
r.dict() # get both keys and values; you need r1709 for that
just like with any other yade object in python.
For Renderer, the same params can be set from tu GUI (the Display tab);
and you can also have a look at OpenGLRenderingEngine code.
For the view (per-view params), which is not yade object, you can do:
v=qt.View()
v.<tab> # will show completions
dir(v)
and also see scripts/gl-test.py
Vaclav
Follow ups
References