mirror of
https://github.com/overte-org/overte.git
synced 2025-07-15 04:56:46 +02:00
25 lines
756 B
C
25 lines
756 B
C
//
|
|
// FaceshiftConstants.h
|
|
//
|
|
//
|
|
// Created by Clement on 1/23/15.
|
|
// Copyright 2015 High Fidelity, Inc.
|
|
//
|
|
// Distributed under the Apache License, Version 2.0.
|
|
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
|
//
|
|
|
|
#ifndef hifi_FaceshiftConstants_h
|
|
#define hifi_FaceshiftConstants_h
|
|
|
|
/// The names of the blendshapes expected by Faceshift, terminated with an empty string.
|
|
extern const char* FACESHIFT_BLENDSHAPES[];
|
|
/// The size of FACESHIFT_BLENDSHAPES
|
|
extern const int NUM_FACESHIFT_BLENDSHAPES;
|
|
// Eyes and Brows indices
|
|
extern const int EYE_BLINK_INDICES[];
|
|
extern const int EYE_OPEN_INDICES[];
|
|
extern const int BROWS_U_INDICES[];
|
|
extern const int EYE_SQUINT_INDICES[];
|
|
|
|
#endif // hifi_FaceshiftConstants_h
|