csUSDomainPlugin.Effects.Util.DirectionTool.GetAngle C# (CSharp) Method

GetAngle() public method

public GetAngle ( MapPoint p1, MapPoint p2 ) : double
p1 MapPoint
p2 MapPoint
return double
        public double GetAngle(MapPoint p1, MapPoint p2)
        {
            return GetAngle(p1.X, p1.Y, p2.X, p2.Y);
        }

Same methods

DirectionTool::GetAngle ( double px1, double py1, double px2, double py2 ) : double