This tool provides basic services for rendering of vectorized text glyphs as BRep shapes. Single instance initialize single font for sequential glyphs rendering with implicit caching of already rendered glyphs. Thus position of each glyph in the text is specified by shape location.
More...
|
| | StdPrs_BRepFont () |
| | Empty constructor.
|
| |
| | StdPrs_BRepFont (const NCollection_String &theFontPath, const double theSize, const int theFaceId=0) |
| | Constructor with initialization.
|
| |
| | StdPrs_BRepFont (const NCollection_String &theFontName, const Font_FontAspect theFontAspect, const double theSize, const Font_StrictLevel theStrictLevel=Font_StrictLevel_Any) |
| | Constructor with initialization.
|
| |
| virtual void | Release () |
| | Release currently loaded font.
|
| |
| bool | Init (const NCollection_String &theFontPath, const double theSize, const int theFaceId) |
| | Initialize the font.
|
| |
| bool | FindAndInit (const TCollection_AsciiString &theFontName, const Font_FontAspect theFontAspect, const double theSize, const Font_StrictLevel theStrictLevel=Font_StrictLevel_Any) |
| | Find (using Font_FontMgr) and initialize the font from the given name. Please take into account that size is specified NOT in typography points (pt.). If you need to specify size in points, value should be converted. Formula for pt. -> m conversion: aSizeMeters = 0.0254 * theSizePt / 72.0.
|
| |
| const occ::handle< Font_FTFont > & | FTFont () const |
| | Return wrapper over FreeType font.
|
| |
| TopoDS_Shape | RenderGlyph (const char32_t &theChar) |
| | Render single glyph as TopoDS_Shape.
|
| |
| void | SetCompositeCurveMode (const bool theToConcatenate) |
| | Setup glyph geometry construction mode. By default algorithm creates independent TopoDS_Edge for each original curve in the glyph (line segment or Bezie curve). Algorithm might optionally create composite BSpline curve for each contour which reduces memory footprint but limits curve class to C0. Notice that altering this flag clears currently accumulated cache!
|
| |
| void | SetWidthScaling (const float theScaleFactor) |
| | Setup glyph scaling along X-axis. By default glyphs are not scaled (scaling factor = 1.0)
|
| |
| double | Ascender () const |
| |
| double | Descender () const |
| |
| double | LineSpacing () const |
| |
| double | PointSize () const |
| | Configured point size.
|
| |
| double | AdvanceX (const char32_t theUCharNext) |
| | Compute advance to the next character with kerning applied when applicable. Assuming text rendered horizontally.
|
| |
| double | AdvanceX (const char32_t theUChar, const char32_t theUCharNext) |
| | Compute advance to the next character with kerning applied when applicable. Assuming text rendered horizontally.
|
| |
| double | AdvanceY (const char32_t theUCharNext) |
| | Compute advance to the next character with kerning applied when applicable. Assuming text rendered vertically.
|
| |
| double | AdvanceY (const char32_t theUChar, const char32_t theUCharNext) |
| | Compute advance to the next character with kerning applied when applicable. Assuming text rendered vertically.
|
| |
| double | Scale () const |
| | Returns scaling factor for current font size.
|
| |
| std::mutex & | Mutex () |
| | Returns mutex.
|
| |
| bool | Init (const NCollection_String &theFontName, const Font_FontAspect theFontAspect, const double theSize) |
| | Find (using Font_FontMgr) and initialize the font from the given name. Alias for FindAndInit() for backward compatibility.
|
| |
Public Member Functions inherited from Standard_Transient |
| | Standard_Transient () |
| | Empty constructor.
|
| |
| | Standard_Transient (const Standard_Transient &) |
| | Copy constructor – does nothing.
|
| |
| Standard_Transient & | operator= (const Standard_Transient &) |
| | Assignment operator, needed to avoid copying reference counter.
|
| |
| virtual | ~Standard_Transient ()=default |
| | Destructor must be virtual.
|
| |
| virtual const opencascade::handle< Standard_Type > & | DynamicType () const |
| | Returns a type descriptor about this object.
|
| |
| bool | IsInstance (const opencascade::handle< Standard_Type > &theType) const |
| | Returns a true value if this is an instance of Type.
|
| |
| bool | IsInstance (const char *const theTypeName) const |
| | Returns a true value if this is an instance of TypeName.
|
| |
| bool | IsKind (const opencascade::handle< Standard_Type > &theType) const |
| | Returns true if this is an instance of Type or an instance of any class that inherits from Type. Note that multiple inheritance is not supported by OCCT RTTI mechanism.
|
| |
| bool | IsKind (const char *const theTypeName) const |
| | Returns true if this is an instance of TypeName or an instance of any class that inherits from TypeName. Note that multiple inheritance is not supported by OCCT RTTI mechanism.
|
| |
| Standard_Transient * | This () const |
| | Returns non-const pointer to this object (like const_cast). For protection against creating handle to objects allocated in stack or call from constructor, it will raise exception Standard_ProgramError if reference counter is zero.
|
| |
| int | GetRefCount () const noexcept |
| | Get the reference counter of this object.
|
| |
| void | IncrementRefCounter () noexcept |
| | Increments the reference counter of this object. Uses relaxed memory ordering since incrementing only requires atomicity, not synchronization with other memory operations.
|
| |
| int | DecrementRefCounter () noexcept |
| | Decrements the reference counter of this object; returns the decremented value. Uses release ordering for the decrement to ensure all writes to the object are visible before the count reaches zero. An acquire fence is added only when the count reaches zero, ensuring proper synchronization before deletion. This is more efficient than using acq_rel for every decrement.
|
| |
| virtual void | Delete () const |
| | Memory deallocator for transient classes.
|
| |
This tool provides basic services for rendering of vectorized text glyphs as BRep shapes. Single instance initialize single font for sequential glyphs rendering with implicit caching of already rendered glyphs. Thus position of each glyph in the text is specified by shape location.
Please notice that this implementation uses mutex for thread-safety access, thus may lead to performance penalties in case of concurrent access. Although caching should eliminate this issue after rendering of sufficient number of glyphs.