Esempio n. 1
0
 public DigitzerParameters(DigitizingMethods method, double maxThreshold, double minThreshold, int DigitizerLevels, bool roundResults)
 {
     DigitizingMethod = method;
     MaximumThreashold = maxThreshold;
     MinimumThreshold = minThreshold;
     RoundToNearsetInteger = roundResults;
 }
Esempio n. 2
0
 public DigitzerParameters()
 {
     DigitizingMethod = DigitizingMethods.Absolute;
     MaximumThreashold = 0;
     MinimumThreshold = 0;
     DigitizerLevels = Convert.ToInt32((Math.Pow(2, 14) - 1));
     RoundToNearsetInteger = true;
 }