Uses of Class
rcs.posemath.PM_LINE

Packages that use PM_LINE
rcs.posemath   
 

Uses of PM_LINE in rcs.posemath
 

Methods in rcs.posemath that return PM_LINE
 PM_LINE PM_LINE.clone()
           
static PM_LINE Posemath.fitLine(java.util.List<? extends PmCartesian> l)
          Ignores the z value in each element of the list and returns a line fit with least-squares error to x,y points
 

Methods in rcs.posemath with parameters of type PM_LINE
static double[] Posemath.computeLineFitErrors(PM_LINE line, java.util.List<? extends PmCartesian> l)
          Compute an array of errors or the distance between each point in list l to line line.
static PM_CARTESIAN Posemath.intersection(PM_LINE l1, PM_LINE l2)
           
static PM_CARTESIAN Posemath.point_on_line(PM_LINE line, PM_CARTESIAN p)
           
static PmCartesian Posemath.point_on_line(PM_LINE line, PmCartesian p)