1b31dc18e8
* fixes * Generate empty constructors for testing
11 lines
405 B
C#
11 lines
405 B
C#
namespace Autodesk.Revit.DB;
|
|
|
|
public partial class TriangulationInterfaceForTriangulatedSolidOrShell : Autodesk.Revit.DB.TriangulationInterface
|
|
{
|
|
public TriangulationInterfaceForTriangulatedSolidOrShell() { }
|
|
|
|
public TriangulationInterfaceForTriangulatedSolidOrShell(
|
|
Autodesk.Revit.DB.TriangulatedSolidOrShell externalTriangulatedSolidOrShell
|
|
) => throw new System.NotImplementedException();
|
|
}
|