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 (e, t) { | |
var n = e.document; | |
setTimeout(function () { | |
function a(e) { | |
if (e.data === "destroy_bookmarklet") { | |
var r = n.getElementById(t); | |
if (r) { | |
n.body.removeChild(r); | |
r = null | |
} |
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
const JSZip = require('jszip') | |
const { parseBuffer } = require('bplist-parser') | |
const { isObject, each, find } = require('lodash') | |
const parseArchivedValue = value => { | |
return parseBuffer(new Buffer(value, 'base64')) | |
} | |
const parseArchivedString = obj => { | |
const { $objects } = parseArchivedValue( |
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
func catmull_rom_spline( | |
_points: Array, resolution: int = 10, extrapolate_end_points = true | |
) -> PackedVector2Array: | |
var points = _points.duplicate() | |
if extrapolate_end_points: | |
points.insert(0, points[0] - (points[1] - points[0])) | |
points.append(points[-1] + (points[-1] - points[-2])) | |
var smooth_points := PackedVector2Array() | |
if points.size() < 4: |
OlderNewer