setCenter(RCytoscape)
setCenter()所属R语言包:RCytoscape
setCenter
setCenter
译者:生物统计家园网 机器人LoveR
描述----------Description----------
This method can be used to pan and scroll the Cytoscape canvas, which is adjusted (moved) so that the specified x and y coordinates are at the center of the visible window.
这种方法可用于平移和滚动Cytoscape的画布上,调整(移动),所以,在可见的窗口的中心是指定的x和y坐标。
用法----------Usage----------
setCenter(obj, x, y)
参数----------Arguments----------
参数:obj
a CytoscapeWindowClass object.
CytoscapeWindowClass对象。
参数:x
a numeric object.
numeric对象。
参数:y
a numeric object.
numeric对象。
值----------Value----------
None.
没有。
作者(S)----------Author(s)----------
Paul Shannon
参见----------See Also----------
getCenter getZoom setZoom
getCenter getZoom setZoom
举例----------Examples----------
window.title = 'setCenter demo'
cw <- new.CytoscapeWindow (window.title, graph=makeSimpleGraph())
displayGraph (cw)
redraw (cw)
layout (cw, 'jgraph-spring')
original.center <- getCenter (cw) # named list, "x" and "y". initial values might be 140 and 90[命名名单,“X”和“Y”。初始值可能是140和90]
# now pan the display to the left, by setting the the visual center[现在向左平移显示,通过设置在视觉中心]
# to increasing values of x, without changing the location of the[没有改变的位置的x值增加,]
# simple graph[简单图]
setCenter (cw, 200, 90)
system ('sleep 1')
setCenter (cw, 300, 90)
system ('sleep 1')
setCenter (cw, 400, 90)
system ('sleep 1')
# and now pan back to the original position[现在平移回原来的位置]
setCenter (cw, 300, 90)
system ('sleep 1')
setCenter (cw, 200, 90)
system ('sleep 1')
setCenter (cw, original.center$x, original.center$y)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|