File tree 2 files changed +12
-17
lines changed
2 files changed +12
-17
lines changed Original file line number Diff line number Diff line change 60
60
obj.PlotOptions.AspectRatio = [];
61
61
obj.PlotOptions.CameraEye = [];
62
62
obj.PlotOptions.is_headmap_axis = false ;
63
- obj.PlotOptions.Quality = - 1 ;
64
- obj.PlotOptions.Zmin = [];
65
63
obj.PlotOptions.FrameDuration = 1 ; % in ms.
66
64
obj.PlotOptions.FrameTransitionDuration = 0 ; % in ms.
67
65
obj.PlotOptions.geoRenderType = ' geo' ;
66
+ obj.PlotOptions.DomainFactor = [1 1 1 1 ];
68
67
69
68
% offline options
70
69
obj.PlotOptions.Offline = true ;
274
273
if (strcmpi(varargin{a },' geoRenderType' ))
275
274
obj.PlotOptions.geoRenderType = varargin{a + 1 };
276
275
end
276
+ if (strcmpi(varargin{a },' DomainFactor' ))
277
+ len = length(varargin{a + 1 });
278
+ obj .PlotOptions .DomainFactor(1 : len ) = varargin{a + 1 };
279
+ end
277
280
end
278
281
end
279
282
Original file line number Diff line number Diff line change 89
89
90
90
% -------------------------------------------------------------------------%
91
91
92
- % -getting and setting postion data-%
93
- xo = axisData .Position(1 );
94
- yo = axisData .Position(2 );
95
- w = axisData .Position(3 );
96
- h = axisData .Position(4 );
97
-
98
- if obj .PlotOptions .AxisEqual
99
- wh = min(axisData .Position(3 : 4 ));
100
- w = wh ;
101
- h = wh ;
102
- end
92
+ % -get position data-%
93
+ axisPos = axisData .Position .* obj .PlotOptions .DomainFactor ;
94
+ if obj .PlotOptions .AxisEqual , axisPos(3 : 4 ) = min(axisPos(3 : 4 )); end
103
95
104
96
% -------------------------------------------------------------------------%
105
97
106
98
% -xaxis domain-%
107
- xaxis.domain = min([xo xo + w ], 1 );
108
- scene.domain.x = min([ xo xo + w ], 1 ) ;
99
+ xaxis.domain = min([axisPos( 1 ) sum(axisPos([ 1 , 3 ]))], 1 );
100
+ scene.domain.x = xaxis . domain ;
109
101
110
102
% -------------------------------------------------------------------------%
111
103
112
104
% -yaxis domain-%
113
- yaxis.domain = min([yo yo + h ], 1 );
114
- scene.domain.y = min([ yo yo + h ], 1 ) ;
105
+ yaxis.domain = min([axisPos( 2 ) sum(axisPos([ 2 , 4 ]))], 1 );
106
+ scene.domain.y = yaxis . domain ;
115
107
116
108
% -------------------------------------------------------------------------%
117
109
You can’t perform that action at this time.
0 commit comments