
Space Mission Technical Artifacts
A creative code-based template for generating technical visualizations of space missions as a 2x2 grid of museum artifacts with HUD overlays.
回視聴488
いいね20
コメント1
シェア4
ブックマーク14
引用0
翻訳
16:9、4つの有名な宇宙ミッションに対してこれを実行:void main() { string[] subjects = {"{argument name="subject one" default="[SUB_1]"}", "{argument name="subject two" default="[SUB_2]"}", "[SUB_3]", "[SUB_4]"}; // マテリアルのセットアップ vec3 bg_mat = pure_black_matte(); vec3 ui_ink = unlit_metallic_gold(depth: 0.0); vec3 sculpture_mat = pbr_metal(brass, chrome) + refractive_glass(IOR: 1.5); // ビューポートのセットアップ(2x2グリッド) vec4 canvas = clear(bg_mat); for(int i=0; i<4; i++) { vec2 quadrant = get_grid_cell(i, columns: 2); // 3Dセンタピースのレンダリング mat4 reliquary = build_intricate_model(subjects[i], sculpture_mat); render_to_cell(quadrant, reliquary, lighting: museum_spotlight); // 2D UIオーバーレイのレンダリング vec3 wireframe = generate_blueprint(subjects[i]); vec3 text_data = infer_specs_and_quotes(subjects[i]); draw_hud(quadrant, wireframe + text_data, material: ui_ink); } // グローバルテキストの追加 draw_hud(header, "{argument name="mission theme" default="[THEME]"} CORES", material: ui_ink); fragColor = canvas; }
機械翻訳 — この作品を生成したのは元のプロンプトです。











