net.quies.math.plot
Class GraphDomain

java.lang.Object
  extended by net.quies.math.plot.GraphDomain

public final class GraphDomain
extends Object

Limits the domain for one or more graphs.

Since:
1.1
Author:
Pascal S. de Kloe
See Also:
Graph.setDomain(GraphDomain)

Constructor Summary
GraphDomain(BigDecimal a, BigDecimal b)
          Constructs a domain with interval [a, b).
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

GraphDomain

public GraphDomain(BigDecimal a,
                   BigDecimal b)
Constructs a domain with interval [a, b).

Parameters:
a - the low endpoint. Use null to leave it open, i.e. interval (∞, b).
b - the high endpoint. Use null to leave it open, i.e. interval [a, ∞).
Throws:
IndexOutOfBoundsException - if ab.
Since:
1.1