upd
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Simple_Not 2023-08-02 00:37:30 +10:00
parent 9315d3550a
commit 61d1e9f16e

View File

@ -20,7 +20,10 @@ points.push( new THREE.Vector3( - 10, 0, 0 ) );
points.push( new THREE.Vector3( 0, 10, 0 ) );
points.push( new THREE.Vector3( 10, 0, 0 ) );
const material2 = new THREE.LineBasicMaterial( { color: 0x0000ff } );
const geometry2 = new THREE.BufferGeometry().setFromPoints( points );
const line = new THREE.Line( geometry2, material2 );
function animate() {
requestAnimationFrame( animate );