LeftShoulderFuzzySet constructor

LeftShoulderFuzzySet([
  1. double left = 0,
  2. double midpoint = 0,
  3. double right = 0
])

Constructs a new left shoulder fuzzy set with the given values.

Implementation

LeftShoulderFuzzySet([double left = 0, this.midpoint = 0, double right = 0 ]):super( ( midpoint + left ) / 2 ){
	this.left = left;
	this.right = right;
}