S2Cell.getDistance - multiple declarations

Function S2Cell.getDistance

Returns the distance from the cell to the given point. Returns zero if the point is inside the cell.

s2.s1chord_angle.S1ChordAngle getDistance (
  in const(s2.util.math.vector.Vector!(double,3L)) target
) const;

Function S2Cell.getDistance

Returns the minimum distance from the cell to the given edge AB. Returns zero if the edge intersects the cell interior.

s2.s1chord_angle.S1ChordAngle getDistance (
  in const(s2.util.math.vector.Vector!(double,3L)) a,
  in const(s2.util.math.vector.Vector!(double,3L)) b
) const;

Function S2Cell.getDistance

Returns the distance from the cell to the given cell. Returns zero if one cell contains the other.

s2.s1chord_angle.S1ChordAngle getDistance (
  in const(S2Cell) target
) const;