Esempio n. 1
0
 public Properties GetTransferFunctionProperties()
 {
     Properties tfProperties = new Properties();
     foreach (String name in this.Keys)
     {
         if (name.IndexOf("transferFunction") != -1)
         {
             tfProperties.SetProperty(name, this.Get(name));
         }
     }
     return tfProperties;
 }
Esempio n. 2
0
 /// <summary>
 /// Returns the properties of this function 
 /// </summary>
 /// <returns>properties of this function</returns>
 public Properties GetProperties()
 {
     Properties properties = new Properties();
     properties.SetProperty("transferFunction.yHigh", YHigh);
     properties.SetProperty("transferFunction.yLow", YLow);
     return properties;
 }
Esempio n. 3
0
 /// <summary>
 /// Returns the properties of this function 
 /// </summary>
 /// <returns>properties of this function</returns>
 public Properties GetProperties()
 {
     Properties properties = new Properties();
     properties.SetProperty("transferFunction", TransferFunctionType.SGN.GetTypeCode());
     return properties;
 }