Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: mrdoob/three.js
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: fded437eb6e1f86e456f6d45715b61e2e05e9268
Choose a base ref
...
head repository: mrdoob/three.js
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 9ef27d1af7809fa4d9943f8d4c4644e365ab6d2d
Choose a head ref
  • 3 commits
  • 2 files changed
  • 2 contributors

Commits on Sep 30, 2020

  1. missing exports in Geometries.d.ts

    three/src/Three"' has no exported member 'BoxBufferGeometry'.
    
    I updated `Geometries.d.ts` to export the same thing as the .js version
    leon authored Sep 30, 2020

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    Brooooooklyn LongYinan
    Copy the full SHA
    0789687 View commit details
  2. Merge pull request #20437 from leon/patch-1

    TS: Fixed exports in Geometries.d.ts
    mrdoob authored Sep 30, 2020

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    Brooooooklyn LongYinan
    Copy the full SHA
    f9ed736 View commit details
  3. r121.1

    mrdoob committed Sep 30, 2020
    Copy the full SHA
    9ef27d1 View commit details
Showing with 43 additions and 23 deletions.
  1. +1 −1 package.json
  2. +42 −22 src/geometries/Geometries.d.ts
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "three",
"version": "0.121.0",
"version": "0.121.1",
"description": "JavaScript 3D library",
"main": "build/three.js",
"module": "build/three.module.js",
64 changes: 42 additions & 22 deletions src/geometries/Geometries.d.ts
Original file line number Diff line number Diff line change
@@ -1,22 +1,42 @@
export * from './WireframeGeometry';
export * from './ParametricGeometry';
export * from './TetrahedronGeometry';
export * from './OctahedronGeometry';
export * from './IcosahedronGeometry';
export * from './DodecahedronGeometry';
export * from './PolyhedronGeometry';
export * from './TubeGeometry';
export * from './TorusKnotGeometry';
export * from './TorusGeometry';
export * from './TextGeometry';
export * from './SphereGeometry';
export * from './RingGeometry';
export * from './PlaneGeometry';
export * from './LatheGeometry';
export * from './ShapeGeometry';
export * from './ExtrudeGeometry';
export * from './EdgesGeometry';
export * from './ConeGeometry';
export * from './CylinderGeometry';
export * from './CircleGeometry';
export * from './BoxGeometry';
export { BoxGeometry } from './BoxGeometry';
export { BoxBufferGeometry } from './BoxBufferGeometry';
export { CircleGeometry } from './CircleGeometry';
export { CircleBufferGeometry } from './CircleBufferGeometry';
export { ConeGeometry } from './ConeGeometry';
export { ConeBufferGeometry } from './ConeBufferGeometry';
export { CylinderGeometry } from './CylinderGeometry';
export { CylinderBufferGeometry } from './CylinderBufferGeometry';
export { DodecahedronGeometry } from './DodecahedronGeometry';
export { DodecahedronBufferGeometry } from './DodecahedronBufferGeometry';
export { EdgesGeometry } from './EdgesGeometry';
export { ExtrudeGeometry } from './ExtrudeGeometry';
export { ExtrudeBufferGeometry } from './ExtrudeBufferGeometry';
export { IcosahedronGeometry } from './IcosahedronGeometry';
export { IcosahedronBufferGeometry } from './IcosahedronBufferGeometry';
export { LatheGeometry } from './LatheGeometry';
export { LatheBufferGeometry } from './LatheBufferGeometry';
export { OctahedronGeometry } from './OctahedronGeometry';
export { OctahedronBufferGeometry } from './OctahedronBufferGeometry';
export { ParametricGeometry } from './ParametricGeometry';
export { ParametricBufferGeometry } from './ParametricBufferGeometry';
export { PlaneGeometry } from './PlaneGeometry';
export { PlaneBufferGeometry } from './PlaneBufferGeometry';
export { PolyhedronGeometry } from './PolyhedronGeometry';
export { PolyhedronBufferGeometry } from './PolyhedronBufferGeometry';
export { RingGeometry } from './RingGeometry';
export { RingBufferGeometry } from './RingBufferGeometry';
export { ShapeGeometry } from './ShapeGeometry';
export { ShapeBufferGeometry } from './ShapeBufferGeometry';
export { SphereGeometry } from './SphereGeometry';
export { SphereBufferGeometry } from './SphereBufferGeometry';
export { TetrahedronGeometry } from './TetrahedronGeometry';
export { TetrahedronBufferGeometry } from './TetrahedronBufferGeometry';
export { TextGeometry } from './TextGeometry';
export { TextBufferGeometry } from './TextBufferGeometry';
export { TorusGeometry } from './TorusGeometry';
export { TorusBufferGeometry } from './TorusBufferGeometry';
export { TorusKnotGeometry } from './TorusKnotGeometry';
export { TorusKnotBufferGeometry } from './TorusKnotBufferGeometry';
export { TubeGeometry } from './TubeGeometry';
export { TubeBufferGeometry } from './TubeBufferGeometry';
export { WireframeGeometry } from './WireframeGeometry';