Uses of Class
net.sourceforge.webcompmath.draw.Drawable

Packages that use Drawable
net.sourceforge.webcompmath.draw   
net.sourceforge.webcompmath.draw.beans   
net.sourceforge.webcompmath.functions   
net.sourceforge.webcompmath.functions.beans   
 

Uses of Drawable in net.sourceforge.webcompmath.draw
 

Subclasses of Drawable in net.sourceforge.webcompmath.draw
 class Crosshair
          A Crosshair is a small cross, 15 pixels wide and high, that is drawn in a CoordinateRect at a specified point.
 class DraggablePoint
          A DraggablePoint can be added to a DisplayCanvas, where it appears as a small disk, square, or cross.
 class DrawBorder
          A DrawBorder object is just a simple border around the edges of its CoordinateRect, with a specified width, in pixels, and a specified color.
 class DrawGeometric
          A DrawGeometric object is a geometic figure such as a line or rectangle that can be drawn in a CoordinateRect.
 class DrawString
          A DrawString object displays a string, possibly multi-line, in a DisplayCanvas, inside the rectangular region of a CoordinateRect.
 class Graph1D
          A Graph1D represents the graph of a function of one variable, to be displayed in a given CoordinateRect.
 class Grid
          A Grid object draws a graph paper-like grid on a Canvas.
 class MouseTracker
          A MouseTracker can be added to a CoordinateRect in a DisplayCanvas to respond to user mouse actions in the rectangular area occupied by the CoordinateRect.
 class Panner
          When a Panner object is added to a CoordinateRect, it becomes possible to "grab" the coordinate rectangle and pan it (that is, slide it around by moving it with the mouse).
 class ParametricCurve
          A ParametricCurve is defined by two functions, x(t) and y(t) of a variable, t, for t in a specified interval.
 class RiemannArcLength
          A RiemannArcLength displays segments used in computing the length of a curve.
 class RiemannSlice
          A RiemannSlice shows one slice in a Riemann sum, useful for area and volume applets.
 class RiemannSumRects
          A RiemannSumRects calculates a Riemann sum for a function.
 class ScatterPlot
          A ScatterPlot graphs data taken from a DataTableInput.
 class Sequence
          A Sequence is like a Graph1D, except that only integer values of the independent variable are used, and discrete points are plotted.
 class TangentLine
          A Tangent line is a line that is tangent to the graph of a specified function of one argument at a specified value of its argument.
 class VectorField
          A VectorField displays lines or arrows on a grid of points where the direction and/or lengths are given by two functions (f1(x,y),f2(x,y)).
 class WcmAxes
          A set of horizontal and vertical axes that look OK and have reasonable, labeled tick marks.
 

Methods in net.sourceforge.webcompmath.draw that return Drawable
 Drawable CoordinateRect.getDrawable(int i)
          Get the i-th Drawable in this Rect, or null if i is less than zero or greater than or equal to the number of items.
 

Methods in net.sourceforge.webcompmath.draw with parameters of type Drawable
 void DisplayCanvas.add(Drawable d)
          Add the specified Drawable item to the first CoordinateRect in this DisplayCanvas.
 void CoordinateRect.add(Drawable d)
          Add a drawable item to the CoordinateRect.
 void DisplayCanvas.add(Drawable d, int coordRectIndex)
          Add a Drawable item to one of the CoordinateRects associated with the Canvas.
 void CoordinateRect.remove(Drawable d)
          Remove the given Drawable item, if present in this CoordinateRect.
 

Uses of Drawable in net.sourceforge.webcompmath.draw.beans
 

Subclasses of Drawable in net.sourceforge.webcompmath.draw.beans
 class WCMAxesBean
          This class is for use with GUI builders.
 class WCMAxisTickBean
          This class provides a convenient way to create a labeled tick mark for one of the axes.
 class WCMCrossHairBean
          This bean extends the CrossHair class (which extends DrawGeometric) by adding a convenience setter.
 class WCMDraggablePointBean
           
 class WCMDrawGeometricBean
          This bean extends DrawGeometric.
 class WCMDrawStringBean
          This class extends DrawString by providing set methods for up to 4 values to be used in a DrawString.
 class WCMGraph1DBean
          This class is for use with GUI builders.
 class WCMGridBean
          This class extends the Grid class.
 class WCMIntegralCurveBean
          An intergral curve draws a solution to a set of differential equations.
 class WCMMouseTrackerBean
           
 class WCMPannerBean
          JavaBean for Panner.
 class WCMParametricCurveBean
           
 class WCMPolarCurveBean
          This convenience class enables you to plot polar curves.
 class WCMRiemannArcLengthBean
           
 class WCMRiemannSliceBean
           
 class WCMRiemannSumRectsBean
           
 class WCMScatterPlotBean
          This bean graphs the points in a WCMDataTableInputBean.
 class WCMSequenceBean
           
 class WCMTangentLineBean
          This bean draws a tangent line to a function.
 class WCMVectorFieldBean
           
 

Uses of Drawable in net.sourceforge.webcompmath.functions
 

Subclasses of Drawable in net.sourceforge.webcompmath.functions
 class TableFunctionGraph
          A TableFunctionGraph is a Drawable object that can be added to a CoordinateRect (or DisplayCanvas).
 

Uses of Drawable in net.sourceforge.webcompmath.functions.beans
 

Subclasses of Drawable in net.sourceforge.webcompmath.functions.beans
 class WCMTableFunctionGraphBean
          This bean supports graphing of a table function and allows the definition points to be shown and manipulated.