Public Member Functions | List of all members
HPS::EllipseKey Class Reference

#include <hps.h>

Inheritance diagram for HPS::EllipseKey:
HPS::GeometryKey HPS::Key HPS::Object

Public Member Functions

 EllipseKey ()
 
 EllipseKey (Key const &in_that)
 
 EllipseKey (EllipseKey const &in_that)
 
EllipseKeyoperator= (EllipseKey const &other)
 
 EllipseKey (EllipseKey &&in_that)
 
EllipseKeyoperator= (EllipseKey &&in_that)
 
HPS::Type ObjectType () const
 
void Consume (EllipseKit &in_kit)
 
void Set (EllipseKit const &in_kit)
 
void Show (EllipseKit &out_kit) const
 
EllipseKeySetCenter (Point const &in_center)
 
EllipseKeySetMajor (Point const &in_major)
 
EllipseKeySetMinor (Point const &in_minor)
 
bool ShowCenter (Point &out_center) const
 
bool ShowMajor (Point &out_major) const
 
bool ShowMinor (Point &out_minor) const
 
- Public Member Functions inherited from HPS::GeometryKey
 GeometryKey ()
 
 GeometryKey (Key const &in_that)
 
 GeometryKey (GeometryKey const &in_that)
 
GeometryKeyoperator= (GeometryKey const &in_that)
 
 GeometryKey (GeometryKey &&in_that)
 
GeometryKeyoperator= (GeometryKey &&in_that)
 
size_t ShowReferrers (SegmentKeyArray &out_segments) const
 
size_t ShowReferrers (ReferenceKeyArray &out_references) const
 
GeometryKeySetPriority (int in_priority)
 
GeometryKeyUnsetPriority ()
 
bool ShowPriority (int &out_priority) const
 
GeometryKeySetUserData (intptr_t in_index, size_t in_bytes, byte const in_data[])
 
GeometryKeySetUserData (intptr_t in_index, ByteArray const &in_data)
 
GeometryKeySetUserData (IntPtrTArray const &in_indices, ByteArrayArray const &in_data)
 
GeometryKeyUnsetUserData (intptr_t in_index)
 
GeometryKeyUnsetUserData (size_t in_count, intptr_t const in_indices[])
 
GeometryKeyUnsetUserData (IntPtrTArray const &in_indices)
 
GeometryKeyUnsetAllUserData ()
 
size_t ShowUserDataCount () const
 
bool ShowUserDataIndices (IntPtrTArray &out_indices) const
 
bool ShowUserData (intptr_t in_index, ByteArray &out_data) const
 
bool ShowUserData (IntPtrTArray &out_indices, ByteArrayArray &out_data) const
 
bool ShowBoundings (BoundingKit &out_kit) const
 
- Public Member Functions inherited from HPS::Key
 Key ()
 
 Key (Key const &in_that)
 
 Key (Control const &in_control)
 
 Key (Key &&in_that)
 
Keyoperator= (Key &&in_that)
 
virtual ~Key ()
 
bool HasOwner () const
 
SegmentKey Up () const
 
SegmentKey Owner () const
 
void Delete ()
 
void MoveTo (SegmentKey const &in_new_owner)
 
Key CopyTo (SegmentKey const &in_destination) const
 
Keyoperator= (Key const &in_that)
 
virtual void Assign (Key const &in_that)
 
bool Equals (Key const &in_that) const
 
bool operator!= (Key const &in_that) const
 
bool operator== (Key const &in_that) const
 
size_t GetHash () const
 
- Public Member Functions inherited from HPS::Object
Objectoperator= (Object const &other_object)
 
 Object (Object &&in_that)
 
Objectoperator= (Object &&in_that)
 
HPS::Type Type () const
 
virtual bool Empty () const
 
virtual void Reset ()
 
bool HasType (HPS::Type in_mask) const
 
intptr_t GetClassID () const
 
intptr_t GetInstanceID () const
 

Additional Inherited Members

- Static Public Member Functions inherited from HPS::Object
template<typename T >
static intptr_t ClassID ()
 

Detailed Description

The EllipseKey class is a smart pointer to a database object. It is a handle to an ellipse inserted via SegmentKey::InsertEllipse.

