public Vertex(Vertex a) { X = a.X; Y = a.Y; Z = a.Z; }
public static double norm(Vertex a) { return(Math.Sqrt(a.X * a.X + a.Y * a.Y + a.Z * a.Z)); }