gitextract_e3r80g08/ ├── .gitignore ├── .swift-version ├── .swiftlint.yml ├── .travis.yml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── ProcessingKit/ │ ├── Core/ │ │ ├── Color/ │ │ │ └── Color.swift │ │ ├── Constants/ │ │ │ └── Constants.swift │ │ ├── Context/ │ │ │ └── Context.swift │ │ ├── Environment/ │ │ │ └── Frame.swift │ │ ├── Extensions/ │ │ │ ├── CGPoint.swift │ │ │ ├── NSImage.swift │ │ │ ├── NSView.swift │ │ │ ├── String.swift │ │ │ └── UIColor.swift │ │ ├── Image/ │ │ │ └── Image.swift │ │ ├── Input/ │ │ │ ├── Date.swift │ │ │ └── Gesture.swift │ │ ├── Shape/ │ │ │ ├── Shape.swift │ │ │ └── Vertex.swift │ │ ├── Structure/ │ │ │ └── Loop.swift │ │ ├── Transform/ │ │ │ └── Transform.swift │ │ └── Typography/ │ │ └── Text.swift │ ├── Demo.playground/ │ │ ├── Contents.swift │ │ └── contents.xcplayground │ ├── Info.plist │ ├── ProcessingKit.h │ ├── ProcessingView+Core/ │ │ ├── ProcessingView+Color.swift │ │ ├── ProcessingView+Constants.swift │ │ ├── ProcessingView+Date.swift │ │ ├── ProcessingView+Frame.swift │ │ ├── ProcessingView+Gesture.swift │ │ ├── ProcessingView+Image.swift │ │ ├── ProcessingView+Loop.swift │ │ ├── ProcessingView+Shape.swift │ │ ├── ProcessingView+Text.swift │ │ ├── ProcessingView+Transform.swift │ │ └── ProcessingView+Vertex.swift │ └── ProcessingView.swift ├── ProcessingKit.podspec ├── ProcessingKit.xcodeproj/ │ ├── project.pbxproj │ ├── project.xcworkspace/ │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata/ │ │ ├── IDEWorkspaceChecks.plist │ │ └── WorkspaceSettings.xcsettings │ └── xcshareddata/ │ └── xcschemes/ │ ├── ProcessingKit OSX.xcscheme │ ├── ProcessingKit.xcscheme │ └── ProcessingKitTests.xcscheme ├── ProcessingKit.xctemplate/ │ ├── TemplateInfo.plist │ └── ___FILEBASENAME___.swift ├── ProcessingKitExample/ │ ├── ProcessingKitExample/ │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets/ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ └── ProcessingKit-Logo.imageset/ │ │ │ └── Contents.json │ │ ├── Base.lproj/ │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ ├── BasicFunctions/ │ │ │ ├── ArcSampleView.swift │ │ │ ├── ArcSampleViewController.storyboard │ │ │ ├── ArcSampleViewController.swift │ │ │ ├── CurveSampleView.swift │ │ │ ├── CurveSampleViewController.storyboard │ │ │ ├── CurveSampleViewController.swift │ │ │ ├── EllipseSampleView.swift │ │ │ ├── EllipseSampleViewController.storyboard │ │ │ ├── EllipseSampleViewController.swift │ │ │ ├── ImageSampleView.swift │ │ │ ├── ImageSampleViewController.storyboard │ │ │ ├── ImageSampleViewController.swift │ │ │ ├── QuadSampleView.swift │ │ │ ├── QuadSampleViewController.storyboard │ │ │ ├── QuadSampleViewController.swift │ │ │ ├── RectSampleView.swift │ │ │ ├── RectSampleViewController.storyboard │ │ │ ├── RectSampleViewController.swift │ │ │ ├── TextSampleView.swift │ │ │ ├── TextSampleViewController.storyboard │ │ │ ├── TextSampleViewController.swift │ │ │ ├── TriangleSampleView.swift │ │ │ ├── TriangleSampleViewController.storyboard │ │ │ └── TriangleSampleViewController.swift │ │ ├── Extensions/ │ │ │ └── ViewController.swift │ │ ├── Info.plist │ │ ├── MainTableViewController.swift │ │ ├── OthersSample/ │ │ │ ├── ClockSampleView.swift │ │ │ ├── ClockSampleViewController.storyboard │ │ │ ├── ClockSampleViewController.swift │ │ │ ├── ParticlesSampleView.swift │ │ │ ├── ParticlesSampleViewController.storyboard │ │ │ └── ParticlesSampleViewController.swift │ │ └── TouchSample/ │ │ ├── TouchSampleView.swift │ │ ├── TouchSampleViewController.storyboard │ │ └── TouchSampleViewController.swift │ └── ProcessingKitExample.xcodeproj/ │ ├── project.pbxproj │ └── project.xcworkspace/ │ ├── contents.xcworkspacedata │ └── xcshareddata/ │ └── IDEWorkspaceChecks.plist ├── ProcessingKitOSXExample/ │ ├── ProcessingKitOSXExample/ │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets/ │ │ │ └── AppIcon.appiconset/ │ │ │ └── Contents.json │ │ ├── Base.lproj/ │ │ │ └── Main.storyboard │ │ ├── CustomView.swift │ │ ├── Info.plist │ │ ├── ProcessingKitOSXExample.entitlements │ │ └── ViewController.swift │ ├── ProcessingKitOSXExample.xcodeproj/ │ │ ├── project.pbxproj │ │ └── project.xcworkspace/ │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata/ │ │ └── IDEWorkspaceChecks.plist │ └── ProcessingKitOSXExampleTests/ │ ├── Info.plist │ └── ProcessingKitOSXExampleTests.swift ├── ProcessingKitTests/ │ ├── CGPath+Extension/ │ │ └── CGPath+Extension.swift │ ├── GestureTests.swift │ ├── Info.plist │ ├── Input/ │ │ └── DateTests.swift │ ├── ProcessingViewDelegateSpy.swift │ ├── ProcessingViewTests.swift │ ├── ShapeTests.swift │ └── TransformTests.swift └── README.md