Library | Module

Class pfcDisplay



Description

This interface represents the current session display. Because it is extended by pfcSession the methods and attributes can be accessed using that object. This interface contains methods to display graphics on the screen.


Direct Parent Classes:
pfcParent
Direct Known Subclasses:
pfcBaseSession



Property Summary

pfcFontCurrentFont
The current font used for text graphics in Creo Parametric.
pfcStdColorCurrentGraphicsColor
The standard color used to display new graphics.
pfcGraphicsModeCurrentGraphicsMode
The mode used to display graphics (i.e. normal or complement).
/* readonly */ pfcFontDefaultFont
The default font for this session of Creo Parametric.
numberRotationAngle
The rotation angle of created text graphics (default is 0).
numberSlantAngle
The slant angle of created text graphics (default is 0).
numberTextHeight
The text height of created text graphics.
numberWidthFactor
The width-to-height ratio for created text graphics.



Method Summary

voidDrawArc2D (pfcPoint3D Center, number Radius, pfcVector3D StartDirection, pfcVector3D EndDirection)
Draws an arc on the screen
voidDrawCircle (pfcPoint3D Center, number Radius)
Draws a circle on the screen
voidDrawLine (pfcPoint3D Endpoint)
Draws a line on the screen from the last pen position specified to the position specified by the Endpoint argument. The last pen position is specified using this same function previously times or by pfcDisplay.SetPenPosition()
voidDrawPolygon2D (pfcPoint2Ds Vertices, /* optional */ pfcStdColor FillColor)
Draws two-dimensional polygon on the screen.
voidDrawPolyline (pfcPoint3Ds Points)
Draws a series of connected line segments on the screen.
voidDrawText2D (pfcPoint3D StartPoint, string TextLine)
Draws text on the screen
/* optional */ pfcFontGetFontById (number Id)
Creates a font object given a Creo Parametric font integer id.
/* optional */ pfcFontGetFontByName (string Name)
Returns a font object given a Creo Parametric font name.
voidInvalidate (pfcModel Model)
Invalidates the display list of the model singalling that a repaint is needed.
voidResetTextAttributes ()
Resets the Creo Parametric text attributes to use the default settings
voidSetPenPosition (pfcPoint3D NewPosition)
This method enables you to move to a point without producing any graphical output. This method is used when drawing lines using pfcDisplay.DrawLine()



Property Detail


pfcFontCurrentFont

The current font used for text graphics in Creo Parametric.

Exceptions thrown (but not limited to):

pfcXToolkitNotFound - This means either:

  • The attributes were not set, OR
  • The function could not find a font name for the specified font identifier.






pfcStdColorCurrentGraphicsColor

The standard color used to display new graphics.

Exceptions thrown (but not limited to):

pfcXToolkitNoChange - The current color is the same as the new color.






pfcGraphicsModeCurrentGraphicsMode

The mode used to display graphics (i.e. normal or complement).




/* readonly */ pfcFontDefaultFont

The default font for this session of Creo Parametric.

Exceptions thrown (but not limited to):

pfcXToolkitNotFound - The function could not find a font name for the specified font identifier.






numberRotationAngle

The rotation angle of created text graphics (default is 0).

Exceptions thrown (but not limited to):

pfcXToolkitNotFound - The attributes were not set.






numberSlantAngle

The slant angle of created text graphics (default is 0).

Exceptions thrown (but not limited to):

pfcXToolkitNotFound - The attributes were not set.






numberTextHeight

The text height of created text graphics.

Exceptions thrown (but not limited to):

pfcXToolkitNotFound - The attributes were not set.






numberWidthFactor

The width-to-height ratio for created text graphics.

Exceptions thrown (but not limited to):

pfcXToolkitNotFound - The attributes were not set.







Method Detail


voidDrawArc2D (pfcPoint3D Center, number Radius, pfcVector3D StartDirection, pfcVector3D EndDirection)

Draws an arc on the screen

