| 54 | } |
| 55 | |
| 56 | static dict getScreenWindow( Sample& iSamp ) |
| 57 | { |
| 58 | double top, bottom, left, right; |
| 59 | iSamp.getScreenWindow( top, bottom, left, right ); |
| 60 | |
| 61 | dict window; |
| 62 | window["top"] = top; |
| 63 | window["bottom"] = bottom; |
| 64 | window["left"] = left; |
| 65 | window["right"] = right; |
| 66 | |
| 67 | return window; |
| 68 | } |
| 69 | }; |
| 70 | |
| 71 | // CameraSample |
no outgoing calls