public Vector(Azimuth direction, Double length) : this() { x = length * Math.Sin(direction.getAsRadians()); y = length * Math.Cos(direction.getAsRadians()); z = null; }