Example #1
0
 public PrimitivePolygon(PrimitiveLine outer)
     : this(outer, Enumerable.Empty <PrimitivePolygon>())
 {
 }
Example #2
0
 public PrimitivePolygon(PrimitiveLine outer, IEnumerable <PrimitivePolygon> inner)
     : base(outer.LowerBound, outer.UpperBound)
 {
     this.OuterShape  = outer;
     this.innerShapes = new List <PrimitivePolygon>(inner);
 }