equals method

bool equals(
  1. dynamic v
)

Implementation

bool equals(v) {
  return ((v.x == x) && (v.y == y) && (v.z == z));
}