isLookingLeft function

bool isLookingLeft(
  1. Face face
)

Implementation

bool isLookingLeft(Face face) {
  if (face.headEulerAngleY! > 24) {
    return true;
  }
  return false;
}