Indicates whether or not this matrix can be mutated. If false, any method that contains "mutate" will not work. By default, this returns true @return true if the matrix supports being altered, false other wise.
()
| 137 | * other wise. |
| 138 | */ |
| 139 | public boolean canBeMutated() |
| 140 | { |
| 141 | return true; |
| 142 | } |
| 143 | |
| 144 | /** |
| 145 | * Returns an appropriate matrix to use for some operation A <i>op</i> B, |