20 lines
463 B
C#
20 lines
463 B
C#
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;
|
|
}
|
|
}
|
|
} |