class mrpt::viz::CArrow
Overview
A 3D arrow.
See also:
#include <mrpt/viz/CArrow.h> class CArrow: public mrpt::viz::CVisualObject, public mrpt::viz::VisualObjectParams_Triangles { public: // construction CArrow( float x0 = 0, float y0 = 0, float z0 = 0, float x1 = 1, float y1 = 1, float z1 = 1, float headRatio = 0.2f, float smallRadius = 0.05f, float largeRadius = 0.2f ); CArrow( const mrpt::math::TPoint3Df& from, const mrpt::math::TPoint3Df& to, float headRatio = 0.2f, float smallRadius = 0.05f, float largeRadius = 0.2f ); // methods void setName(const std::string& n); std::string getName() const; bool isVisible() const; void setVisibility(bool visible = true); bool castShadows() const; void castShadows(bool doCast = true); void enableShowName(bool showName = true); bool isShowNameEnabled() const; CVisualObject& setPose(const mrpt::poses::CPose3D& o); CVisualObject& setPose(const mrpt::poses::CPose2D& o); CVisualObject& setPose(const mrpt::math::TPose3D& o); CVisualObject& setPose(const mrpt::math::TPose2D& o); CVisualObject& setPose(const mrpt::poses::CPoint3D& o); CVisualObject& setPose(const mrpt::poses::CPoint2D& o); mrpt::math::TPose3D getPose() const; mrpt::poses::CPose3D getCPose() const; CVisualObject& setLocation(double x, double y, double z); CVisualObject& setLocation(const mrpt::math::TPoint3D& p); mrpt::img::TColorf getColor() const; mrpt::img::TColor getColor_u8() const; CVisualObject& setColorA(const float a); virtual CVisualObject& setColorA_u8(const uint8_t a); float materialShininess() const; void materialShininess(float shininess); CVisualObject& setScale(float s); CVisualObject& setScale(float sx, float sy, float sz); float getScaleX() const; float getScaleY() const; float getScaleZ() const; CVisualObject& setColor(const mrpt::img::TColorf& c); CVisualObject& setColor(float R, float G, float B, float A = 1); CVisualObject& setColor_u8(uint8_t R, uint8_t G, uint8_t B, uint8_t A = 255); void setArrowEnds( float x0, float y0, float z0, float x1, float y1, float z1 ); template <typename Vector3Like> void setArrowEnds( const Vector3Like& start, const Vector3Like& end ); void setHeadRatio(float rat); void setSmallRadius(float rat); void setLargeRadius(float rat); void setSlicesCount(uint32_t slices); uint32_t getSlicesCount() const; virtual mrpt::math::TBoundingBoxf internalBoundingBoxLocal() const; virtual bool cullElegible() const; virtual void toYAMLMap(mrpt::containers::yaml& propertiesMap) const; virtual bool isCompositeObject() const; void notifyChange() const; bool hasToUpdateBuffers() const; virtual bool traceRay(const mrpt::poses::CPose3D& o, double& dist) const; auto getBoundingBox() const; auto getBoundingBoxLocal() const; virtual mrpt::math::TPoint3Df getLocalRepresentativePoint() const; void setLocalRepresentativePoint(const mrpt::math::TPoint3Df& p); mrpt::viz::CText& labelObject() const; void cullFaces(const TCullFace& cf); };
Inherited Members
public: // typedefs typedef std::shared_ptr<CObject> Ptr; typedef std::shared_ptr<const CObject> ConstPtr; typedef std::unique_ptr<CObject> UniquePtr; typedef std::unique_ptr<const CObject> ConstUniquePtr; // structs struct OutdatedState; struct State; // methods const auto& shaderTrianglesBuffer() const; auto& shaderTrianglesBufferMutex() const; virtual CVisualObject& setColor_u8(const mrpt::img::TColor& c); bool isLightEnabled() const; void enableLight(bool enable = true); TCullFace cullFaces() const; void notifyBBoxChange() const; auto getBoundingBoxLocalf() const; static const mrpt::rtti::TRuntimeClassId& GetRuntimeClassIdStatic();
Construction
CArrow( float x0 = 0, float y0 = 0, float z0 = 0, float x1 = 1, float y1 = 1, float z1 = 1, float headRatio = 0.2f, float smallRadius = 0.05f, float largeRadius = 0.2f )
Constructor.
Methods
void setName(const std::string& n)
Changes the name of the object.
std::string getName() const
Returns the name of the object.
bool isVisible() const
Is the object visible?
See also:
void setVisibility(bool visible = true)
Set object visibility (default=true)
See also:
bool castShadows() const
Does the object cast shadows? (default=true)
void castShadows(bool doCast = true)
Enable/disable casting shadows by this object (default=true)
void enableShowName(bool showName = true)
Enables or disables showing the name of the object as a label when rendering.
bool isShowNameEnabled() const
See also:
CVisualObject& setPose(const mrpt::poses::CPose3D& o)
Defines the SE(3) (pose=translation+rotation) of the object with respect to its parent.
CVisualObject& setPose(const mrpt::poses::CPose2D& o)
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
CVisualObject& setPose(const mrpt::math::TPose3D& o)
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
CVisualObject& setPose(const mrpt::math::TPose2D& o)
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
CVisualObject& setPose(const mrpt::poses::CPoint3D& o)
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
CVisualObject& setPose(const mrpt::poses::CPoint2D& o)
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
mrpt::math::TPose3D getPose() const
Returns the 3D pose of the object as TPose3D.
mrpt::poses::CPose3D getCPose() const
Returns a const ref to the 3D pose of the object as mrpt::poses::CPose3D (which explicitly contains the 3x3 rotation matrix)
CVisualObject& setLocation(double x, double y, double z)
Changes the location of the object, keeping untouched the orientation.
Returns:
a ref to this
CVisualObject& setLocation(const mrpt::math::TPoint3D& p)
Changes the location of the object, keeping untouched the orientation.
Returns:
a ref to this
mrpt::img::TColorf getColor() const
Get color components as floats in the range [0,1].
mrpt::img::TColor getColor_u8() const
Get color components as uint8_t in the range [0,255].
CVisualObject& setColorA(const float a)
Set alpha (transparency) color component in the range [0,1].
Returns:
a ref to this
virtual CVisualObject& setColorA_u8(const uint8_t a)
Set alpha (transparency) color component in the range [0,255].
Returns:
a ref to this
float materialShininess() const
Material shininess (for specular lights in shaders that support it), between 0.0f (none) to 1.0f (shiny)
void materialShininess(float shininess)
Material shininess (for specular lights in shaders that support it), between 0.0f (none) to 1.0f (shiny)
CVisualObject& setScale(float s)
Scale to apply to the object, in all three axes (default=1)
Returns:
a ref to this
CVisualObject& setScale(float sx, float sy, float sz)
Scale to apply to the object in each axis (default=1)
Returns:
a ref to this
float getScaleX() const
Get the current scaling factor in one axis.
float getScaleY() const
Get the current scaling factor in one axis.
float getScaleZ() const
Get the current scaling factor in one axis.
CVisualObject& setColor(const mrpt::img::TColorf& c)
Changes the default object color.
Returns:
a ref to this
CVisualObject& setColor(float R, float G, float B, float A = 1)
Set the color components of this object (R,G,B,Alpha, in the range 0-1)
Returns:
a ref to this
CVisualObject& setColor_u8(uint8_t R, uint8_t G, uint8_t B, uint8_t A = 255)
Set the color components of this object (R,G,B,Alpha, in the range 0-255)
Returns:
a ref to this
void setSlicesCount(uint32_t slices)
Number of radial divisions
uint32_t getSlicesCount() const
Number of radial divisions
virtual mrpt::math::TBoundingBoxf internalBoundingBoxLocal() const
Must be implemented by derived classes to provide the updated bounding box in the object local frame of coordinates.
This will be called only once after each time the derived class reports to notifyChange() that the object geometry changed.
See also:
getBoundingBox(), getBoundingBoxLocal(), getBoundingBoxLocalf()
virtual bool cullElegible() const
Return false if this object should never be checked for being culled out (=not rendered if its bbox are out of the screen limits).
For example, skyboxes or other special effects.
virtual void toYAMLMap(mrpt::containers::yaml& propertiesMap) const
Used from Scene::asYAML().
(New in MRPT 2.4.2)
virtual bool isCompositeObject() const
Should return true if enqueueForRenderRecursive() is defined since the object has inner children.
Examples: CSetOfObjects, CAssimpModel.
void notifyChange() const
Call to enable calling renderUpdateBuffers() before the next render() rendering iteration.
bool hasToUpdateBuffers() const
Returns whether notifyChange() has been invoked since the last call to renderUpdateBuffers(), meaning the latter needs to be called again before rendering.
virtual bool traceRay(const mrpt::poses::CPose3D& o, double& dist) const
Simulation of ray-trace, given a pose.
Returns true if the ray effectively collisions with the object (returning the distance to the origin of the ray in “dist”), or false in other case. “dist” variable yields undefined behaviour when false is returned
auto getBoundingBox() const
Evaluates the bounding box of this object (including possible children) in the coordinate frame of my parent object, i.e.
if this object pose changes, the bbox returned here will change too. This is in contrast with the local bbox returned by getBoundingBoxLocal()
auto getBoundingBoxLocal() const
Evaluates the bounding box of this object (including possible children) in the coordinate frame of my parent object, i.e.
if this object pose changes, the bbox returned here will change too. This is in contrast with the local bbox returned by getBoundingBoxLocal()
virtual mrpt::math::TPoint3Df getLocalRepresentativePoint() const
Provide a representative point (in object local coordinates), used to sort objects by eye-distance while rendering with transparencies (Default=[0,0,0])
void setLocalRepresentativePoint(const mrpt::math::TPoint3Df& p)
See getLocalRepresentativePoint()
mrpt::viz::CText& labelObject() const
Returns or constructs (in its first invocation) the associated mrpt::viz::CText object representing the label of the object.
See also:
void cullFaces(const TCullFace& cf)
Control whether to render the FRONT, BACK, or BOTH (default) set of faces.
Refer to docs for glCullFace(). Example: If set to cullFaces(TCullFace::BACK);
, back faces will not be drawn (“culled”)