BezierCurve-class(Rgraphviz)
BezierCurve-class()所属R语言包:Rgraphviz
Class "BezierCurve": A class to describe a Bezier curve
类“BezierCurve”来形容一个Bezier曲线:A类
译者:生物统计家园网 机器人LoveR
描述----------Description----------
This class is used to represent a Bezier curve in R,
这个类是用来表示Bezier曲线在R,
类的对象----------Objects from the Class----------
Objects can be created by calls of the form new("BezierCurve", ...).
创建对象可以通过电话的形式new("BezierCurve", ...)。
插槽----------Slots----------
cPoints: Object of class "list": A list of
cPoints:Object类的"list":一个列表
方法----------Methods----------
cPoints: Returns the cPoints slot
:cPoints:返回cPoints插槽
pointList: Returns a list of all points having been
pointList:所有点已返回列表
bezierPoints: Returns a matrix giving x & y points (by
bezierPoints:返回给X和Y点(由矩阵
lines: Draws the Bezier curve
lines:绘制贝塞尔曲线
show: Provides a concise display of information
show:提供了一个简洁的信息显示
作者(S)----------Author(s)----------
Jeff Gentry
参见----------See Also----------
xyPoint
xyPoint
举例----------Examples----------
V <- letters[1:10]
M <- 1:4
g1 <- randomGraph(V, M, .2)
z <- agopen(g1,"foo")
x <- AgEdge(z) ## list of AgEdge objects[#AgEdge对象名单]
x[[1]] ## AgEdge[#AgEdge]
a <- splines(x[[1]])[[1]]
a ## BezierCurve[#BezierCurve]
cPoints(a)
pointList(a)
bezierPoints(a)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|