Exemplo n.º 1
0
 /// <summary>
 /// Method for creating a specific model according to data sets
 /// </summary>
 /// <param name="materials">Set of materials</param>
 /// <param name="properties">Set of properties</param>
 /// <param name="nodes">Set of nodes</param>
 /// <param name="elements">Set of elements</param>
 /// <param name="results">Set of results</param>
 /// <returns>Specific model</returns>
 public static Model CreateBySets(MaterialSet materials, PropertySet properties, NodeSet nodes, ElementSet elements, ResultSet results)
 {
     // Return new model
     return(new Model(materials, properties, nodes, elements, results));
 }