├── .gitignore ├── LICENSE ├── Package.swift ├── README.md ├── Sources └── SmoothShadows │ └── SmoothShadows.swift └── Tests └── SmoothShadowsTests └── SmoothShadowsTests.swift /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlou/SmoothShadows/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlou/SmoothShadows/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlou/SmoothShadows/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlou/SmoothShadows/HEAD/README.md -------------------------------------------------------------------------------- /Sources/SmoothShadows/SmoothShadows.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlou/SmoothShadows/HEAD/Sources/SmoothShadows/SmoothShadows.swift -------------------------------------------------------------------------------- /Tests/SmoothShadowsTests/SmoothShadowsTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlou/SmoothShadows/HEAD/Tests/SmoothShadowsTests/SmoothShadowsTests.swift --------------------------------------------------------------------------------