當前位置: 首頁>>代碼示例>>C#>>正文


C# GDIPlus.GpPoint類代碼示例

本文整理匯總了C#中OpenNETCF.GDIPlus.GpPoint的典型用法代碼示例。如果您正苦於以下問題:C# GpPoint類的具體用法?C# GpPoint怎麽用?C# GpPoint使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


GpPoint類屬於OpenNETCF.GDIPlus命名空間,在下文中一共展示了GpPoint類的15個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。

示例1: GdipDrawClosedCurveI

GdipDrawClosedCurveI(GpGraphics graphics, GpPen pen,
       GpPoint[] points, int count);
開發者ID:intille,項目名稱:mitessoftware,代碼行數:2,代碼來源:Drawing.cs

示例2: GdipAddPathClosedCurve2I

GdipAddPathClosedCurve2I(GpPath path, GpPoint[] points, int count,
                                 float tension);
開發者ID:intille,項目名稱:mitessoftware,代碼行數:2,代碼來源:Paths.cs

示例3: GdipGetPathPointsI

GdipGetPathPointsI(GpPath path, GpPoint[] points, int count);
開發者ID:intille,項目名稱:mitessoftware,代碼行數:1,代碼來源:Paths.cs

示例4: GdipAddPathLine2I

GdipAddPathLine2I(GpPath path, GpPoint []points, int count);
開發者ID:intille,項目名稱:mitessoftware,代碼行數:1,代碼來源:Paths.cs

示例5: GdipAddPathCurve3I

GdipAddPathCurve3I(GpPath path, GpPoint[] points, int count,
                           int offset, int numberOfSegments, float tension);
開發者ID:intille,項目名稱:mitessoftware,代碼行數:2,代碼來源:Paths.cs

示例6: DrawCurve

 public GpStatus DrawCurve(PenPlus pen,
                   GpPoint[] points,
                  int offset,
                  int numberOfSegments,
                  float tension)
 {
     return SetStatus(NativeMethods.GdipDrawCurve3I(nativeGraphics,
                                                  pen.nativePen,
                                                  points,
                                                  points.Length,
                                                  offset,
                                                  numberOfSegments,
                                                  tension));
 }
開發者ID:misiek,項目名稱:foo,代碼行數:14,代碼來源:GraphicsPlus.cs

示例7: DrawImage

        public GpStatus DrawImage(ImagePlus image,
                          GpPoint[] destPoints)
        {
            int count = destPoints.Length;
            if (count != 3 && count != 4)
                return SetStatus(GpStatus.InvalidParameter);

            return SetStatus(NativeMethods.GdipDrawImagePointsI(nativeGraphics,
                                                              image != null ? image.nativeImage
                                                                    : null,
                                                              destPoints,
                                                              count));
        }
開發者ID:misiek,項目名稱:foo,代碼行數:13,代碼來源:GraphicsPlus.cs

示例8: GdipFillClosedCurve2I

GdipFillClosedCurve2I(GpGraphics graphics, GpBrush brush,
                GpPoint[] points, int count,
               float tension, FillMode fillMode);
開發者ID:intille,項目名稱:mitessoftware,代碼行數:3,代碼來源:Drawing.cs

示例9: GdipDrawBeziersI

GdipDrawBeziersI(GpGraphics graphics, GpPen pen, GpPoint[] points,
          int count);
開發者ID:intille,項目名稱:mitessoftware,代碼行數:2,代碼來源:Drawing.cs

示例10: GdipFillClosedCurveI

GdipFillClosedCurveI(GpGraphics graphics, GpBrush brush,
                GpPoint[] points, int count);
開發者ID:intille,項目名稱:mitessoftware,代碼行數:2,代碼來源:Drawing.cs

示例11: GdipDrawLinesI

GdipDrawLinesI(GpGraphics graphics, GpPen pen, GpPoint[] points,
        int count);
開發者ID:intille,項目名稱:mitessoftware,代碼行數:2,代碼來源:Drawing.cs

示例12: GdipFillPolygon2I

 GdipFillPolygon2I(GpGraphics graphics, GpSolidFill brush,
 GpPoint[] points, int count);
開發者ID:intille,項目名稱:mitessoftware,代碼行數:2,代碼來源:Drawing.cs

示例13: GdipFillPolygonI

GdipFillPolygonI(GpGraphics graphics, GpBrush brush,
   GpPoint[] points, int count, FillMode fillMode);
開發者ID:intille,項目名稱:mitessoftware,代碼行數:2,代碼來源:Drawing.cs

示例14: GdipDrawClosedCurve2I

GdipDrawClosedCurve2I(GpGraphics graphics, GpPen pen,
        GpPoint[] points, int count, float tension);
開發者ID:intille,項目名稱:mitessoftware,代碼行數:2,代碼來源:Drawing.cs

示例15: DrawClosedCurve

 public GpStatus DrawClosedCurve(PenPlus pen,
                         GpPoint[] points)
 {
     return SetStatus(NativeMethods.GdipDrawClosedCurveI(nativeGraphics,
                                                       pen.nativePen,
                                                       points,
                                                       points.Length));
 }
開發者ID:misiek,項目名稱:foo,代碼行數:8,代碼來源:GraphicsPlus.cs


注:本文中的OpenNETCF.GDIPlus.GpPoint類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。