# coding: utf-8 # AUTO-GENERATED FILE -- DO NOT EDIT class CGContextRef(object): def CGContextAddArc(self, arg0, arg1, arg2, arg3, arg4, arg5): """ (float x, float y, float radius, float startAngle, float endAngle, int clockwise) -> None """ return None def CGContextAddArcToPoint(self, arg0, arg1, arg2, arg3, arg4): """ (float x1, float y1, float x2, float y2, float radius) -> None """ return None def CGContextAddCurveToPoint(self, arg0, arg1, arg2, arg3, arg4, arg5): """ (float cp1x, float cp1y, float cp2x, float cp2y, float x, float y) -> None """ return None def CGContextAddLineToPoint(self, arg0, arg1): """ (float x, float y) -> None """ return None def CGContextAddQuadCurveToPoint(self, arg0, arg1, arg2, arg3): """ (float cpx, float cpy, float x, float y) -> None """ return None def CGContextAddRect(self, arg0): """ (CGRect rect) -> None """ return None def CGContextBeginPath(self): """ () -> None """ return None def CGContextClearRect(self, arg0): """ (CGRect rect) -> None """ return None def CGContextClip(self): """ () -> None """ return None def CGContextClipToRect(self, arg0): """ (CGRect rect) -> None """ return None def CGContextClosePath(self): """ () -> None """ return None def CGContextConcatCTM(self, arg0): """ (CGAffineTransform transform) -> None """ return None def CGContextDrawPath(self, arg0): """ (int mode) -> None """ return None def CGContextEOClip(self): """ () -> None """ return None def CGContextEOFillPath(self): """ () -> None """ return None def CGContextEndPage(self): """ () -> None """ return None def CGContextFillPath(self): """ () -> None """ return None def CGContextFillRect(self, arg0): """ (CGRect rect) -> None """ return None def CGContextFlush(self): """ () -> None """ return None def CGContextGetCTM(self): """ () -> (CGAffineTransform _rv) """ return (None) def CGContextGetInterpolationQuality(self): """ () -> (int _rv) """ return (1) def CGContextGetPathBoundingBox(self): """ () -> (CGRect _rv) """ return (None) def CGContextGetPathCurrentPoint(self): """ () -> (CGPoint _rv) """ return (1) def CGContextGetTextMatrix(self): """ () -> (CGAffineTransform _rv) """ return (None) def CGContextGetTextPosition(self): """ () -> (CGPoint _rv) """ return (1) def CGContextIsPathEmpty(self): """ () -> (int _rv) """ return (1) def CGContextMoveToPoint(self, arg0, arg1): """ (float x, float y) -> None """ return None def CGContextRestoreGState(self): """ () -> None """ return None def CGContextRotateCTM(self, arg0): """ (float angle) -> None """ return None def CGContextSaveGState(self): """ () -> None """ return None def CGContextScaleCTM(self, arg0, arg1): """ (float sx, float sy) -> None """ return None def CGContextSelectFont(self, arg0, arg1, arg2): """ (char * name, float size, int textEncoding) -> None """ return None def CGContextSetAlpha(self, arg0): """ (float alpha) -> None """ return None def CGContextSetCMYKFillColor(self, arg0, arg1, arg2, arg3, arg4): """ (float cyan, float magenta, float yellow, float black, float alpha) -> None """ return None def CGContextSetCMYKStrokeColor(self, arg0, arg1, arg2, arg3, arg4): """ (float cyan, float magenta, float yellow, float black, float alpha) -> None """ return None def CGContextSetCharacterSpacing(self, arg0): """ (float spacing) -> None """ return None def CGContextSetFlatness(self, arg0): """ (float flatness) -> None """ return None def CGContextSetFontSize(self, arg0): """ (float size) -> None """ return None def CGContextSetGrayFillColor(self, arg0, arg1): """ (float gray, float alpha) -> None """ return None def CGContextSetGrayStrokeColor(self, arg0, arg1): """ (float gray, float alpha) -> None """ return None def CGContextSetInterpolationQuality(self, arg0): """ (int quality) -> None """ return None def CGContextSetLineCap(self, arg0): """ (int cap) -> None """ return None def CGContextSetLineJoin(self, arg0): """ (int join) -> None """ return None def CGContextSetLineWidth(self, arg0): """ (float width) -> None """ return None def CGContextSetMiterLimit(self, arg0): """ (float limit) -> None """ return None def CGContextSetRGBFillColor(self, arg0, arg1, arg2, arg3): """ (float red, float green, float blue, float alpha) -> None """ return None def CGContextSetRGBStrokeColor(self, arg0, arg1, arg2, arg3): """ (float red, float green, float blue, float alpha) -> None """ return None def CGContextSetShouldAntialias(self, arg0): """ (int shouldAntialias) -> None """ return None def CGContextSetTextDrawingMode(self, arg0): """ (int mode) -> None """ return None def CGContextSetTextMatrix(self, arg0): """ (CGAffineTransform transform) -> None """ return None def CGContextSetTextPosition(self, arg0, arg1): """ (float x, float y) -> None """ return None def CGContextShowText(self, arg0): """ (Buffer cstring) -> None """ return None def CGContextShowTextAtPoint(self, arg0, arg1, arg2): """ (float x, float y, Buffer cstring) -> None """ return None def CGContextStrokePath(self): """ () -> None """ return None def CGContextStrokeRect(self, arg0): """ (CGRect rect) -> None """ return None def CGContextStrokeRectWithWidth(self, arg0, arg1): """ (CGRect rect, float width) -> None """ return None def CGContextSynchronize(self): """ () -> None """ return None def CGContextTranslateCTM(self, arg0, arg1): """ (float tx, float ty) -> None """ return None CGContextRefType = CGContextRef class Error(Exception): pass __doc__ = None __file__ = '/Users/Shared/src/ide/build-files/build-temp/runtimes-release/__os__/osx/runtime-python2.6/lib/Python.framework/Versions/2.6/lib/python2.6/lib-dynload/_CG.so' __name__ = '_CG' __package__ = None