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