Files
wg_cpso/CaeMesh/Elements/1D/FeElement1D.cs
2026-03-25 18:20:24 +08:00

28 lines
744 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CaeMesh
{
[Serializable]
public abstract class FeElement1D : FeElement
{
// Properties
// Constructors
public FeElement1D(int id, int[] nodeIds)
: base(id, nodeIds)
{
}
public FeElement1D(int id, int partId, int[] nodeIds)
: base(id, partId, nodeIds)
{
}
}
}