mirror of
https://gitee.com/csharpui/CPF.git
synced 2025-04-05 17:37:51 +08:00
20 lines
305 B
C#
20 lines
305 B
C#
namespace CPF.Mac.CoreGraphics
|
|
{
|
|
public struct CGPathElement
|
|
{
|
|
public CGPathElementType Type;
|
|
|
|
public CGPoint Point1;
|
|
|
|
public CGPoint Point2;
|
|
|
|
public CGPoint Point3;
|
|
|
|
public CGPathElement(int t)
|
|
{
|
|
Type = (CGPathElementType)t;
|
|
Point1 = (Point2 = (Point3 = new CGPoint(0, 0)));
|
|
}
|
|
}
|
|
}
|