29 lines
719 B
C#
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)
|
|||
|
|
{
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
}
|