net.quies.math.plot
Class GraphDomain
java.lang.Object
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)
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
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 a ≥ b.- Since:
- 1.1