Compare commits
2 Commits
1e3faf9356
...
9b6dc498a6
| Author | SHA1 | Date | |
|---|---|---|---|
| 9b6dc498a6 | |||
| 2a39171446 |
12
Week-1/Task-2/r3f/index.html
Normal file
12
Week-1/Task-2/r3f/index.html
Normal file
@ -0,0 +1,12 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>Task 2 — Texture Mapping (R3F)</title>
|
||||
</head>
|
||||
<body>
|
||||
<div id="root"></div>
|
||||
<script type="module" src="/src/main.jsx"></script>
|
||||
</body>
|
||||
</html>
|
||||
21
Week-1/Task-2/r3f/package.json
Normal file
21
Week-1/Task-2/r3f/package.json
Normal file
@ -0,0 +1,21 @@
|
||||
{
|
||||
"name": "task-2-r3f",
|
||||
"version": "0.0.0",
|
||||
"private": true,
|
||||
"type": "module",
|
||||
"scripts": {
|
||||
"dev": "vite",
|
||||
"build": "vite build",
|
||||
"preview": "vite preview"
|
||||
},
|
||||
"dependencies": {
|
||||
"@react-three/fiber": "^8.16.8",
|
||||
"react": "^18.3.1",
|
||||
"react-dom": "^18.3.1",
|
||||
"three": "^0.163.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@vitejs/plugin-react": "^4.3.1",
|
||||
"vite": "^5.0.0"
|
||||
}
|
||||
}
|
||||
17
Week-1/Task-2/r3f/src/App.jsx
Normal file
17
Week-1/Task-2/r3f/src/App.jsx
Normal file
@ -0,0 +1,17 @@
|
||||
import { Canvas } from '@react-three/fiber'
|
||||
import Box from './Box'
|
||||
|
||||
function App() {
|
||||
return (
|
||||
<div style={{ width: '100vw', height: '100vh', background: 'pink' }}>
|
||||
<Canvas
|
||||
camera={{ position: [0, 0, 5], fov: 75 }}
|
||||
style={{ background: 'pink' }}
|
||||
>
|
||||
<Box />
|
||||
</Canvas>
|
||||
</div>
|
||||
)
|
||||
}
|
||||
|
||||
export default App
|
||||
38
Week-1/Task-2/r3f/src/Box.jsx
Normal file
38
Week-1/Task-2/r3f/src/Box.jsx
Normal file
@ -0,0 +1,38 @@
|
||||
import { useRef, useMemo } from 'react'
|
||||
import { useFrame } from '@react-three/fiber'
|
||||
import * as THREE from 'three'
|
||||
|
||||
function Box() {
|
||||
const meshRef = useRef()
|
||||
|
||||
const texture = useMemo(() => {
|
||||
const canvas = document.createElement('canvas')
|
||||
canvas.width = 256
|
||||
canvas.height = 256
|
||||
|
||||
const ctx = canvas.getContext('2d')
|
||||
|
||||
ctx.fillStyle = 'white'
|
||||
ctx.fillRect(0, 0, 256, 256)
|
||||
|
||||
ctx.fillStyle = 'black'
|
||||
ctx.fillRect(0, 0, 128, 128)
|
||||
ctx.fillRect(128, 128, 128, 128)
|
||||
|
||||
return new THREE.CanvasTexture(canvas)
|
||||
}, [])
|
||||
|
||||
useFrame(() => {
|
||||
meshRef.current.rotation.x += 0.01
|
||||
meshRef.current.rotation.y += 0.01
|
||||
})
|
||||
|
||||
return (
|
||||
<mesh ref={meshRef}>
|
||||
<boxGeometry args={[2, 2, 2]} />
|
||||
<meshBasicMaterial map={texture} />
|
||||
</mesh>
|
||||
)
|
||||
}
|
||||
|
||||
export default Box
|
||||
4
Week-1/Task-2/r3f/src/main.jsx
Normal file
4
Week-1/Task-2/r3f/src/main.jsx
Normal file
@ -0,0 +1,4 @@
|
||||
import { createRoot } from 'react-dom/client'
|
||||
import App from './App.jsx'
|
||||
|
||||
createRoot(document.getElementById('root')).render(<App />)
|
||||
6
Week-1/Task-2/r3f/vite.config.js
Normal file
6
Week-1/Task-2/r3f/vite.config.js
Normal file
@ -0,0 +1,6 @@
|
||||
import { defineConfig } from 'vite'
|
||||
import react from '@vitejs/plugin-react'
|
||||
|
||||
export default defineConfig({
|
||||
plugins: [react()],
|
||||
})
|
||||
12
Week-1/Task-2/vanilla/index.html
Normal file
12
Week-1/Task-2/vanilla/index.html
Normal file
@ -0,0 +1,12 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>Task 2 — Texture Mapping (Vanilla Three.js)</title>
|
||||
<link rel="stylesheet" href="style.css" />
|
||||
</head>
|
||||
<body>
|
||||
<script type="module" src="main.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
62
Week-1/Task-2/vanilla/main.js
Normal file
62
Week-1/Task-2/vanilla/main.js
Normal file
@ -0,0 +1,62 @@
|
||||
import * as THREE from 'three'
|
||||
|
||||
const scene = new THREE.Scene()
|
||||
scene.background = new THREE.Color('pink')
|
||||
|
||||
const camera = new THREE.PerspectiveCamera(
|
||||
75,
|
||||
window.innerWidth / window.innerHeight,
|
||||
0.1,
|
||||
1000
|
||||
)
|
||||
camera.position.z = 5
|
||||
|
||||
const renderer = new THREE.WebGLRenderer()
|
||||
renderer.setSize(window.innerWidth, window.innerHeight)
|
||||
document.body.appendChild(renderer.domElement)
|
||||
const canvas = document.createElement('canvas')
|
||||
canvas.width = 256
|
||||
canvas.height = 256
|
||||
|
||||
const ctx = canvas.getContext('2d')
|
||||
|
||||
ctx.fillStyle = 'white'
|
||||
ctx.fillRect(0, 0, 256, 256)
|
||||
|
||||
ctx.fillStyle = 'black'
|
||||
ctx.fillRect(0, 0, 128, 128)
|
||||
ctx.fillRect(128, 128, 128, 128)
|
||||
|
||||
const texture = new THREE.CanvasTexture(canvas)
|
||||
|
||||
const geometry = new THREE.BoxGeometry(2, 2, 2)
|
||||
|
||||
const material = new THREE.MeshBasicMaterial({ map: texture })
|
||||
|
||||
const light1 = new THREE.AmbientLight(0xffffff, 0.5)
|
||||
scene.add(light1)
|
||||
|
||||
const light2 = new THREE.PointLight(0xffffff, 1)
|
||||
light2.position.set(5, 5, 5)
|
||||
scene.add(light2)
|
||||
|
||||
const cube = new THREE.Mesh(geometry, material)
|
||||
scene.add(cube)
|
||||
|
||||
function animate() {
|
||||
requestAnimationFrame(animate)
|
||||
|
||||
cube.rotation.x += 0.01
|
||||
cube.rotation.y += 0.01
|
||||
|
||||
renderer.render(scene, camera)
|
||||
}
|
||||
|
||||
animate()
|
||||
|
||||
window.addEventListener('resize', () => {
|
||||
camera.aspect = window.innerWidth / window.innerHeight
|
||||
camera.updateProjectionMatrix()
|
||||
renderer.setSize(window.innerWidth, window.innerHeight)
|
||||
})
|
||||
|
||||
17
Week-1/Task-2/vanilla/package.json
Normal file
17
Week-1/Task-2/vanilla/package.json
Normal file
@ -0,0 +1,17 @@
|
||||
{
|
||||
"name": "task-2-vanilla",
|
||||
"version": "0.0.0",
|
||||
"private": true,
|
||||
"type": "module",
|
||||
"scripts": {
|
||||
"dev": "vite",
|
||||
"build": "vite build",
|
||||
"preview": "vite preview"
|
||||
},
|
||||
"devDependencies": {
|
||||
"vite": "^5.0.0"
|
||||
},
|
||||
"dependencies": {
|
||||
"three": "^0.163.0"
|
||||
}
|
||||
}
|
||||
31
Week-1/Task-2/vanilla/style.css
Normal file
31
Week-1/Task-2/vanilla/style.css
Normal file
@ -0,0 +1,31 @@
|
||||
* {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
body, html {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
overflow: hidden;
|
||||
background: #111;
|
||||
}
|
||||
|
||||
canvas {
|
||||
display: block;
|
||||
}
|
||||
|
||||
#info {
|
||||
position: fixed;
|
||||
top: 16px;
|
||||
left: 50%;
|
||||
transform: translateX(-50%);
|
||||
color: #fff;
|
||||
font-family: system-ui, sans-serif;
|
||||
font-size: 14px;
|
||||
background: rgba(0, 0, 0, 0.5);
|
||||
padding: 6px 16px;
|
||||
border-radius: 20px;
|
||||
pointer-events: none;
|
||||
z-index: 10;
|
||||
}
|
||||
Loading…
x
Reference in New Issue
Block a user