Skip to content

Commit a1c99f8

Browse files
authored
revert changes
1 parent 8c6a888 commit a1c99f8

File tree

5 files changed

+23
-23
lines changed

5 files changed

+23
-23
lines changed

build/three.cjs

+5-5
Original file line numberDiff line numberDiff line change
@@ -25576,7 +25576,7 @@ class InstancedMesh extends Mesh {
2557625576
* {@link InstancedMesh#instanceMatrix} to `true` after updating all the colors.
2557725577
*
2557825578
* @param {number} index - The instance index.
25579-
* @param {Matrix4} matrix - The local transformation.
25579+
* @param {Matrix4} matrix - The the local transformation.
2558025580
*/
2558125581
setMatrixAt( index, matrix ) {
2558225582

@@ -26707,7 +26707,7 @@ class BatchedMesh extends Mesh {
2670726707
/**
2670826708
* Validates the instance defined by the given ID.
2670926709
*
26710-
* @param {number} instanceId - The instance to validate.
26710+
* @param {number} instanceId - The the instance to validate.
2671126711
*/
2671226712
validateInstanceId( instanceId ) {
2671326713

@@ -26723,7 +26723,7 @@ class BatchedMesh extends Mesh {
2672326723
/**
2672426724
* Validates the geometry defined by the given ID.
2672526725
*
26726-
* @param {number} geometryId - The geometry to validate.
26726+
* @param {number} geometryId - The the geometry to validate.
2672726727
*/
2672826728
validateGeometryId( geometryId ) {
2672926729

@@ -34011,7 +34011,7 @@ function compareXYSlope(a, b) {
3401134011
return result;
3401234012
}
3401334013

34014-
// find a bridge between vertices that connects hole with an outer ring and link it
34014+
// find a bridge between vertices that connects hole with an outer ring and and link it
3401534015
function eliminateHole(hole, outerNode) {
3401634016
const bridge = findHoleBridge(hole, outerNode);
3401734017
if (!bridge) {
@@ -42833,7 +42833,7 @@ class Loader {
4283342833
load( /* url, onLoad, onProgress, onError */ ) {}
4283442834

4283542835
/**
42836-
* An async version of {@link Loader#load}.
42836+
* A async version of {@link Loader#load}.
4283742837
*
4283842838
* @param {string} url - The path/URL of the file to be loaded.
4283942839
* @param {onProgressCallback} [onProgress] - Executed while the loading is in progress.

build/three.core.js

+5-5
Original file line numberDiff line numberDiff line change
@@ -25574,7 +25574,7 @@ class InstancedMesh extends Mesh {
2557425574
* {@link InstancedMesh#instanceMatrix} to `true` after updating all the colors.
2557525575
*
2557625576
* @param {number} index - The instance index.
25577-
* @param {Matrix4} matrix - The local transformation.
25577+
* @param {Matrix4} matrix - The the local transformation.
2557825578
*/
2557925579
setMatrixAt( index, matrix ) {
2558025580

@@ -26705,7 +26705,7 @@ class BatchedMesh extends Mesh {
2670526705
/**
2670626706
* Validates the instance defined by the given ID.
2670726707
*
26708-
* @param {number} instanceId - The instance to validate.
26708+
* @param {number} instanceId - The the instance to validate.
2670926709
*/
2671026710
validateInstanceId( instanceId ) {
2671126711

@@ -26721,7 +26721,7 @@ class BatchedMesh extends Mesh {
2672126721
/**
2672226722
* Validates the geometry defined by the given ID.
2672326723
*
26724-
* @param {number} geometryId - The geometry to validate.
26724+
* @param {number} geometryId - The the geometry to validate.
2672526725
*/
2672626726
validateGeometryId( geometryId ) {
2672726727

@@ -34009,7 +34009,7 @@ function compareXYSlope(a, b) {
3400934009
return result;
3401034010
}
3401134011

34012-
// find a bridge between vertices that connects hole with an outer ring and link it
34012+
// find a bridge between vertices that connects hole with an outer ring and and link it
3401334013
function eliminateHole(hole, outerNode) {
3401434014
const bridge = findHoleBridge(hole, outerNode);
3401534015
if (!bridge) {
@@ -42831,7 +42831,7 @@ class Loader {
4283142831
load( /* url, onLoad, onProgress, onError */ ) {}
4283242832

4283342833
/**
42834-
* An async version of {@link Loader#load}.
42834+
* A async version of {@link Loader#load}.
4283542835
*
4283642836
* @param {string} url - The path/URL of the file to be loaded.
4283742837
* @param {onProgressCallback} [onProgress] - Executed while the loading is in progress.

build/three.webgpu.js

+6-6
Original file line numberDiff line numberDiff line change
@@ -2638,7 +2638,7 @@ class InputNode extends Node {
26382638
/**
26392639
* Constructs a new input node.
26402640
*
2641-
* @param {any} value - The value of this node. This can be any JS primitive, functions, array buffers or even three.js objects (vector, matrices, colors).
2641+
* @param {any} value - The value of this node. This can be a any JS primitive, functions, array buffers or even three.js objects (vector, matrices, colors).
26422642
* @param {?string} nodeType - The node type. If no explicit type is defined, the node tries to derive the type from its value.
26432643
*/
26442644
constructor( value, nodeType = null ) {
@@ -2655,7 +2655,7 @@ class InputNode extends Node {
26552655
this.isInputNode = true;
26562656

26572657
/**
2658-
* The value of this node. This can be any JS primitive, functions, array buffers or even three.js objects (vector, matrices, colors).
2658+
* The value of this node. This can be a any JS primitive, functions, array buffers or even three.js objects (vector, matrices, colors).
26592659
*
26602660
* @type {any}
26612661
*/
@@ -6212,7 +6212,7 @@ const saturate = ( value ) => clamp( value );
62126212
* @function
62136213
* @param {Node<vec2|vec3|vec4>} I - The incident vector.
62146214
* @param {Node<vec2|vec3|vec4>} N - The normal vector.
6215-
* @param {Node<float>} eta - The ratio of indices of refraction.
6215+
* @param {Node<float>} eta - The the ratio of indices of refraction.
62166216
* @returns {Node<vec2|vec3|vec4>}
62176217
*/
62186218
const refract = /*@__PURE__*/ nodeProxy( MathNode, MathNode.REFRACT );
@@ -41005,11 +41005,11 @@ class NodeBuilderState {
4100541005
}
4100641006

4100741007
/**
41008-
* This method is used to create an array of bind groups based
41008+
* This method is used to create a array of bind groups based
4100941009
* on the existing bind groups of this state. Shared groups are
4101041010
* not cloned.
4101141011
*
41012-
* @return {Array<BindGroup>} An array of bind groups.
41012+
* @return {Array<BindGroup>} A array of bind groups.
4101341013
*/
4101441014
createBindings() {
4101541015

@@ -63869,7 +63869,7 @@ class WGSLNodeBuilder extends NodeBuilder {
6386963869

6387063870
/**
6387163871
* Generates a WGSL variable that holds the texture dimension of the given texture.
63872-
* It also returns information about the number of layers (elements) of an arrayed
63872+
* It also returns information about the the number of layers (elements) of an arrayed
6387363873
* texture as well as the cube face count of cube textures.
6387463874
*
6387563875
* @param {Texture} texture - The texture to generate the function for.

build/three.webgpu.nodes.js

+6-6
Original file line numberDiff line numberDiff line change
@@ -2638,7 +2638,7 @@ class InputNode extends Node {
26382638
/**
26392639
* Constructs a new input node.
26402640
*
2641-
* @param {any} value - The value of this node. This can be any JS primitive, functions, array buffers or even three.js objects (vector, matrices, colors).
2641+
* @param {any} value - The value of this node. This can be a any JS primitive, functions, array buffers or even three.js objects (vector, matrices, colors).
26422642
* @param {?string} nodeType - The node type. If no explicit type is defined, the node tries to derive the type from its value.
26432643
*/
26442644
constructor( value, nodeType = null ) {
@@ -2655,7 +2655,7 @@ class InputNode extends Node {
26552655
this.isInputNode = true;
26562656

26572657
/**
2658-
* The value of this node. This can be any JS primitive, functions, array buffers or even three.js objects (vector, matrices, colors).
2658+
* The value of this node. This can be a any JS primitive, functions, array buffers or even three.js objects (vector, matrices, colors).
26592659
*
26602660
* @type {any}
26612661
*/
@@ -6212,7 +6212,7 @@ const saturate = ( value ) => clamp( value );
62126212
* @function
62136213
* @param {Node<vec2|vec3|vec4>} I - The incident vector.
62146214
* @param {Node<vec2|vec3|vec4>} N - The normal vector.
6215-
* @param {Node<float>} eta - The ratio of indices of refraction.
6215+
* @param {Node<float>} eta - The the ratio of indices of refraction.
62166216
* @returns {Node<vec2|vec3|vec4>}
62176217
*/
62186218
const refract = /*@__PURE__*/ nodeProxy( MathNode, MathNode.REFRACT );
@@ -41005,11 +41005,11 @@ class NodeBuilderState {
4100541005
}
4100641006

4100741007
/**
41008-
* This method is used to create an array of bind groups based
41008+
* This method is used to create a array of bind groups based
4100941009
* on the existing bind groups of this state. Shared groups are
4101041010
* not cloned.
4101141011
*
41012-
* @return {Array<BindGroup>} An array of bind groups.
41012+
* @return {Array<BindGroup>} A array of bind groups.
4101341013
*/
4101441014
createBindings() {
4101541015

@@ -63869,7 +63869,7 @@ class WGSLNodeBuilder extends NodeBuilder {
6386963869

6387063870
/**
6387163871
* Generates a WGSL variable that holds the texture dimension of the given texture.
63872-
* It also returns information about the number of layers (elements) of an arrayed
63872+
* It also returns information about the the number of layers (elements) of an arrayed
6387363873
* texture as well as the cube face count of cube textures.
6387463874
*
6387563875
* @param {Texture} texture - The texture to generate the function for.

editor/js/libs/codemirror/codemirror.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -3410,7 +3410,7 @@
34103410
}
34113411

34123412
// Compute the lines that are visible in a given viewport (defaults
3413-
// the current scroll position). viewport may contain top,
3413+
// the the current scroll position). viewport may contain top,
34143414
// height, and ensure (see op.scrollToPos) properties.
34153415
function visibleLines(display, doc, viewport) {
34163416
var top = viewport && viewport.top != null ? Math.max(0, viewport.top) : display.scroller.scrollTop;

0 commit comments

Comments
 (0)