├── .gitignore ├── A01.playground.zip ├── A01Mac.playground.zip ├── Blending.pdf ├── C01.playground.zip ├── README.md └── images └── cover.jpg /.gitignore: -------------------------------------------------------------------------------- 1 | # Temporary files. 2 | *~ 3 | 4 | # Xcode user data. 5 | xcuserdata 6 | 7 | # Finder metadata 8 | .DS_Store 9 | 10 | # Built site content. 11 | /_site 12 | -------------------------------------------------------------------------------- /A01.playground.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erica/Swift-Drawing/68fefc7d4dc766fbab8c3c7018b7dbb2b099af9c/A01.playground.zip -------------------------------------------------------------------------------- /A01Mac.playground.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erica/Swift-Drawing/68fefc7d4dc766fbab8c3c7018b7dbb2b099af9c/A01Mac.playground.zip -------------------------------------------------------------------------------- /Blending.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erica/Swift-Drawing/68fefc7d4dc766fbab8c3c7018b7dbb2b099af9c/Blending.pdf -------------------------------------------------------------------------------- /C01.playground.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erica/Swift-Drawing/68fefc7d4dc766fbab8c3c7018b7dbb2b099af9c/C01.playground.zip -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ![](images/cover.jpg) 2 | # Swift-Drawing 3 | A chapter-by-chapter collection of playground-based source code that provides working examples of the material covered in Swift Drawing. 4 | -------------------------------------------------------------------------------- /images/cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erica/Swift-Drawing/68fefc7d4dc766fbab8c3c7018b7dbb2b099af9c/images/cover.jpg --------------------------------------------------------------------------------