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 | 31 |
Tags
- SASS
- 니모닉
- Mnemonic
- bip39
- 프로그래밍
- Storybook
- 블록체인
- Blockchain
- SVG
- frontend
- 백준
- 코딩
- priority queue
- baekjoon
- TypeScript
- 기본 수학 2단계
- 알고리즘
- 우선순위 큐
- 풀이
- three.js
- algorithm
- React
- Console
- C++
- 지갑
- scss
- 리액트
- 기본수학1단계
- 스토리북
- 에러
Archives
- Today
- Total
목록Scene (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