Advertisement
XArnonX

image-constants

Feb 16th, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. var ImageConstants = (function () {
  2.  
  3.   'use strict';
  4.  
  5.  
  6.   // public api
  7.   var _constants = {};
  8.  
  9.   // constants
  10.   _constants.SIZE = 100;
  11.   _constants.Anchor = getAnchor();
  12.  
  13.   return _constants;
  14.  
  15.   function getAnchor() {
  16.     return {
  17.       X: 0.5,
  18.       Y: 0.5
  19.     };
  20.   }
  21.  
  22. })();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement