#include "BiPatch/Vector.h" #include namespace BiPatch { Vector Vector::normal() const { Vector v1(*this); v1.normalize(); return v1; } };