WPILibC++ 2024.3.2
frc::MechanismLigament2d Class Reference

Ligament node on a Mechanism2d. More...

#include <frc/smartdashboard/MechanismLigament2d.h>

Inheritance diagram for frc::MechanismLigament2d:
frc::MechanismObject2d

Public Member Functions

 MechanismLigament2d (std::string_view name, double length, units::degree_t angle, double lineWidth=6, const frc::Color8Bit &color={235, 137, 52})
 
void SetColor (const Color8Bit &color)
 Set the ligament color. More...
 
Color8Bit GetColor ()
 Get the ligament color. More...
 
void SetLength (double length)
 Set the ligament's length. More...
 
double GetLength ()
 Get the ligament length. More...
 
void SetAngle (units::degree_t angle)
 Set the ligament's angle relative to its parent. More...
 
double GetAngle ()
 Get the ligament's angle relative to its parent. More...
 
void SetLineWeight (double lineWidth)
 Set the line thickness. More...
 
double GetLineWeight ()
 Get the line thickness. More...
 
- Public Member Functions inherited from frc::MechanismObject2d
virtual ~MechanismObject2d ()=default
 
const std::string & GetName () const
 Retrieve the object's name. More...
 
template<typename T , typename... Args>
requires std::convertible_to<T*, MechanismObject2d*>
T * Append (std::string_view name, Args &&... args)
 Append a Mechanism object that is based on this one. More...
 

Protected Member Functions

void UpdateEntries (std::shared_ptr< nt::NetworkTable > table) override
 Update all entries with new ones from a new table. More...
 
- Protected Member Functions inherited from frc::MechanismObject2d
 MechanismObject2d (std::string_view name)
 
virtual void UpdateEntries (std::shared_ptr< nt::NetworkTable > table)=0
 Update all entries with new ones from a new table. More...
 

Additional Inherited Members

- Protected Attributes inherited from frc::MechanismObject2d
wpi::mutex m_mutex
 

Detailed Description

Ligament node on a Mechanism2d.

A ligament can have its length changed (like an elevator) or angle changed, like an arm.

See also
Mechanism2d

Constructor & Destructor Documentation

◆ MechanismLigament2d()

frc::MechanismLigament2d::MechanismLigament2d ( std::string_view  name,
double  length,
units::degree_t  angle,
double  lineWidth = 6,
const frc::Color8Bit color = {235, 137, 52} 
)

Member Function Documentation

◆ GetAngle()

double frc::MechanismLigament2d::GetAngle ( )

Get the ligament's angle relative to its parent.

Returns
the angle

◆ GetColor()

Color8Bit frc::MechanismLigament2d::GetColor ( )

Get the ligament color.

Returns
the color of the line

◆ GetLength()

double frc::MechanismLigament2d::GetLength ( )

Get the ligament length.

Returns
the line length

◆ GetLineWeight()

double frc::MechanismLigament2d::GetLineWeight ( )

Get the line thickness.

Returns
the line thickness

◆ SetAngle()

void frc::MechanismLigament2d::SetAngle ( units::degree_t  angle)

Set the ligament's angle relative to its parent.

Parameters
anglethe angle

◆ SetColor()

void frc::MechanismLigament2d::SetColor ( const Color8Bit color)

Set the ligament color.

Parameters
colorthe color of the line

◆ SetLength()

void frc::MechanismLigament2d::SetLength ( double  length)

Set the ligament's length.

Parameters
lengththe line length

◆ SetLineWeight()

void frc::MechanismLigament2d::SetLineWeight ( double  lineWidth)

Set the line thickness.

Parameters
lineWidththe line thickness

◆ UpdateEntries()

void frc::MechanismLigament2d::UpdateEntries ( std::shared_ptr< nt::NetworkTable table)
overrideprotectedvirtual

Update all entries with new ones from a new table.

Parameters
tablethe new table.

Implements frc::MechanismObject2d.


The documentation for this class was generated from the following file: