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.
Afficher le fichier Open project: mcneel/RhinoCycles

Méthodes publiques

Méthode 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 méthode

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.
Résultat void

Measurement() public méthode

Constructor
public Measurement ( )

Reset() public méthode

Reset the measurements.
public Reset ( ) : void
Résultat void