Coin
4.0.3
Coin3D core library
|
The SoGlyph class is used to generate and reuse font glyph bitmaps and outlines. More...
#include <Inventor/misc/SoGlyph.h>
Public Types | |
enum | Fonttype { FONT2D = 1 , FONT3D = 2 } |
Public Member Functions | |
SbVec2s | getAdvance (void) const |
unsigned char * | getBitmap (SbVec2s &size, SbVec2s &pos, const SbBool antialiased) const |
const SbBox2f & | getBoundingBox (void) const |
const SbVec2f * | getCoords (void) const |
const int * | getEdgeIndices (void) const |
const int * | getFaceIndices (void) const |
SbVec2s | getKerning (const SoGlyph &rightglyph) const |
const int * | getNextCCWEdge (const int edgeidx) const |
const int * | getNextCWEdge (const int edgeidx) const |
float | getWidth (void) const |
void | unref (void) const |
Static Public Member Functions | |
static const SoGlyph * | getGlyph (const char character, const SbName &font) |
static const SoGlyph * | getGlyph (SoState *state, const unsigned int character, const SbVec2s &size, const float angle) |
Protected Member Functions | |
SoGlyph (void) | |
~SoGlyph () | |
void | setCoords (const SbVec2f *coords, int numcoords=-1) |
void | setEdgeIndices (const int *indices, int numindices=-1) |
void | setFaceIndices (const int *indices, int numindices=-1) |
The SoGlyph class is used to generate and reuse font glyph bitmaps and outlines.
This class is now obsolete, and will be removed from a later version of Coin.
SoGlyph is the public interface all text nodes (both built-in and extensions) should use to generate bitmaps and outlines for font glyphs. It maintains an internal cache of previously requested glyphs to avoid needless calls into the font library.
Primer: a glyph is the graphical representation of a given character of a given font at a given size and orientation. It can be either a bitmap (pixel aligned with the viewport) or an outline (polygonal representation) that can be transformed or extruded like any other 3D geometry. Bitmaps are used by SoText2, while the other text nodes uses outlines.
Be aware that this class is an extension for Coin, and it is not available in the original SGI Open Inventor v2.1 API.
|
protected |
Constructor.
|
protected |
Destructor.
unsigned char * SoGlyph::getBitmap | ( | SbVec2s & | size, |
SbVec2s & | pos, | ||
const SbBool | antialiased ) const |
Bitmap for glyph. size and pos are return parameters. Antialiased bitmap graphics are not yet supported.
Note that this function may return NULL
if the glyph has no visible pixels (as for e.g. the space character).
The returned buffer should not be deallocated by the caller.
Returns the bounding box of this glyph. This value is cached for performance.
Returns a character of the specified font, suitable for polygonal rendering.
|
static |
Returns a character of the specified font, suitable for bitmap rendering. The size parameter overrides state's SoFontSizeElement (if != SbVec2s(0,0))
Returns a pointer to the next counterclockwise edge. Returns NULL if none could be found.
Returns a pointer to the next clockwise edge. Returns NULL if none could be found.
float SoGlyph::getWidth | ( | void | ) | const |
Convenience method which returns the exact width of the glyph.
Sets the coordinates for this glyph.
Sets the edge indices for this glyph.
Sets the face indices for this glyph.
Should be called when a node no longer will use a glyph. Will free memory used by this glyph when it is no longer used by any node.