This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
x | y | |
---|---|---|
111.2472 | 134.44173 | |
118.9517 | 142.12362000000002 | |
94.74716 | 109.75992 | |
88.61079 | 97.8963 | |
82.47441 | 86.0327 | |
68.92898 | 69.3962 | |
74.42898 | 63.25980000000001 | |
79.92898 | 57.12350000000001 | |
110.929 | 60.35079999999999 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
x | y | |
---|---|---|
56.87535 | 128.30394 | |
101.4467 | 137.21819 | |
113.3324 | 136.76102 | |
125.1039 | 132.53244 | |
128.1896 | 125.56102 | |
131.2754 | 118.58961 | |
127.0467 | 102.01819 | |
119.961 | 95.3896 | |
112.8754 | 88.761 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
x | y | |
---|---|---|
63.39118 | 117.88457 | |
71.09575 | 125.56646 | |
78.80032 | 133.24827 | |
88.48212 | 135.61189000000002 | |
98.16394 | 137.97550999999999 | |
115.7549 | 138.43 | |
121.4821 | 132.06637999999998 | |
127.2094 | 125.70276 | |
128.5276 | 109.15724 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
x | y | |
---|---|---|
20 | 25 | |
30 | 25 | |
20 | 5 | |
30 | 5 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
x | y | |
---|---|---|
20 | 20 | |
25 | 25 | |
30 | 20 | |
20 | 5 | |
30 | 5 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"total" : 0, | |
"lastUpdated" : "Thu, 07 Nov 2019 22:55:15 GMT" | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function roundUp(num, prec) { | |
prec = Math.pow(10, prec); | |
return Math.ceil(num * prec) / prec; | |
} | |
function roundDown(num, prec) { | |
prec = Math.pow(10, prec); | |
return Math.floor(num * prec) / prec; | |
} | |
// Built in Math function |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"editor.accessibilitySupport": "off", | |
"editor.mouseWheelZoom": true, | |
"workbench.iconTheme": "material-icon-theme", | |
"editor.detectIndentation": false, | |
"explorer.confirmDelete": false, | |
"editor.wordWrap": "on", | |
"editor.minimap.enabled": false, | |
"terminal.integrated.rendererType": "dom", | |
"workbench.colorTheme": "One Dark Pro Vivid", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Remove all whitespace | |
function delWS1(str) { | |
return str.replace(/\s/g,""); | |
} | |
// Remove trailing and leading whitepsace | |
function delWS2(str) { | |
return str.replace(/^[ ]+|[ ]+$/g,''); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function roundUp(num, prec) { | |
prec = Math.pow(10, prec); | |
return Math.ceil(num * prec) / prec; | |
} | |
function roundDown(num, prec) { | |
prec = Math.pow(10, prec); | |
return Math.floor(num * prec) / prec; | |
} | |
// Built in Math function |