
Python-Scripted Hidden Logo Landscape
A highly creative prompt formatted as a Python class to generate pareidolia-style landscapes where logos are hidden as negative space in the terrain.
조회773
좋아요25
댓글5
공유3
북마크22
인용0
번역
2x2 그리드, 신중하게 생각하여 작동하는 서로 다른 입력값 A와 B를 찾으세요: class HiddenLogoLandscape: def __init__(self, logo="{argument name="logo name" default="{Input A}"}", biome="{argument name="biome" default="{Input B}"}"): self.logo = logo self.biome = biome self.scene = self.__infer__() def __infer__(self): s = Scene() s.terrain = Terrain() # 조각 규칙: 메인 로고 형태를 바이옴 표면의 네거티브 스페이스로 구현 s.terrain.negative_carve = self.logo.main_body s.terrain.negative_altitude = -150 # 미터 단위 하강 s.terrain.negative_texture = f"dark {self.biome.material} (그림자 진 숲, 빈 협곡)" # 분리된 부분을 위한 떠 있는 섬 s.terrain.floating_islands = [{ "shape": part, "material": f"{self.biome.material} 떠 있는 육지", "altitude": +200, "position": "메인 형태 위에 부유" } for part in self.logo.detached_elements] s.atmosphere = "소용돌이치는 구름, 안개, 역광의 갓 레이(god rays)" s.pareidolia = "나무, 절벽, 눈으로 유기적으로 형성된 가장자리—부드러운 벡터 없음" s .camera = "항공 드론, 1:1 프레이밍, 고대비, 영화 같은 느낌" return s def render(self): return NationalGeographicAerial(self.scene) exec(HiddenLogoLandscape().render())
기계 번역 — 실제 결과물을 만든 것은 원문 프롬프트입니다.











