diff options
| author | 2026-01-13 14:45:44 +0800 | |
|---|---|---|
| committer | 2026-01-13 14:45:44 +0800 | |
| commit | a4f6fcf6442640dc4ea78d59ed7489f18abc8925 (patch) | |
| tree | d066ef64229c6c8a36d28882d41c44a4ad498b85 /src-tauri | |
| parent | abda9ea5a767a188ca2b00532ae668d8b663b8b6 (diff) | |
| download | DropOut-a4f6fcf6442640dc4ea78d59ed7489f18abc8925.tar.gz DropOut-a4f6fcf6442640dc4ea78d59ed7489f18abc8925.zip | |
feat: update SVG icon with grid pattern and axes for improved visualization
Diffstat (limited to 'src-tauri')
| -rw-r--r-- | src-tauri/icons/128x128.png | bin | 9930 -> 11517 bytes | |||
| -rw-r--r-- | src-tauri/icons/128x128@2x.png | bin | 9930 -> 11517 bytes | |||
| -rw-r--r-- | src-tauri/icons/32x32.png | bin | 9930 -> 11517 bytes | |||
| -rw-r--r-- | src-tauri/icons/icon.icns | bin | 9930 -> 11517 bytes | |||
| -rw-r--r-- | src-tauri/icons/icon.ico | bin | 9930 -> 11517 bytes | |||
| -rw-r--r-- | src-tauri/icons/icon.png | bin | 9930 -> 11517 bytes | |||
| -rw-r--r-- | src-tauri/icons/icon.svg | 25 |
7 files changed, 23 insertions, 2 deletions
diff --git a/src-tauri/icons/128x128.png b/src-tauri/icons/128x128.png Binary files differindex 1fca9cf..568d215 100644 --- a/src-tauri/icons/128x128.png +++ b/src-tauri/icons/128x128.png diff --git a/src-tauri/icons/128x128@2x.png b/src-tauri/icons/128x128@2x.png Binary files differindex 1fca9cf..568d215 100644 --- a/src-tauri/icons/128x128@2x.png +++ b/src-tauri/icons/128x128@2x.png diff --git a/src-tauri/icons/32x32.png b/src-tauri/icons/32x32.png Binary files differindex 1fca9cf..568d215 100644 --- a/src-tauri/icons/32x32.png +++ b/src-tauri/icons/32x32.png diff --git a/src-tauri/icons/icon.icns b/src-tauri/icons/icon.icns Binary files differindex 1fca9cf..568d215 100644 --- a/src-tauri/icons/icon.icns +++ b/src-tauri/icons/icon.icns diff --git a/src-tauri/icons/icon.ico b/src-tauri/icons/icon.ico Binary files differindex 1fca9cf..568d215 100644 --- a/src-tauri/icons/icon.ico +++ b/src-tauri/icons/icon.ico diff --git a/src-tauri/icons/icon.png b/src-tauri/icons/icon.png Binary files differindex 1fca9cf..568d215 100644 --- a/src-tauri/icons/icon.png +++ b/src-tauri/icons/icon.png diff --git a/src-tauri/icons/icon.svg b/src-tauri/icons/icon.svg index 2c4de10..8d9a6f5 100644 --- a/src-tauri/icons/icon.svg +++ b/src-tauri/icons/icon.svg @@ -1,5 +1,26 @@ <svg xmlns="http://www.w3.org/2000/svg" width="512" height="512" viewBox="0 0 512 512"> + <!-- Background --> <rect width="100%" height="100%" fill="#23272a"/> - <path d="M50 400 L256 400 L462 100" stroke="#43b581" stroke-width="20" fill="none" stroke-linecap="round" stroke-linejoin="round"/> - <circle cx="256" cy="400" r="10" fill="#7289da"/> + + <!-- Grid Pattern --> + <defs> + <pattern id="smallGrid" width="40" height="40" patternUnits="userSpaceOnUse"> + <path d="M 40 0 L 0 0 0 40" fill="none" stroke="#33363b" stroke-width="2"/> + </pattern> + </defs> + <rect width="100%" height="100%" fill="url(#smallGrid)" /> + + <!-- Axes --> + <!-- X Axis --> + <line x1="20" y1="400" x2="492" y2="400" stroke="#72767d" stroke-width="6" stroke-linecap="round"/> + <!-- Y Axis --> + <line x1="256" y1="20" x2="256" y2="492" stroke="#72767d" stroke-width="6" stroke-linecap="round"/> + + <!-- ReLU Function Graph --> + <!-- Flat part (x < 0) --> + <!-- Rising part (x > 0) --> + <path d="M 20 400 L 256 400 L 462 100" stroke="#43b581" stroke-width="24" fill="none" stroke-linecap="round" stroke-linejoin="round"/> + + <!-- Origin Dot (Hinge) --> + <circle cx="256" cy="400" r="16" fill="#7289da" stroke="#23272a" stroke-width="4"/> </svg>
\ No newline at end of file |