FacePad.fromHandle constructor

FacePad.fromHandle(
  1. Pointer<id3FacePad> handle
)

Creates a new instance of the FacePad class.

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

Implementation

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