refactored sensing objective into domain, random inits

This commit is contained in:
2025-11-15 16:01:18 -08:00
parent 8dd24bdba6
commit 175a0e02a1
13 changed files with 110 additions and 51 deletions

View File

@@ -16,7 +16,7 @@ function [obj, f] = plot(obj)
end
% Plot objective gradient
f = obj.objective.plot(obj.objectivePlotIndices, f);
f = obj.domain.objective.plot(obj.objectivePlotIndices, f);
% Plot agents and their collision geometries
for ii = 1:size(obj.agents, 1)