Horje
do i need to know javascript to learn three.js Code Example
do i need to know javascript to learn three.js
const scene = new THREE.Scene();
const camera = new THREE.PerspectiveCamera(45,window.innerWidth / window.innerHeight,0.1,1000);
const renderer = new THREE.WebGLRenderer();
renderer.setSize(window.innerWidth, window.innerHeight);
document.body.appendChild(renderer.domElement);
const geometry = new THREE.BoxGeometry();
const material = new THREE.MeshBasicMaterial({ color: 0xffffff });
const cube = new THREE.Mesh(geometry, material);
scene.add(cube);
camera.position.z = 5;
const animate = function () {
requestAnimationFrame(animate);
cube.rotation.x += 0.01;
cube.rotation.y += 0.01;
renderer.render(scene, camera);
};

animate();
Source: dev.to




Javascript

Related
mongoose query if field exists where filed exists Code Example mongoose query if field exists where filed exists Code Example
variable local and global Code Example variable local and global Code Example
form status angular Code Example form status angular Code Example
js append sample Code Example js append sample Code Example
ping discord with autocode Code Example ping discord with autocode Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
11