├── .gitignore ├── LICENSE ├── Package.swift ├── README.md ├── Sources └── PartitionKit │ ├── CrossHair.swift │ ├── DragState.swift │ ├── GridPartition.swift │ ├── HPartition.swift │ └── VPartition.swift ├── Tests ├── LinuxMain.swift └── PartitionKitTests │ ├── PartitionKitTests.swift │ └── XCTestManifests.swift ├── gridExample.png ├── hExample.png ├── nestedExample.png ├── nestedGrid.gif ├── nestedGridExample.png ├── partition-kit-logo.png └── vExample.png /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | /.build 3 | /Packages 4 | /*.xcodeproj 5 | xcuserdata/ 6 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kieranb662/PartitionKit/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kieranb662/PartitionKit/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kieranb662/PartitionKit/HEAD/README.md -------------------------------------------------------------------------------- /Sources/PartitionKit/CrossHair.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kieranb662/PartitionKit/HEAD/Sources/PartitionKit/CrossHair.swift -------------------------------------------------------------------------------- /Sources/PartitionKit/DragState.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kieranb662/PartitionKit/HEAD/Sources/PartitionKit/DragState.swift -------------------------------------------------------------------------------- /Sources/PartitionKit/GridPartition.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kieranb662/PartitionKit/HEAD/Sources/PartitionKit/GridPartition.swift -------------------------------------------------------------------------------- /Sources/PartitionKit/HPartition.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kieranb662/PartitionKit/HEAD/Sources/PartitionKit/HPartition.swift -------------------------------------------------------------------------------- /Sources/PartitionKit/VPartition.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kieranb662/PartitionKit/HEAD/Sources/PartitionKit/VPartition.swift -------------------------------------------------------------------------------- /Tests/LinuxMain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kieranb662/PartitionKit/HEAD/Tests/LinuxMain.swift -------------------------------------------------------------------------------- /Tests/PartitionKitTests/PartitionKitTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kieranb662/PartitionKit/HEAD/Tests/PartitionKitTests/PartitionKitTests.swift -------------------------------------------------------------------------------- /Tests/PartitionKitTests/XCTestManifests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kieranb662/PartitionKit/HEAD/Tests/PartitionKitTests/XCTestManifests.swift -------------------------------------------------------------------------------- /gridExample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kieranb662/PartitionKit/HEAD/gridExample.png -------------------------------------------------------------------------------- /hExample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kieranb662/PartitionKit/HEAD/hExample.png -------------------------------------------------------------------------------- /nestedExample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kieranb662/PartitionKit/HEAD/nestedExample.png -------------------------------------------------------------------------------- /nestedGrid.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kieranb662/PartitionKit/HEAD/nestedGrid.gif -------------------------------------------------------------------------------- /nestedGridExample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kieranb662/PartitionKit/HEAD/nestedGridExample.png -------------------------------------------------------------------------------- /partition-kit-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kieranb662/PartitionKit/HEAD/partition-kit-logo.png -------------------------------------------------------------------------------- /vExample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kieranb662/PartitionKit/HEAD/vExample.png --------------------------------------------------------------------------------