Icons for Iso/Di/Trimetric & Oblique drawing tools
This commit is contained in:
parent
df746eb58f
commit
edbc68f0d7
7 changed files with 9 additions and 9 deletions
|
|
@ -59,7 +59,7 @@ https://tuxpaint.org/
|
|||
when in "beginner" complexity mode. However, in "beginner" mode:
|
||||
- Two "3-Point Draw" tools are provided, offering both 'upwards'
|
||||
and 'downwards' perspectives.
|
||||
- WIP Two "Oblqiue" tools are provided, offering recedings axes
|
||||
- WIP Two "Oblqiue Draw" tools are provided, offering recedings axes
|
||||
to both the right and the left.
|
||||
+ Code: Bill Kendrick <bill@newbreedsoftware.com>
|
||||
+ Sounds:
|
||||
|
|
|
|||
BIN
magic/icons/dimetric_draw.png
Normal file
BIN
magic/icons/dimetric_draw.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 12 KiB |
BIN
magic/icons/isometric_draw.png
Normal file
BIN
magic/icons/isometric_draw.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 14 KiB |
BIN
magic/icons/oblique_draw.png
Normal file
BIN
magic/icons/oblique_draw.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 11 KiB |
BIN
magic/icons/oblique_draw_alt.png
Normal file
BIN
magic/icons/oblique_draw_alt.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 5.9 KiB |
BIN
magic/icons/trimetric_draw.png
Normal file
BIN
magic/icons/trimetric_draw.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 14 KiB |
|
|
@ -168,21 +168,21 @@ const char *icon_filenames[NUM_TOOLS] = {
|
|||
|
||||
/* Isometric */
|
||||
"",
|
||||
"Snow_flake4.png", // FIXME
|
||||
"isometric_draw.png",
|
||||
|
||||
/* Dimetric */
|
||||
"Snow_flake4.png", // FIXME
|
||||
"Snow_flake4.png", // FIXME
|
||||
"dimetric_draw.png",
|
||||
|
||||
/* Trimetric */
|
||||
"Snow_flake4.png", // FIXME
|
||||
"Snow_flake4.png", // FIXME
|
||||
"trimetric_draw.png",
|
||||
|
||||
/* Oblique */
|
||||
"Snow_flake4.png", // FIXME
|
||||
"Snow_flake4.png", // FIXME
|
||||
"oblique_draw.png",
|
||||
"",
|
||||
"Snow_flake4.png", // FIXME
|
||||
"oblique_draw_alt.png",
|
||||
};
|
||||
|
||||
|
||||
|
|
@ -217,7 +217,7 @@ const char *tool_names[NUM_TOOLS] = {
|
|||
gettext_noop("Oblique Select"),
|
||||
gettext_noop("Oblique Draw"),
|
||||
"",
|
||||
gettext_noop("Oblique Draw Right"),
|
||||
gettext_noop("Oblique Draw Left"),
|
||||
};
|
||||
|
||||
|
||||
|
|
@ -433,8 +433,8 @@ int n_pt_persp_init(magic_api * api, Uint8 disabled_features ATTRIBUTE_UNUSED, U
|
|||
tri_ang[1] = 165 * M_PI / 180.0;
|
||||
tri_ang_chosen = 0;
|
||||
|
||||
oblq_ang = -45 * M_PI / 180.0;
|
||||
oblqb_ang = 45 * M_PI / 180.0;
|
||||
oblq_ang = 45 * M_PI / 180.0;
|
||||
oblqb_ang = -45 * M_PI / 180.0;
|
||||
|
||||
|
||||
/* Generate our own snapshot surface */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue