Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
Tags
- 니모닉
- C++
- 알고리즘
- React
- SASS
- 스토리북
- priority queue
- 코딩
- Mnemonic
- 기본수학1단계
- three.js
- 풀이
- 리액트
- algorithm
- frontend
- 블록체인
- 우선순위 큐
- Console
- 지갑
- scss
- 백준
- 프로그래밍
- Storybook
- bip39
- 기본 수학 2단계
- TypeScript
- 에러
- SVG
- baekjoon
- Blockchain
Archives
- Today
- Total
목록Fog (1)
Moong

three.js 설치 및 import npm i three import * as THREE from ‘three’; Renderer const renderer = new THREE.WebGLRenderer({ canvas: canvas, antialias: true, alpha: true }) 속성 ▪️ canvas : render할 canvas ▪️ antialias : 계단현상 없애기 ▪️ alpha : 배경 투명도 methods ▪️ setSize : 가로 세로 사이즈 정하기 renderer.setSize(window.innerWidth, window.innerHeight); ▪️ setPixelRatio : 해상도 정하기 renderer.setPixelRatio(window.devicePixelR..
Three.js
2023. 1. 27. 20:25