Stainless Steel
Stainless SteelA sleek, modern 3D rendered logo featuring an infinity symbol or figure-eight shape composed of three interconnected rounded rectangular loops. The object is rendered with a polished metallic glass material that exhibits sophisticated optical properties. The surface demonstrates strong specular highlights with warm golden-orange reflections on the left side transitioning to cool blue-white highlights on the right side, creating a directional lighting effect. The glass material shows subtle chromatic aberration and refraction distortion, with a fresnel effect that enhances edge visibility. The shape has a hollow, cutout design allowing the dark background to show through the interior spaces. The object is positioned centrally against a deep charcoal background with subtle studio lighting that creates a soft vignette effect. A barely perceptible film grain texture overlays the entire composition, adding photorealistic quality. The lighting setup appears to be a three-point studio configuration with key light at approximately 300 degrees, creating dimensional modeling on the curved surfaces. The overall aesthetic is premium, corporate, and contemporary with emphasis on material realism and optical accuracy.
Code
<script setup lang="ts">
import {
Shader,
FilmGrain,
Glass,
StudioBackground,
Swirl
} from 'shaders/vue'
</script>
<template>
<Shader
:disable-telemetry="true"
>
<StudioBackground :ambient-intensity="65" :back-intensity="25" :brightness="100" :center="{ x: 0.5, y: 0.88 }" color="#1b1b21" :fill-angle="53" :fill-intensity="9" :fill-softness="94" :key-intensity="11" :key-softness="100" :wall-curvature="19" />
<Glass :aberration="1" :blur="20" :cutout="true" :fresnel="0.02" :fresnel-softness="0.31" :highlight="0.3" :refraction="1.57" shape-sdf-url="https://data.shaders.com/storage/v1/object/public/user-uploaded-images/user_33nh0FG48zZa0rIUZuK7vgwPfZe/_anekeNfTTiN_sdf.bin" :thickness="1">
<Swirl :blend="18" color-a="#141412" color-b="#ffffff" color-space="hsl" :detail="4.2" :speed="0.5" />
</Glass>
<FilmGrain :strength="0.1" />
</Shader>
</template>