├── .github └── FUNDING.yml ├── .gitignore ├── .swiftpm └── xcode │ └── package.xcworkspace │ └── contents.xcworkspacedata ├── Images ├── demo.gif └── logo.png ├── LICENSE ├── Package.swift ├── README.md └── Sources └── Snap ├── BlurView.swift ├── SnapCalculator.swift ├── SnapDrawer+init.swift ├── SnapDrawer.swift ├── SnapPoint.swift └── SnapState.swift /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [nerdsupremacist] 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nerdsupremacist/Snap/HEAD/.gitignore -------------------------------------------------------------------------------- /.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nerdsupremacist/Snap/HEAD/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Images/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nerdsupremacist/Snap/HEAD/Images/demo.gif -------------------------------------------------------------------------------- /Images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nerdsupremacist/Snap/HEAD/Images/logo.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nerdsupremacist/Snap/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nerdsupremacist/Snap/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nerdsupremacist/Snap/HEAD/README.md -------------------------------------------------------------------------------- /Sources/Snap/BlurView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nerdsupremacist/Snap/HEAD/Sources/Snap/BlurView.swift -------------------------------------------------------------------------------- /Sources/Snap/SnapCalculator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nerdsupremacist/Snap/HEAD/Sources/Snap/SnapCalculator.swift -------------------------------------------------------------------------------- /Sources/Snap/SnapDrawer+init.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nerdsupremacist/Snap/HEAD/Sources/Snap/SnapDrawer+init.swift -------------------------------------------------------------------------------- /Sources/Snap/SnapDrawer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nerdsupremacist/Snap/HEAD/Sources/Snap/SnapDrawer.swift -------------------------------------------------------------------------------- /Sources/Snap/SnapPoint.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nerdsupremacist/Snap/HEAD/Sources/Snap/SnapPoint.swift -------------------------------------------------------------------------------- /Sources/Snap/SnapState.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nerdsupremacist/Snap/HEAD/Sources/Snap/SnapState.swift --------------------------------------------------------------------------------