IarcPEset2pnt.std.tri {pcds} | R Documentation |
The indicator for the presence of an arc from a point
in set S
to the point p
or
Proportional Edge Proximity Catch Digraphs (PE-PCDs) -
standard equilateral triangle case
Description
Returns p
in
for some
in
S
for
S
, in the standard equilateral triangle,
that is, returns 1 if p
is in ,
and returns 0 otherwise.
PE proximity region is constructed
with respect to the standard equilateral triangle
with the expansion parameter
and vertex regions are based
on center
in Cartesian coordinates
or
in barycentric coordinates in the interior of
;
default is
,
i.e., the center of mass of
(which is equivalent to the circumcenter for
).
Vertices of are also labeled as 1, 2, and 3,
respectively.
If
p
is not in S
and either p
or all points in S
are outside , it returns 0,
but if
p
is in S
,
then it always returns 1 regardless of its location
(i.e., loops are allowed).
Usage
IarcPEset2pnt.std.tri(S, p, r, M = c(1, 1, 1))
Arguments
S |
A set of 2D points.
Presence of an arc from a point in |
p |
A 2D point.
Presence of an arc from a point in |
r |
A positive real number
which serves as the expansion parameter in PE proximity region in the
standard equilateral triangle |
M |
A 2D point in Cartesian coordinates
or a 3D point in barycentric coordinates
which serves as a center
in the interior of the standard equilateral triangle |
Value
p
is in
for
S
in the standard equilateral triangle,
that is, returns 1 if p
is in S
or inside for at least
one
in
S
, and returns 0 otherwise.
PE proximity region is constructed with respect to the standard
equilateral triangle
with
M
-vertex regions
Author(s)
Elvan Ceyhan
See Also
IarcPEset2pnt.tri
, IarcPEstd.tri
,
IarcPEtri
, and IarcCSset2pnt.std.tri
Examples
A<-c(0,0); B<-c(1,0); C<-c(1/2,sqrt(3)/2);
Te<-rbind(A,B,C);
n<-10
set.seed(1)
Xp<-runif.std.tri(n)$gen.points
M<-as.numeric(runif.std.tri(1)$g) #try also M<-c(.6,.2)
r<-1.5
S<-rbind(Xp[1,],Xp[2,]) #try also S<-c(.5,.5)
IarcPEset2pnt.std.tri(S,Xp[3,],r,M)
IarcPEset2pnt.std.tri(S,Xp[3,],r=1,M)
S<-rbind(Xp[1,],Xp[2,],Xp[3,],Xp[5,])
IarcPEset2pnt.std.tri(S,Xp[3,],r,M)
IarcPEset2pnt.std.tri(S,Xp[6,],r,M)
IarcPEset2pnt.std.tri(S,Xp[6,],r=1.25,M)
P<-c(.4,.2)
S<-Xp[c(1,3,4),]
IarcPEset2pnt.std.tri(Xp,P,r,M)