add method

void add(
  1. Point pointItem
)

Adds an item to the PointList object.

param pointItem Point item to add. throws FaceException An error has occurred during Face Library execution.

Implementation

void add(Point pointItem) {
  var err = faceSDK.id3FacePointList_Add(_pHandle.value, pointItem.handle);
  if (err != FaceError.success.value) {
    throw FaceException(err);
  }
}