├── .swiftpm └── xcode │ ├── package.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ └── matteofontana.xcuserdatad │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ └── matteofontana.xcuserdatad │ └── xcschemes │ └── xcschememanagement.plist ├── LICENSE ├── Package.swift ├── README.md ├── Sources └── OneFingerRotation │ ├── OFKnob.swift │ └── OneFingerRotation.swift └── Tests └── OneFingerRotationTests └── OneFingerRotationTests.swift /.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mttfntn/OneFingerRotation/HEAD/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /.swiftpm/xcode/package.xcworkspace/xcuserdata/matteofontana.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mttfntn/OneFingerRotation/HEAD/.swiftpm/xcode/package.xcworkspace/xcuserdata/matteofontana.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /.swiftpm/xcode/xcuserdata/matteofontana.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mttfntn/OneFingerRotation/HEAD/.swiftpm/xcode/xcuserdata/matteofontana.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mttfntn/OneFingerRotation/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mttfntn/OneFingerRotation/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mttfntn/OneFingerRotation/HEAD/README.md -------------------------------------------------------------------------------- /Sources/OneFingerRotation/OFKnob.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mttfntn/OneFingerRotation/HEAD/Sources/OneFingerRotation/OFKnob.swift -------------------------------------------------------------------------------- /Sources/OneFingerRotation/OneFingerRotation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mttfntn/OneFingerRotation/HEAD/Sources/OneFingerRotation/OneFingerRotation.swift -------------------------------------------------------------------------------- /Tests/OneFingerRotationTests/OneFingerRotationTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mttfntn/OneFingerRotation/HEAD/Tests/OneFingerRotationTests/OneFingerRotationTests.swift --------------------------------------------------------------------------------