Takes potential points to be plotted in the venn diagrams and returns
whether the point is inside or outside of the ellipse described by x, y, a,
b, and alpha.
Usage
ellipse.ind(ps, x, y, a, b, alpha)
Value
a length n vector indicating whether each point is inside the
ellipse.
## The function is currently defined asps <- cbind(runif(100), runif(100))
plot(dga:::ellipse(0, 0, .5, .3, 0), type = "l")
inds <- dga:::ellipse.ind(ps, 0, 0, .5, .3, 0)
points(inds)