2025/04/24 4

빛은 가장 성능 좋은 동시 연산 장치다.

https://www.youtube.com/watch?v=MfPhiRxnfRA "양자역학 (영상 마지막 실험 소름...)" 감상평 컴퓨터의 비동기 동시 연산은 몇개의 프로세서가 빠르게 연산하여 마치 동시 연산을 하는 듯한 효과를 주는 한편, 빛은 그냥 존재 자체가 다중 연산시스템이다. 조금 비유를 보태면,모든 가능성을 동시에 계산한다. 그리고 마치 true 플래그와 false 플래그가 상쇄되어 결국은 true 플래그만 남아서 빛이 최적의 경로를 찾는다.더불어 이 true 플래그와 false 플래그를 나타내는 위상은 연속적이지 않고 양자화되어있다.특정 플래그를 가린다면, 빛을 볼 수 있다는 것이다. 그렇다면 꽤 재밌는 생각이 났다. 우리가 볼때에 출구에서는 빛이 나오지 않을 것이다.하지만 빛이 모든..

EditorWindow simple Exemple

Chatgpt가 제공해준 코드를 분석한다. Exemple Code더보기 ※ 원하는 이름의 프리펩과 머터리얼을 한번에 만드는 방법도 있을까?using UnityEngine;using UnityEditor;using System.IO;public class AssetAutoCreator : EditorWindow{ string assetName = "NewAsset"; [MenuItem("Tools/Prefab & Material Creator")] public static void ShowWindow() { GetWindow("Prefab & Material Creator"); } void OnGUI() { GUILayout.Label("Cre..

simple solar system

Goals - 간단한 solar system를 구현해본다.Daily더보기2025/04 24 Tsimple solar subject initialize system프로젝트 구상 및 구현 순서 계획 EditorWindow에 대한 공부25TEditorWindow에 대한 공부 Astronomical class 자전26TUML 작성 및 클래스 구조 확인, 공전 구현 Source더보기https://www.solarsystemscope.com/textures/ Solar System ScopeOnline 3D simulation of the Solar System and night sky in real time - the Sun, planets, dwarf planets, comets, stars and co..