ColorPoint

The ColorPoint class, extends Point.

ColorPoint()

Extends Point

Example
let cp = new ColorPoint(25, 8, 'green');
console.log(cp instanceof ColorPoint); // true
console.log(cp instanceof Point); // true
Instance Members
toString ()

Point

A Point class, declared using the declaration-form.

Point()
Example
let p = new ColorPoint(25, 8, 'green');
console.log(p instanceof Point); // true
Instance Members
toString ()