Hoops Visualize HPS  version 2018-SP2
Hoops Visualize HPS 3D Rendering Engine
Looking for a senior C++ dev?
I'm looking for work. Hire me!
HPS::CircularArcKit Class Reference

The CircularArcKit class is a user space object. More...

#include <hps.h>

Inheritance diagram for HPS::CircularArcKit:
Collaboration diagram for HPS::CircularArcKit:

Public Member Functions

 CircularArcKit ()
 The default constructor creates an empty CircularArcKit object. More...
 
 CircularArcKit (CircularArcKit const &in_kit)
 The copy constructor creates a new CircularArcKit object that contains the same settings as the source CircularArcKit. More...
 
 CircularArcKit (CircularArcKit &&in_that)
 The move constructor creates a CircularArcKit by transferring the underlying impl of the rvalue reference to this CircularArcKit thereby avoiding a copy and allocation. More...
 
CircularArcKitoperator= (CircularArcKit &&in_that)
 The move assignment operator transfers the underlying impl of the rvalue reference to this CircularArcKit thereby avoiding a copy. More...
 
virtual ~CircularArcKit ()
 
HPS::Type ObjectType () const
 
void Consume (CircularArcKit &in_kit)
 Copies the source CircularArcKit into this CircularArcKit and resets the source kit. More...
 
void Set (CircularArcKit const &in_kit)
 Copies the source CircularArcKit into this CircularArcKit. More...
 
void Show (CircularArcKit &out_kit) const
 Copies this CircularArcKit into the given CircularArcKit. More...
 
CircularArcKitoperator= (CircularArcKit const &in_kit)
 Copies the source CircularArcKit into this CircularArcKit. More...
 
bool Empty () const
 Indicates whether this CircularArcKit has any values set on it. More...
 
bool Equals (CircularArcKit const &in_kit) const
 Check if the source CircularArcKit is equivalent to this CircularArcKit. More...
 
bool operator== (CircularArcKit const &in_kit) const
 Check if the source CircularArcKit is equivalent to this CircularArcKit. More...
 
bool operator!= (CircularArcKit const &in_kit) const
 Check if the source CircularArcKit is not equivalent to this CircularArcKit. More...
 
CircularArcKitSetPriority (int in_priority)
 Assigns a specific drawing priority value to the CircularArcKit. More...
 
CircularArcKitUnsetPriority ()
 Removes a drawing priority setting. More...
 
bool ShowPriority (int &out_priority) const
 Shows the drawing priority. More...
 
CircularArcKitSetStart (Point const &in_start)
 Sets the start point for this CircularArcKit. More...
 
CircularArcKitSetMiddle (Point const &in_middle)
 Sets the middle point for this CircularArcKit. More...
 
CircularArcKitSetEnd (Point const &in_end)
 Sets the end point for this CircularArcKit. More...
 
CircularArcKitUnsetStart ()
 Removes the start point for this CircularArcKit. More...
 
CircularArcKitUnsetMiddle ()
 Removes the middle point for this CircularArcKit. More...
 
CircularArcKitUnsetEnd ()
 Removes the end point for this CircularArcKit. More...
 
CircularArcKitUnsetEverything ()
 Removes all settings from the CircularArcKit. More...
 
bool ShowStart (Point &out_start) const
 Shows the start point for this CircularArcKit. More...
 
bool ShowMiddle (Point &out_middle) const
 Shows the middle point for this CircularArcKit. More...
 
bool ShowEnd (Point &out_end) const
 Shows the end point for this CircularArcKit. More...
 
CircularArcKitSetUserData (intptr_t in_index, size_t in_bytes, byte const in_data[])
 Sets user data on this kit. More...
 
CircularArcKitSetUserData (intptr_t in_index, ByteArray const &in_data)
 Sets user data on this kit. More...
 
CircularArcKitSetUserData (IntPtrTArray const &in_indices, ByteArrayArray const &in_data)
 Sets user data on this kit. More...
 
CircularArcKitUnsetUserData (intptr_t in_index)
 Removes the user data at the given index from this kit. More...
 
CircularArcKitUnsetUserData (size_t in_count, intptr_t const in_indices[])
 Removes the user data at the given indices from this kit. More...
 
CircularArcKitUnsetUserData (IntPtrTArray const &in_indices)
 Removes the user data at the given indices from this kit. More...
 
