The AzimuthCalculator custom transformer uses 6 transformers to calculate the angle (acos((&acX2-;&acX1;)/sqrt(pow((&acY2-;&acY1;),2) + pow((&acX2-;&acX1;),2)))* (180/3.1415926535897932), and normalize it, and then tests which quadrant it's in and so as to calculate the azimuth as either 90-angle or 450-angle.
Is there any reason not to simply use 90-@radToDeg(@atan2(@Value(_!y1)-@Value(_!y0),@Value(_!x1)-@Value(_!x0)))?