Explorar el Código

Merge pull request #18018 from Mugen87/dev29

TS: Added missing declaration file for TubePainter.
Michael Herzog hace 5 años
padre
commit
e30024042a
Se han modificado 1 ficheros con 16 adiciones y 0 borrados
  1. 16 0
      examples/jsm/misc/TubePainter.d.ts

+ 16 - 0
examples/jsm/misc/TubePainter.d.ts

@@ -0,0 +1,16 @@
+import {
+	Matrix4,
+	Mesh,
+	Vector3
+} from '../../../src/Three';
+
+export class TubePainter {
+
+	constructor();
+
+	mesh: Mesh;
+
+	stroke( position1: Vector3, position2: Vector3, matrix1: Matrix4, matrix2: Matrix4 ): void;
+	updateGeometry( start: number, end: number ): void;
+
+}