R/points2.r

Defines functions points2

Documented in points2

########################
## ---- Points 2 ---- ##
###                  ###
## Plot Points to go  ##
## with the image2 fu-##
##-nction.            ##
########################


points2 <- function(x,y,img,...) {

    plot.xs <- y
    plot.ys <- (x - nrow(img))*-1

    points(plot.xs,plot.ys,...)
}


    
    
    

Try the imagefx package in your browser

Any scripts or data that you put into this service are public.

imagefx documentation built on Feb. 14, 2020, 1:07 a.m.