Ejemplo n.º 1
0
GdipGetPathWorldBoundsI(GpPath  path, GpRect[] bounds, 
                        out GpMatrix matrix, out GpPen pen);
Ejemplo n.º 2
0
GdipAddPathCurve(GpPath path, GpPointF[] points, int count);
Ejemplo n.º 3
0
GdipAddPathCurve3(GpPath path, GpPointF[] points, int count,
                           int offset, int numberOfSegments, float tension);
Ejemplo n.º 4
0
GdipAddPathLine2(GpPath path, GpPointF[] points, int count);
Ejemplo n.º 5
0
GdipAddPathBezier(GpPath path, float x1, float y1, float x2, float y2,
                           float x3, float y3, float x4, float y4);
Ejemplo n.º 6
0
GdipClearPathMarkers(GpPath  path);
Ejemplo n.º 7
0
GdipGetPathLastPoint(GpPath  path, out GpPointF lastPoint);
Ejemplo n.º 8
0
GdipResetPath(GpPath  path);
Ejemplo n.º 9
0
GdipGetPointCount(GpPath  path, out int count);
Ejemplo n.º 10
0
GdipIsOutlineVisiblePathPointI(GpPath  path, int x, int y, GpPen pen,
                               GpGraphics graphics, out bool result);
Ejemplo n.º 11
0
GdipDeletePath(GpPath  path);
Ejemplo n.º 12
0
GdipClonePath(GpPath  path, out GpPath clonePath);
Ejemplo n.º 13
0
GdipIsVisiblePathPointI(GpPath  path, int x, int y,
                        GpGraphics graphics, out bool result);
Ejemplo n.º 14
0
GdipIsVisiblePathPoint(GpPath  path, float x, float y,
                       GpGraphics graphics, out bool result);
Ejemplo n.º 15
0
GdipClosePathFigures(GpPath path);
Ejemplo n.º 16
0
GdipGetPathTypes(GpPath  path, byte[] types, int count);
Ejemplo n.º 17
0
GdipSetPathMarker(GpPath  path);
Ejemplo n.º 18
0
GdipGetPathPoints(GpPath path, GpPointF[] points, int count);
Ejemplo n.º 19
0
GdipReversePath(GpPath  path);
Ejemplo n.º 20
0
GdipGetPathPointsI(GpPath path, GpPoint[] points, int count);
Ejemplo n.º 21
0
GdipAddPathLine(GpPath path, float x1, float y1, float x2, float y2);
Ejemplo n.º 22
0
GdipGetPathFillMode(GpPath path, out FillMode fillmode);
Ejemplo n.º 23
0
GdipAddPathArc(GpPath path, float x, float y, float width, float height,
                        float startAngle, float sweepAngle);
Ejemplo n.º 24
0
GdipSetPathFillMode(GpPath path, FillMode fillmode);
Ejemplo n.º 25
0
GdipAddPathBeziers(GpPath path, GpPointF[] points, int count);
Ejemplo n.º 26
0
GdipGetPathData(GpPath path, out GpPathData pathData);
Ejemplo n.º 27
0
GdipAddPathCurve2(GpPath path, GpPointF[] points, int count,
                           float tension);
Ejemplo n.º 28
0
GdipStartPathFigure(GpPath path);
Ejemplo n.º 29
0
Archivo: Others.cs Proyecto: misiek/foo
        public static extern GpStatus GdipCreateCustomLineCap(GpPath fillPath, GpPath strokePath,
LineCap baseCap, float baseInset, out GpCustomLineCap customCap);
Ejemplo n.º 30
0
GdipTransformPath(GpPath  path, GpMatrix matrix);