-
Notifications
You must be signed in to change notification settings - Fork 126
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
wallet: add emoji picker widget (unimpl) and connect hide/show button
- Loading branch information
darkfi
committed
Jan 4, 2025
1 parent
7251272
commit 0f1eac3
Showing
10 changed files
with
396 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
# Blender 4.3.1 | ||
# www.blender.org | ||
mtllib close.mtl | ||
o close | ||
v 0.000000 0.000000 0.000000 | ||
v 0.000000 0.000000 -0.194555 | ||
v 0.194555 0.000000 0.000000 | ||
v 0.550000 0.000000 -0.744555 | ||
v 0.744555 0.000000 -0.550000 | ||
v 0.000000 0.000000 0.000000 | ||
v -0.194555 0.000000 0.000000 | ||
v -0.550000 0.000000 -0.744555 | ||
v -0.744555 0.000000 -0.550000 | ||
v 0.000000 0.000000 0.000000 | ||
v 0.000000 0.000000 0.194555 | ||
v 0.550000 0.000000 0.744555 | ||
v 0.744555 0.000000 0.550000 | ||
v 0.000000 0.000000 0.000000 | ||
v -0.550000 0.000000 0.744555 | ||
v -0.744555 0.000000 0.550000 | ||
vn -0.0000 1.0000 -0.0000 | ||
vn -0.0000 -1.0000 -0.0000 | ||
vt 1.000000 0.000000 | ||
vt 1.000000 1.000000 | ||
vt 0.000000 1.000000 | ||
s 0 | ||
f 1/1/1 3/2/1 2/3/1 | ||
f 3/2/1 4/3/1 2/3/1 | ||
f 6/1/2 7/2/2 2/3/2 | ||
f 7/2/2 8/3/2 2/3/2 | ||
f 10/1/2 3/2/2 11/3/2 | ||
f 3/2/2 12/3/2 11/3/2 | ||
f 14/1/1 7/2/1 11/3/1 | ||
f 7/2/1 15/3/1 11/3/1 | ||
f 3/2/1 5/2/1 4/3/1 | ||
f 7/2/2 9/2/2 8/3/2 | ||
f 3/2/2 13/2/2 12/3/2 | ||
f 7/2/1 16/2/1 15/3/1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
use crate::ui::{ShapeVertex, VectorShape}; | ||
pub fn create_close_icon() -> VectorShape { | ||
VectorShape { | ||
verts: vec![ | ||
ShapeVertex::from_xy(0.0, 0.0, [0., 1., 1., 1.]), | ||
ShapeVertex::from_xy(0.0, -0.194555, [0., 1., 1., 1.]), | ||
ShapeVertex::from_xy(0.194555, 0.0, [0., 1., 1., 1.]), | ||
ShapeVertex::from_xy(0.55, -0.744555, [0., 1., 1., 1.]), | ||
ShapeVertex::from_xy(0.744555, -0.55, [0., 1., 1., 1.]), | ||
ShapeVertex::from_xy(0.0, 0.0, [0., 1., 1., 1.]), | ||
ShapeVertex::from_xy(-0.194555, 0.0, [0., 1., 1., 1.]), | ||
ShapeVertex::from_xy(-0.55, -0.744555, [0., 1., 1., 1.]), | ||
ShapeVertex::from_xy(-0.744555, -0.55, [0., 1., 1., 1.]), | ||
ShapeVertex::from_xy(0.0, 0.0, [0., 1., 1., 1.]), | ||
ShapeVertex::from_xy(0.0, 0.194555, [0., 1., 1., 1.]), | ||
ShapeVertex::from_xy(0.55, 0.744555, [0., 1., 1., 1.]), | ||
ShapeVertex::from_xy(0.744555, 0.55, [0., 1., 1., 1.]), | ||
ShapeVertex::from_xy(0.0, 0.0, [0., 1., 1., 1.]), | ||
ShapeVertex::from_xy(-0.55, 0.744555, [0., 1., 1., 1.]), | ||
ShapeVertex::from_xy(-0.744555, 0.55, [0., 1., 1., 1.]), | ||
], | ||
indices: vec![ | ||
0, 2, 1, 2, 3, 1, 5, 6, 1, 6, 7, 1, 9, 2, 10, 2, 11, 10, 13, 6, 10, 6, 14, 10, 2, 4, 3, | ||
6, 8, 7, 2, 12, 11, 6, 15, 14, | ||
], | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.