affects method

  1. @override
bool affects(
  1. Range2D range
)
override

Whether this operation affects a specific region of the matrix defined by range.

Implementation

@override
bool affects(Range2D range) {
  return range.containsVector(position);
}