12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- var Camera = require('./Camera');
- var CameraPopoverOptions = function (x, y, width, height, arrowDir) {
-
- this.x = x || 0;
- this.y = y || 32;
- this.width = width || 320;
- this.height = height || 480;
- this.arrowDir = arrowDir || Camera.PopoverArrowDirection.ARROW_ANY;
- };
- module.exports = CameraPopoverOptions;
|