CircularArcGlyphElement

class HPS.CircularArcGlyphElement : public HPS.GlyphElement

The CircularArcGlyphElement class is a user space object. It is used to add circular arc elements to a glyph.

Public Functions

CircularArcGlyphElement ()

The default constructor creates an empty CircularArcGlyphElement object.

CircularArcGlyphElement (HPS.CircularArcGlyphElement in_that)

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

Param in_that

The source CircularArcGlyphElement to copy.

CircularArcGlyphElement (HPS.GlyphElement in_that)

This constructor creates a CircularArcGlyphElement 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 a circular arc glyph element. Otherwise the copy will fail and the resulting CircularArcGlyphElement will be invalid.

Param in_that

The source GlyphElement to copy.

CircularArcGlyphElement (HPS.GlyphPoint in_start, HPS.GlyphPoint in_intermediate, HPS.GlyphPoint in_end)

This constructor creates a CircularArcGlyphElement with the specified start, intermediate, and end points.

Param in_start

The start point for the circular arc.

Param in_intermediate

The intermediate point for the circular arc.

Param in_end

The end point for the circular arc.

override void Dispose ()
override HPS.Type ObjectType ()

This function returns the type the object, as declared (if the object is derived, this does not give the true type of the derived object).

Return

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

void SetEndPoint (HPS.GlyphPoint in_point)

Sets the end point for the circular arc for this CircularArcGlyphElement.

Param in_point

The end point for the circular arc.

void SetIntermediatePoint (HPS.GlyphPoint in_point)

Sets the intermediate point for the circular arc for this CircularArcGlyphElement.

Param in_point

The intermediate point for the circular arc.

void SetPoints (HPS.GlyphPoint in_start, HPS.GlyphPoint in_intermediate, HPS.GlyphPoint in_end)

Sets the start, intermediate, and end points for the circular arc for this CircularArcGlyphElement.

void SetStartPoint (HPS.GlyphPoint in_point)

Sets the start point for the circular arc for this CircularArcGlyphElement.

Param in_point

The start point for the circular arc.

bool ShowEndPoint (out HPS.GlyphPoint out_point)

Shows the end point for the circular arc for this CircularArcGlyphElement.

Param out_point

The end point for the circular arc.

Return

true if an end point was set, false otherwise.

bool ShowIntermediatePoint (out HPS.GlyphPoint out_point)

Shows the intermediate point for the circular arc for this CircularArcGlyphElement.

Param out_point

The intermediate point for the circular arc.

Return

true if an intermediate point was set, false otherwise.

bool ShowStartPoint (out HPS.GlyphPoint out_point)

Shows the start point for the circular arc for this CircularArcGlyphElement.

Param out_point

The start point for the circular arc.

Return

true if a start point was set, false otherwise.