Kinect.FacetrackingManager.GetUserFaceVertices C# (CSharp) Method

GetUserFaceVertices() public method

Gets all face model vertices for the specified user.
public GetUserFaceVertices ( long userId, Vector3 &avVertices ) : bool
userId long User ID
avVertices Vector3 Reference to array of vertices, to get the result.
return bool
        public bool GetUserFaceVertices(long userId, ref Vector3[] avVertices)
        {
            if (sensorData != null && sensorData.sensorInterface != null)
            {
                bool bGotIt = sensorData.sensorInterface.GetFaceModelVertices(userId, ref avVertices);
                return bGotIt;
            }

            return false;
        }