You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// SVG path `d` attribute string for the reference path.
29
+
pubpath_d:String,
30
+
pubstart_offset:f64,
31
+
pubstart_offset_percent:bool,
32
+
/// "start" | "middle" | "end"
33
+
pubtext_anchor:String,
34
+
/// "left" | "right"
35
+
pubside:String,
36
+
/// "align" | "stretch"
37
+
pubmethod:String,
38
+
/// "exact" | "auto"
39
+
pubspacing:String,
40
+
pubtext_length:Option<f64>,
41
+
/// "spacing" | "spacingAndGlyphs"
42
+
publength_adjust:String,
43
+
}
17
44
18
45
/// Represents vector graphics data, composed of Bézier curves in a path or mesh arrangement.
19
46
///
@@ -36,6 +63,11 @@ pub struct Vector<Upstream> {
36
63
/// Without this, the tools would be working with a collapsed version of the data which has no reference to the original child layers that were booleaned together, resulting in the inner layers not being editable.
37
64
#[serde(alias = "upstream_group")]
38
65
pubupstream_data:Upstream,
66
+
67
+
/// When set, this vector was produced by a text-on-path node. SVG export uses this metadata
68
+
/// to emit a `<text><textPath>` element instead of raw path outlines.
0 commit comments