1b31dc18e8
* fixes * Generate empty constructors for testing
14 lines
535 B
C#
14 lines
535 B
C#
namespace Autodesk.Revit.DB;
|
|
|
|
public partial class ElementIntersectsSolidFilter : Autodesk.Revit.DB.ElementIntersectsFilter
|
|
{
|
|
public ElementIntersectsSolidFilter() { }
|
|
|
|
public ElementIntersectsSolidFilter(Autodesk.Revit.DB.Solid solid, System.Boolean inverted) =>
|
|
throw new System.NotImplementedException();
|
|
|
|
public ElementIntersectsSolidFilter(Autodesk.Revit.DB.Solid solid) => throw new System.NotImplementedException();
|
|
|
|
public virtual Autodesk.Revit.DB.Solid GetSolid() => throw new System.NotImplementedException();
|
|
}
|