├── .gitignore ├── CLWaterWaveView.podspec ├── Example ├── CLWaterWaveView.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── CLWaterWaveView-Example.xcscheme ├── CLWaterWaveView.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── CLWaterWaveView │ ├── AppDelegate.swift │ ├── Base.lproj │ │ ├── LaunchScreen.xib │ │ └── Main.storyboard │ ├── CrossroadsViewController.swift │ ├── IBFabric.swift │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ ├── CFcfczo.png │ │ │ ├── Contents.json │ │ │ ├── Icon-App-20x20@1x.png │ │ │ ├── Icon-App-20x20@2x-1.png │ │ │ ├── Icon-App-20x20@2x.png │ │ │ ├── Icon-App-20x20@3x.png │ │ │ ├── Icon-App-29x29@1x.png │ │ │ ├── Icon-App-29x29@2x-1.png │ │ │ ├── Icon-App-29x29@2x.png │ │ │ ├── Icon-App-29x29@3x.png │ │ │ ├── Icon-App-40x40@1x.png │ │ │ ├── Icon-App-40x40@2x-1.png │ │ │ ├── Icon-App-40x40@2x.png │ │ │ ├── Icon-App-40x40@3x.png │ │ │ ├── Icon-App-60x60@2x.png │ │ │ ├── Icon-App-60x60@3x.png │ │ │ ├── Icon-App-76x76@1x.png │ │ │ ├── Icon-App-76x76@2x.png │ │ │ └── Icon-App-83.5x83.5@2x.png │ ├── Info.plist │ ├── InterfaceBuilderExampleViewController.swift │ ├── NavigationController.swift │ ├── TwoWavesViewController.swift │ └── WaveSliderHelper.swift ├── Podfile ├── Podfile.lock └── Pods │ ├── Local Podspecs │ └── CLWaterWaveView.podspec.json │ ├── Manifest.lock │ ├── Pods.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ └── Target Support Files │ ├── CLWaterWaveView │ ├── CLWaterWaveView-dummy.m │ ├── CLWaterWaveView-prefix.pch │ ├── CLWaterWaveView-umbrella.h │ ├── CLWaterWaveView.modulemap │ ├── CLWaterWaveView.xcconfig │ └── Info.plist │ └── Pods-CLWaterWaveView_Example │ ├── Info.plist │ ├── Pods-CLWaterWaveView_Example-acknowledgements.markdown │ ├── Pods-CLWaterWaveView_Example-acknowledgements.plist │ ├── Pods-CLWaterWaveView_Example-dummy.m │ ├── Pods-CLWaterWaveView_Example-frameworks.sh │ ├── Pods-CLWaterWaveView_Example-resources.sh │ ├── Pods-CLWaterWaveView_Example-umbrella.h │ ├── Pods-CLWaterWaveView_Example.debug.xcconfig │ ├── Pods-CLWaterWaveView_Example.modulemap │ └── Pods-CLWaterWaveView_Example.release.xcconfig ├── LICENSE ├── README.md ├── Sources ├── CLWaterWaveModel+Defaults.swift ├── CLWaterWaveModel.swift ├── CLWaterWaveModelDelegate.swift └── CLWaterWaveView.swift ├── _Pods.xcodeproj ├── attributes_inspector.png ├── demo.gif ├── icon.png └── intro.gif /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristi-lupu/CLWaterWaveView/HEAD/.gitignore -------------------------------------------------------------------------------- /CLWaterWaveView.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristi-lupu/CLWaterWaveView/HEAD/CLWaterWaveView.podspec -------------------------------------------------------------------------------- /Example/CLWaterWaveView.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristi-lupu/CLWaterWaveView/HEAD/Example/CLWaterWaveView.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/CLWaterWaveView.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristi-lupu/CLWaterWaveView/HEAD/Example/CLWaterWaveView.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/CLWaterWaveView.xcodeproj/xcshareddata/xcschemes/CLWaterWaveView-Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristi-lupu/CLWaterWaveView/HEAD/Example/CLWaterWaveView.xcodeproj/xcshareddata/xcschemes/CLWaterWaveView-Example.xcscheme -------------------------------------------------------------------------------- /Example/CLWaterWaveView.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristi-lupu/CLWaterWaveView/HEAD/Example/CLWaterWaveView.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/CLWaterWaveView.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristi-lupu/CLWaterWaveView/HEAD/Example/CLWaterWaveView.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Example/CLWaterWaveView/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristi-lupu/CLWaterWaveView/HEAD/Example/CLWaterWaveView/AppDelegate.swift -------------------------------------------------------------------------------- /Example/CLWaterWaveView/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristi-lupu/CLWaterWaveView/HEAD/Example/CLWaterWaveView/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /Example/CLWaterWaveView/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristi-lupu/CLWaterWaveView/HEAD/Example/CLWaterWaveView/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/CLWaterWaveView/CrossroadsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristi-lupu/CLWaterWaveView/HEAD/Example/CLWaterWaveView/CrossroadsViewController.swift -------------------------------------------------------------------------------- /Example/CLWaterWaveView/IBFabric.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristi-lupu/CLWaterWaveView/HEAD/Example/CLWaterWaveView/IBFabric.swift -------------------------------------------------------------------------------- /Example/CLWaterWaveView/Images.xcassets/AppIcon.appiconset/CFcfczo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristi-lupu/CLWaterWaveView/HEAD/Example/CLWaterWaveView/Images.xcassets/AppIcon.appiconset/CFcfczo.png -------------------------------------------------------------------------------- /Example/CLWaterWaveView/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristi-lupu/CLWaterWaveView/HEAD/Example/CLWaterWaveView/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/CLWaterWaveView/Images.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristi-lupu/CLWaterWaveView/HEAD/Example/CLWaterWaveView/Images.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /Example/CLWaterWaveView/Images.xcassets/AppIcon.appiconset/Icon-App-20x20@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristi-lupu/CLWaterWaveView/HEAD/Example/CLWaterWaveView/Images.xcassets/AppIcon.appiconset/Icon-App-20x20@2x-1.png -------------------------------------------------------------------------------- /Example/CLWaterWaveView/Images.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristi-lupu/CLWaterWaveView/HEAD/Example/CLWaterWaveView/Images.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /Example/CLWaterWaveView/Images.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristi-lupu/CLWaterWaveView/HEAD/Example/CLWaterWaveView/Images.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /Example/CLWaterWaveView/Images.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristi-lupu/CLWaterWaveView/HEAD/Example/CLWaterWaveView/Images.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /Example/CLWaterWaveView/Images.xcassets/AppIcon.appiconset/Icon-App-29x29@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristi-lupu/CLWaterWaveView/HEAD/Example/CLWaterWaveView/Images.xcassets/AppIcon.appiconset/Icon-App-29x29@2x-1.png -------------------------------------------------------------------------------- /Example/CLWaterWaveView/Images.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristi-lupu/CLWaterWaveView/HEAD/Example/CLWaterWaveView/Images.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /Example/CLWaterWaveView/Images.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristi-lupu/CLWaterWaveView/HEAD/Example/CLWaterWaveView/Images.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /Example/CLWaterWaveView/Images.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristi-lupu/CLWaterWaveView/HEAD/Example/CLWaterWaveView/Images.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /Example/CLWaterWaveView/Images.xcassets/AppIcon.appiconset/Icon-App-40x40@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristi-lupu/CLWaterWaveView/HEAD/Example/CLWaterWaveView/Images.xcassets/AppIcon.appiconset/Icon-App-40x40@2x-1.png -------------------------------------------------------------------------------- /Example/CLWaterWaveView/Images.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristi-lupu/CLWaterWaveView/HEAD/Example/CLWaterWaveView/Images.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /Example/CLWaterWaveView/Images.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristi-lupu/CLWaterWaveView/HEAD/Example/CLWaterWaveView/Images.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /Example/CLWaterWaveView/Images.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristi-lupu/CLWaterWaveView/HEAD/Example/CLWaterWaveView/Images.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /Example/CLWaterWaveView/Images.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristi-lupu/CLWaterWaveView/HEAD/Example/CLWaterWaveView/Images.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /Example/CLWaterWaveView/Images.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristi-lupu/CLWaterWaveView/HEAD/Example/CLWaterWaveView/Images.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /Example/CLWaterWaveView/Images.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristi-lupu/CLWaterWaveView/HEAD/Example/CLWaterWaveView/Images.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /Example/CLWaterWaveView/Images.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristi-lupu/CLWaterWaveView/HEAD/Example/CLWaterWaveView/Images.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /Example/CLWaterWaveView/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristi-lupu/CLWaterWaveView/HEAD/Example/CLWaterWaveView/Info.plist -------------------------------------------------------------------------------- /Example/CLWaterWaveView/InterfaceBuilderExampleViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristi-lupu/CLWaterWaveView/HEAD/Example/CLWaterWaveView/InterfaceBuilderExampleViewController.swift -------------------------------------------------------------------------------- /Example/CLWaterWaveView/NavigationController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristi-lupu/CLWaterWaveView/HEAD/Example/CLWaterWaveView/NavigationController.swift -------------------------------------------------------------------------------- /Example/CLWaterWaveView/TwoWavesViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristi-lupu/CLWaterWaveView/HEAD/Example/CLWaterWaveView/TwoWavesViewController.swift -------------------------------------------------------------------------------- /Example/CLWaterWaveView/WaveSliderHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristi-lupu/CLWaterWaveView/HEAD/Example/CLWaterWaveView/WaveSliderHelper.swift -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristi-lupu/CLWaterWaveView/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristi-lupu/CLWaterWaveView/HEAD/Example/Podfile.lock -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/CLWaterWaveView.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristi-lupu/CLWaterWaveView/HEAD/Example/Pods/Local Podspecs/CLWaterWaveView.podspec.json -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristi-lupu/CLWaterWaveView/HEAD/Example/Pods/Manifest.lock -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristi-lupu/CLWaterWaveView/HEAD/Example/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristi-lupu/CLWaterWaveView/HEAD/Example/Pods/Pods.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristi-lupu/CLWaterWaveView/HEAD/Example/Pods/Pods.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/CLWaterWaveView/CLWaterWaveView-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristi-lupu/CLWaterWaveView/HEAD/Example/Pods/Target Support Files/CLWaterWaveView/CLWaterWaveView-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/CLWaterWaveView/CLWaterWaveView-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristi-lupu/CLWaterWaveView/HEAD/Example/Pods/Target Support Files/CLWaterWaveView/CLWaterWaveView-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/CLWaterWaveView/CLWaterWaveView-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristi-lupu/CLWaterWaveView/HEAD/Example/Pods/Target Support Files/CLWaterWaveView/CLWaterWaveView-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/CLWaterWaveView/CLWaterWaveView.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristi-lupu/CLWaterWaveView/HEAD/Example/Pods/Target Support Files/CLWaterWaveView/CLWaterWaveView.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/CLWaterWaveView/CLWaterWaveView.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristi-lupu/CLWaterWaveView/HEAD/Example/Pods/Target Support Files/CLWaterWaveView/CLWaterWaveView.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/CLWaterWaveView/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristi-lupu/CLWaterWaveView/HEAD/Example/Pods/Target Support Files/CLWaterWaveView/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CLWaterWaveView_Example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristi-lupu/CLWaterWaveView/HEAD/Example/Pods/Target Support Files/Pods-CLWaterWaveView_Example/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CLWaterWaveView_Example/Pods-CLWaterWaveView_Example-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristi-lupu/CLWaterWaveView/HEAD/Example/Pods/Target Support Files/Pods-CLWaterWaveView_Example/Pods-CLWaterWaveView_Example-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CLWaterWaveView_Example/Pods-CLWaterWaveView_Example-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristi-lupu/CLWaterWaveView/HEAD/Example/Pods/Target Support Files/Pods-CLWaterWaveView_Example/Pods-CLWaterWaveView_Example-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CLWaterWaveView_Example/Pods-CLWaterWaveView_Example-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristi-lupu/CLWaterWaveView/HEAD/Example/Pods/Target Support Files/Pods-CLWaterWaveView_Example/Pods-CLWaterWaveView_Example-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CLWaterWaveView_Example/Pods-CLWaterWaveView_Example-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristi-lupu/CLWaterWaveView/HEAD/Example/Pods/Target Support Files/Pods-CLWaterWaveView_Example/Pods-CLWaterWaveView_Example-frameworks.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CLWaterWaveView_Example/Pods-CLWaterWaveView_Example-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristi-lupu/CLWaterWaveView/HEAD/Example/Pods/Target Support Files/Pods-CLWaterWaveView_Example/Pods-CLWaterWaveView_Example-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CLWaterWaveView_Example/Pods-CLWaterWaveView_Example-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristi-lupu/CLWaterWaveView/HEAD/Example/Pods/Target Support Files/Pods-CLWaterWaveView_Example/Pods-CLWaterWaveView_Example-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CLWaterWaveView_Example/Pods-CLWaterWaveView_Example.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristi-lupu/CLWaterWaveView/HEAD/Example/Pods/Target Support Files/Pods-CLWaterWaveView_Example/Pods-CLWaterWaveView_Example.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CLWaterWaveView_Example/Pods-CLWaterWaveView_Example.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristi-lupu/CLWaterWaveView/HEAD/Example/Pods/Target Support Files/Pods-CLWaterWaveView_Example/Pods-CLWaterWaveView_Example.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CLWaterWaveView_Example/Pods-CLWaterWaveView_Example.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristi-lupu/CLWaterWaveView/HEAD/Example/Pods/Target Support Files/Pods-CLWaterWaveView_Example/Pods-CLWaterWaveView_Example.release.xcconfig -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristi-lupu/CLWaterWaveView/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristi-lupu/CLWaterWaveView/HEAD/README.md -------------------------------------------------------------------------------- /Sources/CLWaterWaveModel+Defaults.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristi-lupu/CLWaterWaveView/HEAD/Sources/CLWaterWaveModel+Defaults.swift -------------------------------------------------------------------------------- /Sources/CLWaterWaveModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristi-lupu/CLWaterWaveView/HEAD/Sources/CLWaterWaveModel.swift -------------------------------------------------------------------------------- /Sources/CLWaterWaveModelDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristi-lupu/CLWaterWaveView/HEAD/Sources/CLWaterWaveModelDelegate.swift -------------------------------------------------------------------------------- /Sources/CLWaterWaveView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristi-lupu/CLWaterWaveView/HEAD/Sources/CLWaterWaveView.swift -------------------------------------------------------------------------------- /_Pods.xcodeproj: -------------------------------------------------------------------------------- 1 | Example/Pods/Pods.xcodeproj -------------------------------------------------------------------------------- /attributes_inspector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristi-lupu/CLWaterWaveView/HEAD/attributes_inspector.png -------------------------------------------------------------------------------- /demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristi-lupu/CLWaterWaveView/HEAD/demo.gif -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristi-lupu/CLWaterWaveView/HEAD/icon.png -------------------------------------------------------------------------------- /intro.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristi-lupu/CLWaterWaveView/HEAD/intro.gif --------------------------------------------------------------------------------