Exemple #1
0
 public RegionEntry(RegionType type, object obj, Paths path, RegionClipType clipType)
 {
     regionType     = type;
     regionObject   = obj;
     regionPath     = path;
     regionClipType = clipType;
 }
Exemple #2
0
 public RegionEntry(RegionType type, Path path, RegionClipType clipType)
 {
     regionType = type;
     regionPath = new Paths()
     {
         path
     };
     regionClipType = clipType;
 }
Exemple #3
0
 public RegionEntry(RegionType type, object obj, Path path, RegionClipType clipType)              //:
 //this (type, obj, new Paths<List<IntPoint>>(path), clipType)
 {
     regionType   = type;
     regionObject = obj;
     regionPath   = new Paths()
     {
         path
     };
     regionClipType = clipType;
 }
 public RegionEntry(RegionType type, object obj, Paths path, RegionClipType clipType)
 {
     regionType = type;
     regionObject = obj;
     regionPath = path;
     regionClipType = clipType;
 }
 //:
 //this (type, obj, new Paths<List<IntPoint>>(path), clipType)
 public RegionEntry(RegionType type, object obj, Path path, RegionClipType clipType)
 {
     regionType = type;
     regionObject = obj;
     regionPath = new Paths() { path };
     regionClipType = clipType;
 }
Exemple #6
0
 public RegionEntry(RegionType type, Paths path, RegionClipType clipType)
 {
     regionType     = type;
     regionPath     = path;
     regionClipType = clipType;
 }