TrackedFace.fromHandle constructor

TrackedFace.fromHandle(
  1. Pointer<id3TrackedFace> handle
)

Creates a new instance of the TrackedFace class.

param handle Handle to the TrackedFace. throws FaceException An error has occurred during Face Library execution.

Implementation

TrackedFace.fromHandle(Pointer<id3TrackedFace> handle) {
  _pHandle = calloc();
  _pHandle.value = handle;
  _disposable = false;
}