how does "[x,y] = WindowCenter(window)" work
9 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
when using [x,y] = WindowCenter(window) to determine the center of the window, what should "window" be?
4 commentaires
Réponse acceptée
Rik
le 1 Sep 2022
The documentation for that function is terrible. Let that be a lesson for when you write your own function. This help text is completely inadequate.
Even after reading the documentation for the Screen function, I can only tell you that window must be a window pointer or a screen number:
rect=Screen('Rect', windowPtrOrScreenNumber [, realFBSize=0]);
How you would get a window pointer is a mystery to me. Probably with this:
windowPtrs=Screen('Windows');
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Installation and Operational Settings dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!