Ascii Tunnel 6
Ascii TunnelA dark, atmospheric ASCII art visualization featuring a 3D torus shape rendered with falling lines effect. The composition shows multiple diagonal and vertical ASCII character patterns (┉╳┉╳) creating a sense of depth and motion across the black background. The torus structure is visible through the ASCII rendering, with the characters forming the geometric shape's outline and surface. Falling white and black lines cascade downward at a 90-degree angle with a speed of 0.25, creating a dynamic streaming effect. The overall color palette is dominated by deep blacks (#0e1214, #0f0f17) with bright white (#ffffff) ASCII characters providing high contrast. The lighting is minimal with no glossiness, creating a flat, technical appearance. The background has subtle ambient lighting (98% intensity) that provides minimal illumination. The ASCII characters are rendered with a cell size of 12 pixels and gamma correction of 0.25, giving them a crisp, pixelated appearance. The 3D form appears to rotate slightly (spinY: 0.5) creating a subtle animation effect. The overall mood is cyberpunk and technical, reminiscent of terminal or hacker aesthetic with a dark, moody atmosphere.
Code
<script setup lang="ts">
import {
Shader,
Ascii,
FallingLines,
Form3D,
RadialGradient,
StudioBackground
} from 'shaders/vue'
</script>
<template>
<Shader
:disable-telemetry="true"
color-space="srgb"
>
<RadialGradient :center="{ x: 0.5, y: 1 }" color-a="#180726" color-b="#0f0f17" :radius="0.8" :visible="false" />
<StudioBackground :ambient-intensity="98" :ambient-speed="5" :brightness="100" :center="{ x: 0.5, y: 1 }" color="#0e1214" :fill-intensity="0" :key-intensity="5" :light-target="0" />
<Ascii :alpha-threshold="0.14" :cell-size="12" characters="┉╳┉╳" :gamma="0.25" :preserve-alpha="false">
<Form3D :glossiness="0" :lighting="0" :shape3d="{ type: 'torus', outerRadius: 102, tubeRadius: 100, rotX: -90, rotY: 0, rotZ: 0, spinX: 0, spinY: 0.5, spinZ: 0 }" shape3d-type="torus" :zoom="92">
<FallingLines color-b="#000000" :density="17" :speed="0.25" :speed-variance="0.55" :stroke-width="0.38" :trail-length="0.49" />
</Form3D>
</Ascii>
</Shader>
</template>