File tree Expand file tree Collapse file tree 15 files changed +74
-45
lines changed
Expand file tree Collapse file tree 15 files changed +74
-45
lines changed Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ export { Points } from './objects/Points';
2626export { Group } from './objects/Group' ;
2727export { VideoTexture } from './textures/VideoTexture' ;
2828export { DataTexture } from './textures/DataTexture' ;
29- // export { DataTexture3D } from './textures/DataTexture3D';
29+ export { DataTexture3D } from './textures/DataTexture3D' ;
3030export { CompressedTexture } from './textures/CompressedTexture' ;
3131export { CubeTexture } from './textures/CubeTexture' ;
3232export { CanvasTexture } from './textures/CanvasTexture' ;
@@ -136,7 +136,7 @@ export { PointLightHelper } from './helpers/PointLightHelper';
136136export { RectAreaLightHelper } from './helpers/RectAreaLightHelper' ;
137137export { HemisphereLightHelper } from './helpers/HemisphereLightHelper' ;
138138export { GridHelper } from './helpers/GridHelper' ;
139- // export { PolarGridHelper } from './helpers/PolarGridHelper';
139+ export { PolarGridHelper } from './helpers/PolarGridHelper' ;
140140export { FaceNormalsHelper } from './helpers/FaceNormalsHelper' ;
141141export { DirectionalLightHelper } from './helpers/DirectionalLightHelper' ;
142142export { CameraHelper } from './helpers/CameraHelper' ;
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ export { Points } from './objects/Points';
2626export { Group } from './objects/Group' ;
2727export { VideoTexture } from './textures/VideoTexture' ;
2828export { DataTexture } from './textures/DataTexture' ;
29- // export { DataTexture3D } from './textures/DataTexture3D';
29+ export { DataTexture3D } from './textures/DataTexture3D' ;
3030export { CompressedTexture } from './textures/CompressedTexture' ;
3131export { CubeTexture } from './textures/CubeTexture' ;
3232export { CanvasTexture } from './textures/CanvasTexture' ;
@@ -139,7 +139,7 @@ export { PointLightHelper } from './helpers/PointLightHelper';
139139export { RectAreaLightHelper } from './helpers/RectAreaLightHelper' ;
140140export { HemisphereLightHelper } from './helpers/HemisphereLightHelper' ;
141141export { GridHelper } from './helpers/GridHelper' ;
142- // export { PolarGridHelper } from './helpers/PolarGridHelper';
142+ export { PolarGridHelper } from './helpers/PolarGridHelper' ;
143143export { FaceNormalsHelper } from './helpers/FaceNormalsHelper' ;
144144export { DirectionalLightHelper } from './helpers/DirectionalLightHelper' ;
145145export { CameraHelper } from './helpers/CameraHelper' ;
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ import { Sphere } from './../math/Sphere';
77import { Geometry } from './Geometry' ;
88import { Event } from './Face3' ;
99import { EventDispatcher } from './EventDispatcher' ;
10- import { MorphTarget } from './Geometry.js ' ;
10+ import { MorphTarget } from './Geometry' ;
1111/**
1212 * @see <a href="https://github.com/mrdoob/three.js/blob/master/src/core/DirectGeometry.js">src/core/DirectGeometry.js</a>
1313 */
Original file line number Diff line number Diff line change 1- export { ArcCurve } from './ArcCurve.js ' ;
2- export { CatmullRomCurve3 } from './CatmullRomCurve3.js ' ;
3- export { CubicBezierCurve } from './CubicBezierCurve.js ' ;
4- export { CubicBezierCurve3 } from './CubicBezierCurve3.js ' ;
5- export { EllipseCurve } from './EllipseCurve.js ' ;
6- export { LineCurve } from './LineCurve.js ' ;
7- export { LineCurve3 } from './LineCurve3.js ' ;
8- export { QuadraticBezierCurve } from './QuadraticBezierCurve.js ' ;
9- export { QuadraticBezierCurve3 } from './QuadraticBezierCurve3.js ' ;
10- export { SplineCurve } from './SplineCurve.js ' ;
1+ export { ArcCurve } from './ArcCurve' ;
2+ export { CatmullRomCurve3 } from './CatmullRomCurve3' ;
3+ export { CubicBezierCurve } from './CubicBezierCurve' ;
4+ export { CubicBezierCurve3 } from './CubicBezierCurve3' ;
5+ export { EllipseCurve } from './EllipseCurve' ;
6+ export { LineCurve } from './LineCurve' ;
7+ export { LineCurve3 } from './LineCurve3' ;
8+ export { QuadraticBezierCurve } from './QuadraticBezierCurve' ;
9+ export { QuadraticBezierCurve3 } from './QuadraticBezierCurve3' ;
10+ export { SplineCurve } from './SplineCurve' ;
Original file line number Diff line number Diff line change 1- import { Geometry } from '../core/Geometry.js ' ;
2- import { BufferGeometry } from '../core/BufferGeometry.js ' ;
3- import { Float32BufferAttribute } from '../core/BufferAttribute.js ' ;
4- import { Vector3 } from '../math/Vector3.js ' ;
1+ import { Geometry } from '../core/Geometry' ;
2+ import { BufferGeometry } from '../core/BufferGeometry' ;
3+ import { Float32BufferAttribute } from '../core/BufferAttribute' ;
4+ import { Vector3 } from '../math/Vector3' ;
55
66// Extras / Geometries /////////////////////////////////////////////////////////////////////
77export class BoxBufferGeometry extends BufferGeometry {
Original file line number Diff line number Diff line change 11import { Geometry } from './../core/Geometry' ;
2- import { BufferGeometry } from '../core/BufferGeometry.js ' ;
2+ import { BufferGeometry } from '../core/BufferGeometry' ;
33
44/**
55 * @deprecated Use {@link BoxGeometry} instead.
Original file line number Diff line number Diff line change 1- import { CylinderGeometry } from './CylinderGeometry.js ' ;
2- import { CylinderBufferGeometry } from './CylinderGeometry.js ' ;
1+ import { CylinderGeometry } from './CylinderGeometry' ;
2+ import { CylinderBufferGeometry } from './CylinderGeometry' ;
33import { BufferGeometry } from '../core/BufferGeometry' ;
44
55export class ConeBufferGeometry extends BufferGeometry {
Original file line number Diff line number Diff line change 11import { Geometry } from './../core/Geometry' ;
2- import { BufferGeometry } from '../core/BufferGeometry.js ' ;
2+ import { BufferGeometry } from '../core/BufferGeometry' ;
33
44export class CylinderBufferGeometry extends BufferGeometry {
55 constructor (
Original file line number Diff line number Diff line change 11import { Geometry } from './../core/Geometry' ;
2- import { PolyhedronBufferGeometry } from './PolyhedronGeometry.js ' ;
2+ import { PolyhedronBufferGeometry } from './PolyhedronGeometry' ;
33
44export class DodecahedronBufferGeometry extends PolyhedronBufferGeometry {
55 constructor ( radius ?: number , detail ?: number ) ;
Original file line number Diff line number Diff line change 1+ import { LineSegments } from '../objects/LineSegments' ;
2+ import { VertexColors } from '../constants.js' ;
3+ import { LineBasicMaterial } from '../materials/LineBasicMaterial' ;
4+ import { Float32BufferAttribute } from '../core/BufferAttribute' ;
5+ import { BufferGeometry } from '../core/BufferGeometry' ;
6+ import { Color } from '../math/Color' ;
7+
8+ export class PolarGridHelper {
9+ constructor (
10+ radius : number ,
11+ radials : number ,
12+ circles : number ,
13+ divisions : number ,
14+ color1 : Color | string | number | undefined ,
15+ color2 : Color | string | number | undefined
16+ ) ;
17+ }
You can’t perform that action at this time.
0 commit comments