GetBottomRebar() public méthode

Get the geometry information of bottom rebar
public GetBottomRebar ( ) : RebarGeometry
Résultat RebarGeometry
        /// <summary>
        /// Create the rebar at the bottom of beam
        /// </summary>
        /// <returns>true if the creation is successful, otherwise false</returns>
        public bool FillBottomBars()
        {
            // get the geometry information of the bottom rebar
            RebarGeometry geomInfo = m_geometry.GetBottomRebar();

            // create the rebar
            Rebar rebar = PlaceRebars(m_bottomType, null, null, geomInfo,
                                      RebarHookOrientation.Left, RebarHookOrientation.Left);

            return(null != rebar);
        }