Please note that the recommended version of Scilab is 2025.0.0. This page might be outdated.
See the recommended documentation of this function
isoview
等軸プロットにスケールを設定
呼び出し手順
isoview isoview on isoview off isoview(idGraphics [,"on"|"off"]) isoview(xmin, xmax, ymin, ymax) // DEPRECATED. use replot()
引数
- "on" | "off" | <none>
- Enables or disables or switches the isometric rendering for all considered axes.
- idGraphics
- Vector of graphic handles. All the related axes are processed. By default, the current axes is processed.
- xmin, xmax, ymin, ymax
実数値
These parameters will be removed from Scilab 6.1. Please used replot afterisoview
instead.
説明
isoview
is used to set or relax isometric rendering scales
on the x, y (and z) axes, without changing the size of the graphic window.
isoview()
or simply isoview
switches the isoview status of the current axes, and keeps its current
bounds: isometric scales are set whenever
they were free, or scales are relaxed whenever they were isometric.
isoview("on")
or isoview on
sets isometric scales for the current axes.
isoview("off")
or isoview off
relaxes x, y (and z) scales for the current axes.
isoview(idGraphics,..)
runs on axes related
to each graphic object listed in the vector idGraphics
:
- If
idGraphics(i)
is a figure's handle, all its Axes are considered. - If
idGraphics(i)
is an Axes, it is considered as is. - If
idGraphics(i)
is the handle of a sub-axes component(such as a polyline, a compound, etc), its hosting axes is considered.
isoview(idFigure,..)
runs on each axes of the figure
identified by its handle idFigure
.
isoview(xmin, xmax, ymin, ymax)
sets the current
axes in isometric mode, and then sets its bounds to the given values.
This usage
will be removed from Scilab 6.1. Please used
replot after
isoview instead. |
The current axes is still the same after calling
isoview(..) , even when several axes have been processed. |
To plot some curves directly in isometric mode without calling
isoview afterwards, the plot2d(...,frameflag=4)
option may be used at call time. |
例
t = [0:0.1:2*%pi]'; clf nc = 3; subplot(2,nc,1) plot2d(cos(t),sin(t)) xtitle("True circle") a1 = gca(); subplot(2,nc,nc+1) plot2d(cos(t),sin(t)) isoview subplot(2,nc,2) plot2d(7*cos(t),2*sin(t)) xtitle("True ellipse") a2 = gca(); subplot(2,nc,nc+2) plot2d(7*cos(t),2*sin(t)) isoview // plot of a sphere using facets computed by eval3dp deff("[x,y,z] = sph(alp,tet)",[ "x = r*cos(alp).*cos(tet)+orig(1)*ones(tet)"; .. "y = r*cos(alp).*sin(tet)+orig(2)*ones(tet)"; .. "z = r*sin(alp)+orig(3)*ones(tet)"]); r = 3; orig = [0 0 0]; [xx,yy,zz] = eval3dp(sph,linspace(-%pi/2,%pi/2,40),linspace(0,%pi*2,40)); subplot(2,nc,3) plot3d(xx, yy, zz, alpha=60, flag=[color("green") 8 4]) xtitle("True sphere") a3 = gca(); subplot(2,nc,nc+3) plot3d(xx, yy, zz, alpha=60, flag=[color("green") 8 4]) isoview // Switching isoview status for all axes isoview(gcf()) // Forcing isoview for all axes of the current figure isoview(gcf(), "on") // Relaxing isoview for the current axes isoview off // Setting isoview for top axes isoview(gcf(),"off") isoview([a1 a2 a3], "on")
参照
- replot — 新しい境界を指定してカレントまたは指定した軸で再描画
- Axes properties — axesエンティティプロパティの説明
履歴
バージョン | 記述 |
6.0 |
|
Report an issue | ||
<< graduate | axes_operations | newaxes >> |