gitextract_c_cb9q34/ ├── .gitignore ├── Example_iOS/ │ ├── AppDelegate.swift │ ├── Assets.xcassets/ │ │ └── AppIcon.appiconset/ │ │ └── Contents.json │ ├── Base.lproj/ │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ └── Info.plist ├── Example_macOS/ │ ├── AppDelegate.swift │ ├── Assets.xcassets/ │ │ └── AppIcon.appiconset/ │ │ └── Contents.json │ ├── Base.lproj/ │ │ └── Main.storyboard │ └── Info.plist ├── LICENSE ├── Package.swift ├── README.md ├── Shared/ │ └── ExampleViewController.swift ├── SoundWaveForm/ │ ├── Info.plist │ └── SoundWaveForm.h ├── SoundWaveForm.xcodeproj/ │ ├── project.pbxproj │ ├── project.xcworkspace/ │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata/ │ │ └── IDEWorkspaceChecks.plist │ └── xcshareddata/ │ └── xcschemes/ │ ├── SoundWaveForm.xcscheme │ └── SoundWaveFormTouch.xcscheme ├── SoundWaveFormTouch/ │ ├── Info.plist │ └── SoundWaveFormTouch.h └── Sources/ └── SoundWaveForm/ ├── SamplesExtractor.swift └── WaveFormDrawer.swift