VERIFIED X VISUAL PROMPT
A logo prompt for foods but should work for ot

Creator: @Gdgtify
Model: Not specified
用这个效果生成 View original X source ↗原始提示词
2x2 grid, 1:1, do this for 4 popular lunches around the world: void main() {
string subject = "[$SUBJECT]";
string word = "[$WORD]";
// Force Flat Vector Rendering
float edge_sharpness = 1.0; // No anti-aliasing blur
int color_limit = 4; // Posterize to spot colors
// Morphological Mapping
mat4 text_mesh = generate_text(word, font: bold_sans);
mat4 subject_bottom = generate_silhouette(subject, slice: bottom_half);
// Boolean Union
mat4 logo_structure = boolean_union(text_mesh, subject_bottom);
// Extrude center letter
extrude_glyph(logo_structure.center_letter, direction: down, morph_target: infer_contents(subject));
render(logo_structure, shading: unlit_flat, background: pure_white);
}