Cairo.Distance.Distance C# (CSharp) Method

Distance() public method

public Distance ( double dx, double dy )
dx double
dy double
        public Distance(double dx, double dy)
        {
            this.dx = dx;
            this.dy = dy;
        }
Distance