Prompts Grid
PROMPTSGRID
Published: May 25, 2026
Chocolate Crepe Commercial Render (Python Class Style)

Chocolate Crepe Commercial Render (Python Class Style)

A highly technical and structured description, written in the style of a Python class definition, detailing the setup for an 8K hyper-realistic commercial render of chocolate crepes. It specifies materials, lighting (golden hour), dynamic elements like slow-motion chocolate drizzle, and camera movements (macro pan/tilt).

prompt.txt
1class ChocolateCrepeAd:
2 def __init__(self):
3 self.resolution = "8K_ULTRA_HD"
4 self.frame_ratio = "9:16" # Optimized for Social Media
5 self.style = "Hyper-Realistic / Professional Styling"
6
7 def setup_scene(self):
8 # Background & Environment
9 self.surface = cr.Surface(material="Rustic Wooden Board", texture="Grainy")
10 self.background = Bokeh(source="Vibrant Green Plants", blur_intensity=0.8)
11 self.lighting = NaturalLight(time="Warm Golden Hour", mood="Soft Cinematic")
12
13 # The Subject: Gourmet Crepes
14 self.subject = cr.FoodItem(
15 type="Ultra-Thin Golden Crepes",
16 form="Tight Cylinders",
17 quantity="Casual Stack",
18 attributes={
19 "edges": "Lightly Browned / Crispy",
20 "topping": "Elegant Dark Chocolate Spiral Stripes",
21 "filling": "Rich Glossy Chocolate-Hazelnut Spread"
22 }
23 )
24
25 def apply_motion_effects(self):
26 # Dynamic Elements
27 FluidDynamics.add_drizzle(
28 substance="Molten Chocolate",
29 speed="Slow-Motion",
30 behavior="Falling / Coating"
31 )
32 SteamParticles.emit(source=self.subject, opacity=0.3)
33
34 # Camera Movement
35 self.camera = Camera(mode="Macro")
36 self.camera.path = ["Slow Pan", "Tilt", "Slight Rotation"]
37 self.camera.focus = "Gooey ends and creamy textures"
38
39 def render_commercial(self):
40 return self.setup_scene().apply_motion_effects().execute(fps=60)

Explore Similar Prompts