Sets the 4th dimension (value) of the vertices. The 'value' property is an array that may be specified as a tuple, list, numpy array, or pandas Series Returns ------- numpy.ndarray
(self)
| 1136 | |
| 1137 | @property |
| 1138 | def value(self): |
| 1139 | """ |
| 1140 | Sets the 4th dimension (value) of the vertices. |
| 1141 | |
| 1142 | The 'value' property is an array that may be specified as a tuple, |
| 1143 | list, numpy array, or pandas Series |
| 1144 | |
| 1145 | Returns |
| 1146 | ------- |
| 1147 | numpy.ndarray |
| 1148 | """ |
| 1149 | return self["value"] |
| 1150 | |
| 1151 | @value.setter |
| 1152 | def value(self, val): |
no outgoing calls
no test coverage detected