Files
RevitArchive/RevitJigSample/ExternalGraphics/MeshInfo.cs

20 lines
463 B
C#
Raw Normal View History

2026-02-23 14:58:05 +08:00
using Autodesk.Revit.DB;
namespace RevitJigSample.ExternalGraphics
{
public class MeshInfo
{
public readonly ColorWithTransparency ColorWithTransparency;
public readonly Mesh Mesh;
public readonly XYZ Normal;
public MeshInfo(Mesh mesh, XYZ normal, ColorWithTransparency color)
{
this.Mesh = mesh;
this.Normal = normal;
this.ColorWithTransparency = color;
}
}
}