23 lines
453 B
C#
23 lines
453 B
C#
|
|
using CaeMesh;
|
|||
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
|
|||
|
|
namespace RBFMorphing
|
|||
|
|
{
|
|||
|
|
[Serializable]
|
|||
|
|
public class DummyClass: AbstractClass
|
|||
|
|
{
|
|||
|
|
public DummyClass() : base(EnumMorphMethod.Dummy)
|
|||
|
|
{
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
public override List<FeNode> GetNodes()
|
|||
|
|
{
|
|||
|
|
throw new NotImplementedException();
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
public override int[] Labels => null;
|
|||
|
|
|
|||
|
|
public override int Length => 100;
|
|||
|
|
}
|
|||
|
|
}
|