Skip to main content

EquidistanceInPoint

This function returns the equidistance points in triangle.

All points are inside the triangle

Interface

INTERFACE
MODULE PURE FUNCTION EquidistanceInPoint_Quadrangle(order, xij) RESULT(ans)
INTEGER(I4B), INTENT(IN) :: order
!! order
REAL(DFP), OPTIONAL, INTENT(IN) :: xij(:, :)
!! coordinates of point 1 and point 2 in $x_{iJ}$ format
!! number of rows = nsd
!! number of cols = 3
REAL(DFP), ALLOCATABLE :: ans(:, :)
!! returned coordinates in $x_{iJ}$ format
END FUNCTION EquidistanceInPoint_Quadrangle
END INTERFACE