Groups of nodes. Each group is defined by an array with the indices of the nodes it contains. Multiple groups can be specified. The 'groups' property is an info array that may be specified as: * a 2D list where: The 'groups[i][j]' property is a num
(self)
| 136 | |
| 137 | @property |
| 138 | def groups(self): |
| 139 | """ |
| 140 | Groups of nodes. Each group is defined by an array with the |
| 141 | indices of the nodes it contains. Multiple groups can be |
| 142 | specified. |
| 143 | |
| 144 | The 'groups' property is an info array that may be specified as: |
| 145 | * a 2D list where: |
| 146 | The 'groups[i][j]' property is a number and may be specified as: |
| 147 | - An int or float |
| 148 | |
| 149 | Returns |
| 150 | ------- |
| 151 | list |
| 152 | """ |
| 153 | return self["groups"] |
| 154 | |
| 155 | @groups.setter |
| 156 | def groups(self, val): |
no outgoing calls