File tree Expand file tree Collapse file tree 3 files changed +3
-1
lines changed
Expand file tree Collapse file tree 3 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -998,7 +998,7 @@ var util = {
998998 * @param {object } target target object to modify.
999999 * @param {object } sources object(s) to merge into the target.
10001000 * @returns {object } The merged object.
1001- * @member geo.util
1001+ * @memberof geo.util
10021002 */
10031003 deepMerge : function ( target , ...sources ) {
10041004 for ( const source of sources ) {
Original file line number Diff line number Diff line change 3333 * elements, falsy for vertices.
3434 * @returns {geo.meshFeature.meshColoredInfo } An object with the colored mesh
3535 * information.
36+ * @memberof geo.util
3637 */
3738function createColoredMesh ( feature , elementValues ) {
3839 var util = require ( '../util' ) ;
Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ var vgl = require('../vgl');
88 * @param {vgl.renderState } renderState An object that contains the context
99 * used for drawing.
1010 * @param {number } textureUnit The number of the texture unit [0-15].
11+ * @private
1112 */
1213function activateTextureUnit ( renderState , textureUnit ) {
1314 if ( textureUnit >= 0 && textureUnit <= 31 ) {
You can’t perform that action at this time.
0 commit comments