Uses of Class
org.strbio.math.DVectorSet

Packages that use DVectorSet
org.strbio.math These classes perform functions related to mathematics and statistics. 
org.strbio.util.graph These classes perform utility functions related to 2D and 3D graphics. 
 

Uses of DVectorSet in org.strbio.math
 

Methods in org.strbio.math with parameters of type DVectorSet
 void DVectorSet.add(DVectorSet q)
          add in another set of DVectors, without duplicating them.
 

Constructors in org.strbio.math with parameters of type DVectorSet
DVectorSet(DVectorSet y)
          Create a set by copying another set, but not the DVectors in it.
 

Uses of DVectorSet in org.strbio.util.graph
 

Fields in org.strbio.util.graph declared as DVectorSet
protected  DVectorSet PointPlot.points
          This is a vector of points to plot.
protected  DVectorSet ClickablePointPlot.points
          This is a vector of points to plot.
 

Methods in org.strbio.util.graph that return DVectorSet
 DVectorSet PointPlot.getPoints()
          Returns a pointer to the points being drawn.
 DVectorSet ClickablePointPlot.getPoints()
          Returns a pointer to the points being drawn.
 

Methods in org.strbio.util.graph with parameters of type DVectorSet
 void PointPlot.setPoints(DVectorSet x)
          Sets the points being drawn.
 void PointColorPlot.setPoints(DVectorSet x)
          Set the points being drawn.
 void ClickablePointPlot.setPoints(DVectorSet x)
          Sets the points being drawn.
 

Constructors in org.strbio.util.graph with parameters of type DVectorSet
ClickablePointPlot(DVectorSet x, ClickablePointPlot.ClickListener y)
          initialize with a set of points.
PointColorPlot(DVectorSet x, ColorScale cs)
          Start with just a set of points to plot.
PointPlot(DVectorSet x)
          initialize with a set of points.