├── .gitignore ├── DrawingContext.xcodeproj ├── project.pbxproj └── xcuserdata │ └── marcel.xcuserdatad │ └── xcschemes │ ├── DrawingContext.xcscheme │ └── xcschememanagement.plist ├── DrawingContext ├── AccessorMacros.h ├── DebugMacros.h ├── DrawingContext.h ├── Info.plist ├── MPWAbstractCGContext.h ├── MPWAbstractCGContext.m ├── MPWCGDrawingContext.h ├── MPWCGDrawingContext.m ├── MPWCGPathCreationContext.h ├── MPWCGPathCreationContext.m ├── MPWDrawingContext.h ├── MPWPoint.h ├── MPWPoint.m ├── MPWRect.h ├── MPWRect.m └── PhoneGeometry.h ├── DrawingContextTests ├── DrawingContextTests.m ├── EGOSTesting.h ├── EGOSTesting.m ├── Info.plist ├── basic-shape-rendering.png └── simple-color-creation.png ├── DrawingContextiOS ├── DrawingContextiOS.h └── Info.plist └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpw/MPWDrawingContext/HEAD/.gitignore -------------------------------------------------------------------------------- /DrawingContext.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpw/MPWDrawingContext/HEAD/DrawingContext.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /DrawingContext.xcodeproj/xcuserdata/marcel.xcuserdatad/xcschemes/DrawingContext.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpw/MPWDrawingContext/HEAD/DrawingContext.xcodeproj/xcuserdata/marcel.xcuserdatad/xcschemes/DrawingContext.xcscheme -------------------------------------------------------------------------------- /DrawingContext.xcodeproj/xcuserdata/marcel.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpw/MPWDrawingContext/HEAD/DrawingContext.xcodeproj/xcuserdata/marcel.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /DrawingContext/AccessorMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpw/MPWDrawingContext/HEAD/DrawingContext/AccessorMacros.h -------------------------------------------------------------------------------- /DrawingContext/DebugMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpw/MPWDrawingContext/HEAD/DrawingContext/DebugMacros.h -------------------------------------------------------------------------------- /DrawingContext/DrawingContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpw/MPWDrawingContext/HEAD/DrawingContext/DrawingContext.h -------------------------------------------------------------------------------- /DrawingContext/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpw/MPWDrawingContext/HEAD/DrawingContext/Info.plist -------------------------------------------------------------------------------- /DrawingContext/MPWAbstractCGContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpw/MPWDrawingContext/HEAD/DrawingContext/MPWAbstractCGContext.h -------------------------------------------------------------------------------- /DrawingContext/MPWAbstractCGContext.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpw/MPWDrawingContext/HEAD/DrawingContext/MPWAbstractCGContext.m -------------------------------------------------------------------------------- /DrawingContext/MPWCGDrawingContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpw/MPWDrawingContext/HEAD/DrawingContext/MPWCGDrawingContext.h -------------------------------------------------------------------------------- /DrawingContext/MPWCGDrawingContext.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpw/MPWDrawingContext/HEAD/DrawingContext/MPWCGDrawingContext.m -------------------------------------------------------------------------------- /DrawingContext/MPWCGPathCreationContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpw/MPWDrawingContext/HEAD/DrawingContext/MPWCGPathCreationContext.h -------------------------------------------------------------------------------- /DrawingContext/MPWCGPathCreationContext.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpw/MPWDrawingContext/HEAD/DrawingContext/MPWCGPathCreationContext.m -------------------------------------------------------------------------------- /DrawingContext/MPWDrawingContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpw/MPWDrawingContext/HEAD/DrawingContext/MPWDrawingContext.h -------------------------------------------------------------------------------- /DrawingContext/MPWPoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpw/MPWDrawingContext/HEAD/DrawingContext/MPWPoint.h -------------------------------------------------------------------------------- /DrawingContext/MPWPoint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpw/MPWDrawingContext/HEAD/DrawingContext/MPWPoint.m -------------------------------------------------------------------------------- /DrawingContext/MPWRect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpw/MPWDrawingContext/HEAD/DrawingContext/MPWRect.h -------------------------------------------------------------------------------- /DrawingContext/MPWRect.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpw/MPWDrawingContext/HEAD/DrawingContext/MPWRect.m -------------------------------------------------------------------------------- /DrawingContext/PhoneGeometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpw/MPWDrawingContext/HEAD/DrawingContext/PhoneGeometry.h -------------------------------------------------------------------------------- /DrawingContextTests/DrawingContextTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpw/MPWDrawingContext/HEAD/DrawingContextTests/DrawingContextTests.m -------------------------------------------------------------------------------- /DrawingContextTests/EGOSTesting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpw/MPWDrawingContext/HEAD/DrawingContextTests/EGOSTesting.h -------------------------------------------------------------------------------- /DrawingContextTests/EGOSTesting.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpw/MPWDrawingContext/HEAD/DrawingContextTests/EGOSTesting.m -------------------------------------------------------------------------------- /DrawingContextTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpw/MPWDrawingContext/HEAD/DrawingContextTests/Info.plist -------------------------------------------------------------------------------- /DrawingContextTests/basic-shape-rendering.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpw/MPWDrawingContext/HEAD/DrawingContextTests/basic-shape-rendering.png -------------------------------------------------------------------------------- /DrawingContextTests/simple-color-creation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpw/MPWDrawingContext/HEAD/DrawingContextTests/simple-color-creation.png -------------------------------------------------------------------------------- /DrawingContextiOS/DrawingContextiOS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpw/MPWDrawingContext/HEAD/DrawingContextiOS/DrawingContextiOS.h -------------------------------------------------------------------------------- /DrawingContextiOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpw/MPWDrawingContext/HEAD/DrawingContextiOS/Info.plist -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpw/MPWDrawingContext/HEAD/README.md --------------------------------------------------------------------------------