-
Notifications
You must be signed in to change notification settings - Fork 2
/
PathDataCls.cs
75 lines (71 loc) · 1.35 KB
/
PathDataCls.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
using System;
using System.Collections.Generic;
using System.Collections;
using System.Linq;
using System.Text;
using System.Drawing;
namespace ShapeMaker
{
[Serializable]
public class PData
{
public PointF[] Lines
{
get;
set;
}
public int LineType
{
get;
set;
}
public bool ClosedType
{
get;
set;
}
public bool IsLarge
{
get;
set;
}
public bool RevSweep
{
get;
set;
}
public string Alias
{
get;
set;
}
public string Meta
{
get;
set;
}
public bool SolidFill
{
get;
set;
}
public bool LoopBack
{
get;
set;
}
public PData(PointF[] _coords, bool _closed, int _lineType, bool _islarge,bool _revsweep,string _alias,bool _loopback)
{
Lines = _coords;
LineType = _lineType;
ClosedType = _closed;
IsLarge = _islarge;
RevSweep = _revsweep;
Alias = _alias;
LoopBack = _loopback;
}
public PData()
{
}
}
}