The coordinate map (deprecated, use ``cmaps[0]``).
(self)
| 299 | |
| 300 | @property |
| 301 | def cmap(self) -> _CoordinateElement: |
| 302 | """The coordinate map (deprecated, use ``cmaps[0]``).""" |
| 303 | warnings.warn( |
| 304 | "cmap is deprecated. Use cmaps[0] instead.", |
| 305 | DeprecationWarning, |
| 306 | stacklevel=2, |
| 307 | ) |
| 308 | return self.cmaps[0] |
| 309 | |
| 310 | @property |
| 311 | def dim(self): |
nothing calls this directly
no outgoing calls
no test coverage detected