created project file

This commit is contained in:
2025-10-24 22:59:30 -07:00
parent b0cd420aa3
commit 437257691c
71 changed files with 250 additions and 1 deletions

18
geometries/REGION_TYPE.m Normal file
View File

@@ -0,0 +1,18 @@
classdef REGION_TYPE
properties
id
color
end
enumeration
INVALID (0, [255, 127, 255]); % default value
DOMAIN (1, [0, 0, 0]); % domain region
OBSTACLE (2, [255, 127, 127]); % obstacle region
COLLISION (3, [255, 255, 128]); % collision avoidance region
end
methods
function obj = REGION_TYPE(id, color)
obj.id = id;
obj.color = color./ 255;
end
end
end