[][src]Trait civil::structural::beams::Beam

pub trait Beam {
    fn area(&self) -> f32;
fn moment_of_inertia(&self) -> f32;
fn section_modulus(&self) -> f32; fn radius_of_gyration(&self) -> f32 { ... } }

This trait gives us a common interface to the formulas used for determining the properties of beams which vary with a particular beam cross section.

Required methods

fn area(&self) -> f32

fn moment_of_inertia(&self) -> f32

fn section_modulus(&self) -> f32

Loading content...

Provided methods

fn radius_of_gyration(&self) -> f32

Loading content...

Implementors

impl Beam for PolygonalBeam[src]

Loading content...