CircularArcKitUnsetAllUserData ()
 Removes all user data from this kit. More...
 
size_t ShowUserDataCount () const
 Get the number of user data indices set on this kit. More...
 
bool ShowUserDataIndices (IntPtrTArray &out_indices) const
 Shows the indices of all user data set on this kit. More...
 
bool ShowUserData (intptr_t in_index, ByteArray &out_data) const
 Shows the user data at a given index for this kit. More...
 
bool ShowUserData (IntPtrTArray &out_indices, ByteArrayArray &out_data) const
 Shows all user data for this kit. More...
 
virtual HPS::Type Type () const
 This function returns the true type of the underlying object. More...
 
virtual void Reset ()
 Resets this object to its initial, uninitialized state. More...
 
bool HasType (HPS::Type in_mask) const
 This function indicates whether this Object has the given Type mask. More...
 
intptr_t GetClassID () const
 Returns a unique identifier that is shared by all objects of the same class. More...
 
intptr_t GetInstanceID () const
 Returns an identifier that can be used to identify which instance of a class an object is. More...
 

Static Public Member Functions

template<typename T >
static intptr_t ClassID ()
 Unique identifier for this class. More...
 

Static Public Attributes

static const HPS::Type staticType = HPS::Type::CircularArcKit
 

Detailed Description

The CircularArcKit class is a user space object.

It is a kit analog to a CircularArcKey.

Constructor & Destructor Documentation

◆ CircularArcKit() [1/3]

HPS::CircularArcKit::CircularArcKit ( )

The default constructor creates an empty CircularArcKit object.

◆ CircularArcKit() [2/3]

HPS::CircularArcKit::CircularArcKit ( CircularArcKit const &  in_kit)

The copy constructor creates a new CircularArcKit object that contains the same settings as the source CircularArcKit.

Parameters
in_kitThe source CircularArcKit to copy.

◆ CircularArcKit() [3/3]

HPS::CircularArcKit::CircularArcKit ( CircularArcKit &&  in_that)

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

Parameters
in_thatAn rvalue reference to a CircularArcKit to take the impl from.

◆ ~CircularArcKit()

virtual HPS::CircularArcKit::~CircularArcKit ( )
virtual

Member Function Documentation

◆ ClassID()

template<typename T >
static intptr_t HPS::Object::ClassID ( )
inlinestaticinherited

Unique identifier for this class.

Note: this method uses construction of static objects. If used in a constructor, it should be used in the body not the initializer list.

◆ Consume()

void HPS::CircularArcKit::Consume ( CircularArcKit in_kit)

Copies the source CircularArcKit into this CircularArcKit and resets the source kit.

Parameters
in_kitThe source LineKit to consume.

◆ Empty()

bool HPS::CircularArcKit::Empty ( ) const
virtual

Indicates whether this CircularArcKit has any values set on it.

Returns
true if no values are set on this CircularArcKit, false otherwise.

Reimplemented from HPS::Object.

◆ Equals()

bool HPS::CircularArcKit::Equals ( CircularArcKit const &  in_kit) const

Check if the source CircularArcKit is equivalent to this CircularArcKit.

Parameters
in_kitThe source CircularArcKit to compare to this CircularArcKit.
Returns
true if the objects are equivalent, false otherwise.

◆ GetClassID()

intptr_t HPS::Object::GetClassID ( ) const
inherited

Returns a unique identifier that is shared by all objects of the same class.

Returns
A unique value shared by all objects of the same class.

◆ GetInstanceID()

intptr_t HPS::Object::GetInstanceID ( ) const
inherited

Returns an identifier that can be used to identify which instance of a class an object is.

Different keys and controls will return the same value if they are backed by the same database resource.

Returns
A value unique to an instance of an object and all objects that are backed by the same database resource.

◆ HasType()

bool HPS::Object::HasType ( HPS::Type  in_mask) const
inherited

This function indicates whether this Object has the given Type mask.

Parameters
in_maskThe Type mask to check against this Object.
Returns
true if this Object has the given Type mask, false otherwise.

◆ ObjectType()

HPS::Type HPS::CircularArcKit::ObjectType ( ) const
inlinevirtual

Reimplemented from HPS::Kit.

Here is the call graph for this function:

◆ operator!=()

bool HPS::CircularArcKit::operator!= ( CircularArcKit const &  in_kit) const

Check if the source CircularArcKit is not equivalent to this CircularArcKit.

