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