/// <summary> /// ctor. /// </summary> public CSVExportZone(GridData context, CSVExportDriver owner, int iKref, bool showJumps, bool ghostZone, uint superSampling, SubGrid sgrd = null) : base(context, iKref, showJumps, ghostZone, superSampling, sgrd) { this.owner = owner; }
/// <summary> /// Legacy interface /// </summary> public static void PlotFields(IEnumerable <DGField> _FieldsToPlot, GridData context, string filename, string title, double time, int supersampling) { CSVExportDriver CSVExport = new CSVExportDriver(context, true, false, (uint)supersampling, null); CSVExport.PlotFields(filename, time, _FieldsToPlot); }