operator == method

  1. @override
bool operator ==(
  1. dynamic other
)
override

Returns true if the vectors are the same ( or close with 1e-9 relative )

Implementation

@override
bool operator ==(dynamic other) {
  return this._matrix == other;
}