dataType CartesianPoint
extends Point
A spatial coordinate in a Cartesian coordinate space. Any associated CoordSpace MUST be a CartesianCoordSpace. If no CoordSpace is provided, a Standard Cartesian CoordSpace is assumed. Values for unused/undefined dimensions need not be provided.
classDiagram
class CartesianPoint{
ivoa:Quantity x
ivoa:Quantity y
ivoa:Quantity z
}
CartesianPoint --|> Point
Point --|> Coordinate
link Point "../Point"
link Coordinate "../Coordinate"
Members
name | type | mult | description |
---|---|---|---|
x | ivoa:Quantity | optional | The coordinate value along the 'X' axis. |
y | ivoa:Quantity | optional | The coordinate value along the 'Y' axis. |
z | ivoa:Quantity | optional | The coordinate value along the 'Z' axis. |