-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPlottingParameters3D.m
More file actions
43 lines (42 loc) · 1.82 KB
/
PlottingParameters3D.m
File metadata and controls
43 lines (42 loc) · 1.82 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Core Model, 2022
% Written by Maya Davis
% Concept by Maya Davis and Melissa A. Redford
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
classdef PlottingParameters3D
properties
% I should make these so that if you change them online they update
% -- i.e. I should use the sourcing framework for the color data or
% whatever
ClusterColorArray; % Will take the first however-many colors
MotorSilhouetteColorArray;
PerceptualTrajectoryColor1;
PerceptualTrajectoryColor2;
ResultTrajectoryColor1;
ResultTrajectoryColor2;
VisiblePointsPerStep;
JunctureSizes;
ResultPointSizes;
ClusterActivationToAlphaFunction;
NumberOfPointsBetweenPoints;
end
methods
function obj = PlottingParameters3D( ...
ClusterColorArray, MotorSilhouetteColorArray, ...
PerceptualTrajectoryColor1, PerceptualTrajectoryColor2, ...
ResultTrajectoryColor1, ResultTrajectoryColor2, ...
VisiblePointsPerStep, JunctureSizes, ResultPointSizes, ...
NumberOfPointsBetweenPoints)
obj.ClusterColorArray = ClusterColorArray;
obj.MotorSilhouetteColorArray = MotorSilhouetteColorArray;
obj.PerceptualTrajectoryColor1 = PerceptualTrajectoryColor1;
obj.PerceptualTrajectoryColor2 = PerceptualTrajectoryColor2;
obj.ResultTrajectoryColor1 = ResultTrajectoryColor1;
obj.ResultTrajectoryColor2 = ResultTrajectoryColor2;
obj.VisiblePointsPerStep = VisiblePointsPerStep;
obj.JunctureSizes = JunctureSizes;
obj.ResultPointSizes = ResultPointSizes;
obj.NumberOfPointsBetweenPoints = NumberOfPointsBetweenPoints;
end
end
end