made no plotting flag for better performance and unit testing

This commit is contained in:
2025-12-24 16:20:57 -08:00
parent 843e5ba574
commit 1d11ac4e90
6 changed files with 33 additions and 7 deletions

View File

@@ -5,6 +5,11 @@ function obj = plot(obj)
arguments (Output)
obj (1, 1) {mustBeA(obj, 'miSim')};
end
% fast exit when plotting is disabled
if ~obj.makePlots
return;
end
% Plot domain
[obj.domain, obj.f] = obj.domain.plotWireframe(obj.spatialPlotIndices);