refactored agent sensing and guidance

This commit is contained in:
2025-11-09 22:17:21 -08:00
parent c7510812cb
commit 8b14bfc5ce
35 changed files with 224 additions and 76 deletions

22
geometries/cone.m Normal file
View File

@@ -0,0 +1,22 @@
classdef cone
%CONE Summary of this class goes here
% Detailed explanation goes here
properties
Property1
end
methods
function obj = cone(inputArg1,inputArg2)
%CONE Construct an instance of this class
% Detailed explanation goes here
obj.Property1 = inputArg1 + inputArg2;
end
function outputArg = method1(obj,inputArg)
%METHOD1 Summary of this method goes here
% Detailed explanation goes here
outputArg = obj.Property1 + inputArg;
end
end
end