-
-
Notifications
You must be signed in to change notification settings - Fork 162
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add loader examples to testing (#622)
* Add examples * Updates * Remove example * Remove example * Remove example * Remove example * Add controls types * Remove examples * Remove example * Updates * Updates * Update patch * Delete examples * Add back * Remove obsolete * OTHER_FILES * OTHER_FILES * OTHER_FILES * OTHER_FILES * OTHER_FILES * OTHER_FILES
- Loading branch information
1 parent
c828a0e
commit 7686a12
Showing
15 changed files
with
1,194 additions
and
845 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
import { Points, Loader, LoadingManager } from '../../../src/Three.js'; | ||
import { BufferGeometry, Loader, LoadingManager, Points, PointsMaterial } from '../../../src/Three.js'; | ||
|
||
export class PCDLoader extends Loader<Points> { | ||
export class PCDLoader extends Loader<Points<BufferGeometry, PointsMaterial>> { | ||
constructor(manager?: LoadingManager); | ||
littleEndian: boolean; | ||
|
||
parse(data: ArrayBuffer | string): Points; | ||
parse(data: ArrayBuffer | string): Points<BufferGeometry, PointsMaterial>; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
72 changes: 0 additions & 72 deletions
72
types/three/test/integration/three-examples/webgl_loader_gltf.ts
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.