sculpt3d.setCallback(sculpt3d)
sculpt3d.setCallback()所属R语言包:sculpt3d
Set a callback function for the GUI
设置一个回调函数的图形用户界面
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Sets a callback function to be called after select/crop/delete commands. The callback function could be used to call/update additional plots using selection/current points in the current sculpt3d rgl plot.
设置一个回调函数被调用后选择/裁剪/删除命令。可以使用的回调函数调用/更新其他图使用选择/电流点在当前sculpt3d RGL图。
To disable the callback, simply pass NULL.
要禁用回调,只是简单地传递NULL。
用法----------Usage----------
sculpt3d.setCallback(callback = NULL)
参数----------Arguments----------
参数:callback
Callback function. The function should accept arguments of 'current' and 'selected' as logical vectors, and 'selected_color' as the selection color:<br> sculpt3d.setCallback(f = (current, selected, selected_color){...})
回调函数。该函数应该接受的“当前”和“选择”的逻辑向量,并“selected_color选择的颜色参数如下:<br>sculpt3d.setCallback(f = (current, selected, selected_color){...})
值----------Value----------
Called for the side effect of calling the corresponding callback function passed as an argument.
调用,调用相应的回调函数作为参数传递的副作用。
(作者)----------Author(s)----------
Justin Donaldson
参见----------See Also----------
sculpt3d,
sculpt3d,
实例----------Examples----------
## Not run: [#不运行:]
x <- sort(rnorm(1000))
y <- rnorm(1000)
z <- rnorm(1000) + atan2(x,y)
sculpt3d(x, y, z, labels=1:1000, col=rainbow(1000), type='s', radius=runif(1000)/5, alpha = .5)
f = function(current, selected, selected_color) {
plot(x[current],y[current],type='n') # set plot dimensions[设置图尺寸]
points(x[current & !selected],z[current & !selected]) # current points[目前的积分]
points(x[selected],z[selected], col=selected_color) # selected points[选定点]
}
sculpt3d.setCallback(f)
# now select/crop/delete using the toolbar to see the auxiliary 2d plot update itself[现在选择/裁剪/删除使用工具栏上的辅助2D绘图自我更新]
## End(Not run)[#(不执行)]
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|