|
@@ -26460,44 +26460,25 @@ function isUniqueEdge(start, end, edges) {
|
|
|
var Geometries = /*#__PURE__*/Object.freeze({
|
|
|
__proto__: null,
|
|
|
BoxGeometry: BoxGeometry,
|
|
|
- BoxBufferGeometry: BoxGeometry,
|
|
|
CapsuleGeometry: CapsuleGeometry,
|
|
|
- CapsuleBufferGeometry: CapsuleGeometry,
|
|
|
CircleGeometry: CircleGeometry,
|
|
|
- CircleBufferGeometry: CircleGeometry,
|
|
|
ConeGeometry: ConeGeometry,
|
|
|
- ConeBufferGeometry: ConeGeometry,
|
|
|
CylinderGeometry: CylinderGeometry,
|
|
|
- CylinderBufferGeometry: CylinderGeometry,
|
|
|
DodecahedronGeometry: DodecahedronGeometry,
|
|
|
- DodecahedronBufferGeometry: DodecahedronGeometry,
|
|
|
EdgesGeometry: EdgesGeometry,
|
|
|
ExtrudeGeometry: ExtrudeGeometry,
|
|
|
- ExtrudeBufferGeometry: ExtrudeGeometry,
|
|
|
IcosahedronGeometry: IcosahedronGeometry,
|
|
|
- IcosahedronBufferGeometry: IcosahedronGeometry,
|
|
|
LatheGeometry: LatheGeometry,
|
|
|
- LatheBufferGeometry: LatheGeometry,
|
|
|
OctahedronGeometry: OctahedronGeometry,
|
|
|
- OctahedronBufferGeometry: OctahedronGeometry,
|
|
|
PlaneGeometry: PlaneGeometry,
|
|
|
- PlaneBufferGeometry: PlaneGeometry,
|
|
|
PolyhedronGeometry: PolyhedronGeometry,
|
|
|
- PolyhedronBufferGeometry: PolyhedronGeometry,
|
|
|
RingGeometry: RingGeometry,
|
|
|
- RingBufferGeometry: RingGeometry,
|
|
|
ShapeGeometry: ShapeGeometry,
|
|
|
- ShapeBufferGeometry: ShapeGeometry,
|
|
|
SphereGeometry: SphereGeometry,
|
|
|
- SphereBufferGeometry: SphereGeometry,
|
|
|
TetrahedronGeometry: TetrahedronGeometry,
|
|
|
- TetrahedronBufferGeometry: TetrahedronGeometry,
|
|
|
TorusGeometry: TorusGeometry,
|
|
|
- TorusBufferGeometry: TorusGeometry,
|
|
|
TorusKnotGeometry: TorusKnotGeometry,
|
|
|
- TorusKnotBufferGeometry: TorusKnotGeometry,
|
|
|
TubeGeometry: TubeGeometry,
|
|
|
- TubeBufferGeometry: TubeGeometry,
|
|
|
WireframeGeometry: WireframeGeometry
|
|
|
});
|
|
|
|
|
@@ -35336,6 +35317,158 @@ class DataTexture3D extends Data3DTexture {
|
|
|
super(data, width, height, depth);
|
|
|
}
|
|
|
|
|
|
+} // r144
|
|
|
+
|
|
|
+class BoxBufferGeometry extends BoxGeometry {
|
|
|
+ constructor(width, height, depth, widthSegments, heightSegments, depthSegments) {
|
|
|
+ console.warn('THREE.BoxBufferGeometry has been renamed to THREE.BoxGeometry.');
|
|
|
+ super(width, height, depth, widthSegments, heightSegments, depthSegments);
|
|
|
+ }
|
|
|
+
|
|
|
+} // r144
|
|
|
+
|
|
|
+class CapsuleBufferGeometry extends CapsuleGeometry {
|
|
|
+ constructor(radius, length, capSegments, radialSegments) {
|
|
|
+ console.warn('THREE.CapsuleBufferGeometry has been renamed to THREE.CapsuleGeometry.');
|
|
|
+ super(radius, length, capSegments, radialSegments);
|
|
|
+ }
|
|
|
+
|
|
|
+} // r144
|
|
|
+
|
|
|
+class CircleBufferGeometry extends CircleGeometry {
|
|
|
+ constructor(radius, segments, thetaStart, thetaLength) {
|
|
|
+ console.warn('THREE.CircleBufferGeometry has been renamed to THREE.CircleGeometry.');
|
|
|
+ super(radius, segments, thetaStart, thetaLength);
|
|
|
+ }
|
|
|
+
|
|
|
+} // r144
|
|
|
+
|
|
|
+class ConeBufferGeometry extends ConeGeometry {
|
|
|
+ constructor(radius, height, radialSegments, heightSegments, openEnded, thetaStart, thetaLength) {
|
|
|
+ console.warn('THREE.ConeBufferGeometry has been renamed to THREE.ConeGeometry.');
|
|
|
+ super(radius, height, radialSegments, heightSegments, openEnded, thetaStart, thetaLength);
|
|
|
+ }
|
|
|
+
|
|
|
+} // r144
|
|
|
+
|
|
|
+class CylinderBufferGeometry extends CylinderGeometry {
|
|
|
+ constructor(radiusTop, radiusBottom, height, radialSegments, heightSegments, openEnded, thetaStart, thetaLength) {
|
|
|
+ console.warn('THREE.CylinderBufferGeometry has been renamed to THREE.CylinderGeometry.');
|
|
|
+ super(radiusTop, radiusBottom, height, radialSegments, heightSegments, openEnded, thetaStart, thetaLength);
|
|
|
+ }
|
|
|
+
|
|
|
+} // r144
|
|
|
+
|
|
|
+class DodecahedronBufferGeometry extends DodecahedronGeometry {
|
|
|
+ constructor(radius, detail) {
|
|
|
+ console.warn('THREE.DodecahedronBufferGeometry has been renamed to THREE.DodecahedronGeometry.');
|
|
|
+ super(radius, detail);
|
|
|
+ }
|
|
|
+
|
|
|
+} // r144
|
|
|
+
|
|
|
+class ExtrudeBufferGeometry extends ExtrudeGeometry {
|
|
|
+ constructor(shapes, options) {
|
|
|
+ console.warn('THREE.ExtrudeBufferGeometry has been renamed to THREE.ExtrudeGeometry.');
|
|
|
+ super(shapes, options);
|
|
|
+ }
|
|
|
+
|
|
|
+} // r144
|
|
|
+
|
|
|
+class IcosahedronBufferGeometry extends IcosahedronGeometry {
|
|
|
+ constructor(radius, detail) {
|
|
|
+ console.warn('THREE.IcosahedronBufferGeometry has been renamed to THREE.IcosahedronGeometry.');
|
|
|
+ super(radius, detail);
|
|
|
+ }
|
|
|
+
|
|
|
+} // r144
|
|
|
+
|
|
|
+class LatheBufferGeometry extends LatheGeometry {
|
|
|
+ constructor(points, segments, phiStart, phiLength) {
|
|
|
+ console.warn('THREE.LatheBufferGeometry has been renamed to THREE.LatheGeometry.');
|
|
|
+ super(points, segments, phiStart, phiLength);
|
|
|
+ }
|
|
|
+
|
|
|
+} // r144
|
|
|
+
|
|
|
+class OctahedronBufferGeometry extends OctahedronGeometry {
|
|
|
+ constructor(radius, detail) {
|
|
|
+ console.warn('THREE.OctahedronBufferGeometry has been renamed to THREE.OctahedronGeometry.');
|
|
|
+ super(radius, detail);
|
|
|
+ }
|
|
|
+
|
|
|
+} // r144
|
|
|
+
|
|
|
+class PlaneBufferGeometry extends PlaneGeometry {
|
|
|
+ constructor(width, height, widthSegments, heightSegments) {
|
|
|
+ console.warn('THREE.PlaneBufferGeometry has been renamed to THREE.PlaneGeometry.');
|
|
|
+ super(width, height, widthSegments, heightSegments);
|
|
|
+ }
|
|
|
+
|
|
|
+} // r144
|
|
|
+
|
|
|
+class PolyhedronBufferGeometry extends PolyhedronGeometry {
|
|
|
+ constructor(vertices, indices, radius, detail) {
|
|
|
+ console.warn('THREE.PolyhedronBufferGeometry has been renamed to THREE.PolyhedronGeometry.');
|
|
|
+ super(vertices, indices, radius, detail);
|
|
|
+ }
|
|
|
+
|
|
|
+} // r144
|
|
|
+
|
|
|
+class RingBufferGeometry extends RingGeometry {
|
|
|
+ constructor(innerRadius, outerRadius, thetaSegments, phiSegments, thetaStart, thetaLength) {
|
|
|
+ console.warn('THREE.RingBufferGeometry has been renamed to THREE.RingGeometry.');
|
|
|
+ super(innerRadius, outerRadius, thetaSegments, phiSegments, thetaStart, thetaLength);
|
|
|
+ }
|
|
|
+
|
|
|
+} // r144
|
|
|
+
|
|
|
+class ShapeBufferGeometry extends ShapeGeometry {
|
|
|
+ constructor(shapes, curveSegments) {
|
|
|
+ console.warn('THREE.ShapeBufferGeometry has been renamed to THREE.ShapeGeometry.');
|
|
|
+ super(shapes, curveSegments);
|
|
|
+ }
|
|
|
+
|
|
|
+} // r144
|
|
|
+
|
|
|
+class SphereBufferGeometry extends SphereGeometry {
|
|
|
+ constructor(radius, widthSegments, heightSegments, phiStart, phiLength, thetaStart, thetaLength) {
|
|
|
+ console.warn('THREE.SphereBufferGeometry has been renamed to THREE.SphereGeometry.');
|
|
|
+ super(radius, widthSegments, heightSegments, phiStart, phiLength, thetaStart, thetaLength);
|
|
|
+ }
|
|
|
+
|
|
|
+} // r144
|
|
|
+
|
|
|
+class TetrahedronBufferGeometry extends TetrahedronGeometry {
|
|
|
+ constructor(radius, detail) {
|
|
|
+ console.warn('THREE.TetrahedronBufferGeometry has been renamed to THREE.TetrahedronGeometry.');
|
|
|
+ super(radius, detail);
|
|
|
+ }
|
|
|
+
|
|
|
+} // r144
|
|
|
+
|
|
|
+class TorusBufferGeometry extends TorusGeometry {
|
|
|
+ constructor(radius, tube, radialSegments, tubularSegments, arc) {
|
|
|
+ console.warn('THREE.TorusBufferGeometry has been renamed to THREE.TorusGeometry.');
|
|
|
+ super(radius, tube, radialSegments, tubularSegments, arc);
|
|
|
+ }
|
|
|
+
|
|
|
+} // r144
|
|
|
+
|
|
|
+class TorusKnotBufferGeometry extends TorusKnotGeometry {
|
|
|
+ constructor(radius, tube, tubularSegments, radialSegments, p, q) {
|
|
|
+ console.warn('THREE.TorusKnotBufferGeometry has been renamed to THREE.TorusKnotGeometry.');
|
|
|
+ super(radius, tube, tubularSegments, radialSegments, p, q);
|
|
|
+ }
|
|
|
+
|
|
|
+} // r144
|
|
|
+
|
|
|
+class TubeBufferGeometry extends TubeGeometry {
|
|
|
+ constructor(path, tubularSegments, radius, radialSegments, closed) {
|
|
|
+ console.warn('THREE.TubeBufferGeometry has been renamed to THREE.TubeGeometry.');
|
|
|
+ super(path, tubularSegments, radius, radialSegments, closed);
|
|
|
+ }
|
|
|
+
|
|
|
}
|
|
|
|
|
|
if (typeof __THREE_DEVTOOLS__ !== 'undefined') {
|
|
@@ -35386,7 +35519,7 @@ exports.BooleanKeyframeTrack = BooleanKeyframeTrack;
|
|
|
exports.Box2 = Box2;
|
|
|
exports.Box3 = Box3;
|
|
|
exports.Box3Helper = Box3Helper;
|
|
|
-exports.BoxBufferGeometry = BoxGeometry;
|
|
|
+exports.BoxBufferGeometry = BoxBufferGeometry;
|
|
|
exports.BoxGeometry = BoxGeometry;
|
|
|
exports.BoxHelper = BoxHelper;
|
|
|
exports.BufferAttribute = BufferAttribute;
|
|
@@ -35397,11 +35530,11 @@ exports.Cache = Cache;
|
|
|
exports.Camera = Camera;
|
|
|
exports.CameraHelper = CameraHelper;
|
|
|
exports.CanvasTexture = CanvasTexture;
|
|
|
-exports.CapsuleBufferGeometry = CapsuleGeometry;
|
|
|
+exports.CapsuleBufferGeometry = CapsuleBufferGeometry;
|
|
|
exports.CapsuleGeometry = CapsuleGeometry;
|
|
|
exports.CatmullRomCurve3 = CatmullRomCurve3;
|
|
|
exports.CineonToneMapping = CineonToneMapping;
|
|
|
-exports.CircleBufferGeometry = CircleGeometry;
|
|
|
+exports.CircleBufferGeometry = CircleBufferGeometry;
|
|
|
exports.CircleGeometry = CircleGeometry;
|
|
|
exports.ClampToEdgeWrapping = ClampToEdgeWrapping;
|
|
|
exports.Clock = Clock;
|
|
@@ -35410,7 +35543,7 @@ exports.ColorKeyframeTrack = ColorKeyframeTrack;
|
|
|
exports.ColorManagement = ColorManagement;
|
|
|
exports.CompressedTexture = CompressedTexture;
|
|
|
exports.CompressedTextureLoader = CompressedTextureLoader;
|
|
|
-exports.ConeBufferGeometry = ConeGeometry;
|
|
|
+exports.ConeBufferGeometry = ConeBufferGeometry;
|
|
|
exports.ConeGeometry = ConeGeometry;
|
|
|
exports.CubeCamera = CubeCamera;
|
|
|
exports.CubeReflectionMapping = CubeReflectionMapping;
|
|
@@ -35429,7 +35562,7 @@ exports.Curve = Curve;
|
|
|
exports.CurvePath = CurvePath;
|
|
|
exports.CustomBlending = CustomBlending;
|
|
|
exports.CustomToneMapping = CustomToneMapping;
|
|
|
-exports.CylinderBufferGeometry = CylinderGeometry;
|
|
|
+exports.CylinderBufferGeometry = CylinderBufferGeometry;
|
|
|
exports.CylinderGeometry = CylinderGeometry;
|
|
|
exports.Cylindrical = Cylindrical;
|
|
|
exports.Data3DTexture = Data3DTexture;
|
|
@@ -35448,7 +35581,7 @@ exports.DepthTexture = DepthTexture;
|
|
|
exports.DirectionalLight = DirectionalLight;
|
|
|
exports.DirectionalLightHelper = DirectionalLightHelper;
|
|
|
exports.DiscreteInterpolant = DiscreteInterpolant;
|
|
|
-exports.DodecahedronBufferGeometry = DodecahedronGeometry;
|
|
|
+exports.DodecahedronBufferGeometry = DodecahedronBufferGeometry;
|
|
|
exports.DodecahedronGeometry = DodecahedronGeometry;
|
|
|
exports.DoubleSide = DoubleSide;
|
|
|
exports.DstAlphaFactor = DstAlphaFactor;
|
|
@@ -35464,7 +35597,7 @@ exports.EquirectangularReflectionMapping = EquirectangularReflectionMapping;
|
|
|
exports.EquirectangularRefractionMapping = EquirectangularRefractionMapping;
|
|
|
exports.Euler = Euler;
|
|
|
exports.EventDispatcher = EventDispatcher;
|
|
|
-exports.ExtrudeBufferGeometry = ExtrudeGeometry;
|
|
|
+exports.ExtrudeBufferGeometry = ExtrudeBufferGeometry;
|
|
|
exports.ExtrudeGeometry = ExtrudeGeometry;
|
|
|
exports.FileLoader = FileLoader;
|
|
|
exports.Float16BufferAttribute = Float16BufferAttribute;
|
|
@@ -35489,7 +35622,7 @@ exports.HalfFloatType = HalfFloatType;
|
|
|
exports.HemisphereLight = HemisphereLight;
|
|
|
exports.HemisphereLightHelper = HemisphereLightHelper;
|
|
|
exports.HemisphereLightProbe = HemisphereLightProbe;
|
|
|
-exports.IcosahedronBufferGeometry = IcosahedronGeometry;
|
|
|
+exports.IcosahedronBufferGeometry = IcosahedronBufferGeometry;
|
|
|
exports.IcosahedronGeometry = IcosahedronGeometry;
|
|
|
exports.ImageBitmapLoader = ImageBitmapLoader;
|
|
|
exports.ImageLoader = ImageLoader;
|
|
@@ -35515,7 +35648,7 @@ exports.InvertStencilOp = InvertStencilOp;
|
|
|
exports.KeepStencilOp = KeepStencilOp;
|
|
|
exports.KeyframeTrack = KeyframeTrack;
|
|
|
exports.LOD = LOD;
|
|
|
-exports.LatheBufferGeometry = LatheGeometry;
|
|
|
+exports.LatheBufferGeometry = LatheBufferGeometry;
|
|
|
exports.LatheGeometry = LatheGeometry;
|
|
|
exports.Layers = Layers;
|
|
|
exports.LessDepth = LessDepth;
|
|
@@ -35590,7 +35723,7 @@ exports.NumberKeyframeTrack = NumberKeyframeTrack;
|
|
|
exports.Object3D = Object3D;
|
|
|
exports.ObjectLoader = ObjectLoader;
|
|
|
exports.ObjectSpaceNormalMap = ObjectSpaceNormalMap;
|
|
|
-exports.OctahedronBufferGeometry = OctahedronGeometry;
|
|
|
+exports.OctahedronBufferGeometry = OctahedronBufferGeometry;
|
|
|
exports.OctahedronGeometry = OctahedronGeometry;
|
|
|
exports.OneFactor = OneFactor;
|
|
|
exports.OneMinusDstAlphaFactor = OneMinusDstAlphaFactor;
|
|
@@ -35604,7 +35737,7 @@ exports.PMREMGenerator = PMREMGenerator;
|
|
|
exports.Path = Path;
|
|
|
exports.PerspectiveCamera = PerspectiveCamera;
|
|
|
exports.Plane = Plane;
|
|
|
-exports.PlaneBufferGeometry = PlaneGeometry;
|
|
|
+exports.PlaneBufferGeometry = PlaneBufferGeometry;
|
|
|
exports.PlaneGeometry = PlaneGeometry;
|
|
|
exports.PlaneHelper = PlaneHelper;
|
|
|
exports.PointLight = PointLight;
|
|
@@ -35612,7 +35745,7 @@ exports.PointLightHelper = PointLightHelper;
|
|
|
exports.Points = Points;
|
|
|
exports.PointsMaterial = PointsMaterial;
|
|
|
exports.PolarGridHelper = PolarGridHelper;
|
|
|
-exports.PolyhedronBufferGeometry = PolyhedronGeometry;
|
|
|
+exports.PolyhedronBufferGeometry = PolyhedronBufferGeometry;
|
|
|
exports.PolyhedronGeometry = PolyhedronGeometry;
|
|
|
exports.PositionalAudio = PositionalAudio;
|
|
|
exports.PropertyBinding = PropertyBinding;
|
|
@@ -35665,7 +35798,7 @@ exports.ReinhardToneMapping = ReinhardToneMapping;
|
|
|
exports.RepeatWrapping = RepeatWrapping;
|
|
|
exports.ReplaceStencilOp = ReplaceStencilOp;
|
|
|
exports.ReverseSubtractEquation = ReverseSubtractEquation;
|
|
|
-exports.RingBufferGeometry = RingGeometry;
|
|
|
+exports.RingBufferGeometry = RingBufferGeometry;
|
|
|
exports.RingGeometry = RingGeometry;
|
|
|
exports.SRGBColorSpace = SRGBColorSpace;
|
|
|
exports.Scene = Scene;
|
|
@@ -35674,7 +35807,7 @@ exports.ShaderLib = ShaderLib;
|
|
|
exports.ShaderMaterial = ShaderMaterial;
|
|
|
exports.ShadowMaterial = ShadowMaterial;
|
|
|
exports.Shape = Shape;
|
|
|
-exports.ShapeBufferGeometry = ShapeGeometry;
|
|
|
+exports.ShapeBufferGeometry = ShapeBufferGeometry;
|
|
|
exports.ShapeGeometry = ShapeGeometry;
|
|
|
exports.ShapePath = ShapePath;
|
|
|
exports.ShapeUtils = ShapeUtils;
|
|
@@ -35684,7 +35817,7 @@ exports.SkeletonHelper = SkeletonHelper;
|
|
|
exports.SkinnedMesh = SkinnedMesh;
|
|
|
exports.Source = Source;
|
|
|
exports.Sphere = Sphere;
|
|
|
-exports.SphereBufferGeometry = SphereGeometry;
|
|
|
+exports.SphereBufferGeometry = SphereBufferGeometry;
|
|
|
exports.SphereGeometry = SphereGeometry;
|
|
|
exports.Spherical = Spherical;
|
|
|
exports.SphericalHarmonics3 = SphericalHarmonics3;
|
|
@@ -35708,19 +35841,19 @@ exports.SubtractEquation = SubtractEquation;
|
|
|
exports.SubtractiveBlending = SubtractiveBlending;
|
|
|
exports.TOUCH = TOUCH;
|
|
|
exports.TangentSpaceNormalMap = TangentSpaceNormalMap;
|
|
|
-exports.TetrahedronBufferGeometry = TetrahedronGeometry;
|
|
|
+exports.TetrahedronBufferGeometry = TetrahedronBufferGeometry;
|
|
|
exports.TetrahedronGeometry = TetrahedronGeometry;
|
|
|
exports.Texture = Texture;
|
|
|
exports.TextureLoader = TextureLoader;
|
|
|
-exports.TorusBufferGeometry = TorusGeometry;
|
|
|
+exports.TorusBufferGeometry = TorusBufferGeometry;
|
|
|
exports.TorusGeometry = TorusGeometry;
|
|
|
-exports.TorusKnotBufferGeometry = TorusKnotGeometry;
|
|
|
+exports.TorusKnotBufferGeometry = TorusKnotBufferGeometry;
|
|
|
exports.TorusKnotGeometry = TorusKnotGeometry;
|
|
|
exports.Triangle = Triangle;
|
|
|
exports.TriangleFanDrawMode = TriangleFanDrawMode;
|
|
|
exports.TriangleStripDrawMode = TriangleStripDrawMode;
|
|
|
exports.TrianglesDrawMode = TrianglesDrawMode;
|
|
|
-exports.TubeBufferGeometry = TubeGeometry;
|
|
|
+exports.TubeBufferGeometry = TubeBufferGeometry;
|
|
|
exports.TubeGeometry = TubeGeometry;
|
|
|
exports.UVMapping = UVMapping;
|
|
|
exports.Uint16BufferAttribute = Uint16BufferAttribute;
|