Parameters
in_kitThe source CircularArcKit to compare to this CircularArcKit.
Returns
true if the objects are not equivalent, false otherwise.

◆ operator=() [1/2]

CircularArcKit& HPS::CircularArcKit::operator= ( CircularArcKit &&  in_that)

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

Parameters
in_thatAn rvalue reference to a CircularArcKit to take the impl from.
Returns
A reference to this CircularArcKit.

◆ operator=() [2/2]

CircularArcKit& HPS::CircularArcKit::operator= ( CircularArcKit const &  in_kit)

Copies the source CircularArcKit into this CircularArcKit.

Parameters
in_kitThe source CircularArcKit to copy.
Returns
A reference to this CircularArcKit.

◆ operator==()

bool HPS::CircularArcKit::operator== ( CircularArcKit const &  in_kit) const

Check if the source CircularArcKit is equivalent to this CircularArcKit.

Parameters
in_kitThe source CircularArcKit to compare to this CircularArcKit.
Returns
true if the objects are equivalent, false otherwise.

◆ Reset()

◆ Set()

void HPS::CircularArcKit::Set ( CircularArcKit const &  in_kit)

Copies the source CircularArcKit into this CircularArcKit.

Parameters
in_kitThe source CircularArcKit to copy.

◆ SetEnd()

CircularArcKit& HPS::CircularArcKit::SetEnd ( Point const &  in_end)

Sets the end point for this CircularArcKit.

This is the point on the circumference of the circle at which the circular arc ends.

Parameters
in_endThe end point for this CircularArcKit.
Returns
A reference to this CircularArcKit.

◆ SetMiddle()

CircularArcKit& HPS::CircularArcKit::SetMiddle ( Point const &  in_middle)

Sets the middle point for this CircularArcKit.

This is a point on the circumference of the circle between the start and end points for the circular arc.

Parameters
in_middleThe middle point for this CircularArcKit.
Returns
A reference to this CircularArcKit.

◆ SetPriority()

CircularArcKit& HPS::CircularArcKit::SetPriority ( int  in_priority)

Assigns a specific drawing priority value to the CircularArcKit.

It affects the order in which the contents of this segment are drawn if and only if the rendering algorithm is set to Priority.

Parameters
in_priorityThe drawing priority, higher priority items are drawn on top of lower priority items.
Returns
A reference to this object.
See also
SubwindowKit::SetPriority()
SubwindowKit::SetRenderingAlgorithm()

◆ SetStart()

CircularArcKit& HPS::CircularArcKit::SetStart ( Point const &  in_start)

Sets the start point for this CircularArcKit.

This is the point on the circumference of the circle at which the circular arc starts.

Parameters
in_startThe start point for this CircularArcKit.
Returns
A reference to this CircularArcKit.

◆ SetUserData() [1/3]

CircularArcKit& HPS::CircularArcKit::SetUserData ( intptr_t  in_index,
size_t  in_bytes,
byte const  in_data[] 
)

Sets user data on this kit.

Parameters
in_indexThe index of the user data to set.
in_bytesThe number of bytes of user data to set.
in_dataThe bytes of user data to set.
Returns
A reference to this kit.

◆ SetUserData() [2/3]

CircularArcKit& HPS::CircularArcKit::SetUserData ( intptr_t  in_index,
ByteArray const &  in_data 
)

Sets user data on this kit.

Parameters
in_indexThe index of the user data to set.
in_dataThe bytes of user data to set.
Returns
A reference to this kit.

◆ SetUserData() [3/3]

CircularArcKit& HPS::CircularArcKit::SetUserData ( IntPtrTArray const &  in_indices,
ByteArrayArray const &  in_data 
)

Sets user data on this kit.

Parameters
in_indicesAn array of user data indices to set.
in_dataAn array of bytes of user data to set.
Returns
A reference to this kit.

◆ Show()

void HPS::CircularArcKit::Show ( CircularArcKit out_kit) const

Copies this CircularArcKit into the given CircularArcKit.

Parameters
out_kitThe CircularArcKit to populate with the contents of this CircularArcKit.

◆ ShowEnd()

bool HPS::CircularArcKit::ShowEnd ( Point out_end) const

Shows the end point for this CircularArcKit.

Parameters
out_endThe end point for this CircularArcKit.
Returns
true if an end point was set, false otherwise.

◆ ShowMiddle()

