REFERENCE MANUAL
#include <hps.h>
Public Member Functions | |
InfiniteLineGlyphElement () | |
InfiniteLineGlyphElement (GlyphElement const &in_that) | |
InfiniteLineGlyphElement (InfiniteLineGlyphElement const &in_that) | |
InfiniteLineGlyphElement (GlyphPoint const &in_first, GlyphPoint const &in_second, InfiniteLine::Type in_type=InfiniteLine::Type::Line) | |
InfiniteLineGlyphElement (InfiniteLineGlyphElement &&in_that) | |
Type | ObjectType () const |
InfiniteLineGlyphElement & | operator= (InfiniteLineGlyphElement &&in_that) |
void | SetFirstPoint (GlyphPoint const &in_point) |
void | SetInfiniteType (InfiniteLine::Type in_type) |
void | SetPoints (GlyphPoint const &in_first, GlyphPoint const &in_second) |
void | SetSecondPoint (GlyphPoint const &in_point) |
bool | ShowFirstPoint (GlyphPoint &out_point) const |
bool | ShowInfiniteType (InfiniteLine::Type &out_type) const |
bool | ShowSecondPoint (GlyphPoint &out_point) const |
![]() | |
bool | Equals (GlyphElement const &in_that) const |
GlyphElement () | |
GlyphElement (GlyphElement const &in_that) | |
GlyphElement (GlyphElement &&in_that) | |
bool | operator!= (GlyphElement const &in_that) const |
GlyphElement & | operator= (GlyphElement &&in_that) |
GlyphElement & | operator= (GlyphElement const &in_that) |
bool | operator== (GlyphElement const &in_that) const |
void | Set (GlyphElement const &in_that) |
void | SetExplicitColor (RGBAColor const &in_color) |
void | SetFill (Glyph::Fill in_fill) |
void | SetIndexedColor (byte in_index) |
void | SetNormalColor () |
bool | ShowColor (Glyph::ColorSource &out_source, byte &out_index, RGBAColor &out_color) const |
bool | ShowFill (Glyph::Fill &out_fill) const |
![]() | |
virtual bool | Empty () const |
intptr_t | GetClassID () const |
intptr_t | GetInstanceID () const |
bool | HasType (Type in_mask) const |
Object (Object &&in_that) | |
Object & | operator= (Object const &other_object) |
Object & | operator= (Object &&in_that) |
virtual void | Reset () |
Type | Type () const |
Additional Inherited Members | |
![]() | |
template<typename T > | |
static intptr_t | ClassID () |
The InfiniteLineGlyphElement class is a user space object. It is used to add inifinite line and ray elements to a glyph.
InfiniteLineGlyphElement::InfiniteLineGlyphElement | ( | ) |
The default constructor creates an empty InfiniteLineGlyphElement object.
InfiniteLineGlyphElement::InfiniteLineGlyphElement | ( | GlyphElement const & | in_that | ) |
This constructor creates a InfiniteLineGlyphElement object that contains the same settings as the source GlyphElement. The copy will only be successful if the source glyph element is really an upcast of an infinite line glyph element. Otherwise the copy will fail and the resulting InfiniteLineGlyphElement will be invalid.
in_that | The source GlyphElement to copy. |
InfiniteLineGlyphElement::InfiniteLineGlyphElement | ( | InfiniteLineGlyphElement const & | in_that | ) |
The copy constructor creates a new InfiniteLineGlyphElement object that contains the same settings as the source InfiniteLineGlyphElement.
in_that | The source InfiniteLineGlyphElement to copy. |
InfiniteLineGlyphElement::InfiniteLineGlyphElement | ( | GlyphPoint const & | in_first, |
GlyphPoint const & | in_second, | ||
InfiniteLine::Type | in_type = InfiniteLine::Type::Line |
||
) |
This constructor creates a InfiniteLineGlyphElement with the specified vector and type.
in_first | The length of the InfiniteLineGlyphElement. |
in_units | The units for the length of the InfiniteLineGlyphElement. |
InfiniteLineGlyphElement::InfiniteLineGlyphElement | ( | InfiniteLineGlyphElement && | in_that | ) |
The move constructor creates an InfiniteLineGlyphElement by transferring the underlying impl of the rvalue reference to this InfiniteLineGlyphElement thereby avoiding a copy and allocation.
in_that | An rvalue reference to an InfiniteLineGlyphElement to take the impl from. |
|
inlinevirtual |
This function returns the type the object, as declared. This does not necessarily give the true type of the underlying object.
Reimplemented from GlyphElement.
InfiniteLineGlyphElement& InfiniteLineGlyphElement::operator= | ( | InfiniteLineGlyphElement && | in_that | ) |
The move assignment operator transfers the underlying impl of the rvalue reference to this InfiniteLineGlyphElement thereby avoiding a copy.
in_that | An rvalue reference to an InfiniteLineGlyphElement to take the impl from. |
void InfiniteLineGlyphElement::SetFirstPoint | ( | GlyphPoint const & | in_point | ) |
Sets the first point for the vector defining the infinite line or ray for this InfiniteLineGlyphElement.
in_point | The first point for the vector defining the infinite line or ray. |
void InfiniteLineGlyphElement::SetInfiniteType | ( | InfiniteLine::Type | in_type | ) |
Sets the type of this InfiniteLineGlyphElement, i.e., whether it represents an infinite line or ray.
in_type | The type of this InfiniteLineGlyphElement. |
void InfiniteLineGlyphElement::SetPoints | ( | GlyphPoint const & | in_first, |
GlyphPoint const & | in_second | ||
) |
Sets the points for the vector defining the infinite line or ray for this InfiniteLineGlyphElement.
in_first | The first point for the vector defining the infinite line or ray. |
in_second | The second point for the vector defining the infinite line or ray. |
void InfiniteLineGlyphElement::SetSecondPoint | ( | GlyphPoint const & | in_point | ) |
Sets the second point for the vector defining the infinite line or ray for this InfiniteLineGlyphElement.
in_point | The second point for the vector defining the infinite line or ray. |
bool InfiniteLineGlyphElement::ShowFirstPoint | ( | GlyphPoint & | out_point | ) | const |
Shows the first point for the vector defining the infinite line or ray for this InfiniteLineGlyphElement.
out_point | The first point for the vector defining the infinite line or ray. |
bool InfiniteLineGlyphElement::ShowInfiniteType | ( | InfiniteLine::Type & | out_type | ) | const |
Shows the type of this InfiniteLineGlyphElement.
out_type | The type of this InfiniteLineGlyphElement. |
bool InfiniteLineGlyphElement::ShowSecondPoint | ( | GlyphPoint & | out_point | ) | const |
Shows the second point for the vector defining the infinite line or ray for this InfiniteLineGlyphElement.
out_point | The second point for the vector defining the infinite line or ray. |