C# Class Revit.Samples.DirectionCalculation.FindSouthFacingWalls

Inheritance: FindSouthFacingBase
ファイルを表示 Open project: AMEE/revit

Protected Methods

Method Description
CollectExteriorWalls ( ) : IEnumerable

Finds all exterior walls in the active document.

Execute ( bool useProjectLocationNorth ) : void

The implementation of the FindSouthFacingWalls command.

GetExteriorWallDirection ( Wall wall ) : XYZ

Obtains the outward direction of the exterior wall.

IsExterior ( ElementType wallType ) : bool

Test method to see if the wall type is exterior.

Method Details

CollectExteriorWalls() protected method

Finds all exterior walls in the active document.
protected CollectExteriorWalls ( ) : IEnumerable
return IEnumerable

Execute() protected method

The implementation of the FindSouthFacingWalls command.
protected Execute ( bool useProjectLocationNorth ) : void
useProjectLocationNorth bool true to use the active project location's north/south direction. /// false to use the default coordinate system's north/south (Y-axis).
return void

GetExteriorWallDirection() protected method

Obtains the outward direction of the exterior wall.
protected GetExteriorWallDirection ( Wall wall ) : XYZ
wall Wall The wall.
return XYZ

IsExterior() protected method

Test method to see if the wall type is exterior.
protected IsExterior ( ElementType wallType ) : bool
wallType ElementType The wall type.
return bool