coordinates.coordinate_systems.EllipticCylindricalCoordinateSystem.axes_complement#
- EllipticCylindricalCoordinateSystem.axes_complement(axes: Sequence[str]) List[str] #
Return all axes in the coordinate system that are not present in axes.
- Parameters:
- Returns:
Canonically ordered axes not included in axes.
- Return type:
Examples
>>> from pymetric.coordinates import SphericalCoordinateSystem >>> cs = SphericalCoordinateSystem() >>> cs.axes ['r', 'theta', 'phi'] >>> cs.axes_complement(["theta"]) ['r', 'phi']