找回密码
 注册
查看: 347|回复: 0

R语言 sculpt3d包 sculpt3d.setCallback()函数中文帮助文档(中英文对照)

[复制链接]
发表于 2012-9-29 23:11:38 | 显示全部楼层 |阅读模式
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 &amp; !selected],z[current &amp; !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:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

手机版|小黑屋|生物统计家园 网站价格

GMT+8, 2024-11-30 01:36 , Processed in 0.022302 second(s), 15 queries .

Powered by Discuz! X3.5

© 2001-2024 Discuz! Team.

快速回复 返回顶部 返回列表