Constructor & Destructor Documentation

HPS::EllipseKey::EllipseKey ( )

The default constructor creates an uninitialized EllipseKey object. The Type() function will return Type::None.

HPS::EllipseKey::EllipseKey ( Key const &  in_that)
explicit

This constructor creates an EllipseKey object that shares the underlying smart-pointer of the source Key. The copy will only be successful if the source key is really an upcast of an Ellipse key. Otherwise the copy will fail and the resulting EllipseKey will be invalid.

Parameters
in_keyThe source Key to copy.
HPS::EllipseKey::EllipseKey ( EllipseKey const &  in_that)

The copy constructor creates an EllipseKey object that shares the underlying smart-pointer of the source EllipseKey.

Parameters
in_thatThe source EllipseKey to copy.
HPS::EllipseKey::EllipseKey ( EllipseKey &&  in_that)

The move constructor creates an EllipseKey by transferring the underlying impl of the rvalue reference to this EllipseKey thereby avoiding a copy and allocation.

Parameters
in_thatAn rvalue reference to an EllipseKey to take the impl from.

Member Function Documentation

void HPS::EllipseKey::Consume ( EllipseKit in_kit)

Completely replaces all settings on this EllipseKit with those set on the specified kit and resets the kit.

Parameters
in_kitThe kit from which to get the settings to replace on this EllipseKit.
HPS::Type HPS::EllipseKey::ObjectType ( ) const
inlinevirtual

This function returns the type the object, as declared. This does not necessarily give the true type of the underlying object.

Returns
The declared type of the object in question, which may differ from the true, underlying type.

Reimplemented from HPS::GeometryKey.

EllipseKey& HPS::EllipseKey::operator= ( EllipseKey const &  other)

Associate this EllipseKey with the same underlying impl as the source EllipseKey.

Parameters
in_thatThe source EllipseKey for the assignment.
Returns
A reference to this EllipseKey.
EllipseKey& HPS::EllipseKey::operator= ( EllipseKey &&  in_that)

The move assignment operator transfers the underlying impl of the rvalue reference to this EllipseKey thereby avoiding a copy.

Parameters
in_thatAn rvalue reference to an EllipseKey to take the impl from.
Returns
A reference to this EllipseKey.
void HPS::EllipseKey::Set ( EllipseKit const &  in_kit)

Replace those settings on this EllipseKey with those set on the specified kit.

Parameters
in_kitThe kit from which to get the settings to replace on this EllipseKey.
EllipseKey& HPS::EllipseKey::SetCenter ( Point const &  in_center)

Sets the center point for the ellipse.

Parameters
in_centerThe center point for the ellipse.
Returns
A reference to this EllipseKey.
EllipseKey& HPS::EllipseKey::SetMajor ( Point const &  in_major)

Sets the intersection point of the major axis and the ellipse.

Parameters
in_majorThe intersection point of the major axis and the ellipse.
Returns
A reference to this EllipseKey.
EllipseKey& HPS::EllipseKey::SetMinor ( Point const &  in_minor)

Sets the intersection point of the minor axis and the ellipse.

Parameters
in_minorThe intersection point of the minor axis and the ellipse.
Returns
A reference to this EllipseKey.
void HPS::EllipseKey::Show ( EllipseKit out_kit) const

Copy the contents of this EllipseKey into the specified kit.

Parameters
out_kitThe kit to populate with the contents of this EllipseKey.
bool HPS::EllipseKey::ShowCenter ( Point out_center) const

Shows the center point for the ellipse.

Parameters
out_centerThe center point for the ellipse.
Returns
true if a center was set, false otherwise.
bool HPS::EllipseKey::ShowMajor ( Point out_major) const

Shows the intersection point of the major axis and the ellipse.

Parameters
out_majorThe intersection point of the major axis and the ellipse.
Returns
true if an intersection point with the major axis was set, false otherwise.
bool HPS::EllipseKey::ShowMinor ( Point out_minor) const

Shows the intersection point of the minor axis and the ellipse.

Parameters
out_minorThe intersection point of the minor axis and the ellipse.
Returns
true if an intersection point with the minor axis was set, false otherwise.

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