HomeSort by relevance Sort by last modified time
    Searched refs:pen (Results 1 - 22 of 22) sorted by null

  /external/fonttools/Lib/fontTools/pens/
boundsPen.py 13 """Pen to calculate the "control bounds" of a shape. This is the
19 'bounds' attribute of the pen object. It's a 4-tuple:
54 """Pen to calculate the bounds of a shape. It calculates the
60 'bounds' attribute of the pen object. It's a 4-tuple:
82 def draw(pen):
83 pen.moveTo((0, 0))
84 pen.lineTo((0, 100))
85 pen.qCurveTo((50, 75), (60, 50), (50, 25), (0, 0))
86 pen.curveTo((-50, 25), (-60, 50), (-50, 75), (0, 100))
87 pen.closePath(
89 pen = ControlBoundsPen(None) variable in class:BoundsPen
93 pen = BoundsPen(None) variable in class:BoundsPen
    [all...]
transformPen.py 11 """Pen that transforms all coordinates using a Affine transformation,
12 and passes them to another pen.
16 """The 'outPen' argument is another pen object. It will receive the
61 pen = TransformPen(_TestPen(None), (2, 0, 0.5, 2, -10, 0)) variable in class:TransformPen
62 pen.moveTo((0, 0))
63 pen.lineTo((0, 100))
64 pen.curveTo((50, 75), (60, 50), (50, 25), (0, 0))
65 pen.closePath()
basePen.py 1 """fontTools.pens.basePen.py -- Tools and base classes to build pen objects.
3 The Pen Protocol
5 A Pen is a kind of object that standardizes the way how to "draw" outlines:
13 outline.draw(pen) # 'outline' draws itself onto 'pen'
17 draw() method) as well as a pen itself: you *build* an outline using pen
20 The AbstractPen class defines the Pen protocol. It implements almost
23 "this class implements the Pen protocol.". An examples of an AbstractPen
27 draw (for example a pen renders outlines using a native graphics engine)
354 pen = _TestPen(None) variable
360 pen = _TestPen(None) variable
    [all...]
reportLabPen.py 9 """A pen for drawing onto a reportlab.graphics.shapes.Path object."""
56 pen = ReportLabPen(gs, Path(fillColor=colors.red, strokeWidth=5)) variable
58 g.draw(pen)
65 g = Group(pen.path)
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/gdiplus/
gdiplusgraphics.h 131 Status DrawArc(const Pen *pen, REAL x, REAL y, REAL width, REAL height,
135 nativeGraphics, pen ? pen->nativePen : NULL,
138 Status DrawArc(const Pen *pen, INT x, INT y, INT width, INT height,
142 nativeGraphics, pen ? pen->nativePen : NULL,
145 Status DrawArc(const Pen *pen, const RectF& rect
    [all...]
gdipluspath.h 34 // This avoids a cyclic dependency on Graphics and Pen.
375 const Pen *pen = NULL) const
380 pen ? pen->nativePen : NULL));
383 const Pen *pen = NULL) const
388 pen ? pen->nativePen : NULL));
447 BOOL IsOutlineVisible(REAL x, REAL y, const Pen *pen
    [all...]
gdipluspen.h 4 * GDI+ Pen class
33 class Pen: public GdiplusBase
39 Pen(const Color& color, REAL width = 1.0f):
46 Pen(const Brush *brush, REAL width = 1.0f):
53 ~Pen()
57 Pen* Clone() const
63 Pen *result = new Pen(clonePen, lastStatus);
80 // TODO: implement Pen::GetBrush()
83 // // where is the pen brush allocated (static,member,new,other)
    [all...]
gdiplusimpl.h     [all...]
  /external/pdfium/core/src/fxge/Microsoft SDK/include/
GdiPlusGraphics.h 463 Status DrawLine(IN const Pen* pen,
470 pen->nativePen, x1, y1, x2,
474 Status DrawLine(IN const Pen* pen,
478 return DrawLine(pen, pt1.X, pt1.Y, pt2.X, pt2.Y);
481 Status DrawLines(IN const Pen* pen,
486 pen->nativePen,
491 Status DrawLine(IN const Pen* pen,
    [all...]
GdiPlusFlat.h 239 GpPen *pen,
247 GdipWidenPathWithMinimumResolutions(GpPath *path, GpPen *pen, REAL minXres,
263 GDIPCONST GpPen *pen);
267 GDIPCONST GpPen *pen);
278 GdipIsOutlineVisiblePathPoint(GpPath* path, REAL x, REAL y, GpPen *pen,
282 GdipIsOutlineVisiblePathPointI(GpPath* path, INT x, INT y, GpPen *pen,
919 // Pen methods
923 GdipCreatePen1(ARGB color, REAL width, GpUnit unit, GpPen **pen);
927 GpPen **pen);
930 GdipClonePen(GpPen *pen, GpPen **clonepen);
    [all...]
GdiPlusPath.h 742 IN const Pen* pen = NULL) const;
747 IN const Pen* pen = NULL) const;
774 IN const Pen* pen,
785 pen->nativePen,
800 Status Widen(IN const Pen* pen,
808 return SetStatus(DllExports::GdipWidenPathWithMinimumResolutions(nativePath, pen->nativePen,
    [all...]
GdiPlusPen.h 11 * Pen API related declarations
18 // class for various pen types
21 class Pen : public GdiplusBase
32 Pen(IN const Color& color,
41 Pen(IN const Brush* brush,
50 ~Pen()
55 Pen* Clone() const
61 return new Pen(clonePen, lastResult);
227 // Set/get pen mode
242 // Set/get pen transform
    [all...]
  /external/fonttools/Lib/fontTools/misc/
psCharStrings.py 263 def draw(self, pen):
265 extractor = T2OutlineExtractor(pen, subrs, self.globalSubrs,
479 def draw(self, pen):
480 extractor = T1OutlineExtractor(pen, self.subrs)
637 def __init__(self, pen, localSubrs, globalSubrs, nominalWidthX, defaultWidthX):
639 self.pen = pen
658 self.pen.moveTo(self._nextPoint(point))
664 self.pen.lineTo(self._nextPoint(point))
670 self.pen.curveTo(nextPoint(pt1), nextPoint(pt2), nextPoint(pt3)
    [all...]
  /external/pdfium/core/src/fxge/win32/
fx_win32_gdipext.cpp 185 typedef GpStatus (WINGDIPAPI *FuncType_GdipSetPenDashStyle)(GpPen *pen, GpDashStyle dashstyle);
186 typedef GpStatus (WINGDIPAPI *FuncType_GdipSetPenDashArray)(GpPen *pen, GDIPCONST REAL *dash, INT count);
187 typedef GpStatus (WINGDIPAPI *FuncType_GdipSetPenDashCap197819)(GpPen *pen, GpDashCap dashCap);
188 typedef GpStatus (WINGDIPAPI *FuncType_GdipSetPenLineJoin)(GpPen *pen, GpLineJoin lineJoin);
189 typedef GpStatus (WINGDIPAPI *FuncType_GdipSetPenWidth)(GpPen *pen, REAL width);
196 typedef GpStatus (WINGDIPAPI *FuncType_GdipCreatePen1)(ARGB color, REAL width, GpUnit unit, GpPen **pen);
197 typedef GpStatus (WINGDIPAPI *FuncType_GdipSetPenMiterLimit)(GpPen *pen, REAL miterLimit);
198 typedef GpStatus (WINGDIPAPI *FuncType_GdipDrawPath)(GpGraphics *graphics, GpPen *pen, GpPath *path);
199 typedef GpStatus (WINGDIPAPI *FuncType_GdipDeletePen)(GpPen *pen);
219 typedef GpStatus (WINGDIPAPI *FuncType_GdipDrawLineI)(GpGraphics *graphics, GpPen *pen, int x1, int y1, int x2, int y2);
    [all...]
  /external/fonttools/Lib/fontTools/ttLib/
__init__.py 648 have a .draw() method that supports the Pen protocol, and will
699 """Wrapper for a TrueType glyph that supports the Pen protocol, meaning
700 that it has a .draw() method that takes a pen object as its only
709 def draw(self, pen):
710 """Draw the glyph onto Pen. See fontTools.pens.basePen for details
722 pen.addComponent(glyphName, transform)
735 # use pen.qCurveTo's special case by specifying None
738 pen.qCurveTo(*contour)
746 pen.moveTo(contour[-1])
750 pen.lineTo(contour[0]
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib-tk/
turtle.py 119 'RawTurtle', 'Turtle', 'RawPen', 'Pen', 'Shape', 'Vec2D']
132 'pen', 'pencolor', 'pendown', 'pensize', 'penup', 'pos', 'position',
2250 def pen(self, pen=None, **pendict): member in class:TPen
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-tk/
turtle.py 119 'RawTurtle', 'Turtle', 'RawPen', 'Pen', 'Shape', 'Vec2D']
132 'pen', 'pencolor', 'pendown', 'pensize', 'penup', 'pos', 'position',
2250 def pen(self, pen=None, **pendict): member in class:TPen
    [all...]
  /external/chromium_org/skia/ext/
vector_platform_device_emf_win.cc 751 // No pen case
757 // Use the stock pen if the stroke width is 0.
759 // Create a pen with the right color.
764 // Load a custom pen.
769 HPEN pen = ExtCreatePen(pen_style, stroke_width, &brush, 0, NULL); local
770 SkASSERT(pen != NULL);
771 previous_pen_ = SelectObject(pen);
822 // Make sure that for transparent color, no pen is used.
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.swt.win32.win32.x86_3.6.1.v3657a.jar 
  /external/chromium_org/tools/win/split_link/viz.js/
viz.js     [all...]
  /external/bison/build-aux/
texinfo.tex 186 ap-pen-dix bit-map bit-maps
    [all...]
  /ndk/sources/host-tools/sed-4.2.1/build-aux/
texinfo.tex 184 ap-pen-dix bit-map bit-maps
    [all...]

Completed in 662 milliseconds