Files
wg_cpso/CaeGlobals/Selection/SelectionNodeInvert.cs

41 lines
1.3 KiB
C#
Raw Normal View History

2026-03-25 18:20:24 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Runtime.Serialization;
namespace CaeGlobals
{
[Serializable]
public class SelectionNodeInvert : SelectionNode, ISerializable
{
// Variables
// Properties
// Constructors
public SelectionNodeInvert()
: base(vtkSelectOperation.Invert)
{
}
public SelectionNodeInvert(SerializationInfo info, StreamingContext context)
: base(info, context)
{
}
// Methods
// ISerialization
public new void GetObjectData(SerializationInfo info, StreamingContext context)
{
base.GetObjectData(info, context);
// Using typeof() works also for null fields
//info.AddValue("_pickedPoint", _pickedPoint, typeof(double[]));
}
}
}