k-l-lambda's picture
feat: add Python ML services (CPU mode) with model download
2b7aae2
class Uniform {
constructor(value) {
if (typeof value === 'string') {
console.warn('THREE.Uniform: Type parameter is no longer needed.');
value = arguments[1];
}
this.value = value;
}
clone() {
return new Uniform(this.value.clone === undefined ? this.value : this.value.clone());
}
}
export { Uniform };