PointList.fromHandle constructor

PointList.fromHandle(
  1. Pointer<id3FacePointList> handle
)

Creates a new instance of the PointList class.

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

Implementation

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