2017-10-13 16:13:46 +00:00
|
|
|
/**
|
2017-11-07 14:28:08 +00:00
|
|
|
* The aspect ratio constant which indicates that the width (of whatever the
|
|
|
|
* aspect ratio constant is used for) is smaller than the height.
|
2017-10-13 16:13:46 +00:00
|
|
|
*
|
|
|
|
* @type {Symbol}
|
|
|
|
*/
|
|
|
|
export const ASPECT_RATIO_NARROW = Symbol('ASPECT_RATIO_NARROW');
|
|
|
|
|
|
|
|
/**
|
2017-11-07 14:28:08 +00:00
|
|
|
* The aspect ratio constant which indicates that the width (of whatever the
|
|
|
|
* aspect ratio constant is used for) is larger than the height.
|
2017-10-13 16:13:46 +00:00
|
|
|
*
|
|
|
|
* @type {Symbol}
|
|
|
|
*/
|
|
|
|
export const ASPECT_RATIO_WIDE = Symbol('ASPECT_RATIO_WIDE');
|