constStartAngle method

void constStartAngle(
  1. num startAngle
)

Defines the Pie.startAngle-accessor as a constant function that always returns the specified value.

Implementation

void constStartAngle(num startAngle) {
  this.startAngle = constant(startAngle);
}