프롬프트/GPT Image 프롬프트/프롬프트 세부 정보이미지 프롬프트종이 부조 계층 구조 구성특정 깊이와 조명 제약 조건으로 레이어드 종이 부조 아트를 생성하기 위한 기술 의사 코드 스타일 프롬프트입니다.이 프롬프트 사용좋아요5조회268북마크3다음에 쉽게 찾을 수 있도록 이 프롬프트를 저장하거나 공유하세요프롬프트 공유프롬프트복사2x2 grid, 16:9, do this for {argument name="subject" default="4 famous emperors and their kingdoms"}: type PaperColor = Sepia | Cream | Parchment | Shadow data Material = AgedPaper PaperColor -- B₁: Everything in the scene MUST be of type Material data SceneElement = Figure Material | Prop Material | Page Material | Text Material -- B₂: The Z-Stack enforces physical depth data ZStack = Stack [SceneElement] -- Ordered from background (z=0) to foreground (z=n) -- B₄: Lighting is a function that takes the Z-Stack and produces sharp layered shadows raking_light :: ZStack -> Image raking_light stack = apply_directional_light stack (angle=Low, softness=Soft, shadow_sharpness=High) render :: ScientistArchetype -> Quote -> Image render s q = let figure = Figure (AgedPaper Cream) -- The scientist is made of paper pages = Page (AgedPaper Sepia) text = Text (AgedPaper Parchment) -- The quote is cut from paper in raking_light (Stack [pages, text, figure, pages])프롬프트 보기