RVTDocs.com
Namespace: Autodesk.Revit.DB

CylindricalFace

Class
Description:
A cylindrical face of a 3d solid or open shell.
Remarks:
For details on the parameterization, refer to the documentation for CylindricalSurface.
Inheritance Hierarchy:
System.Object
  Autodesk.Revit.DB.APIObject
    Autodesk.Revit.DB.GeometryObject
      Autodesk.Revit.DB.Face
        Autodesk.Revit.DB.CylindricalFace
Syntax
public class CylindricalFace : Face
Examples
private void GetCylindricalFaceInfo(Face face)
{
    CylindricalFace cylindricalFace = face as CylindricalFace;
    if (null != cylindricalFace)
    {
       XYZ axis = cylindricalFace.Axis;
       XYZ origin = cylindricalFace.Origin;
       XYZ radius = cylindricalFace.get_Radius(0);
    }
}