public RegionEntry(RegionType type, object obj, Paths path, RegionClipType clipType) { regionType = type; regionObject = obj; regionPath = path; regionClipType = clipType; }
public RegionEntry(RegionType type, Path path, RegionClipType clipType) { regionType = type; regionPath = new Paths() { path }; regionClipType = clipType; }
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; }
//: //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; }
public RegionEntry(RegionType type, Paths path, RegionClipType clipType) { regionType = type; regionPath = path; regionClipType = clipType; }