pmndrs/three-stdlib

Incorrect type definition for `getStrokeStyle` in `SVGLoader.d.ts`

Li1506 opened this issue ยท 1 comments

Li1506 commented
  • three-stdlib version: 2.23.12

Problem description:

SVGLoader.pointsToStroke takes Vector3[] instead of Vector2[] as first argument

Relevant code:

static pointsToStroke(
    points: Vector3[],
    style: StrokeStyle,
    arcDivisions?: number,
    minDistance?: number,
  ): BufferGeometry

Suggested solution:

static pointsToStroke(
    points: Vector2[],
    style: StrokeStyle,
    arcDivisions?: number,
    minDistance?: number,
  ): BufferGeometry

๐ŸŽ‰ This issue has been resolved in version 2.23.15 ๐ŸŽ‰

The release is available on:

Your semantic-release bot ๐Ÿ“ฆ๐Ÿš€