Skip to content

Commit

Permalink
doc
Browse files Browse the repository at this point in the history
Signed-off-by: Ian Chen <ichen@osrfoundation.org>
  • Loading branch information
iche033 committed Feb 3, 2021
1 parent 6f7f661 commit a4f25d0
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion include/ignition/rendering/base/BaseLightVisual.hh
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ namespace ignition
{
inline namespace IGNITION_RENDERING_VERSION_NAMESPACE {
//
/// \brief Base implementation of a light visual
template <class T>
class BaseLightVisual :
public virtual LightVisual,
Expand Down Expand Up @@ -62,18 +63,22 @@ namespace ignition
// Documentation inherited
public: virtual double OuterAngle() override;

/// \brief Draw the light visual using dynamic renderables
public: std::vector<ignition::math::Vector3d> CreateVisualLines();

// Documentation inherited
public: virtual LightVisualType Type() override;

/// \brief Type of light visual
protected: LightVisualType type = LightVisualType::LVT_EMPTY;

/// \brief Inner angle for spot lights
protected: double innerAngle = 0;

/// \brief Outer angle for spot lights
protected: double outerAngle = 0;

/// \brief Flag to indicate grid properties have changed
/// \brief Flag to indicate light properties have changed
protected: bool dirtyLightVisual = false;
};

Expand Down

0 comments on commit a4f25d0

Please sign in to comment.