Point.attr()

The Point.attr() method adds an attribute to the point, and returns the original point. Setting the third parameter to true will replace the value of the attribute instead of adding it.

Signature

Javascript
Point point.attr(
  string name,
  mixed value,
  bool overwrite = false
)

If the third parameter is set to true it will call this.attributes.set() instead, thereby overwriting the value of the attribute.

TIP|

This method is chainable as it returns the Point object

Example

FreeSewing rocks

Notes

See Using Attributes for information about custom Attributes that can be used with Points.