Guest User

Untitled

a guest
Apr 26th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.61 KB | None | 0 0
  1. {
  2. "vertexes" : [
  3. // logo
  4. { "x" : 0, "y" : 0, "trait" : "name" }, // Index a - top left of E.
  5. { "x" : 0, "y" : 30, "trait" : "name" }, // Index b - bottom left of E.
  6. { "x" : 22, "y" : 0, "trait" : "name" }, // Index c - top right of E.
  7. { "x" : 22, "y" : 30, "trait" : "name" }, // Index d - bottom right of E.
  8. { "x" : 0, "y" : 15, "trait" : "name" }, // Index e - mid left of E.
  9. { "x" : 15, "y" : 15, "trait" : "name" }, // Index f - mid right E.
  10. { "x" : 32, "y" : 0, "trait" : "name" }, // Index g - top left B.
  11. { "x" : 32, "y" : 30, "trait" : "name" }, // Index h - bottom left B.
  12. { "x" : 32, "y" : 15, "trait" : "name" }, // Index i - mid left B.
  13. { "x" : 54, "y" : 7, "trait" : "name" }, // Index j - top-mid right B.
  14. { "x" : 54, "y" : 22, "trait" : "name" } // Index k - bottom-mid right B.
  15.  
  16. ],
  17.  
  18. "segments" : [
  19. // logo
  20. { "v0" : a, "v1" : b, "trait" : "name" }, // left stroke of E.
  21. { "v0" : a, "v1" : c, "trait" : "name" }, // top stroke of E.
  22. { "v0" : e, "v1" : f, "trait" : "name" }, // mid stroke of E.
  23. { "v0" : b, "v1" : d, "trait" : "name" }, // bottom stroke of E.
  24. { "v0" : g, "v1" : h, "trait" : "name" }, // left stroke of B.
  25. { "v0" : g, "v1" : j, "trait" : "name2" }, // top curve1 of B.
  26. { "v0" : j, "v1" : i, "trait" : "name2" }, // top curve2 of B.
  27. { "v0" : i, "v1" : k, "trait" : "name2" }, // bottom curve1 of B.
  28. { "v0" : k, "v1" : h, "trait" : "name2" } // bottom curve2 of B.
  29. ],
  30.  
  31. "traits" : {
  32. "name" : { "vis" : true, "bCoef" : 1, "cMask" : ["none"] },
  33. "name2" : { "vis" : true, "bCoef" : 1, "cMask" : ["none"], "curve" : 45 }
  34. }
  35. }
Add Comment
Please, Sign In to add comment