(text: &str, font: &Resource, typesetting: TypesettingConfig)
| 20 | } |
| 21 | |
| 22 | pub fn lines_clipping(text: &str, font: &Resource, typesetting: TypesettingConfig) -> bool { |
| 23 | TextContext::with_thread_local(|ctx| ctx.lines_clipping(text, font, typesetting)) |
| 24 | } |
| 25 | |
| 26 | /// Shapes each string item of a styled `List<String>` into vector geometry, reading its font and typesetting |
| 27 | /// from the item's attributes (as set by the 'Text' node) and re-applying its transform and blending |
no test coverage detected