infline(a = NULL, b = NULL, h = NULL, v = NULL, p = NULL, theta = NULL)
"print"(x, ...)
"plot"(x, ...)h,v,p,theta
  a,b,v,p,theta
  a,b,h,p,theta
  a,b,h,v
  "infline"infline is an object of class "infline"
  which is basically a data frame with columns a,b,h,v,p,theta.
  Each row of the data frame represents one line. 
  Entries may be NA if a coordinate is not applicable to
  a particular line. 
infline is a convenient way to handle
  infinite straight lines in the plane.The position of a line can be specified in several ways:
  The command infline will accept line coordinates in any
  of these formats. The arguments a,b,h,v have the same interpretation
  as they do in the line-plotting function
  abline.
  The command infline converts between different coordinate
  systems (e.g. from a,b to p,theta) and returns an
  object of class "infline"
  that contains a representation of the lines in
  each appropriate coordinate system. This object can be printed
  and plotted.
rotate.infline,
  clip.infline,
  chop.tess,
  whichhalfplane
  infline(a=10:13,b=1)
  infline(p=1:3, theta=pi/4)
  plot(c(-1,1),c(-1,1),type="n",xlab="",ylab="", asp=1)
  plot(infline(p=0.4, theta=seq(0,pi,length=20)))
Run the code above in your browser using DataLab