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

29 lines
719 B
C#

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