diff --git a/ShoulderCase/@Shoulder/Shoulder.m b/ShoulderCase/@Shoulder/Shoulder.m index e4363ff..c1a7025 100644 --- a/ShoulderCase/@Shoulder/Shoulder.m +++ b/ShoulderCase/@Shoulder/Shoulder.m @@ -1,25 +1,24 @@ classdef (Abstract) Shoulder < handle % Contains all the shoulder parts (bones) and their measurements. % % Can be used to plot an overview of the case. properties side = ""; % R or L scapula humerus rotatorCuff CTscan = ""; comment = ""; SCase end methods function obj = Shoulder(SCase) obj.SCase = SCase; obj.humerus = Humerus(obj); - obj.muscles = MusclesContainer(obj); obj.rotatorCuff = RotatorCuff(obj); end end end