Sketchup

sketchup install

2022-08-29 ยท 2 words

Blender ๋…ธํŠธ๋ถ ํ„ฐ์น˜ํŒจ๋“œ ์‚ฌ์šฉ ๋ฐ ์„ค์ •

์šฐ๋ถ„ํˆฌ ๋ฆฌ๋ˆ…์Šค ๊ธฐ์ค€์—์„œ ์„ค๋ช… (Mac,Windows ๋ชจ๋‘ ๋‹ค๋ฅด๋‹ค) ์„ค์ • ๋ธ”๋ Œ๋” ์„ค์ •์ฐฝ์— ๋‹ค์Œ์„ ์ฒดํฌ edit > preferences > input > [v] Emulate Numpad [v] Emulate 3 Button Mouse ์‚ฌ์šฉ๋ฒ• * Scroll (with 2 fingers) ์œ„/์•„๋ž˜: ํ™”๋ฉด ์ถ•์†Œ/ํ™•๋Œ€ * Alt + 2Touch + Scroll (with 1 fingers) : ํ™”๋ฉด ํšŒ์ „ * Alt + Shift + 2Touch + Scroll (with 1 fingers) : ํ™”๋ฉด ์ด๋™ Reference https://www.versluis.com/2019/07/using-blender-on-a-laptop-with-a-trackpad/

2022-08-29 ยท 63 words

How to Install Blender on Ubuntu 22.04 LTS

๊ธฐ์กด ์„ค์น˜ ์ œ๊ฑฐ apt version if [ "$(which blender)" == "/usr/bin/blender" ];then sudo apt autoremove blender fi snap version if [ "$(which blender)" == "/snap/bin/blender" ];then sudo snap remove blender fi Add Repository PPA APT sudo add-apt-repository ppa:savoury1/blender -y sudo add-apt-repository ppa:savoury1/ffmpeg4 -y sudo add-apt-repository ppa:savoury1/ffmpeg5 -y sudo add-apt-repository ppa:savoury1/graphics -y sudo add-apt-repository ppa:savoury1/display -y Apt Update and Blender Install sudo apt update sudo apt upgrade sudo apt install blender -y Reference https://www.linuxcapable.com/how-to-install-blender-on-ubuntu-22-04-lts

2022-08-29 ยท 73 words

Blender

blender install blender touchpad

2022-08-29 ยท 4 words

Getting started using Lua in Neovim

2023-08-08: ํ”Œ๋Ÿฌ๊ทธ์ธ ์ˆ˜๋™ ์„ค์ • ์ถ”๊ฐ€, ์˜คํƒ€ ์ˆ˜์ • 2022-09-06: lua์˜ ๊ธฐ๋ณธ ์„ค์ •๋ฒ• ๋ฐ ํŒจํ‚ค์ง€ ์„ค์น˜ ์„ค์ • ์ •๋ฆฌ ์†Œ๊ฐœ nvim์€ vim๊ณผ ๋‹ค๋ฅด๊ฒŒ luajit ์ด ๊ธฐ๋ณธ ํƒ‘์žฌ๋˜์–ด ์žˆ๋‹ค. ์ด๋Š” vim์˜ ๊ฑฐ์˜ ๋ชจ๋“  ๊ธฐ๋Šฅ์„ lua๋กœ ์ œ์–ดํ•  ์ˆ˜ ์žˆ๋‹ค๋Š” ๋œป์ด๋‹ค. ๋˜ํ•œ ์ž์‹ ์˜ ์ฝ”๋“œ ๋˜๋Š” ๋ชจ๋“ˆ๋“ค์„ ์‰ฝ๊ฒŒ ์ด์‹ํ•˜๊ณ  ํ™•์žฅํ•  ์ˆ˜ ์žˆ๋‹ค. ์ด ๊ธ€์˜ ๋ชฉํ‘œ๋Š” ๊ธฐ์กด ~/.config/nvim/init.vim์˜ ์„ค์ •์„ ๋ชจ๋‘ init.lua๋กœ ๋Œ€์ฒดํ•˜๊ณ  ํ™•์žฅํ•˜๋Š” ๋ฐ ์žˆ๋‹ค. NVIM v0.7.2/ Build type: Release/ LuaJIT 2.1.0-beta3 Why Lua 5.1 instead of Lua 5.3+? ์•„๋ž˜๋Š” nvim ๊ณต์‹ FAQ ๋‚ด์šฉ์ด๋‹ค. ...

2022-08-27 ยท (updated 2023-08-08) ยท 996 words