Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Object Creation

To create a point pointer object, first load the brightsign/pointer module using the Require() method. Then create an instance of the point pointer class.

Code Block
languagejs
var pointerClass = require("@brightsign/pointer");
var pointer = new pointerClass();

...