How to use the MirroredRepeatWrapping function from three
Find comprehensive JavaScript three.MirroredRepeatWrapping code examples handpicked from public code repositorys.
GitHub: K3D-tools/K3D-jupyter
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;
115
803
0
+ 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,
1
0
0
+ 7 other calls in file
three.Vector3 is the most popular function in three (22341 examples)