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