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
* How deep into the original shape the bevel goes.
31
+
* @default 10
38
32
*/
39
33
bevelThickness?: number|undefined;
40
34
41
35
/**
42
-
* How far from text outline is bevel.
43
-
* Expects a `Float`.
44
-
* @override
45
-
* @defaultValue `8`
36
+
* Distance from the shape outline that the bevel extends.
37
+
* @default 8
46
38
*/
47
39
bevelSize?: number|undefined;
48
40
49
-
/**
50
-
* How far from text outline bevel starts.
51
-
* Expects a `Float`.
52
-
* @override
53
-
* @defaultValue `0`
54
-
*/
55
-
bevelOffset?: number|undefined;
56
-
57
-
/**
58
-
* @override
59
-
* @defaultValue `3`
60
-
*/
61
-
bevelSegments?: number|undefined;
62
-
63
41
direction?: "ltr"|"rtl"|"tb"|undefined;
64
42
}
65
43
66
44
/**
67
-
* A class for generating text as a single geometry
68
-
* @remarks
69
-
* It is constructed by providing a string of text, and a set of parameters consisting of a loaded font and settings for the geometry's parent {@link THREE.ExtrudeGeometry | ExtrudeGeometry}
70
-
* See the {@link THREE.FontLoader | FontLoader} page for additional details.
71
-
* @example
72
-
* ```typescript
45
+
* A class for generating text as a single geometry. It is constructed by providing a string of text, and a set of
46
+
* parameters consisting of a loaded font and extrude settings.
47
+
*
48
+
* See the {@link FontLoader} page for additional details.
0 commit comments