bool HPS::CircularArcKit::ShowMiddle ( Point out_middle) const

Shows the middle point for this CircularArcKit.

Parameters
out_middleThe middle point for this CircularArcKit.
Returns
true if a middle point was set, false otherwise.

◆ ShowPriority()

bool HPS::CircularArcKit::ShowPriority ( int &  out_priority) const

Shows the drawing priority.

Parameters
out_priorityThe drawing priority, higher priority items are drawn on top of lower priority items.
Returns
true if the setting is valid, false otherwise.

◆ ShowStart()

bool HPS::CircularArcKit::ShowStart ( Point out_start) const

Shows the start point for this CircularArcKit.

Parameters
out_startThe start point for this CircularArcKit.
Returns
true if a start point was set, false otherwise.

◆ ShowUserData() [1/2]

bool HPS::CircularArcKit::ShowUserData ( intptr_t  in_index,
ByteArray out_data 
) const

Shows the user data at a given index for this kit.

Parameters
in_indexThe index of the user data to show.
out_dataThe user data at the given index.
Returns
true if there is user data at the given index, false otherwise.

◆ ShowUserData() [2/2]

bool HPS::CircularArcKit::ShowUserData ( IntPtrTArray out_indices,
ByteArrayArray out_data 
) const

Shows all user data for this kit.

Parameters
out_indicesAn array of all user data indices set on this kit.
out_dataAn array of all user data set on this kit.
Returns
true if there is user data on this kit, false otherwise.

◆ ShowUserDataCount()

size_t HPS::CircularArcKit::ShowUserDataCount ( ) const

Get the number of user data indices set on this kit.

◆ ShowUserDataIndices()

bool HPS::CircularArcKit::ShowUserDataIndices ( IntPtrTArray out_indices) const

Shows the indices of all user data set on this kit.

Parameters
out_indicesThe user data indices set on this kit.
Returns
The number of user data indices set on this kit.

◆ Type()

virtual HPS::Type HPS::Kit::Type ( ) const
inlinevirtualinherited

This function returns the true type of the underlying object.

This function is useful for finding the type of smart pointer objects that have been cast to more generic types.

Returns
The true type of the object in question.

Reimplemented from HPS::Object.

◆ UnsetAllUserData()

CircularArcKit& HPS::CircularArcKit::UnsetAllUserData ( )

Removes all user data from this kit.

Returns
A reference to this kit.

◆ UnsetEnd()

CircularArcKit& HPS::CircularArcKit::UnsetEnd ( )

Removes the end point for this CircularArcKit.

Returns
A reference to this CircularArcKit.

◆ UnsetEverything()

CircularArcKit& HPS::CircularArcKit::UnsetEverything ( )

Removes all settings from the CircularArcKit.

Returns
A reference to this CircularArcKit.

◆ UnsetMiddle()

CircularArcKit& HPS::CircularArcKit::UnsetMiddle ( )

Removes the middle point for this CircularArcKit.

Returns
A reference to this CircularArcKit.

◆ UnsetPriority()

CircularArcKit& HPS::CircularArcKit::UnsetPriority ( )

Removes a drawing priority setting.

Returns
A reference to this object.

◆ UnsetStart()

CircularArcKit& HPS::CircularArcKit::UnsetStart ( )

Removes the start point for this CircularArcKit.

Returns
A reference to this CircularArcKit.

◆ UnsetUserData() [1/3]

CircularArcKit& HPS::CircularArcKit::UnsetUserData ( intptr_t  in_index)

Removes the user data at the given index from this kit.

Parameters
in_indexThe index of the user data to remove.
Returns
A reference to this kit.

◆ UnsetUserData() [2/3]

CircularArcKit& HPS::CircularArcKit::UnsetUserData ( size_t  in_count,
intptr_t const  in_indices[] 
)

Removes the user data at the given indices from this kit.

Parameters
in_countThe size of the following array.
in_indicesThe indices of the user data to remove.
Returns
A reference to this kit.

◆ UnsetUserData() [3/3]

CircularArcKit& HPS::CircularArcKit::UnsetUserData ( IntPtrTArray const &  in_indices)

Removes the user data at the given indices from this kit.

Parameters
in_indicesThe indices of the user data to remove.
Returns
A reference to this kit.

Member Data Documentation

◆ staticType

const HPS::Type HPS::CircularArcKit::staticType = HPS::Type::CircularArcKit
static

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