Exemplo n.º 1
0
 public BoundaryCondition(BoundaryConditionLocation location, BoundaryConditionType type, Func <double, double> value)
 {
     Value    = value;
     Location = location;
     Type     = type;
 }
Exemplo n.º 2
0
 public BoundaryCondition(BoundaryConditionLocation location, BoundaryConditionType type)
     : this(location, type, x => 0)
 {
 }