├── .gitignore ├── .swiftpm └── xcode │ └── package.xcworkspace │ └── xcshareddata │ └── IDEWorkspaceChecks.plist ├── Package.swift ├── README.md ├── Sources └── ResizableVector │ ├── Assets.xcassets │ ├── Contents.json │ └── example.imageset │ │ ├── Contents.json │ │ └── example.svg │ ├── CrossPlatformAbstractions │ ├── CrossPlatformImageRenderer │ │ └── CrossPlatformImageRenderer.swift │ ├── MakeImageAbstractor.swift │ └── PlatformImage.swift │ └── ResizableVector.swift └── Tests └── ResizableVectorTests └── ResizableVectorTests.swift /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matt54/ResizableVector/HEAD/.gitignore -------------------------------------------------------------------------------- /.swiftpm/xcode/package.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matt54/ResizableVector/HEAD/.swiftpm/xcode/package.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matt54/ResizableVector/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matt54/ResizableVector/HEAD/README.md -------------------------------------------------------------------------------- /Sources/ResizableVector/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matt54/ResizableVector/HEAD/Sources/ResizableVector/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Sources/ResizableVector/Assets.xcassets/example.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matt54/ResizableVector/HEAD/Sources/ResizableVector/Assets.xcassets/example.imageset/Contents.json -------------------------------------------------------------------------------- /Sources/ResizableVector/Assets.xcassets/example.imageset/example.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matt54/ResizableVector/HEAD/Sources/ResizableVector/Assets.xcassets/example.imageset/example.svg -------------------------------------------------------------------------------- /Sources/ResizableVector/CrossPlatformAbstractions/CrossPlatformImageRenderer/CrossPlatformImageRenderer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matt54/ResizableVector/HEAD/Sources/ResizableVector/CrossPlatformAbstractions/CrossPlatformImageRenderer/CrossPlatformImageRenderer.swift -------------------------------------------------------------------------------- /Sources/ResizableVector/CrossPlatformAbstractions/MakeImageAbstractor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matt54/ResizableVector/HEAD/Sources/ResizableVector/CrossPlatformAbstractions/MakeImageAbstractor.swift -------------------------------------------------------------------------------- /Sources/ResizableVector/CrossPlatformAbstractions/PlatformImage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matt54/ResizableVector/HEAD/Sources/ResizableVector/CrossPlatformAbstractions/PlatformImage.swift -------------------------------------------------------------------------------- /Sources/ResizableVector/ResizableVector.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matt54/ResizableVector/HEAD/Sources/ResizableVector/ResizableVector.swift -------------------------------------------------------------------------------- /Tests/ResizableVectorTests/ResizableVectorTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matt54/ResizableVector/HEAD/Tests/ResizableVectorTests/ResizableVectorTests.swift --------------------------------------------------------------------------------