Files
wg_cpso/vtkControl/Extensions.cs

19 lines
348 B
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.Drawing;
using Kitware.VTK;
namespace vtkControl
{
public static class ExtensionMethods
{
public static Color Black(this vtkProperty prop)
{
return Color.Black;
}
}
}