tri.find(tripack)
tri.find()所属R语言包:tripack
Locate a point in a triangulation
找到一个三角中的一个点
译者:生物统计家园网 机器人LoveR
描述----------Description----------
This subroutine locates a point P=(x,y) relative to a triangulation created by tri.mesh. If P is contained in a triangle, the three vertex indexes are returned. Otherwise, the indexes of the rightmost and leftmost visible boundary nodes are returned.
这个子程序找到一个点P =(x,y)相对于创建一个三角的tri.mesh。如果P是包含在一个三角形的三个顶点的索引返回。否则,返回最右边和最左边的可见边界节点的索引。
用法----------Usage----------
tri.find(tri.obj,x,y)
参数----------Arguments----------
参数:tri.obj
an triangulation object
三角测量对象
参数:x
x-coordinate of the point
x坐标的点
参数:y
y-coordinate of the point
的点的y坐标
----------Value----------
A list with elements i1,i2,i3 containing nodal indexes, in counterclockwise order, of the vertices of a triangle containing P=(x,y), or, if P is not contained in the convex hull of the nodes, i1 indexes the rightmost visible boundary node, i2 indexes the leftmost visible boundary node, and i3 = 0. Rightmost and leftmost are defined from the perspective of P, and a pair of points are visible from each other if and only if the line segment joining them intersects no triangulation arc. If P and all of the nodes lie on a common line, then i1=i2=i3 = 0 on output.
列表的元素i1,i2,i3包含节点索引,按逆时针顺序,一个三角形的顶点,含P =(x,y ),或者,如果P是不包含在节点的凸包,i1索引的最右边的可见边界节点,i2索引的最左边的可见边界节点,和i3= 0。最右边和最左边的中所定义从立体的P,和一对点是可见的,当且仅当彼此连接它们的线段没有三角电弧相交。如果P和所有的节点位于一个共同的线,然后i1=i2=i3= 0输出上。
(作者)----------Author(s)----------
A. Gebhardt
参考文献----------References----------
R. J. Renka (1996). Algorithm 751: TRIPACK: a constrained two-dimensional Delaunay triangulation package. ACM Transactions on Mathematical Software. 22, 1-8.
参见----------See Also----------
tri, print.tri, plot.tri, summary.tri, triangles, convex.hull
tri,print.tri,plot.tri,summary.tri,triangles,convex.hull
实例----------Examples----------
data(tritest)
tritest.tr<-tri.mesh(tritest$x,tritest$y)
plot(tritest.tr)
pnt<-list(x=0.3,y=0.4)
triangle.with.pnt<-tri.find(tritest.tr,pnt$x,pnt$y)
attach(triangle.with.pnt)
lines(tritest$x[c(i1,i2,i3,i1)],tritest$y[c(i1,i2,i3,i1)],col="red")
points(pnt$x,pnt$y)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|