manhattanLength method

  1. @override
double manhattanLength()
override

Implementation

@override
double manhattanLength() {
  return (x.abs()+y.abs()+z.abs()+w.abs()).toDouble();
}