Beispiel #1
0
 public Identity(string email, FacialFeatures facialFeatures)
 {
     Email          = email;
     FacialFeatures = facialFeatures;
 }
Beispiel #2
0
 public static bool AreSameFace(FacialFeatures faceA, FacialFeatures faceB)
 {
     return(faceA.Equals(faceB));
 }
Beispiel #3
0
 protected bool Equals(FacialFeatures other)
 {
     return(EyeColor == other.EyeColor && PhiltrumWidth.Equals(other.PhiltrumWidth));
 }