Uses of Class
net.charlesames.utility.contour.RealSegment

Packages that use RealSegment
net.charlesames.utility.contour   
 

Uses of RealSegment in net.charlesames.utility.contour
 

Methods in net.charlesames.utility.contour that return RealSegment
 RealSegment<T> ContourFromReal.addSegment(double left, double right, T origin, T goal)
          Add a new segment into the contour, truncating existing segments which would otherwise overlap the new segment.
 RealSegment<T> ContourFromReal.getFirstSegment()
          Get the leftmost segment.
 RealSegment<T> ContourFromReal.getLastSegment()
          Get the rightmost segment.
 RealSegment<T> ContourFromReal.locateSegment(double ordinate)
          Locate the RealSegment which contains the indicated ordinate.
 

Methods in net.charlesames.utility.contour that return types with arguments of type RealSegment
 java.util.List<RealSegment<T>> ContourFromReal.getSegments()
           
 

Methods in net.charlesames.utility.contour with parameters of type RealSegment
 boolean RealSegment.equals(RealSegment<T> arg)
          Compare the content of one ContourFromReal segment with another.