Icons for Iso/Di/Trimetric & Oblique drawing tools

This commit is contained in:
Bill Kendrick 2024-01-13 18:19:16 -08:00
parent df746eb58f
commit edbc68f0d7
7 changed files with 9 additions and 9 deletions

View file

@ -59,7 +59,7 @@ https://tuxpaint.org/
when in "beginner" complexity mode. However, in "beginner" mode: when in "beginner" complexity mode. However, in "beginner" mode:
- Two "3-Point Draw" tools are provided, offering both 'upwards' - Two "3-Point Draw" tools are provided, offering both 'upwards'
and 'downwards' perspectives. 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. to both the right and the left.
+ Code: Bill Kendrick <bill@newbreedsoftware.com> + Code: Bill Kendrick <bill@newbreedsoftware.com>
+ Sounds: + Sounds:

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

View file

@ -168,21 +168,21 @@ const char *icon_filenames[NUM_TOOLS] = {
/* Isometric */ /* Isometric */
"", "",
"Snow_flake4.png", // FIXME "isometric_draw.png",
/* Dimetric */ /* Dimetric */
"Snow_flake4.png", // FIXME "Snow_flake4.png", // FIXME
"Snow_flake4.png", // FIXME "dimetric_draw.png",
/* Trimetric */ /* Trimetric */
"Snow_flake4.png", // FIXME "Snow_flake4.png", // FIXME
"Snow_flake4.png", // FIXME "trimetric_draw.png",
/* Oblique */ /* Oblique */
"Snow_flake4.png", // FIXME "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 Select"),
gettext_noop("Oblique Draw"), 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[1] = 165 * M_PI / 180.0;
tri_ang_chosen = 0; tri_ang_chosen = 0;
oblq_ang = -45 * M_PI / 180.0; oblq_ang = 45 * M_PI / 180.0;
oblqb_ang = 45 * M_PI / 180.0; oblqb_ang = -45 * M_PI / 180.0;
/* Generate our own snapshot surface */ /* Generate our own snapshot surface */