operator == method

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

Check if two quad are the same.

Implementation

@override
bool operator ==(Object other) =>
    (other is Quad) &&
    (_point3 == other._point3) &&
    (_point2 == other._point2) &&
    (_point1 == other._point1) &&
    (_point0 == other._point0);