mirror of
https://gitee.com/csharpui/CPF.git
synced 2025-07-16 07:59:46 +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)));
|
||
|
}
|
||
|
}
|
||
|
}
|