C# Class RhinoCyclesCore.Measurement

Very simple rolling average measuring. This approximates average over the last thousand measurements. Use when there is no need for exact average.
显示文件 Open project: mcneel/RhinoCycles

Public Methods

Method Description
Add ( double value ) : void

Add new value to be averaged in. Might update Min and/or Max. Increases Count

Measurement ( )

Constructor

Reset ( ) : void

Reset the measurements.

Method Details

Add() public method

Add new value to be averaged in. Might update Min and/or Max. Increases Count
public Add ( double value ) : void
value double The value to be averaged in.
return void

Measurement() public method

Constructor
public Measurement ( )

Reset() public method

Reset the measurements.
public Reset ( ) : void
return void