Method: Function#remove

Defined in:
lib/rfuzzy/function.rb

#remove(*points) ⇒ Object

Removes points from the function. Usage: .remove(Point *points)



101
102
103
104
105
# File 'lib/rfuzzy/function.rb', line 101

def remove(*points)
	points.each do |p|
		@points.delete p
	end
end