diff --git a/src/de/jtem/halfedge/util/HalfEdgeUtils.java b/src/de/jtem/halfedge/util/HalfEdgeUtils.java index 0b2bb66dd3cace5f971325c78b96626afdc966de..1fac7c7258d25d46f3d390373534eab0daf9e90a 100644 --- a/src/de/jtem/halfedge/util/HalfEdgeUtils.java +++ b/src/de/jtem/halfedge/util/HalfEdgeUtils.java @@ -687,8 +687,8 @@ public final class HalfEdgeUtils { * Uses {@link #boundaryEdges(Face)}, so the preconditions explained there apply. * @param the edge type * @param the face type - * @param leftFace the left face - * @param rightFace the right face + * @param leftFace the left face (must not be null) + * @param rightFace the right face (can be null) * @return an edge with those faces as left and right face, or {@code null} if no such edge exists. */ static public , F extends Face> E findEdgeBetweenFaces(F leftFace, F rightFace) { @@ -706,8 +706,8 @@ public final class HalfEdgeUtils { * Uses {@link #boundaryEdges(Face)}, so the preconditions explained there apply. * @param the edge type * @param the face type - * @param leftFace the left face - * @param rightFace the right face + * @param leftFace the left face (must not be null) + * @param rightFace the right face (can be null) * @return a list of edges with those faces as left and right face, or an empty list if no such edge exists. */ static public , F extends Face> List findEdgesBetweenFaces(F leftFace, F rightFace) {