本文整理汇总了C#中PointF.Clone方法的典型用法代码示例。如果您正苦于以下问题:C# PointF.Clone方法的具体用法?C# PointF.Clone怎么用?C# PointF.Clone使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类PointF
的用法示例。
在下文中一共展示了PointF.Clone方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: TransformPoints
// Transform points according to a matrix. Does NOT change the input points.
public static PointF[] TransformPoints(PointF[] pts, Matrix matrix)
{
#if false
Point[] wpfPoints = new Point[pts.Length];
for (int i = 0; i < pts.Length; ++i)
wpfPoints[i] = new Point(pts[i].X, pts[i].Y);
matrix.Transform(wpfPoints);
PointF[] xformedPts = new PointF[wpfPoints.Length];
for (int i = 0; i < wpfPoints.Length; ++i)
xformedPts[i] = new PointF((float) wpfPoints[i].X, (float) wpfPoints[i].Y);
return xformedPts;
#else
PointF[] xformedPts = (PointF[]) pts.Clone();
matrix.TransformPoints(xformedPts);
return xformedPts;
#endif
}
示例2: PolygonPathObject
// Constructor.
public PolygonPathObject(PointF[] points)
{
this.points = (PointF[])(points.Clone());
int iCount = this.points.Length;
this.pathPoints = new PointF[iCount+1];
this.points.CopyTo( this.pathPoints, 0 );
this.pathPoints[iCount] = this.pathPoints[0];
}
示例3: CurvePathObject
// Constructor.
public CurvePathObject(PointF[] points, int offset,
int numberOfSegments, float tension)
{
this.points = (PointF[])(points.Clone());
this.offset = offset;
this.numberOfSegments = numberOfSegments;
this.tension = tension;
this.pathPoints = ComputePathPoints();
}
示例4: LinesPathObject
// Constructor.
public LinesPathObject(PointF[] points)
{
this.points = (PointF[])(points.Clone());
}
示例5: ClosedCurvePathObject
// Constructor.
public ClosedCurvePathObject(PointF[] points, float tension)
{
this.points = (PointF[])(points.Clone());
this.tension = tension;
}