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