Text property node. More...
#include <Inventor/nodes/SoTextProperty.h>
This node specifies properties used for text rendering.
The application can specify text alignment and orientation using the alignmentH, alignmentV, and orientation fields.
Note:
Horizontal alignment can also be specified in some text nodes, for example SoText2 and SoText3, using the justification field. The value in the text node's field is used unless that field is explicitly set to INHERIT. To allow SoTextProperty to control horizontal justification, set the text node's justification field to INHERITED.
The application can also request use of font kerning using the kerning field. Kerning consists of modifying the spacing between two successive glyphs according to their outlines. For examples, a "T" and a "y" can be moved closer together as the top of the "y" fits nicely under the upper right bar of the "T". Kerning depends on the specific font being used.
Different text rendering styles such as underline, strikethrough and background rectangle can be specified using the style field. A color can be specified for each style using the styleColors field. The current material does not affect the color of a text rendering style unless the corresponding value in the styleColorsUseCurrentMaterial field is set to true. Text rendering styles apply to the entire string.
Text rendering effects |
|
Notes:
aliasingFactor | 1.0 |
alignmentH | LEFT |
alignmentV | BASE |
backFrameLineWidth | 0.0 |
enableTextAccumulation | FALSE |
kerning | FALSE |
margin | 0.0 |
orientation | LEFT_TO_RIGHT |
textureQualityRange | 150 300 |
style | NONE |
styleColors | 0.8 0.8 0.8 1 |
styleColorsUseCurrentMaterial | FALSE |
SoAnnoText3, SoText3, SoText2, SoAsciiText, SoFont
Index values for setting colors in the styleColors field.
SoTextProperty::SoTextProperty | ( | ) |
Text property constructor.
static SoType SoTextProperty::getClassTypeId | ( | ) | [static] |
Returns the type identifier for this class.
Reimplemented from SoNode.
virtual SoType SoTextProperty::getTypeId | ( | ) | const [virtual] |
Returns the type identifier for this specific instance.
Reimplemented from SoNode.
virtual SbBool SoTextProperty::isOverride | ( | ) | const [inline, virtual] |
Returns the state of the override field.
Reimplemented from SoNode.
virtual void SoTextProperty::setOverride | ( | const SbBool | state | ) | [inline, virtual] |
Defines the anti-aliasing factor to apply to the textured text rendering.
Default is 1.0. Default value can be changed using the environment variable OIV_TEXT_ALIASING_FACTOR.
The anti-aliasing applied transfer functions are:
A value of 0 essentially turns off antialiasing. Only pixels that are full opacity will be rendered. Value 1 is the native antialiasing provided by the FreeType library. Values < 1 scale down the opacity of semi-transparent pixels, so lower opacity pixels become completely transparent, effectively making the character glyphs sharper but narrower. Values > 1 scale up the opacity of semi-transparent pixels, effectively making the characters sharper but wider. Values greater than 5 have little additional visual effect.
Indicates horizontal placement and alignment of strings.
Use the AlignmentH enum. Default value is LEFT. With LEFT alignment, the left edge of the first line is at the (transformed) origin, and all left edges are aligned. RIGHT alignment is similar. CENTER alignment places the center of the first string at the (transformed) origin, with the centers of all remaining strings aligned under it. Default value can be changed using the environment variable OIV_TEXT_ALIGNMENTH.
Note: This field is only effective when the justification field of a text node is set to INHERITED. When orientation is vertical, horizontal alignment is only applied on the first line.
Indicates vertical placement and alignment of strings.
Use the AlignmentV enum. Default is BASE. With TOP alignment, the top edge of the first line is at the (transformed) origin, and all top edges are aligned. BOTTOM alignment is similar. HALF alignment places the center of the first string at the (transformed) origin, with the centers of all remaining strings aligned under it. Default value can be changed using the environment variable OIV_TEXT_ALIGNMENTV. When orientation is horizontal, vertical alignment is only applied on the first line.
Defines the width of the line when BACK_FRAME_LINE has been enabled for the current style.
The backFrameLineWidth value is pixel size for SoText2 text, and is a 1/40 of the current font size for SoText3 text. Default value is 1.0 Default value can be changed using the environment variable OIV_TEXT_BACKFRAMELINE_WIDTH.
NOTE: field available since Open Inventor 9.2This field specifies the spacing between individual characters.
The value is in font size units for 2D text (SoText2) and 3D text (SoText3). Default is 0.
Enables the accumulation rendering mode for SoText3 nodes.
Default is false. Accumulation mode significantly improves performance for scene graphs containing many SoText3 nodes. There are some drawbacks and limitations:
Default value can be changed using the environment variable OIV_TEXT_ACCUMULATION. NOTE: field available since Open Inventor 9.8
Set this field to TRUE to apply kerning on text rendering.
For more information about kerning, refer to the FreeType documentation located at http://www.freetype.org/freetype2/documentation.html Default value is FALSE.
Set a margin (extra space) to apply around the text string for the BACK_FRAME and BACK_FRAME_LINE styles.
The margin value is specified as a fraction of the font size. Default value is 0.0. Default value can be changed using the environment variable OIV_TEXT_MARGIN. NOTE: field available since Open Inventor 8.1
Specifies the text rendering orientation.
Use the Orientation enum. Default is LEFT_TO_RIGHT. Default value can be changed using the environment variable OIV_TEXT_ORIENTATION.
Specifies zero or more styles to be applied to text.
Use the Style enum. Default is NONE.
Note: UNDERLINE, STRIKETHROUGH and DOUBLE_STRIKETHROUGH are not implemented for vertical oriented text ( ie: Orientation set to TOP_TO_BOTTOM or BOTTOM_TO_TOP).
NOTE: field available since Open Inventor 8.1Specifies the color to use for each style.
Use the index values defined in the StyleColor enum (NOT the Style enum) to assign the color to the desired style. For example, assign opaque red to the underline color.
SoTextProperty* node = new SoTextProperty(); pNode->styleColors.set1Value( SoTextProperty::UNDERLINE_COLOR, SbColorRGBA(1,0,0,1) );
Default is (0.8,0.8,0.8,1) = the Open Inventor default diffuse color with alpha=1 (opaque).
NOTE: field available since Open Inventor 8.1This field allows to use the current SoMaterial instead of the value specified by styleColors for each available style (default gray).
For example, if the entry corresponding to UNDERLINE_COLOR is set to TRUE, underline will be rendered using the color inherited from SoMaterial. This is convenient if (as usual) the underline should be the same color as the text. Use the index values defined in the StyleColor enum (NOT the Style enum) to set the value for the desired style (see example code for styleColors field). NOTE: field available since Open Inventor 9.4
Defines a quality range of values taken into account during textured text texture computation.
The size of the generated textures depends on this range, expressed in terms of DPI, and depends on the SoComplexity::value. Default is 150 to 300. Default range values can be changed using the environment variables OIV_MIN_TEXTURED_FONT_RES and OIV_MAX_TEXTURED_FONT_RES.
NOTE: field available since Open Inventor 8.1