added cone geometry, implemented fov visualization

This commit is contained in:
2025-11-13 09:39:02 -08:00
parent 1592e3321e
commit 79783d754b
5 changed files with 102 additions and 14 deletions

View File

@@ -8,6 +8,7 @@ classdef REGION_TYPE
DOMAIN (1, [0, 0, 0]); % domain region
OBSTACLE (2, [255, 127, 127]); % obstacle region
COLLISION (3, [255, 255, 128]); % collision avoidance region
FOV (4, [255, 165, 0]); % field of view region
end
methods
function obj = REGION_TYPE(id, color)