TransformedTextRenderer
open class TransformedTextRenderer<T>(val original: TextRenderer<T>, val transformation: (ITextRendererActions) -> ITextRendererActions) : TextRenderer<T>
Inheritors
Constructors
Link copied to clipboard
constructor(original: TextRenderer<T>, transformation: (ITextRendererActions) -> ITextRendererActions)
Functions
Link copied to clipboard
inline fun <T> TextRenderer<T>.aroundPath(out: VectorPath = VectorPath(), block: VectorPath.() -> Unit): CurveTextRenderer<T>
Link copied to clipboard
operator fun <T> TextRenderer<T>.invoke(actions: ITextRendererActions, text: T, size: Double, defaultFont: Font)
Link copied to clipboard
fun <T> TextRenderer<T>.measure(text: T, size: Double, defaultFont: Font): BoundBuilderTextRendererActions
Link copied to clipboard
fun <T> TextRenderer<T>.transformed(transformation: (ITextRendererActions) -> ITextRendererActions): TransformedTextRenderer<T>
Link copied to clipboard