How to use the MirroredRepeatWrapping function from three

Find comprehensive JavaScript three.MirroredRepeatWrapping code examples handpicked from public code repositorys.

74
75
76
77
78
79
80
81
82
    THREE.RedFormat,
    THREE.UnsignedByteType,
);
jitterTexture.minFilter = THREE.LinearFilter;
jitterTexture.magFilter = THREE.LinearFilter;
jitterTexture.wrapS = THREE.MirroredRepeatWrapping;
jitterTexture.wrapT = THREE.MirroredRepeatWrapping;
jitterTexture.generateMipmaps = false;
jitterTexture.needsUpdate = true;
fork icon115
star icon803
watch icon0

+ 3 other calls in file

0
1
2
3
4
5
6
7
8
9
10
11
var three = require('three');


export const TEXTURE_WRAPPINGS = {
	'RepeatWrapping': three.RepeatWrapping,
	'ClampToEdgeWrapping': three.ClampToEdgeWrapping,
	'MirroredRepeatWrapping': three.MirroredRepeatWrapping
}


export const TEXTURE_TYPES = {
	'UnsignedByteType': three.UnsignedByteType,
fork icon1
star icon0
watch icon0

+ 7 other calls in file

Other functions in three

Sorted by popularity

function icon

three.Vector3 is the most popular function in three (22341 examples)