Newer
Older
HuangJiPC / public / static / three / src / core / Uniform.js
@zhangdeliang zhangdeliang on 21 Jun 199 bytes update
class Uniform {

	constructor( value ) {

		this.value = value;

	}

	clone() {

		return new Uniform( this.value.clone === undefined ? this.value : this.value.clone() );

	}

}

export { Uniform };