Skip to content

Commit

Permalink
docs: Fix showing the util namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
manthey committed Dec 11, 2024
1 parent d7faab3 commit 72b9970
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/util/common.js
Original file line number Diff line number Diff line change
Expand Up @@ -998,7 +998,7 @@ var util = {
* @param {object} target target object to modify.
* @param {object} sources object(s) to merge into the target.
* @returns {object} The merged object.
* @member geo.util
* @memberof geo.util
*/
deepMerge: function (target, ...sources) {
for (const source of sources) {
Expand Down
1 change: 1 addition & 0 deletions src/util/mesh.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@
* elements, falsy for vertices.
* @returns {geo.meshFeature.meshColoredInfo} An object with the colored mesh
* information.
* @memberof geo.util
*/
function createColoredMesh(feature, elementValues) {
var util = require('../util');
Expand Down
1 change: 1 addition & 0 deletions src/webgl/lookupTable2D.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ var vgl = require('../vgl');
* @param {vgl.renderState} renderState An object that contains the context
* used for drawing.
* @param {number} textureUnit The number of the texture unit [0-15].
* @private
*/
function activateTextureUnit(renderState, textureUnit) {
if (textureUnit >= 0 && textureUnit <= 31) {
Expand Down

0 comments on commit 72b9970

Please sign in to comment.