├── .github ├── FUNDING.yml └── workflows │ ├── create-release.yml │ ├── docc-docs.yml │ └── swift.yml ├── .gitignore ├── Benchmark ├── .swiftpm │ └── xcode │ │ ├── package.xcworkspace │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── xcschemes │ │ ├── MotionBenchmark-Package.xcscheme │ │ ├── MotionBenchmark.xcscheme │ │ └── MotionBenchmarkRunner.xcscheme ├── Package.resolved ├── Package.swift └── Sources │ ├── MotionBenchmark │ └── MotionBenchmark.swift │ └── MotionBenchmarkRunner │ └── main.swift ├── Example └── MotionExample-iOS │ ├── MotionExample-iOS.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── swiftpm │ │ │ └── Package.resolved │ └── xcshareddata │ │ └── xcschemes │ │ └── MotionExample-iOS.xcscheme │ └── MotionExample-iOS │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── BouncyViewController.swift │ ├── CustomCustomScrollView.swift │ ├── DraggableViewController.swift │ ├── Info.plist │ ├── SceneDelegate.swift │ ├── ScrollViewContents.txt │ ├── ScrollViewController.swift │ ├── SwiftUIDemoView.swift │ └── ViewController.swift ├── LICENSE ├── Package.resolved ├── Package.swift ├── README.md ├── Resources ├── MotionLogo-Dark-Cropped.gif ├── MotionLogo-Dark.gif ├── MotionLogo-Dark.mp4 ├── MotionLogo-Light-Cropped.gif ├── MotionLogo-Light.gif ├── MotionLogo-Light.mp4 ├── MotionMovieMaker │ ├── MotionMovieMaker.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ └── swiftpm │ │ │ │ └── Package.resolved │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── MotionMovieMaker.xcscheme │ └── MotionMovieMaker │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ │ ├── BouncyView.swift │ │ ├── Info.plist │ │ ├── MotionMovieMaker-Bridging-Header.h │ │ ├── SceneDelegate.swift │ │ └── ViewController.swift ├── deprecated │ ├── Motion-Logo-Rendered-Optimized~olde.gif │ ├── Motion-Logo-Rendered.gif │ ├── Motion-Logo-Rendered.m4v │ ├── Motion-Logo-Rendered~dark.gif │ ├── Motion-Logo-Rendered~olde.gif │ ├── MotionLogo-Dark-Cropped.gif │ ├── MotionLogo-Dark.gif │ ├── MotionLogo-Dark.motn │ ├── MotionLogo-Light-Cropped.gif │ ├── MotionLogo-Light.gif │ ├── MotionLogo-Light.motn │ ├── MotionLogo │ │ └── MotionLogo.motn │ └── render_files.sh └── render_files.sh ├── Sources ├── Graphing │ ├── CurveGrapher.swift │ ├── EasingFunctionGraph.swift │ └── ValueAnimationGraph.swift └── Motion │ ├── Animations │ ├── AnimationGroup.swift │ ├── BasicAnimation.swift │ ├── DecayAnimation.swift │ ├── Functions │ │ ├── DecayFunction.swift │ │ ├── EasingFunctions.swift │ │ └── SpringFunction.swift │ ├── SpringAnimation.swift │ └── ValueAnimation.swift │ ├── Documentation.docc │ ├── Documentation.md │ └── Resources │ │ ├── Motion-Logo-Rendered.gif │ │ └── Motion-Logo-Rendered~dark.gif │ ├── Protocols │ ├── AnimationEnvironment.swift │ ├── EquatableEnough.swift │ └── SIMDRepresentable.swift │ └── Utilities │ ├── AnimationDriver.swift │ ├── AnimationEnvironmentProxy.swift │ ├── Animator.swift │ ├── CAKeyframeAnimationEmittable.swift │ ├── CoreAnimationHelpers.swift │ ├── NSScreen+AnimationEnvironment.swift │ ├── RubberBanding.swift │ └── Synchronized.swift ├── Tests ├── LinuxMain.swift └── MotionTests │ ├── BasicAnimationTests.swift │ ├── DecayAnimationTests.swift │ ├── MotionTests.swift │ └── SpringAnimationTests.swift └── docs ├── css ├── documentation-topic.a7be2880.css ├── documentation-topic~topic~tutorials-overview.5d19221e.css ├── index.dcc9e6fb.css ├── topic.fdc1ac71.css └── tutorials-overview.36413021.css ├── data └── documentation │ ├── motion.json │ └── motion │ ├── animation.json │ ├── animation │ ├── completion.json │ ├── enabled.json │ ├── enableddidchange.json │ ├── hasresolved().json │ ├── init().json │ ├── start().json │ ├── stop(resolveimmediately:postvaluechanged:).json │ └── tick(frame:).json │ ├── animationframe.json │ ├── animationframe │ ├── !=(_:_:).json │ ├── duration.json │ ├── equatable-implementations.json │ ├── init(_:).json │ ├── init(timestamp:targettimestamp:).json │ ├── targettimestamp.json │ └── timestamp.json │ ├── animationgroup.json │ ├── animationgroup │ ├── hasresolved().json │ ├── start().json │ ├── stop(resolveimmediately:postvaluechanged:).json │ └── tick(frame:).json │ ├── basicanimation.json │ ├── basicanimation │ ├── cakeyframeanimationemittable-implementations.json │ ├── duration.json │ ├── easingfunction.json │ ├── fromvalue.json │ ├── hasresolved().json │ ├── init(easingfunction:).json │ ├── keyframeanimation(forframerate:).json │ ├── populatekeyframeanimationdata(dt:values:keytimes:).json │ ├── reset(postvaluechanged:).json │ ├── start().json │ ├── stop(resolveimmediately:postvaluechanged:).json │ └── tick(frame:).json │ ├── bezier.json │ ├── bezier │ ├── !=(_:_:).json │ ├── equatable-implementations.json │ ├── evaluatecurvex(t:).json │ ├── evaluatecurvey(t:).json │ ├── init(x1:y1:x2:y2:).json │ ├── solve(x:epsilon:).json │ ├── solve(y:epsilon:).json │ ├── solvefort(x:epsilon:).json │ ├── solvefort(y:epsilon:).json │ ├── x1.json │ ├── x2.json │ ├── y1.json │ └── y2.json │ ├── cadisableactions(_:).json │ ├── cakeyframeanimationemittable.json │ ├── cakeyframeanimationemittable │ ├── keyframeanimation(forframerate:)-9i7fl.json │ ├── keyframeanimation(forframerate:)-9l4to.json │ └── populatekeyframeanimationdata(dt:values:keytimes:).json │ ├── cakeyframeanimationvalueconvertible.json │ ├── cakeyframeanimationvalueconvertible │ └── tokeyframevalue().json │ ├── decayanimation.json │ ├── decayanimation │ ├── cakeyframeanimationemittable-implementations.json │ ├── decayconstant.json │ ├── hasresolved().json │ ├── init(initialvalue:decayconstant:).json │ ├── keyframeanimation(forframerate:).json │ ├── populatekeyframeanimationdata(dt:values:keytimes:).json │ ├── stop(resolveimmediately:postvaluechanged:).json │ └── tick(frame:).json │ ├── decayfunction.json │ ├── decayfunction │ ├── decayconstant.json │ ├── init(decayconstant:).json │ ├── one_ln_decayconstant_1000.json │ ├── solve(dt:x0:velocity:)-816gf.json │ ├── solve(dt:x0:velocity:)-8qnqq.json │ └── solvesimd(dt:x0:velocity:).json │ ├── easingfunction.json │ ├── easingfunction │ ├── !=(_:_:).json │ ├── bezier.json │ ├── easein.json │ ├── easeinout.json │ ├── easeout.json │ ├── equatable-implementations.json │ ├── hash(into:).json │ ├── init(bezier:).json │ ├── linear.json │ ├── solveinterpolatedvalue(_:fraction:)-2ielp.json │ ├── solveinterpolatedvalue(_:fraction:)-5aer1.json │ └── solveinterpolatedvaluesimd(_:fraction:).json │ ├── equatableenough.json │ ├── equatableenough │ ├── approximatelyequal(to:epsilon:)-131ix.json │ ├── approximatelyequal(to:epsilon:)-4feys.json │ ├── epsilon-2wsxb.json │ ├── epsilon-7tu03.json │ ├── epsilon-8u628.json │ └── epsilontype.json │ ├── floatingpointinitializable.json │ ├── floatingpointinitializable │ ├── init(_:)-8h6ky.json │ └── init(_:)-pp7q.json │ ├── mabs(_:).json │ ├── rubberband(_:coefficient:boundssize:contentsize:).json │ ├── simdrepresentable.json │ ├── simdrepresentable │ ├── init(_:)-23al6.json │ ├── init(_:)-570oy.json │ ├── simdrepresentation()-47m9q.json │ ├── simdrepresentation()-97uc3.json │ ├── simdtype.json │ └── zero.json │ ├── springanimation.json │ ├── springanimation │ ├── cakeyframeanimationemittable-implementations.json │ ├── clampingrange.json │ ├── configure(response:dampingratio:).json │ ├── configure(stiffness:damping:).json │ ├── damping.json │ ├── dampingratio.json │ ├── hasresolved().json │ ├── init(initialvalue:).json │ ├── init(initialvalue:response:dampingratio:).json │ ├── init(initialvalue:stiffness:damping:).json │ ├── keyframeanimation(forframerate:).json │ ├── populatekeyframeanimationdata(dt:values:keytimes:).json │ ├── resolvesuponreachingtovalue.json │ ├── response.json │ ├── stiffness.json │ ├── stop(resolveimmediately:postvaluechanged:).json │ ├── tick(frame:).json │ └── velocity.json │ ├── springfunction.json │ ├── springfunction │ ├── configure(response:dampingratio:).json │ ├── configure(stiffness:damping:).json │ ├── damping.json │ ├── dampingratio.json │ ├── init(response:dampingratio:).json │ ├── init(stiffness:damping:).json │ ├── response.json │ ├── solve(dt:x0:velocity:)-6ic5c.json │ ├── solve(dt:x0:velocity:)-rt6m.json │ ├── solvesimd(dt:x0:velocity:).json │ ├── stiffness.json │ ├── w0.json │ └── wd.json │ ├── supportedscalar.json │ ├── supportedscalar │ ├── cos(_:).json │ ├── exp(_:).json │ ├── pow(_:_:).json │ └── sin(_:).json │ ├── supportedsimd.json │ ├── uiscrollviewdecayconstant.json │ ├── uiscrollviewrubberbandingconstant.json │ ├── valueanimation.json │ └── valueanimation │ ├── !=(_:_:).json │ ├── ==(_:_:).json │ ├── equatable-implementations.json │ ├── hash(into:).json │ ├── hashable-implementations.json │ ├── onvaluechanged(disableactions:_:).json │ ├── resolvingepsilon.json │ ├── stop(resolveimmediately:postvaluechanged:).json │ ├── supportsvelocity.json │ ├── tovalue.json │ ├── updatevalue(to:postvaluechanged:).json │ ├── value.json │ ├── valuechangedcallback.json │ └── velocity.json ├── developer-og-twitter.jpg ├── developer-og.jpg ├── documentation └── motion │ ├── animation │ ├── completion │ │ └── index.html │ ├── enabled │ │ └── index.html │ ├── enableddidchange │ │ └── index.html │ ├── hasresolved() │ │ └── index.html │ ├── index.html │ ├── init() │ │ └── index.html │ ├── start() │ │ └── index.html │ ├── stop(resolveimmediately:postvaluechanged:) │ │ └── index.html │ └── tick(frame:) │ │ └── index.html │ ├── animationframe │ ├── !=(_:_:) │ │ └── index.html │ ├── duration │ │ └── index.html │ ├── equatable-implementations │ │ └── index.html │ ├── index.html │ ├── init(_:) │ │ └── index.html │ ├── init(timestamp:targettimestamp:) │ │ └── index.html │ ├── targettimestamp │ │ └── index.html │ └── timestamp │ │ └── index.html │ ├── animationgroup │ ├── hasresolved() │ │ └── index.html │ ├── index.html │ ├── start() │ │ └── index.html │ ├── stop(resolveimmediately:postvaluechanged:) │ │ └── index.html │ └── tick(frame:) │ │ └── index.html │ ├── basicanimation │ ├── cakeyframeanimationemittable-implementations │ │ └── index.html │ ├── duration │ │ └── index.html │ ├── easingfunction │ │ └── index.html │ ├── fromvalue │ │ └── index.html │ ├── hasresolved() │ │ └── index.html │ ├── index.html │ ├── init(easingfunction:) │ │ └── index.html │ ├── keyframeanimation(forframerate:) │ │ └── index.html │ ├── populatekeyframeanimationdata(dt:values:keytimes:) │ │ └── index.html │ ├── reset(postvaluechanged:) │ │ └── index.html │ ├── start() │ │ └── index.html │ ├── stop(resolveimmediately:postvaluechanged:) │ │ └── index.html │ └── tick(frame:) │ │ └── index.html │ ├── bezier │ ├── !=(_:_:) │ │ └── index.html │ ├── equatable-implementations │ │ └── index.html │ ├── evaluatecurvex(t:) │ │ └── index.html │ ├── evaluatecurvey(t:) │ │ └── index.html │ ├── index.html │ ├── init(x1:y1:x2:y2:) │ │ └── index.html │ ├── solve(x:epsilon:) │ │ └── index.html │ ├── solve(y:epsilon:) │ │ └── index.html │ ├── solvefort(x:epsilon:) │ │ └── index.html │ ├── solvefort(y:epsilon:) │ │ └── index.html │ ├── x1 │ │ └── index.html │ ├── x2 │ │ └── index.html │ ├── y1 │ │ └── index.html │ └── y2 │ │ └── index.html │ ├── cadisableactions(_:) │ └── index.html │ ├── cakeyframeanimationemittable │ ├── index.html │ ├── keyframeanimation(forframerate:)-9i7fl │ │ └── index.html │ ├── keyframeanimation(forframerate:)-9l4to │ │ └── index.html │ └── populatekeyframeanimationdata(dt:values:keytimes:) │ │ └── index.html │ ├── cakeyframeanimationvalueconvertible │ ├── index.html │ └── tokeyframevalue() │ │ └── index.html │ ├── decayanimation │ ├── cakeyframeanimationemittable-implementations │ │ └── index.html │ ├── decayconstant │ │ └── index.html │ ├── hasresolved() │ │ └── index.html │ ├── index.html │ ├── init(initialvalue:decayconstant:) │ │ └── index.html │ ├── keyframeanimation(forframerate:) │ │ └── index.html │ ├── populatekeyframeanimationdata(dt:values:keytimes:) │ │ └── index.html │ ├── stop(resolveimmediately:postvaluechanged:) │ │ └── index.html │ └── tick(frame:) │ │ └── index.html │ ├── decayfunction │ ├── decayconstant │ │ └── index.html │ ├── index.html │ ├── init(decayconstant:) │ │ └── index.html │ ├── one_ln_decayconstant_1000 │ │ └── index.html │ ├── solve(dt:x0:velocity:)-816gf │ │ └── index.html │ ├── solve(dt:x0:velocity:)-8qnqq │ │ └── index.html │ └── solvesimd(dt:x0:velocity:) │ │ └── index.html │ ├── easingfunction │ ├── !=(_:_:) │ │ └── index.html │ ├── bezier │ │ └── index.html │ ├── easein │ │ └── index.html │ ├── easeinout │ │ └── index.html │ ├── easeout │ │ └── index.html │ ├── equatable-implementations │ │ └── index.html │ ├── hash(into:) │ │ └── index.html │ ├── index.html │ ├── init(bezier:) │ │ └── index.html │ ├── linear │ │ └── index.html │ ├── solveinterpolatedvalue(_:fraction:)-2ielp │ │ └── index.html │ ├── solveinterpolatedvalue(_:fraction:)-5aer1 │ │ └── index.html │ └── solveinterpolatedvaluesimd(_:fraction:) │ │ └── index.html │ ├── equatableenough │ ├── approximatelyequal(to:epsilon:)-131ix │ │ └── index.html │ ├── approximatelyequal(to:epsilon:)-4feys │ │ └── index.html │ ├── epsilon-2wsxb │ │ └── index.html │ ├── epsilon-7tu03 │ │ └── index.html │ ├── epsilon-8u628 │ │ └── index.html │ ├── epsilontype │ │ └── index.html │ └── index.html │ ├── floatingpointinitializable │ ├── index.html │ ├── init(_:)-8h6ky │ │ └── index.html │ └── init(_:)-pp7q │ │ └── index.html │ ├── index.html │ ├── mabs(_:) │ └── index.html │ ├── rubberband(_:coefficient:boundssize:contentsize:) │ └── index.html │ ├── simdrepresentable │ ├── index.html │ ├── init(_:)-23al6 │ │ └── index.html │ ├── init(_:)-570oy │ │ └── index.html │ ├── simdrepresentation()-47m9q │ │ └── index.html │ ├── simdrepresentation()-97uc3 │ │ └── index.html │ ├── simdtype │ │ └── index.html │ └── zero │ │ └── index.html │ ├── springanimation │ ├── cakeyframeanimationemittable-implementations │ │ └── index.html │ ├── clampingrange │ │ └── index.html │ ├── configure(response:dampingratio:) │ │ └── index.html │ ├── configure(stiffness:damping:) │ │ └── index.html │ ├── damping │ │ └── index.html │ ├── dampingratio │ │ └── index.html │ ├── hasresolved() │ │ └── index.html │ ├── index.html │ ├── init(initialvalue:) │ │ └── index.html │ ├── init(initialvalue:response:dampingratio:) │ │ └── index.html │ ├── init(initialvalue:stiffness:damping:) │ │ └── index.html │ ├── keyframeanimation(forframerate:) │ │ └── index.html │ ├── populatekeyframeanimationdata(dt:values:keytimes:) │ │ └── index.html │ ├── resolvesuponreachingtovalue │ │ └── index.html │ ├── response │ │ └── index.html │ ├── stiffness │ │ └── index.html │ ├── stop(resolveimmediately:postvaluechanged:) │ │ └── index.html │ ├── tick(frame:) │ │ └── index.html │ └── velocity │ │ └── index.html │ ├── springfunction │ ├── configure(response:dampingratio:) │ │ └── index.html │ ├── configure(stiffness:damping:) │ │ └── index.html │ ├── damping │ │ └── index.html │ ├── dampingratio │ │ └── index.html │ ├── index.html │ ├── init(response:dampingratio:) │ │ └── index.html │ ├── init(stiffness:damping:) │ │ └── index.html │ ├── response │ │ └── index.html │ ├── solve(dt:x0:velocity:)-6ic5c │ │ └── index.html │ ├── solve(dt:x0:velocity:)-rt6m │ │ └── index.html │ ├── solvesimd(dt:x0:velocity:) │ │ └── index.html │ ├── stiffness │ │ └── index.html │ ├── w0 │ │ └── index.html │ └── wd │ │ └── index.html │ ├── supportedscalar │ ├── cos(_:) │ │ └── index.html │ ├── exp(_:) │ │ └── index.html │ ├── index.html │ ├── pow(_:_:) │ │ └── index.html │ └── sin(_:) │ │ └── index.html │ ├── supportedsimd │ └── index.html │ ├── uiscrollviewdecayconstant │ └── index.html │ ├── uiscrollviewrubberbandingconstant │ └── index.html │ └── valueanimation │ ├── !=(_:_:) │ └── index.html │ ├── ==(_:_:) │ └── index.html │ ├── equatable-implementations │ └── index.html │ ├── hash(into:) │ └── index.html │ ├── hashable-implementations │ └── index.html │ ├── index.html │ ├── onvaluechanged(disableactions:_:) │ └── index.html │ ├── resolvingepsilon │ └── index.html │ ├── stop(resolveimmediately:postvaluechanged:) │ └── index.html │ ├── supportsvelocity │ └── index.html │ ├── tovalue │ └── index.html │ ├── updatevalue(to:postvaluechanged:) │ └── index.html │ ├── value │ └── index.html │ ├── valuechangedcallback │ └── index.html │ └── velocity │ └── index.html ├── favicon.ico ├── favicon.svg ├── img ├── added-icon.d6f7e47d.svg ├── deprecated-icon.015b4f17.svg ├── modified-icon.f496e73d.svg └── no-image@2x.df2a0a50.png ├── index.html ├── index └── index.json ├── js ├── chunk-2d0d3105.cd72cc8e.js ├── chunk-vendors.00bf82af.js ├── documentation-topic.3bc2eb6f.js ├── documentation-topic~topic~tutorials-overview.bd94ab17.js ├── highlight-js-bash.1b52852f.js ├── highlight-js-c.d1db3f17.js ├── highlight-js-cpp.eaddddbe.js ├── highlight-js-css.75eab1fe.js ├── highlight-js-custom-markdown.7cffc4b3.js ├── highlight-js-custom-swift.a62dfec9.js ├── highlight-js-diff.62d66733.js ├── highlight-js-http.163e45b6.js ├── highlight-js-java.8326d9d8.js ├── highlight-js-javascript.acb8a8eb.js ├── highlight-js-json.471128d2.js ├── highlight-js-llvm.6100b125.js ├── highlight-js-markdown.90077643.js ├── highlight-js-objectivec.bcdf5156.js ├── highlight-js-perl.757d7b6f.js ├── highlight-js-php.cc8d6c27.js ├── highlight-js-python.c214ed92.js ├── highlight-js-ruby.f889d392.js ├── highlight-js-scss.62ee18da.js ├── highlight-js-shell.dd7f411f.js ├── highlight-js-swift.84f3e88c.js ├── highlight-js-xml.9c3688c7.js ├── index.c37d1972.js ├── topic.897e6b8e.js └── tutorials-overview.abddae14.js ├── metadata.json └── theme-settings.json /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: b3ll 4 | -------------------------------------------------------------------------------- /.github/workflows/create-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/.github/workflows/create-release.yml -------------------------------------------------------------------------------- /.github/workflows/docc-docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/.github/workflows/docc-docs.yml -------------------------------------------------------------------------------- /.github/workflows/swift.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/.github/workflows/swift.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/.gitignore -------------------------------------------------------------------------------- /Benchmark/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/Benchmark/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Benchmark/.swiftpm/xcode/xcshareddata/xcschemes/MotionBenchmark-Package.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/Benchmark/.swiftpm/xcode/xcshareddata/xcschemes/MotionBenchmark-Package.xcscheme -------------------------------------------------------------------------------- /Benchmark/.swiftpm/xcode/xcshareddata/xcschemes/MotionBenchmark.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/Benchmark/.swiftpm/xcode/xcshareddata/xcschemes/MotionBenchmark.xcscheme -------------------------------------------------------------------------------- /Benchmark/.swiftpm/xcode/xcshareddata/xcschemes/MotionBenchmarkRunner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/Benchmark/.swiftpm/xcode/xcshareddata/xcschemes/MotionBenchmarkRunner.xcscheme -------------------------------------------------------------------------------- /Benchmark/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/Benchmark/Package.resolved -------------------------------------------------------------------------------- /Benchmark/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/Benchmark/Package.swift -------------------------------------------------------------------------------- /Benchmark/Sources/MotionBenchmark/MotionBenchmark.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/Benchmark/Sources/MotionBenchmark/MotionBenchmark.swift -------------------------------------------------------------------------------- /Benchmark/Sources/MotionBenchmarkRunner/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/Benchmark/Sources/MotionBenchmarkRunner/main.swift -------------------------------------------------------------------------------- /Example/MotionExample-iOS/MotionExample-iOS.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/Example/MotionExample-iOS/MotionExample-iOS.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/MotionExample-iOS/MotionExample-iOS.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/Example/MotionExample-iOS/MotionExample-iOS.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/MotionExample-iOS/MotionExample-iOS.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/Example/MotionExample-iOS/MotionExample-iOS.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Example/MotionExample-iOS/MotionExample-iOS.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/Example/MotionExample-iOS/MotionExample-iOS.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved -------------------------------------------------------------------------------- /Example/MotionExample-iOS/MotionExample-iOS.xcodeproj/xcshareddata/xcschemes/MotionExample-iOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/Example/MotionExample-iOS/MotionExample-iOS.xcodeproj/xcshareddata/xcschemes/MotionExample-iOS.xcscheme -------------------------------------------------------------------------------- /Example/MotionExample-iOS/MotionExample-iOS/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/Example/MotionExample-iOS/MotionExample-iOS/AppDelegate.swift -------------------------------------------------------------------------------- /Example/MotionExample-iOS/MotionExample-iOS/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/Example/MotionExample-iOS/MotionExample-iOS/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /Example/MotionExample-iOS/MotionExample-iOS/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/Example/MotionExample-iOS/MotionExample-iOS/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/MotionExample-iOS/MotionExample-iOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/Example/MotionExample-iOS/MotionExample-iOS/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Example/MotionExample-iOS/MotionExample-iOS/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/Example/MotionExample-iOS/MotionExample-iOS/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Example/MotionExample-iOS/MotionExample-iOS/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/Example/MotionExample-iOS/MotionExample-iOS/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/MotionExample-iOS/MotionExample-iOS/BouncyViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/Example/MotionExample-iOS/MotionExample-iOS/BouncyViewController.swift -------------------------------------------------------------------------------- /Example/MotionExample-iOS/MotionExample-iOS/CustomCustomScrollView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/Example/MotionExample-iOS/MotionExample-iOS/CustomCustomScrollView.swift -------------------------------------------------------------------------------- /Example/MotionExample-iOS/MotionExample-iOS/DraggableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/Example/MotionExample-iOS/MotionExample-iOS/DraggableViewController.swift -------------------------------------------------------------------------------- /Example/MotionExample-iOS/MotionExample-iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/Example/MotionExample-iOS/MotionExample-iOS/Info.plist -------------------------------------------------------------------------------- /Example/MotionExample-iOS/MotionExample-iOS/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/Example/MotionExample-iOS/MotionExample-iOS/SceneDelegate.swift -------------------------------------------------------------------------------- /Example/MotionExample-iOS/MotionExample-iOS/ScrollViewContents.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/Example/MotionExample-iOS/MotionExample-iOS/ScrollViewContents.txt -------------------------------------------------------------------------------- /Example/MotionExample-iOS/MotionExample-iOS/ScrollViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/Example/MotionExample-iOS/MotionExample-iOS/ScrollViewController.swift -------------------------------------------------------------------------------- /Example/MotionExample-iOS/MotionExample-iOS/SwiftUIDemoView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/Example/MotionExample-iOS/MotionExample-iOS/SwiftUIDemoView.swift -------------------------------------------------------------------------------- /Example/MotionExample-iOS/MotionExample-iOS/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/Example/MotionExample-iOS/MotionExample-iOS/ViewController.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/Package.resolved -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/README.md -------------------------------------------------------------------------------- /Resources/MotionLogo-Dark-Cropped.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/Resources/MotionLogo-Dark-Cropped.gif -------------------------------------------------------------------------------- /Resources/MotionLogo-Dark.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/Resources/MotionLogo-Dark.gif -------------------------------------------------------------------------------- /Resources/MotionLogo-Dark.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/Resources/MotionLogo-Dark.mp4 -------------------------------------------------------------------------------- /Resources/MotionLogo-Light-Cropped.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/Resources/MotionLogo-Light-Cropped.gif -------------------------------------------------------------------------------- /Resources/MotionLogo-Light.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/Resources/MotionLogo-Light.gif -------------------------------------------------------------------------------- /Resources/MotionLogo-Light.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/Resources/MotionLogo-Light.mp4 -------------------------------------------------------------------------------- /Resources/MotionMovieMaker/MotionMovieMaker.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/Resources/MotionMovieMaker/MotionMovieMaker.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Resources/MotionMovieMaker/MotionMovieMaker.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/Resources/MotionMovieMaker/MotionMovieMaker.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Resources/MotionMovieMaker/MotionMovieMaker.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/Resources/MotionMovieMaker/MotionMovieMaker.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Resources/MotionMovieMaker/MotionMovieMaker.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/Resources/MotionMovieMaker/MotionMovieMaker.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved -------------------------------------------------------------------------------- /Resources/MotionMovieMaker/MotionMovieMaker.xcodeproj/xcshareddata/xcschemes/MotionMovieMaker.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/Resources/MotionMovieMaker/MotionMovieMaker.xcodeproj/xcshareddata/xcschemes/MotionMovieMaker.xcscheme -------------------------------------------------------------------------------- /Resources/MotionMovieMaker/MotionMovieMaker/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/Resources/MotionMovieMaker/MotionMovieMaker/AppDelegate.swift -------------------------------------------------------------------------------- /Resources/MotionMovieMaker/MotionMovieMaker/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/Resources/MotionMovieMaker/MotionMovieMaker/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /Resources/MotionMovieMaker/MotionMovieMaker/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/Resources/MotionMovieMaker/MotionMovieMaker/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Resources/MotionMovieMaker/MotionMovieMaker/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/Resources/MotionMovieMaker/MotionMovieMaker/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Resources/MotionMovieMaker/MotionMovieMaker/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/Resources/MotionMovieMaker/MotionMovieMaker/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Resources/MotionMovieMaker/MotionMovieMaker/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/Resources/MotionMovieMaker/MotionMovieMaker/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Resources/MotionMovieMaker/MotionMovieMaker/BouncyView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/Resources/MotionMovieMaker/MotionMovieMaker/BouncyView.swift -------------------------------------------------------------------------------- /Resources/MotionMovieMaker/MotionMovieMaker/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/Resources/MotionMovieMaker/MotionMovieMaker/Info.plist -------------------------------------------------------------------------------- /Resources/MotionMovieMaker/MotionMovieMaker/MotionMovieMaker-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/Resources/MotionMovieMaker/MotionMovieMaker/MotionMovieMaker-Bridging-Header.h -------------------------------------------------------------------------------- /Resources/MotionMovieMaker/MotionMovieMaker/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/Resources/MotionMovieMaker/MotionMovieMaker/SceneDelegate.swift -------------------------------------------------------------------------------- /Resources/MotionMovieMaker/MotionMovieMaker/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/Resources/MotionMovieMaker/MotionMovieMaker/ViewController.swift -------------------------------------------------------------------------------- /Resources/deprecated/Motion-Logo-Rendered-Optimized~olde.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/Resources/deprecated/Motion-Logo-Rendered-Optimized~olde.gif -------------------------------------------------------------------------------- /Resources/deprecated/Motion-Logo-Rendered.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/Resources/deprecated/Motion-Logo-Rendered.gif -------------------------------------------------------------------------------- /Resources/deprecated/Motion-Logo-Rendered.m4v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/Resources/deprecated/Motion-Logo-Rendered.m4v -------------------------------------------------------------------------------- /Resources/deprecated/Motion-Logo-Rendered~dark.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/Resources/deprecated/Motion-Logo-Rendered~dark.gif -------------------------------------------------------------------------------- /Resources/deprecated/Motion-Logo-Rendered~olde.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/Resources/deprecated/Motion-Logo-Rendered~olde.gif -------------------------------------------------------------------------------- /Resources/deprecated/MotionLogo-Dark-Cropped.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/Resources/deprecated/MotionLogo-Dark-Cropped.gif -------------------------------------------------------------------------------- /Resources/deprecated/MotionLogo-Dark.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/Resources/deprecated/MotionLogo-Dark.gif -------------------------------------------------------------------------------- /Resources/deprecated/MotionLogo-Dark.motn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/Resources/deprecated/MotionLogo-Dark.motn -------------------------------------------------------------------------------- /Resources/deprecated/MotionLogo-Light-Cropped.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/Resources/deprecated/MotionLogo-Light-Cropped.gif -------------------------------------------------------------------------------- /Resources/deprecated/MotionLogo-Light.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/Resources/deprecated/MotionLogo-Light.gif -------------------------------------------------------------------------------- /Resources/deprecated/MotionLogo-Light.motn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/Resources/deprecated/MotionLogo-Light.motn -------------------------------------------------------------------------------- /Resources/deprecated/MotionLogo/MotionLogo.motn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/Resources/deprecated/MotionLogo/MotionLogo.motn -------------------------------------------------------------------------------- /Resources/deprecated/render_files.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/Resources/deprecated/render_files.sh -------------------------------------------------------------------------------- /Resources/render_files.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/Resources/render_files.sh -------------------------------------------------------------------------------- /Sources/Graphing/CurveGrapher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/Sources/Graphing/CurveGrapher.swift -------------------------------------------------------------------------------- /Sources/Graphing/EasingFunctionGraph.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/Sources/Graphing/EasingFunctionGraph.swift -------------------------------------------------------------------------------- /Sources/Graphing/ValueAnimationGraph.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/Sources/Graphing/ValueAnimationGraph.swift -------------------------------------------------------------------------------- /Sources/Motion/Animations/AnimationGroup.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/Sources/Motion/Animations/AnimationGroup.swift -------------------------------------------------------------------------------- /Sources/Motion/Animations/BasicAnimation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/Sources/Motion/Animations/BasicAnimation.swift -------------------------------------------------------------------------------- /Sources/Motion/Animations/DecayAnimation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/Sources/Motion/Animations/DecayAnimation.swift -------------------------------------------------------------------------------- /Sources/Motion/Animations/Functions/DecayFunction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/Sources/Motion/Animations/Functions/DecayFunction.swift -------------------------------------------------------------------------------- /Sources/Motion/Animations/Functions/EasingFunctions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/Sources/Motion/Animations/Functions/EasingFunctions.swift -------------------------------------------------------------------------------- /Sources/Motion/Animations/Functions/SpringFunction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/Sources/Motion/Animations/Functions/SpringFunction.swift -------------------------------------------------------------------------------- /Sources/Motion/Animations/SpringAnimation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/Sources/Motion/Animations/SpringAnimation.swift -------------------------------------------------------------------------------- /Sources/Motion/Animations/ValueAnimation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/Sources/Motion/Animations/ValueAnimation.swift -------------------------------------------------------------------------------- /Sources/Motion/Documentation.docc/Documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/Sources/Motion/Documentation.docc/Documentation.md -------------------------------------------------------------------------------- /Sources/Motion/Documentation.docc/Resources/Motion-Logo-Rendered.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/Sources/Motion/Documentation.docc/Resources/Motion-Logo-Rendered.gif -------------------------------------------------------------------------------- /Sources/Motion/Documentation.docc/Resources/Motion-Logo-Rendered~dark.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/Sources/Motion/Documentation.docc/Resources/Motion-Logo-Rendered~dark.gif -------------------------------------------------------------------------------- /Sources/Motion/Protocols/AnimationEnvironment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/Sources/Motion/Protocols/AnimationEnvironment.swift -------------------------------------------------------------------------------- /Sources/Motion/Protocols/EquatableEnough.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/Sources/Motion/Protocols/EquatableEnough.swift -------------------------------------------------------------------------------- /Sources/Motion/Protocols/SIMDRepresentable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/Sources/Motion/Protocols/SIMDRepresentable.swift -------------------------------------------------------------------------------- /Sources/Motion/Utilities/AnimationDriver.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/Sources/Motion/Utilities/AnimationDriver.swift -------------------------------------------------------------------------------- /Sources/Motion/Utilities/AnimationEnvironmentProxy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/Sources/Motion/Utilities/AnimationEnvironmentProxy.swift -------------------------------------------------------------------------------- /Sources/Motion/Utilities/Animator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/Sources/Motion/Utilities/Animator.swift -------------------------------------------------------------------------------- /Sources/Motion/Utilities/CAKeyframeAnimationEmittable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/Sources/Motion/Utilities/CAKeyframeAnimationEmittable.swift -------------------------------------------------------------------------------- /Sources/Motion/Utilities/CoreAnimationHelpers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/Sources/Motion/Utilities/CoreAnimationHelpers.swift -------------------------------------------------------------------------------- /Sources/Motion/Utilities/NSScreen+AnimationEnvironment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/Sources/Motion/Utilities/NSScreen+AnimationEnvironment.swift -------------------------------------------------------------------------------- /Sources/Motion/Utilities/RubberBanding.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/Sources/Motion/Utilities/RubberBanding.swift -------------------------------------------------------------------------------- /Sources/Motion/Utilities/Synchronized.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/Sources/Motion/Utilities/Synchronized.swift -------------------------------------------------------------------------------- /Tests/LinuxMain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/Tests/LinuxMain.swift -------------------------------------------------------------------------------- /Tests/MotionTests/BasicAnimationTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/Tests/MotionTests/BasicAnimationTests.swift -------------------------------------------------------------------------------- /Tests/MotionTests/DecayAnimationTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/Tests/MotionTests/DecayAnimationTests.swift -------------------------------------------------------------------------------- /Tests/MotionTests/MotionTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/Tests/MotionTests/MotionTests.swift -------------------------------------------------------------------------------- /Tests/MotionTests/SpringAnimationTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/Tests/MotionTests/SpringAnimationTests.swift -------------------------------------------------------------------------------- /docs/css/documentation-topic.a7be2880.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/css/documentation-topic.a7be2880.css -------------------------------------------------------------------------------- /docs/css/documentation-topic~topic~tutorials-overview.5d19221e.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/css/documentation-topic~topic~tutorials-overview.5d19221e.css -------------------------------------------------------------------------------- /docs/css/index.dcc9e6fb.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/css/index.dcc9e6fb.css -------------------------------------------------------------------------------- /docs/css/topic.fdc1ac71.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/css/topic.fdc1ac71.css -------------------------------------------------------------------------------- /docs/css/tutorials-overview.36413021.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/css/tutorials-overview.36413021.css -------------------------------------------------------------------------------- /docs/data/documentation/motion.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion.json -------------------------------------------------------------------------------- /docs/data/documentation/motion/animation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/animation.json -------------------------------------------------------------------------------- /docs/data/documentation/motion/animation/completion.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/animation/completion.json -------------------------------------------------------------------------------- /docs/data/documentation/motion/animation/enabled.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/animation/enabled.json -------------------------------------------------------------------------------- /docs/data/documentation/motion/animation/enableddidchange.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/animation/enableddidchange.json -------------------------------------------------------------------------------- /docs/data/documentation/motion/animation/hasresolved().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/animation/hasresolved().json -------------------------------------------------------------------------------- /docs/data/documentation/motion/animation/init().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/animation/init().json -------------------------------------------------------------------------------- /docs/data/documentation/motion/animation/start().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/animation/start().json -------------------------------------------------------------------------------- /docs/data/documentation/motion/animation/stop(resolveimmediately:postvaluechanged:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/animation/stop(resolveimmediately:postvaluechanged:).json -------------------------------------------------------------------------------- /docs/data/documentation/motion/animation/tick(frame:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/animation/tick(frame:).json -------------------------------------------------------------------------------- /docs/data/documentation/motion/animationframe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/animationframe.json -------------------------------------------------------------------------------- /docs/data/documentation/motion/animationframe/!=(_:_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/animationframe/!=(_:_:).json -------------------------------------------------------------------------------- /docs/data/documentation/motion/animationframe/duration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/animationframe/duration.json -------------------------------------------------------------------------------- /docs/data/documentation/motion/animationframe/equatable-implementations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/animationframe/equatable-implementations.json -------------------------------------------------------------------------------- /docs/data/documentation/motion/animationframe/init(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/animationframe/init(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/motion/animationframe/init(timestamp:targettimestamp:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/animationframe/init(timestamp:targettimestamp:).json -------------------------------------------------------------------------------- /docs/data/documentation/motion/animationframe/targettimestamp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/animationframe/targettimestamp.json -------------------------------------------------------------------------------- /docs/data/documentation/motion/animationframe/timestamp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/animationframe/timestamp.json -------------------------------------------------------------------------------- /docs/data/documentation/motion/animationgroup.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/animationgroup.json -------------------------------------------------------------------------------- /docs/data/documentation/motion/animationgroup/hasresolved().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/animationgroup/hasresolved().json -------------------------------------------------------------------------------- /docs/data/documentation/motion/animationgroup/start().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/animationgroup/start().json -------------------------------------------------------------------------------- /docs/data/documentation/motion/animationgroup/stop(resolveimmediately:postvaluechanged:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/animationgroup/stop(resolveimmediately:postvaluechanged:).json -------------------------------------------------------------------------------- /docs/data/documentation/motion/animationgroup/tick(frame:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/animationgroup/tick(frame:).json -------------------------------------------------------------------------------- /docs/data/documentation/motion/basicanimation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/basicanimation.json -------------------------------------------------------------------------------- /docs/data/documentation/motion/basicanimation/cakeyframeanimationemittable-implementations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/basicanimation/cakeyframeanimationemittable-implementations.json -------------------------------------------------------------------------------- /docs/data/documentation/motion/basicanimation/duration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/basicanimation/duration.json -------------------------------------------------------------------------------- /docs/data/documentation/motion/basicanimation/easingfunction.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/basicanimation/easingfunction.json -------------------------------------------------------------------------------- /docs/data/documentation/motion/basicanimation/fromvalue.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/basicanimation/fromvalue.json -------------------------------------------------------------------------------- /docs/data/documentation/motion/basicanimation/hasresolved().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/basicanimation/hasresolved().json -------------------------------------------------------------------------------- /docs/data/documentation/motion/basicanimation/init(easingfunction:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/basicanimation/init(easingfunction:).json -------------------------------------------------------------------------------- /docs/data/documentation/motion/basicanimation/keyframeanimation(forframerate:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/basicanimation/keyframeanimation(forframerate:).json -------------------------------------------------------------------------------- /docs/data/documentation/motion/basicanimation/populatekeyframeanimationdata(dt:values:keytimes:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/basicanimation/populatekeyframeanimationdata(dt:values:keytimes:).json -------------------------------------------------------------------------------- /docs/data/documentation/motion/basicanimation/reset(postvaluechanged:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/basicanimation/reset(postvaluechanged:).json -------------------------------------------------------------------------------- /docs/data/documentation/motion/basicanimation/start().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/basicanimation/start().json -------------------------------------------------------------------------------- /docs/data/documentation/motion/basicanimation/stop(resolveimmediately:postvaluechanged:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/basicanimation/stop(resolveimmediately:postvaluechanged:).json -------------------------------------------------------------------------------- /docs/data/documentation/motion/basicanimation/tick(frame:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/basicanimation/tick(frame:).json -------------------------------------------------------------------------------- /docs/data/documentation/motion/bezier.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/bezier.json -------------------------------------------------------------------------------- /docs/data/documentation/motion/bezier/!=(_:_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/bezier/!=(_:_:).json -------------------------------------------------------------------------------- /docs/data/documentation/motion/bezier/equatable-implementations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/bezier/equatable-implementations.json -------------------------------------------------------------------------------- /docs/data/documentation/motion/bezier/evaluatecurvex(t:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/bezier/evaluatecurvex(t:).json -------------------------------------------------------------------------------- /docs/data/documentation/motion/bezier/evaluatecurvey(t:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/bezier/evaluatecurvey(t:).json -------------------------------------------------------------------------------- /docs/data/documentation/motion/bezier/init(x1:y1:x2:y2:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/bezier/init(x1:y1:x2:y2:).json -------------------------------------------------------------------------------- /docs/data/documentation/motion/bezier/solve(x:epsilon:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/bezier/solve(x:epsilon:).json -------------------------------------------------------------------------------- /docs/data/documentation/motion/bezier/solve(y:epsilon:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/bezier/solve(y:epsilon:).json -------------------------------------------------------------------------------- /docs/data/documentation/motion/bezier/solvefort(x:epsilon:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/bezier/solvefort(x:epsilon:).json -------------------------------------------------------------------------------- /docs/data/documentation/motion/bezier/solvefort(y:epsilon:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/bezier/solvefort(y:epsilon:).json -------------------------------------------------------------------------------- /docs/data/documentation/motion/bezier/x1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/bezier/x1.json -------------------------------------------------------------------------------- /docs/data/documentation/motion/bezier/x2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/bezier/x2.json -------------------------------------------------------------------------------- /docs/data/documentation/motion/bezier/y1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/bezier/y1.json -------------------------------------------------------------------------------- /docs/data/documentation/motion/bezier/y2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/bezier/y2.json -------------------------------------------------------------------------------- /docs/data/documentation/motion/cadisableactions(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/cadisableactions(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/motion/cakeyframeanimationemittable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/cakeyframeanimationemittable.json -------------------------------------------------------------------------------- /docs/data/documentation/motion/cakeyframeanimationemittable/keyframeanimation(forframerate:)-9i7fl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/cakeyframeanimationemittable/keyframeanimation(forframerate:)-9i7fl.json -------------------------------------------------------------------------------- /docs/data/documentation/motion/cakeyframeanimationemittable/keyframeanimation(forframerate:)-9l4to.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/cakeyframeanimationemittable/keyframeanimation(forframerate:)-9l4to.json -------------------------------------------------------------------------------- /docs/data/documentation/motion/cakeyframeanimationemittable/populatekeyframeanimationdata(dt:values:keytimes:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/cakeyframeanimationemittable/populatekeyframeanimationdata(dt:values:keytimes:).json -------------------------------------------------------------------------------- /docs/data/documentation/motion/cakeyframeanimationvalueconvertible.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/cakeyframeanimationvalueconvertible.json -------------------------------------------------------------------------------- /docs/data/documentation/motion/cakeyframeanimationvalueconvertible/tokeyframevalue().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/cakeyframeanimationvalueconvertible/tokeyframevalue().json -------------------------------------------------------------------------------- /docs/data/documentation/motion/decayanimation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/decayanimation.json -------------------------------------------------------------------------------- /docs/data/documentation/motion/decayanimation/cakeyframeanimationemittable-implementations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/decayanimation/cakeyframeanimationemittable-implementations.json -------------------------------------------------------------------------------- /docs/data/documentation/motion/decayanimation/decayconstant.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/decayanimation/decayconstant.json -------------------------------------------------------------------------------- /docs/data/documentation/motion/decayanimation/hasresolved().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/decayanimation/hasresolved().json -------------------------------------------------------------------------------- /docs/data/documentation/motion/decayanimation/init(initialvalue:decayconstant:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/decayanimation/init(initialvalue:decayconstant:).json -------------------------------------------------------------------------------- /docs/data/documentation/motion/decayanimation/keyframeanimation(forframerate:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/decayanimation/keyframeanimation(forframerate:).json -------------------------------------------------------------------------------- /docs/data/documentation/motion/decayanimation/populatekeyframeanimationdata(dt:values:keytimes:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/decayanimation/populatekeyframeanimationdata(dt:values:keytimes:).json -------------------------------------------------------------------------------- /docs/data/documentation/motion/decayanimation/stop(resolveimmediately:postvaluechanged:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/decayanimation/stop(resolveimmediately:postvaluechanged:).json -------------------------------------------------------------------------------- /docs/data/documentation/motion/decayanimation/tick(frame:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/decayanimation/tick(frame:).json -------------------------------------------------------------------------------- /docs/data/documentation/motion/decayfunction.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/decayfunction.json -------------------------------------------------------------------------------- /docs/data/documentation/motion/decayfunction/decayconstant.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/decayfunction/decayconstant.json -------------------------------------------------------------------------------- /docs/data/documentation/motion/decayfunction/init(decayconstant:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/decayfunction/init(decayconstant:).json -------------------------------------------------------------------------------- /docs/data/documentation/motion/decayfunction/one_ln_decayconstant_1000.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/decayfunction/one_ln_decayconstant_1000.json -------------------------------------------------------------------------------- /docs/data/documentation/motion/decayfunction/solve(dt:x0:velocity:)-816gf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/decayfunction/solve(dt:x0:velocity:)-816gf.json -------------------------------------------------------------------------------- /docs/data/documentation/motion/decayfunction/solve(dt:x0:velocity:)-8qnqq.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/decayfunction/solve(dt:x0:velocity:)-8qnqq.json -------------------------------------------------------------------------------- /docs/data/documentation/motion/decayfunction/solvesimd(dt:x0:velocity:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/decayfunction/solvesimd(dt:x0:velocity:).json -------------------------------------------------------------------------------- /docs/data/documentation/motion/easingfunction.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/easingfunction.json -------------------------------------------------------------------------------- /docs/data/documentation/motion/easingfunction/!=(_:_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/easingfunction/!=(_:_:).json -------------------------------------------------------------------------------- /docs/data/documentation/motion/easingfunction/bezier.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/easingfunction/bezier.json -------------------------------------------------------------------------------- /docs/data/documentation/motion/easingfunction/easein.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/easingfunction/easein.json -------------------------------------------------------------------------------- /docs/data/documentation/motion/easingfunction/easeinout.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/easingfunction/easeinout.json -------------------------------------------------------------------------------- /docs/data/documentation/motion/easingfunction/easeout.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/easingfunction/easeout.json -------------------------------------------------------------------------------- /docs/data/documentation/motion/easingfunction/equatable-implementations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/easingfunction/equatable-implementations.json -------------------------------------------------------------------------------- /docs/data/documentation/motion/easingfunction/hash(into:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/easingfunction/hash(into:).json -------------------------------------------------------------------------------- /docs/data/documentation/motion/easingfunction/init(bezier:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/easingfunction/init(bezier:).json -------------------------------------------------------------------------------- /docs/data/documentation/motion/easingfunction/linear.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/easingfunction/linear.json -------------------------------------------------------------------------------- /docs/data/documentation/motion/easingfunction/solveinterpolatedvalue(_:fraction:)-2ielp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/easingfunction/solveinterpolatedvalue(_:fraction:)-2ielp.json -------------------------------------------------------------------------------- /docs/data/documentation/motion/easingfunction/solveinterpolatedvalue(_:fraction:)-5aer1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/easingfunction/solveinterpolatedvalue(_:fraction:)-5aer1.json -------------------------------------------------------------------------------- /docs/data/documentation/motion/easingfunction/solveinterpolatedvaluesimd(_:fraction:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/easingfunction/solveinterpolatedvaluesimd(_:fraction:).json -------------------------------------------------------------------------------- /docs/data/documentation/motion/equatableenough.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/equatableenough.json -------------------------------------------------------------------------------- /docs/data/documentation/motion/equatableenough/approximatelyequal(to:epsilon:)-131ix.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/equatableenough/approximatelyequal(to:epsilon:)-131ix.json -------------------------------------------------------------------------------- /docs/data/documentation/motion/equatableenough/approximatelyequal(to:epsilon:)-4feys.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/equatableenough/approximatelyequal(to:epsilon:)-4feys.json -------------------------------------------------------------------------------- /docs/data/documentation/motion/equatableenough/epsilon-2wsxb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/equatableenough/epsilon-2wsxb.json -------------------------------------------------------------------------------- /docs/data/documentation/motion/equatableenough/epsilon-7tu03.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/equatableenough/epsilon-7tu03.json -------------------------------------------------------------------------------- /docs/data/documentation/motion/equatableenough/epsilon-8u628.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/equatableenough/epsilon-8u628.json -------------------------------------------------------------------------------- /docs/data/documentation/motion/equatableenough/epsilontype.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/equatableenough/epsilontype.json -------------------------------------------------------------------------------- /docs/data/documentation/motion/floatingpointinitializable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/floatingpointinitializable.json -------------------------------------------------------------------------------- /docs/data/documentation/motion/floatingpointinitializable/init(_:)-8h6ky.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/floatingpointinitializable/init(_:)-8h6ky.json -------------------------------------------------------------------------------- /docs/data/documentation/motion/floatingpointinitializable/init(_:)-pp7q.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/floatingpointinitializable/init(_:)-pp7q.json -------------------------------------------------------------------------------- /docs/data/documentation/motion/mabs(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/mabs(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/motion/rubberband(_:coefficient:boundssize:contentsize:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/rubberband(_:coefficient:boundssize:contentsize:).json -------------------------------------------------------------------------------- /docs/data/documentation/motion/simdrepresentable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/simdrepresentable.json -------------------------------------------------------------------------------- /docs/data/documentation/motion/simdrepresentable/init(_:)-23al6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/simdrepresentable/init(_:)-23al6.json -------------------------------------------------------------------------------- /docs/data/documentation/motion/simdrepresentable/init(_:)-570oy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/simdrepresentable/init(_:)-570oy.json -------------------------------------------------------------------------------- /docs/data/documentation/motion/simdrepresentable/simdrepresentation()-47m9q.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/simdrepresentable/simdrepresentation()-47m9q.json -------------------------------------------------------------------------------- /docs/data/documentation/motion/simdrepresentable/simdrepresentation()-97uc3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/simdrepresentable/simdrepresentation()-97uc3.json -------------------------------------------------------------------------------- /docs/data/documentation/motion/simdrepresentable/simdtype.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/simdrepresentable/simdtype.json -------------------------------------------------------------------------------- /docs/data/documentation/motion/simdrepresentable/zero.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/simdrepresentable/zero.json -------------------------------------------------------------------------------- /docs/data/documentation/motion/springanimation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/springanimation.json -------------------------------------------------------------------------------- /docs/data/documentation/motion/springanimation/cakeyframeanimationemittable-implementations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/springanimation/cakeyframeanimationemittable-implementations.json -------------------------------------------------------------------------------- /docs/data/documentation/motion/springanimation/clampingrange.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/springanimation/clampingrange.json -------------------------------------------------------------------------------- /docs/data/documentation/motion/springanimation/configure(response:dampingratio:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/springanimation/configure(response:dampingratio:).json -------------------------------------------------------------------------------- /docs/data/documentation/motion/springanimation/configure(stiffness:damping:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/springanimation/configure(stiffness:damping:).json -------------------------------------------------------------------------------- /docs/data/documentation/motion/springanimation/damping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/springanimation/damping.json -------------------------------------------------------------------------------- /docs/data/documentation/motion/springanimation/dampingratio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/springanimation/dampingratio.json -------------------------------------------------------------------------------- /docs/data/documentation/motion/springanimation/hasresolved().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/springanimation/hasresolved().json -------------------------------------------------------------------------------- /docs/data/documentation/motion/springanimation/init(initialvalue:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/springanimation/init(initialvalue:).json -------------------------------------------------------------------------------- /docs/data/documentation/motion/springanimation/init(initialvalue:response:dampingratio:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/springanimation/init(initialvalue:response:dampingratio:).json -------------------------------------------------------------------------------- /docs/data/documentation/motion/springanimation/init(initialvalue:stiffness:damping:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/springanimation/init(initialvalue:stiffness:damping:).json -------------------------------------------------------------------------------- /docs/data/documentation/motion/springanimation/keyframeanimation(forframerate:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/springanimation/keyframeanimation(forframerate:).json -------------------------------------------------------------------------------- /docs/data/documentation/motion/springanimation/populatekeyframeanimationdata(dt:values:keytimes:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/springanimation/populatekeyframeanimationdata(dt:values:keytimes:).json -------------------------------------------------------------------------------- /docs/data/documentation/motion/springanimation/resolvesuponreachingtovalue.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/springanimation/resolvesuponreachingtovalue.json -------------------------------------------------------------------------------- /docs/data/documentation/motion/springanimation/response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/springanimation/response.json -------------------------------------------------------------------------------- /docs/data/documentation/motion/springanimation/stiffness.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/springanimation/stiffness.json -------------------------------------------------------------------------------- /docs/data/documentation/motion/springanimation/stop(resolveimmediately:postvaluechanged:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/springanimation/stop(resolveimmediately:postvaluechanged:).json -------------------------------------------------------------------------------- /docs/data/documentation/motion/springanimation/tick(frame:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/springanimation/tick(frame:).json -------------------------------------------------------------------------------- /docs/data/documentation/motion/springanimation/velocity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/springanimation/velocity.json -------------------------------------------------------------------------------- /docs/data/documentation/motion/springfunction.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/springfunction.json -------------------------------------------------------------------------------- /docs/data/documentation/motion/springfunction/configure(response:dampingratio:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/springfunction/configure(response:dampingratio:).json -------------------------------------------------------------------------------- /docs/data/documentation/motion/springfunction/configure(stiffness:damping:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/springfunction/configure(stiffness:damping:).json -------------------------------------------------------------------------------- /docs/data/documentation/motion/springfunction/damping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/springfunction/damping.json -------------------------------------------------------------------------------- /docs/data/documentation/motion/springfunction/dampingratio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/springfunction/dampingratio.json -------------------------------------------------------------------------------- /docs/data/documentation/motion/springfunction/init(response:dampingratio:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/springfunction/init(response:dampingratio:).json -------------------------------------------------------------------------------- /docs/data/documentation/motion/springfunction/init(stiffness:damping:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/springfunction/init(stiffness:damping:).json -------------------------------------------------------------------------------- /docs/data/documentation/motion/springfunction/response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/springfunction/response.json -------------------------------------------------------------------------------- /docs/data/documentation/motion/springfunction/solve(dt:x0:velocity:)-6ic5c.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/springfunction/solve(dt:x0:velocity:)-6ic5c.json -------------------------------------------------------------------------------- /docs/data/documentation/motion/springfunction/solve(dt:x0:velocity:)-rt6m.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/springfunction/solve(dt:x0:velocity:)-rt6m.json -------------------------------------------------------------------------------- /docs/data/documentation/motion/springfunction/solvesimd(dt:x0:velocity:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/springfunction/solvesimd(dt:x0:velocity:).json -------------------------------------------------------------------------------- /docs/data/documentation/motion/springfunction/stiffness.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/springfunction/stiffness.json -------------------------------------------------------------------------------- /docs/data/documentation/motion/springfunction/w0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/springfunction/w0.json -------------------------------------------------------------------------------- /docs/data/documentation/motion/springfunction/wd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/springfunction/wd.json -------------------------------------------------------------------------------- /docs/data/documentation/motion/supportedscalar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/supportedscalar.json -------------------------------------------------------------------------------- /docs/data/documentation/motion/supportedscalar/cos(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/supportedscalar/cos(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/motion/supportedscalar/exp(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/supportedscalar/exp(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/motion/supportedscalar/pow(_:_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/supportedscalar/pow(_:_:).json -------------------------------------------------------------------------------- /docs/data/documentation/motion/supportedscalar/sin(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/supportedscalar/sin(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/motion/supportedsimd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/supportedsimd.json -------------------------------------------------------------------------------- /docs/data/documentation/motion/uiscrollviewdecayconstant.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/uiscrollviewdecayconstant.json -------------------------------------------------------------------------------- /docs/data/documentation/motion/uiscrollviewrubberbandingconstant.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/uiscrollviewrubberbandingconstant.json -------------------------------------------------------------------------------- /docs/data/documentation/motion/valueanimation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/valueanimation.json -------------------------------------------------------------------------------- /docs/data/documentation/motion/valueanimation/!=(_:_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/valueanimation/!=(_:_:).json -------------------------------------------------------------------------------- /docs/data/documentation/motion/valueanimation/==(_:_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/valueanimation/==(_:_:).json -------------------------------------------------------------------------------- /docs/data/documentation/motion/valueanimation/equatable-implementations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/valueanimation/equatable-implementations.json -------------------------------------------------------------------------------- /docs/data/documentation/motion/valueanimation/hash(into:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/valueanimation/hash(into:).json -------------------------------------------------------------------------------- /docs/data/documentation/motion/valueanimation/hashable-implementations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/valueanimation/hashable-implementations.json -------------------------------------------------------------------------------- /docs/data/documentation/motion/valueanimation/onvaluechanged(disableactions:_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/valueanimation/onvaluechanged(disableactions:_:).json -------------------------------------------------------------------------------- /docs/data/documentation/motion/valueanimation/resolvingepsilon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/valueanimation/resolvingepsilon.json -------------------------------------------------------------------------------- /docs/data/documentation/motion/valueanimation/stop(resolveimmediately:postvaluechanged:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/valueanimation/stop(resolveimmediately:postvaluechanged:).json -------------------------------------------------------------------------------- /docs/data/documentation/motion/valueanimation/supportsvelocity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/valueanimation/supportsvelocity.json -------------------------------------------------------------------------------- /docs/data/documentation/motion/valueanimation/tovalue.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/valueanimation/tovalue.json -------------------------------------------------------------------------------- /docs/data/documentation/motion/valueanimation/updatevalue(to:postvaluechanged:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/valueanimation/updatevalue(to:postvaluechanged:).json -------------------------------------------------------------------------------- /docs/data/documentation/motion/valueanimation/value.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/valueanimation/value.json -------------------------------------------------------------------------------- /docs/data/documentation/motion/valueanimation/valuechangedcallback.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/valueanimation/valuechangedcallback.json -------------------------------------------------------------------------------- /docs/data/documentation/motion/valueanimation/velocity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/data/documentation/motion/valueanimation/velocity.json -------------------------------------------------------------------------------- /docs/developer-og-twitter.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/developer-og-twitter.jpg -------------------------------------------------------------------------------- /docs/developer-og.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/developer-og.jpg -------------------------------------------------------------------------------- /docs/documentation/motion/animation/completion/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/animation/completion/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/animation/enabled/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/animation/enabled/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/animation/enableddidchange/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/animation/enableddidchange/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/animation/hasresolved()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/animation/hasresolved()/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/animation/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/animation/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/animation/init()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/animation/init()/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/animation/start()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/animation/start()/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/animation/stop(resolveimmediately:postvaluechanged:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/animation/stop(resolveimmediately:postvaluechanged:)/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/animation/tick(frame:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/animation/tick(frame:)/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/animationframe/!=(_:_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/animationframe/!=(_:_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/animationframe/duration/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/animationframe/duration/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/animationframe/equatable-implementations/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/animationframe/equatable-implementations/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/animationframe/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/animationframe/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/animationframe/init(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/animationframe/init(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/animationframe/init(timestamp:targettimestamp:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/animationframe/init(timestamp:targettimestamp:)/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/animationframe/targettimestamp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/animationframe/targettimestamp/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/animationframe/timestamp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/animationframe/timestamp/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/animationgroup/hasresolved()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/animationgroup/hasresolved()/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/animationgroup/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/animationgroup/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/animationgroup/start()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/animationgroup/start()/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/animationgroup/stop(resolveimmediately:postvaluechanged:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/animationgroup/stop(resolveimmediately:postvaluechanged:)/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/animationgroup/tick(frame:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/animationgroup/tick(frame:)/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/basicanimation/cakeyframeanimationemittable-implementations/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/basicanimation/cakeyframeanimationemittable-implementations/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/basicanimation/duration/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/basicanimation/duration/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/basicanimation/easingfunction/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/basicanimation/easingfunction/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/basicanimation/fromvalue/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/basicanimation/fromvalue/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/basicanimation/hasresolved()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/basicanimation/hasresolved()/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/basicanimation/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/basicanimation/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/basicanimation/init(easingfunction:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/basicanimation/init(easingfunction:)/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/basicanimation/keyframeanimation(forframerate:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/basicanimation/keyframeanimation(forframerate:)/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/basicanimation/populatekeyframeanimationdata(dt:values:keytimes:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/basicanimation/populatekeyframeanimationdata(dt:values:keytimes:)/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/basicanimation/reset(postvaluechanged:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/basicanimation/reset(postvaluechanged:)/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/basicanimation/start()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/basicanimation/start()/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/basicanimation/stop(resolveimmediately:postvaluechanged:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/basicanimation/stop(resolveimmediately:postvaluechanged:)/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/basicanimation/tick(frame:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/basicanimation/tick(frame:)/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/bezier/!=(_:_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/bezier/!=(_:_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/bezier/equatable-implementations/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/bezier/equatable-implementations/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/bezier/evaluatecurvex(t:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/bezier/evaluatecurvex(t:)/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/bezier/evaluatecurvey(t:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/bezier/evaluatecurvey(t:)/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/bezier/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/bezier/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/bezier/init(x1:y1:x2:y2:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/bezier/init(x1:y1:x2:y2:)/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/bezier/solve(x:epsilon:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/bezier/solve(x:epsilon:)/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/bezier/solve(y:epsilon:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/bezier/solve(y:epsilon:)/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/bezier/solvefort(x:epsilon:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/bezier/solvefort(x:epsilon:)/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/bezier/solvefort(y:epsilon:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/bezier/solvefort(y:epsilon:)/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/bezier/x1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/bezier/x1/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/bezier/x2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/bezier/x2/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/bezier/y1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/bezier/y1/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/bezier/y2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/bezier/y2/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/cadisableactions(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/cadisableactions(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/cakeyframeanimationemittable/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/cakeyframeanimationemittable/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/cakeyframeanimationemittable/keyframeanimation(forframerate:)-9i7fl/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/cakeyframeanimationemittable/keyframeanimation(forframerate:)-9i7fl/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/cakeyframeanimationemittable/keyframeanimation(forframerate:)-9l4to/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/cakeyframeanimationemittable/keyframeanimation(forframerate:)-9l4to/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/cakeyframeanimationemittable/populatekeyframeanimationdata(dt:values:keytimes:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/cakeyframeanimationemittable/populatekeyframeanimationdata(dt:values:keytimes:)/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/cakeyframeanimationvalueconvertible/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/cakeyframeanimationvalueconvertible/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/cakeyframeanimationvalueconvertible/tokeyframevalue()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/cakeyframeanimationvalueconvertible/tokeyframevalue()/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/decayanimation/cakeyframeanimationemittable-implementations/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/decayanimation/cakeyframeanimationemittable-implementations/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/decayanimation/decayconstant/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/decayanimation/decayconstant/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/decayanimation/hasresolved()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/decayanimation/hasresolved()/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/decayanimation/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/decayanimation/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/decayanimation/init(initialvalue:decayconstant:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/decayanimation/init(initialvalue:decayconstant:)/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/decayanimation/keyframeanimation(forframerate:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/decayanimation/keyframeanimation(forframerate:)/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/decayanimation/populatekeyframeanimationdata(dt:values:keytimes:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/decayanimation/populatekeyframeanimationdata(dt:values:keytimes:)/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/decayanimation/stop(resolveimmediately:postvaluechanged:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/decayanimation/stop(resolveimmediately:postvaluechanged:)/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/decayanimation/tick(frame:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/decayanimation/tick(frame:)/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/decayfunction/decayconstant/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/decayfunction/decayconstant/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/decayfunction/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/decayfunction/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/decayfunction/init(decayconstant:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/decayfunction/init(decayconstant:)/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/decayfunction/one_ln_decayconstant_1000/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/decayfunction/one_ln_decayconstant_1000/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/decayfunction/solve(dt:x0:velocity:)-816gf/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/decayfunction/solve(dt:x0:velocity:)-816gf/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/decayfunction/solve(dt:x0:velocity:)-8qnqq/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/decayfunction/solve(dt:x0:velocity:)-8qnqq/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/decayfunction/solvesimd(dt:x0:velocity:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/decayfunction/solvesimd(dt:x0:velocity:)/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/easingfunction/!=(_:_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/easingfunction/!=(_:_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/easingfunction/bezier/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/easingfunction/bezier/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/easingfunction/easein/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/easingfunction/easein/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/easingfunction/easeinout/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/easingfunction/easeinout/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/easingfunction/easeout/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/easingfunction/easeout/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/easingfunction/equatable-implementations/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/easingfunction/equatable-implementations/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/easingfunction/hash(into:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/easingfunction/hash(into:)/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/easingfunction/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/easingfunction/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/easingfunction/init(bezier:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/easingfunction/init(bezier:)/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/easingfunction/linear/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/easingfunction/linear/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/easingfunction/solveinterpolatedvalue(_:fraction:)-2ielp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/easingfunction/solveinterpolatedvalue(_:fraction:)-2ielp/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/easingfunction/solveinterpolatedvalue(_:fraction:)-5aer1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/easingfunction/solveinterpolatedvalue(_:fraction:)-5aer1/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/easingfunction/solveinterpolatedvaluesimd(_:fraction:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/easingfunction/solveinterpolatedvaluesimd(_:fraction:)/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/equatableenough/approximatelyequal(to:epsilon:)-131ix/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/equatableenough/approximatelyequal(to:epsilon:)-131ix/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/equatableenough/approximatelyequal(to:epsilon:)-4feys/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/equatableenough/approximatelyequal(to:epsilon:)-4feys/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/equatableenough/epsilon-2wsxb/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/equatableenough/epsilon-2wsxb/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/equatableenough/epsilon-7tu03/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/equatableenough/epsilon-7tu03/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/equatableenough/epsilon-8u628/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/equatableenough/epsilon-8u628/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/equatableenough/epsilontype/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/equatableenough/epsilontype/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/equatableenough/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/equatableenough/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/floatingpointinitializable/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/floatingpointinitializable/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/floatingpointinitializable/init(_:)-8h6ky/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/floatingpointinitializable/init(_:)-8h6ky/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/floatingpointinitializable/init(_:)-pp7q/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/floatingpointinitializable/init(_:)-pp7q/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/mabs(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/mabs(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/rubberband(_:coefficient:boundssize:contentsize:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/rubberband(_:coefficient:boundssize:contentsize:)/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/simdrepresentable/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/simdrepresentable/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/simdrepresentable/init(_:)-23al6/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/simdrepresentable/init(_:)-23al6/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/simdrepresentable/init(_:)-570oy/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/simdrepresentable/init(_:)-570oy/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/simdrepresentable/simdrepresentation()-47m9q/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/simdrepresentable/simdrepresentation()-47m9q/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/simdrepresentable/simdrepresentation()-97uc3/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/simdrepresentable/simdrepresentation()-97uc3/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/simdrepresentable/simdtype/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/simdrepresentable/simdtype/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/simdrepresentable/zero/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/simdrepresentable/zero/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/springanimation/cakeyframeanimationemittable-implementations/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/springanimation/cakeyframeanimationemittable-implementations/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/springanimation/clampingrange/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/springanimation/clampingrange/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/springanimation/configure(response:dampingratio:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/springanimation/configure(response:dampingratio:)/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/springanimation/configure(stiffness:damping:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/springanimation/configure(stiffness:damping:)/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/springanimation/damping/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/springanimation/damping/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/springanimation/dampingratio/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/springanimation/dampingratio/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/springanimation/hasresolved()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/springanimation/hasresolved()/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/springanimation/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/springanimation/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/springanimation/init(initialvalue:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/springanimation/init(initialvalue:)/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/springanimation/init(initialvalue:response:dampingratio:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/springanimation/init(initialvalue:response:dampingratio:)/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/springanimation/init(initialvalue:stiffness:damping:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/springanimation/init(initialvalue:stiffness:damping:)/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/springanimation/keyframeanimation(forframerate:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/springanimation/keyframeanimation(forframerate:)/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/springanimation/populatekeyframeanimationdata(dt:values:keytimes:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/springanimation/populatekeyframeanimationdata(dt:values:keytimes:)/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/springanimation/resolvesuponreachingtovalue/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/springanimation/resolvesuponreachingtovalue/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/springanimation/response/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/springanimation/response/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/springanimation/stiffness/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/springanimation/stiffness/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/springanimation/stop(resolveimmediately:postvaluechanged:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/springanimation/stop(resolveimmediately:postvaluechanged:)/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/springanimation/tick(frame:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/springanimation/tick(frame:)/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/springanimation/velocity/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/springanimation/velocity/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/springfunction/configure(response:dampingratio:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/springfunction/configure(response:dampingratio:)/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/springfunction/configure(stiffness:damping:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/springfunction/configure(stiffness:damping:)/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/springfunction/damping/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/springfunction/damping/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/springfunction/dampingratio/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/springfunction/dampingratio/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/springfunction/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/springfunction/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/springfunction/init(response:dampingratio:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/springfunction/init(response:dampingratio:)/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/springfunction/init(stiffness:damping:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/springfunction/init(stiffness:damping:)/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/springfunction/response/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/springfunction/response/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/springfunction/solve(dt:x0:velocity:)-6ic5c/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/springfunction/solve(dt:x0:velocity:)-6ic5c/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/springfunction/solve(dt:x0:velocity:)-rt6m/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/springfunction/solve(dt:x0:velocity:)-rt6m/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/springfunction/solvesimd(dt:x0:velocity:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/springfunction/solvesimd(dt:x0:velocity:)/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/springfunction/stiffness/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/springfunction/stiffness/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/springfunction/w0/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/springfunction/w0/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/springfunction/wd/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/springfunction/wd/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/supportedscalar/cos(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/supportedscalar/cos(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/supportedscalar/exp(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/supportedscalar/exp(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/supportedscalar/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/supportedscalar/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/supportedscalar/pow(_:_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/supportedscalar/pow(_:_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/supportedscalar/sin(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/supportedscalar/sin(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/supportedsimd/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/supportedsimd/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/uiscrollviewdecayconstant/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/uiscrollviewdecayconstant/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/uiscrollviewrubberbandingconstant/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/uiscrollviewrubberbandingconstant/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/valueanimation/!=(_:_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/valueanimation/!=(_:_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/valueanimation/==(_:_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/valueanimation/==(_:_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/valueanimation/equatable-implementations/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/valueanimation/equatable-implementations/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/valueanimation/hash(into:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/valueanimation/hash(into:)/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/valueanimation/hashable-implementations/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/valueanimation/hashable-implementations/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/valueanimation/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/valueanimation/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/valueanimation/onvaluechanged(disableactions:_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/valueanimation/onvaluechanged(disableactions:_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/valueanimation/resolvingepsilon/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/valueanimation/resolvingepsilon/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/valueanimation/stop(resolveimmediately:postvaluechanged:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/valueanimation/stop(resolveimmediately:postvaluechanged:)/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/valueanimation/supportsvelocity/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/valueanimation/supportsvelocity/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/valueanimation/tovalue/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/valueanimation/tovalue/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/valueanimation/updatevalue(to:postvaluechanged:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/valueanimation/updatevalue(to:postvaluechanged:)/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/valueanimation/value/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/valueanimation/value/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/valueanimation/valuechangedcallback/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/valueanimation/valuechangedcallback/index.html -------------------------------------------------------------------------------- /docs/documentation/motion/valueanimation/velocity/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/documentation/motion/valueanimation/velocity/index.html -------------------------------------------------------------------------------- /docs/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/favicon.ico -------------------------------------------------------------------------------- /docs/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/favicon.svg -------------------------------------------------------------------------------- /docs/img/added-icon.d6f7e47d.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/img/added-icon.d6f7e47d.svg -------------------------------------------------------------------------------- /docs/img/deprecated-icon.015b4f17.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/img/deprecated-icon.015b4f17.svg -------------------------------------------------------------------------------- /docs/img/modified-icon.f496e73d.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/img/modified-icon.f496e73d.svg -------------------------------------------------------------------------------- /docs/img/no-image@2x.df2a0a50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/img/no-image@2x.df2a0a50.png -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/index/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/index/index.json -------------------------------------------------------------------------------- /docs/js/chunk-2d0d3105.cd72cc8e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/js/chunk-2d0d3105.cd72cc8e.js -------------------------------------------------------------------------------- /docs/js/chunk-vendors.00bf82af.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/js/chunk-vendors.00bf82af.js -------------------------------------------------------------------------------- /docs/js/documentation-topic.3bc2eb6f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/js/documentation-topic.3bc2eb6f.js -------------------------------------------------------------------------------- /docs/js/documentation-topic~topic~tutorials-overview.bd94ab17.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/js/documentation-topic~topic~tutorials-overview.bd94ab17.js -------------------------------------------------------------------------------- /docs/js/highlight-js-bash.1b52852f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/js/highlight-js-bash.1b52852f.js -------------------------------------------------------------------------------- /docs/js/highlight-js-c.d1db3f17.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/js/highlight-js-c.d1db3f17.js -------------------------------------------------------------------------------- /docs/js/highlight-js-cpp.eaddddbe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/js/highlight-js-cpp.eaddddbe.js -------------------------------------------------------------------------------- /docs/js/highlight-js-css.75eab1fe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/js/highlight-js-css.75eab1fe.js -------------------------------------------------------------------------------- /docs/js/highlight-js-custom-markdown.7cffc4b3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/js/highlight-js-custom-markdown.7cffc4b3.js -------------------------------------------------------------------------------- /docs/js/highlight-js-custom-swift.a62dfec9.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/js/highlight-js-custom-swift.a62dfec9.js -------------------------------------------------------------------------------- /docs/js/highlight-js-diff.62d66733.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/js/highlight-js-diff.62d66733.js -------------------------------------------------------------------------------- /docs/js/highlight-js-http.163e45b6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/js/highlight-js-http.163e45b6.js -------------------------------------------------------------------------------- /docs/js/highlight-js-java.8326d9d8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/js/highlight-js-java.8326d9d8.js -------------------------------------------------------------------------------- /docs/js/highlight-js-javascript.acb8a8eb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/js/highlight-js-javascript.acb8a8eb.js -------------------------------------------------------------------------------- /docs/js/highlight-js-json.471128d2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/js/highlight-js-json.471128d2.js -------------------------------------------------------------------------------- /docs/js/highlight-js-llvm.6100b125.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/js/highlight-js-llvm.6100b125.js -------------------------------------------------------------------------------- /docs/js/highlight-js-markdown.90077643.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/js/highlight-js-markdown.90077643.js -------------------------------------------------------------------------------- /docs/js/highlight-js-objectivec.bcdf5156.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/js/highlight-js-objectivec.bcdf5156.js -------------------------------------------------------------------------------- /docs/js/highlight-js-perl.757d7b6f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/js/highlight-js-perl.757d7b6f.js -------------------------------------------------------------------------------- /docs/js/highlight-js-php.cc8d6c27.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/js/highlight-js-php.cc8d6c27.js -------------------------------------------------------------------------------- /docs/js/highlight-js-python.c214ed92.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/js/highlight-js-python.c214ed92.js -------------------------------------------------------------------------------- /docs/js/highlight-js-ruby.f889d392.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/js/highlight-js-ruby.f889d392.js -------------------------------------------------------------------------------- /docs/js/highlight-js-scss.62ee18da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/js/highlight-js-scss.62ee18da.js -------------------------------------------------------------------------------- /docs/js/highlight-js-shell.dd7f411f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/js/highlight-js-shell.dd7f411f.js -------------------------------------------------------------------------------- /docs/js/highlight-js-swift.84f3e88c.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/js/highlight-js-swift.84f3e88c.js -------------------------------------------------------------------------------- /docs/js/highlight-js-xml.9c3688c7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/js/highlight-js-xml.9c3688c7.js -------------------------------------------------------------------------------- /docs/js/index.c37d1972.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/js/index.c37d1972.js -------------------------------------------------------------------------------- /docs/js/topic.897e6b8e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/js/topic.897e6b8e.js -------------------------------------------------------------------------------- /docs/js/tutorials-overview.abddae14.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/js/tutorials-overview.abddae14.js -------------------------------------------------------------------------------- /docs/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/metadata.json -------------------------------------------------------------------------------- /docs/theme-settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3ll/Motion/HEAD/docs/theme-settings.json --------------------------------------------------------------------------------