norm method

Geometry norm()

Creates a new Geometry which is a normalized copy of this Geometry.

@return a normalized copy of this geometry. @see #normalize()

Implementation

Geometry norm() {
  Geometry _copy = copy();
  _copy.normalize();
  return _copy;
}