All points are in logical screen cordinates
Parameters:
Center
The center point of the arc
Radius
The radius of the arc
StartDirection
Vector representing the start direction of the arc
EndDirection
Vector representing the end direction of the arc



voidDrawCircle (pfcPoint3D Center, number Radius)

Draws a circle on the screen

Center point and orientation is in the coordinate system of the current object. For example, if the current object is a part, the point must be in the part's coordinate system. If the current object is an assembly, the point must be in the assembly's coordinate system. If the current object is a two dimensional model, circle will be normal to the screen.
Parameters:
Center
The center of the circle
Radius
The radius of the circle



voidDrawLine (pfcPoint3D Endpoint)

Draws a line on the screen from the last pen position specified to the position specified by the Endpoint argument. The last pen position is specified using this same function previously times or by pfcDisplay.SetPenPosition()

These points are in the coordinate system of the current object. For example, if the current object is a part, the points must be in the part's coordinate system. If the current object is an assembly, the points must be in the assembly's coordinate system.
Parameters:
Endpoint
 



voidDrawPolygon2D (pfcPoint2Ds Vertices, /* optional */ pfcStdColor FillColor)

Draws two-dimensional polygon on the screen.

Exceptions thrown (but not limited to):

pfcXToolkitLineTooLong - You specified more than 100 points.


Parameters:
Vertices
A sequence of two dimensional points representing the polygon's vertices.
FillColor
The color of the polygon. If null, the polygon will be filled using the current graphics color.



voidDrawPolyline (pfcPoint3Ds Points)

Draws a series of connected line segments on the screen.

These points are in the coordinate system of the current object. For example, if the current object is a part, the points must be in the part's coordinate system. If the current object is an assembly, the points must be in the assembly's coordinate system. The total number of points should be less than 200.
Parameters:
Points
 



voidDrawText2D (pfcPoint3D StartPoint, string TextLine)

Draws text on the screen

If no text attributes are set before this method call the program uses the default text attributes for Creo Parametric. Set the text attributes using the attributes on the pfcDisplay object.

Exceptions thrown (but not limited to):

pfcXToolkitNotFound - The font specified in a previous call to ProtText*CurrentSet() was not found.


Parameters:
StartPoint
The starting point for text display, in logical screen coordinates
TextLine
The text to display



/* optional */ pfcFontGetFontById (number Id)

Creates a font object given a Creo Parametric font integer id.

The correspondance between font names and integer identifiers stays constant for a given Creo Parametric session, but may be different for different sessions.

Exceptions thrown (but not limited to):

pfcXToolkitNotFound - The function could not find a font name for the specified font identifier.


Parameters:
Id
The Creo Parametric integer id of the font.
Returns:
The font object to be used to control the font of text graphics.



/* optional */ pfcFontGetFontByName (string Name)

Returns a font object given a Creo Parametric font name.

The correspondance between font names and integer identifiers stays constant for a given Creo Parametric session, but may be different for different sessions.

Exceptions thrown (but not limited to):

pfcXToolkitNotFound - The function could not find a font identifier for the specified font name.


Parameters:
Name
The font name
Returns:
The font object to be used to control the font of text graphics



voidInvalidate (pfcModel Model)

Invalidates the display list of the model singalling that a repaint is needed.

Exceptions thrown (but not limited to):

pfcXToolkitInvalidType - The specified model is not a part, assembly, or drawing.

pfcXToolkitNotExist - The function cannot find the window associated with the object.


Parameters:
Model
The part, assembly or drawing



voidResetTextAttributes ()

Resets the Creo Parametric text attributes to use the default settings



voidSetPenPosition (pfcPoint3D NewPosition)

This method enables you to move to a point without producing any graphical output. This method is used when drawing lines using pfcDisplay.DrawLine()

This point is in the coordinate system of the current object. For example, if the current object is a part, the point must be in the part's coordinate system. If the current object is an assembly, the point must be in the assembly's coordinate system.
Parameters:
NewPosition