classdef Shoulder < handle %SHOULDER is a class to define the shoulder object, child of the %SouderCase object. % It defines the side (R/L), the scapula, humerus, muscles and CT. properties side % R or L scapula scapulaAuto % Same as scapula but obtained by SSM segmentation humerus muscles CTscan comment end properties (Hidden = true) SCase end methods (Access = ?ShoulderCase) % Only ShoulderCase is allowed to construct a Shoulder function obj = Shoulder(SCase) %SHOULDER Construct an instance of this class % Detailed explanation goes here obj.SCase = SCase; obj.side = ''; obj.muscles = Muscles(SCase); obj.CTscan = ''; obj.comment = ''; obj.scapula = Scapula(SCase); obj.scapulaAuto = Scapula(SCase); obj.humerus = Humerus(SCase); end end end