We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6f630a8 commit b5d1167Copy full SHA for b5d1167
examples/jsm/loaders/SVGLoader.js
@@ -2968,8 +2968,8 @@ class SVGLoader extends Loader {
2968
// Bevel join triangle
2969
2970
addVertex( currentPointR, u, 1 );
2971
- addVertex( nextPointR, u, 0 );
2972
- addVertex( innerPoint, u, 0.5 );
+ addVertex( innerPoint, u, 0 );
+ addVertex( nextPointR, u, 1 );
2973
2974
}
2975
@@ -3106,8 +3106,8 @@ class SVGLoader extends Loader {
3106
3107
} else {
3108
3109
- tempV2_3.toArray( vertices, vl - 2 * 3 );
3110
- tempV2_4.toArray( vertices, vl - 1 * 3 );
+ tempV2_4.toArray( vertices, vl - 2 * 3 );
+ tempV2_3.toArray( vertices, vl - 1 * 3 );
3111
tempV2_4.toArray( vertices, vl - 4 * 3 );
3112
3113
0 commit comments