Files
wg_cpso/vtkControl/vtkMax/Actor/vtkMaxExtreemeNode.cs

41 lines
1.1 KiB
C#
Raw Permalink 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.Drawing;
using Kitware.VTK;
using CaeGlobals;
namespace vtkControl
{
public class vtkMaxExtreemeNode
{
// Variables
public int Id;
public double[] Coor;
public float Value;
// Constructors
public vtkMaxExtreemeNode()
{
Id = -1;
Coor = null;
Value = -1;
}
public vtkMaxExtreemeNode(vtkMaxExtreemeNode source)
{
Id = source.Id;
Coor = source.Coor;
Value = source.Value;
}
public vtkMaxExtreemeNode(int id, double[] coordinates, float value)
{
Id = id;
Coor = coordinates;
Value = value;
}
}
}