A two dimensional array of y coordinates at each carpet point. The 'b' property is an array that may be specified as a tuple, list, numpy array, or pandas Series Returns ------- numpy.ndarray
(self)
| 126 | |
| 127 | @property |
| 128 | def b(self): |
| 129 | """ |
| 130 | A two dimensional array of y coordinates at each carpet point. |
| 131 | |
| 132 | The 'b' property is an array that may be specified as a tuple, |
| 133 | list, numpy array, or pandas Series |
| 134 | |
| 135 | Returns |
| 136 | ------- |
| 137 | numpy.ndarray |
| 138 | """ |
| 139 | return self["b"] |
| 140 | |
| 141 | @b.setter |
| 142 | def b(self, val): |
no outgoing calls
no test coverage detected