let font = THREE.Font();
console.log(font); // undefined
let get = THREE.Curve();
console.log(get ); // undefined
Curve and Font - undefined. Why?
let font = THREE.Font();
console.log(font); // undefined
let get = THREE.Curve();
console.log(get ); // undefined
Curve and Font - undefined. Why?
I mean, you forgot new.
Look at simple examples from the Collection of examples from discourse.threejs.org.
For example in 2020
discourse.threejs.hofk.de
oh I forgot. thank )