diff --git a/Comparison/src/main/java/cz/fidentis/analyst/face/HumanFace.java b/Comparison/src/main/java/cz/fidentis/analyst/face/HumanFace.java
index 60c2644b97cd410cbbe9c4a3b4657ddd1fba803f..b9163f6e7b576e71085b262013bacb65cace1d34 100644
--- a/Comparison/src/main/java/cz/fidentis/analyst/face/HumanFace.java
+++ b/Comparison/src/main/java/cz/fidentis/analyst/face/HumanFace.java
@@ -225,6 +225,18 @@ public class HumanFace implements MeshListener, Serializable {
         return name;
     }
     
+    /**
+     * Returns short name of the face without its path in the name.
+     * @return short name of the face without its path in the name
+     */
+    public String getShortName() {
+        String name = this.getName();
+        int from = name.length() - 1;
+        while (Character.valueOf('\\').compareTo(name.charAt(from)) != 0) {from--;}
+        name = name.substring(from + 1);
+        return name;
+    }
+    
     /**
      * Returns already computed k-d tree of the triangular mesh or {@code null}.
      * @return Already computed k-d tree of the triangular mesh or {@code null}