Advertisement
Guest User

Untitled

a guest
Jul 22nd, 2014
212
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. {
  2.  
  3.   "dim": null, // Our size.
  4.  
  5.   "src": {
  6.     "id" : id, // What we consider to be our main source
  7.     "dim": null, // Our main source's size.
  8.     "sub": null, // What we take from our main source.
  9.   },
  10.  
  11.   "parents": {
  12.     id: {
  13.  
  14.       "dim": null, // Parent's size.
  15.       "sub": null, // What we take from parent relative to parent.
  16.  
  17.       // This parent's main source.
  18.       "src": {
  19.     "id" : id,
  20.     "dim": null,
  21.     "sub": null,
  22.       }
  23.  
  24.     },
  25.     ...
  26.   }
  27.  
  28. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement