public string ToString(PlacedPrimitive.Mask <bool>?printMask = null) { var fg = new FileGeneration(); ToString(fg, printMask); return(fg.ToString()); }
public void ToString(FileGeneration fg, PlacedPrimitive.Mask <bool>?printMask = null) { fg.AppendLine($"{nameof(PlacedPrimitive.Mask<TItem>)} =>"); fg.AppendLine("["); using (new DepthWrapper(fg)) { if (printMask?.Bounds ?? true) { fg.AppendItem(Bounds, "Bounds"); } if (printMask?.Color ?? true) { fg.AppendItem(Color, "Color"); } if (printMask?.Unknown ?? true) { fg.AppendItem(Unknown, "Unknown"); } if (printMask?.Type ?? true) { fg.AppendItem(Type, "Type"); } } fg.AppendLine("]"); }
public Mask <R> Translate <R>(Func <TItem, R> eval) { var ret = new PlacedPrimitive.Mask <R>(); this.Translate_InternalFill(ret, eval); return(ret); }