Update rotate icons to clarify action
Rename icons to make it easier for folks looking at code names Fixes https://gitlab.com/kicad/code/kicad/issues/6737
|
@ -78,12 +78,12 @@ enum DISPLAY3D_FLG
|
|||
/// Rotation direction for the 3d canvas
|
||||
enum class ROTATION_DIR
|
||||
{
|
||||
X_NEG,
|
||||
X_POS,
|
||||
Y_NEG,
|
||||
Y_POS,
|
||||
Z_NEG,
|
||||
Z_POS
|
||||
X_CW,
|
||||
X_CCW,
|
||||
Y_CW,
|
||||
Y_CCW,
|
||||
Z_CW,
|
||||
Z_CCW
|
||||
};
|
||||
|
||||
|
||||
|
|
|
@ -46,32 +46,32 @@ TOOL_ACTION EDA_3D_ACTIONS::pivotCenter( "3DViewer.Control.pivotCenter",
|
|||
TOOL_ACTION EDA_3D_ACTIONS::rotateXCW( "3DViewer.Control.rotateXclockwise",
|
||||
AS_GLOBAL, 0, "",
|
||||
_( "Rotate X Clockwise" ), _( "Rotate X Clockwise" ),
|
||||
rotate_neg_x_xpm, AF_NONE, (void*) ROTATION_DIR::X_NEG );
|
||||
rotate_cw_x_xpm, AF_NONE, (void*) ROTATION_DIR::X_CW );
|
||||
|
||||
TOOL_ACTION EDA_3D_ACTIONS::rotateXCCW( "3DViewer.Control.rotateXcounterclockwise",
|
||||
AS_GLOBAL, 0, "",
|
||||
_( "Rotate X Counterclockwise" ), _( "Rotate X Counterclockwise" ),
|
||||
rotate_pos_x_xpm, AF_NONE, (void*) ROTATION_DIR::X_POS );
|
||||
rotate_ccw_x_xpm, AF_NONE, (void*) ROTATION_DIR::X_CCW );
|
||||
|
||||
TOOL_ACTION EDA_3D_ACTIONS::rotateYCW( "3DViewer.Control.rotateYclockwise",
|
||||
AS_GLOBAL, 0, "",
|
||||
_( "Rotate Y Clockwise" ), _( "Rotate Y Clockwise" ),
|
||||
rotate_neg_y_xpm, AF_NONE, (void*) ROTATION_DIR::Y_NEG );
|
||||
rotate_cw_y_xpm, AF_NONE, (void*) ROTATION_DIR::Y_CW );
|
||||
|
||||
TOOL_ACTION EDA_3D_ACTIONS::rotateYCCW( "3DViewer.Control.rotateYcounterclockwise",
|
||||
AS_GLOBAL, 0, "",
|
||||
_( "Rotate Y Counterclockwise" ), _( "Rotate Y Counterclockwise" ),
|
||||
rotate_pos_y_xpm, AF_NONE, (void*) ROTATION_DIR::Y_POS );
|
||||
rotate_ccw_y_xpm, AF_NONE, (void*) ROTATION_DIR::Y_CCW );
|
||||
|
||||
TOOL_ACTION EDA_3D_ACTIONS::rotateZCW( "3DViewer.Control.rotateZclockwise",
|
||||
AS_GLOBAL, 0, "",
|
||||
_( "Rotate Z Clockwise" ), _( "Rotate Z Clockwise" ),
|
||||
rotate_neg_z_xpm, AF_NONE, (void*) ROTATION_DIR::Z_NEG );
|
||||
rotate_cw_z_xpm, AF_NONE, (void*) ROTATION_DIR::Z_CW );
|
||||
|
||||
TOOL_ACTION EDA_3D_ACTIONS::rotateZCCW( "3DViewer.Control.rotateZcounterclockwise",
|
||||
AS_GLOBAL, 0, "",
|
||||
_( "Rotate Z Counterclockwise" ), _( "Rotate Z Counterclockwise" ),
|
||||
rotate_pos_z_xpm, AF_NONE, (void*) ROTATION_DIR::Z_POS );
|
||||
rotate_ccw_z_xpm, AF_NONE, (void*) ROTATION_DIR::Z_CCW );
|
||||
|
||||
TOOL_ACTION EDA_3D_ACTIONS::moveLeft( "3DViewer.Control.moveLeft",
|
||||
AS_ACTIVE,
|
||||
|
|
|
@ -152,12 +152,13 @@ int EDA_3D_CONTROLLER::RotateView( const TOOL_EVENT& aEvent )
|
|||
|
||||
switch( aEvent.Parameter<ROTATION_DIR>() )
|
||||
{
|
||||
case ROTATION_DIR::X_NEG: m_camera->RotateX( -rotIncrement ); break;
|
||||
case ROTATION_DIR::X_POS: m_camera->RotateX( rotIncrement ); break;
|
||||
case ROTATION_DIR::Y_NEG: m_camera->RotateY( -rotIncrement ); break;
|
||||
case ROTATION_DIR::Y_POS: m_camera->RotateY( rotIncrement ); break;
|
||||
case ROTATION_DIR::Z_NEG: m_camera->RotateZ( -rotIncrement ); break;
|
||||
case ROTATION_DIR::Z_POS: m_camera->RotateZ( rotIncrement ); break;
|
||||
case ROTATION_DIR::X_CW: m_camera->RotateX( -rotIncrement ); break;
|
||||
case ROTATION_DIR::X_CCW: m_camera->RotateX( rotIncrement ); break;
|
||||
/// Y rotations are backward b/c the RHR has Y pointing into the screen
|
||||
case ROTATION_DIR::Y_CW: m_camera->RotateY( rotIncrement ); break;
|
||||
case ROTATION_DIR::Y_CCW: m_camera->RotateY( -rotIncrement ); break;
|
||||
case ROTATION_DIR::Z_CW: m_camera->RotateZ( -rotIncrement ); break;
|
||||
case ROTATION_DIR::Z_CCW: m_camera->RotateZ( rotIncrement ); break;
|
||||
default: wxFAIL; break;
|
||||
}
|
||||
|
||||
|
|
|
@ -399,12 +399,12 @@ set( BMAPS_MID
|
|||
router_len_tuner_dist_incr
|
||||
rotate_ccw
|
||||
rotate_cw
|
||||
rotate_neg_x
|
||||
rotate_pos_x
|
||||
rotate_neg_y
|
||||
rotate_pos_y
|
||||
rotate_neg_z
|
||||
rotate_pos_z
|
||||
rotate_ccw_x
|
||||
rotate_cw_x
|
||||
rotate_ccw_y
|
||||
rotate_cw_y
|
||||
rotate_ccw_z
|
||||
rotate_cw_z
|
||||
save_as
|
||||
save_symbol_to_schematic
|
||||
save_fp_to_board
|
||||
|
|
|
@ -0,0 +1,47 @@
|
|||
|
||||
/* Do not modify this file, it was automatically generated by the
|
||||
* PNG2cpp CMake script, using a *.png file as input.
|
||||
*/
|
||||
|
||||
#include <bitmaps_png/bitmaps_list.h>
|
||||
|
||||
static const unsigned char png[] = {
|
||||
0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a, 0x0a, 0x00, 0x00, 0x00, 0x0d, 0x49, 0x48, 0x44, 0x52,
|
||||
0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x18, 0x08, 0x06, 0x00, 0x00, 0x00, 0xe0, 0x77, 0x3d,
|
||||
0xf8, 0x00, 0x00, 0x01, 0xe1, 0x49, 0x44, 0x41, 0x54, 0x48, 0xc7, 0x63, 0x60, 0x20, 0x01, 0x84,
|
||||
0x84, 0x84, 0x1c, 0x06, 0x61, 0x06, 0x5a, 0x01, 0xa0, 0xe1, 0xff, 0x41, 0x98, 0x2c, 0xcd, 0x41,
|
||||
0x41, 0x41, 0x16, 0x40, 0xcd, 0x6f, 0x43, 0x43, 0x43, 0x3d, 0x40, 0xfc, 0xe0, 0xe0, 0xe0, 0x24,
|
||||
0x20, 0xff, 0x69, 0x44, 0x44, 0x84, 0x2c, 0x55, 0x2c, 0x80, 0x1a, 0x30, 0x17, 0x88, 0x6f, 0x07,
|
||||
0x06, 0x06, 0x8a, 0x01, 0xe9, 0xe7, 0x40, 0x5c, 0x49, 0x35, 0x1f, 0x80, 0x40, 0x54, 0x54, 0x94,
|
||||
0x20, 0xd0, 0x80, 0x67, 0x40, 0xd7, 0xdf, 0x07, 0xd2, 0x17, 0xd3, 0xd2, 0xd2, 0x58, 0x89, 0xb5,
|
||||
0x20, 0x32, 0x32, 0x52, 0x04, 0xe8, 0x7b, 0x1e, 0x62, 0x7c, 0xb1, 0x1c, 0x6a, 0x50, 0x25, 0xb1,
|
||||
0x71, 0x00, 0x14, 0x2b, 0x01, 0xe2, 0x7f, 0x40, 0xfc, 0x0d, 0x68, 0x89, 0x1f, 0x3e, 0xc3, 0x1d,
|
||||
0x80, 0xf8, 0x37, 0x34, 0xa8, 0x3e, 0x02, 0x15, 0xcb, 0x11, 0xb2, 0x00, 0x18, 0x77, 0x46, 0x40,
|
||||
0xb1, 0xbf, 0x50, 0x87, 0x1d, 0x03, 0xe2, 0x37, 0x40, 0x7d, 0xfc, 0x18, 0x86, 0x7b, 0x7a, 0x7a,
|
||||
0xb2, 0x03, 0x25, 0xaf, 0x03, 0xf1, 0x14, 0xa0, 0x02, 0x66, 0x20, 0x3e, 0x0b, 0x64, 0xef, 0x01,
|
||||
0x4a, 0x31, 0xe2, 0xb3, 0x00, 0xea, 0x98, 0xf7, 0x7e, 0x7e, 0x7e, 0xbc, 0xc0, 0xa0, 0x35, 0x01,
|
||||
0xc9, 0x03, 0xe9, 0x54, 0x0c, 0x0b, 0x80, 0x06, 0x86, 0x00, 0xf1, 0xd6, 0x80, 0x80, 0x00, 0x01,
|
||||
0xa8, 0xcb, 0x4c, 0x81, 0xfc, 0xdd, 0x40, 0x0d, 0x56, 0xf8, 0x2c, 0x00, 0x1a, 0xf6, 0x08, 0x28,
|
||||
0xb6, 0x0c, 0x89, 0x3f, 0x07, 0x88, 0x7d, 0xa9, 0x92, 0x0f, 0xc2, 0xc3, 0xc3, 0x95, 0x41, 0x7c,
|
||||
0xa0, 0x43, 0xd2, 0x68, 0x92, 0xd1, 0x80, 0x06, 0x7b, 0x83, 0xf8, 0x20, 0xdf, 0xd2, 0xc4, 0x02,
|
||||
0x68, 0x66, 0xfc, 0x8f, 0x9e, 0x18, 0xc8, 0x02, 0xd0, 0xcc, 0x07, 0xb6, 0x60, 0xbf, 0x9a, 0x23,
|
||||
0x18, 0xaf, 0x5f, 0xbf, 0x1e, 0xcc, 0xff, 0xf9, 0xf3, 0x27, 0x5c, 0x0c, 0x86, 0x0f, 0xa8, 0x39,
|
||||
0xfe, 0xdc, 0xa7, 0xe6, 0xe8, 0x45, 0xb4, 0xe1, 0x40, 0x57, 0x5e, 0x06, 0x19, 0x16, 0x19, 0x14,
|
||||
0x8c, 0x61, 0xc1, 0xef, 0xdf, 0xbf, 0x31, 0x2c, 0xd8, 0xab, 0xee, 0x44, 0x9c, 0x05, 0x40, 0x83,
|
||||
0x45, 0x81, 0x86, 0x5c, 0x82, 0xba, 0xfe, 0x3a, 0x90, 0x2f, 0x81, 0x14, 0x44, 0xd9, 0x20, 0x71,
|
||||
0xa0, 0x03, 0x84, 0xd1, 0xf4, 0x94, 0x02, 0xe5, 0xc2, 0x28, 0x32, 0x1c, 0x2a, 0x1f, 0x0b, 0x92,
|
||||
0x03, 0xa5, 0x26, 0xa4, 0x78, 0x2a, 0x87, 0xaa, 0x2f, 0xa6, 0xc8, 0x70, 0xa8, 0x1a, 0x33, 0x68,
|
||||
0x24, 0x07, 0x42, 0x0d, 0x6f, 0x82, 0xc5, 0x13, 0x10, 0xf7, 0x53, 0x64, 0x38, 0x54, 0x1d, 0x1b,
|
||||
0x50, 0xfe, 0x3b, 0x10, 0x77, 0x82, 0x0c, 0x44, 0x32, 0x1c, 0x64, 0xe9, 0x1a, 0x8a, 0x0c, 0x47,
|
||||
0x0a, 0x92, 0xbd, 0x40, 0x7c, 0x0b, 0xa8, 0x4e, 0x17, 0x88, 0x4f, 0x21, 0x59, 0x72, 0x92, 0x62,
|
||||
0xc3, 0xa1, 0x11, 0x1d, 0x00, 0x2d, 0x7f, 0xe6, 0x03, 0xe9, 0x77, 0x20, 0x0b, 0x81, 0xec, 0x45,
|
||||
0xa0, 0x22, 0x04, 0x3d, 0x29, 0x0a, 0xc3, 0x92, 0x22, 0x88, 0x06, 0x25, 0x4d, 0x62, 0xf3, 0x08,
|
||||
0xd0, 0xb0, 0x5e, 0x68, 0x29, 0x7c, 0x05, 0x98, 0xab, 0xe5, 0xa1, 0xc5, 0x88, 0x26, 0xba, 0x57,
|
||||
0x73, 0xc9, 0x31, 0x1c, 0x06, 0x12, 0x12, 0x12, 0x38, 0x08, 0xa5, 0x1a, 0x7e, 0x90, 0x25, 0xa0,
|
||||
0x9a, 0x89, 0x61, 0x28, 0x01, 0x00, 0x85, 0x8e, 0x5d, 0xca, 0x30, 0xe9, 0xab, 0x81, 0x00, 0x00,
|
||||
0x00, 0x00, 0x49, 0x45, 0x4e, 0x44, 0xae, 0x42, 0x60, 0x82,
|
||||
};
|
||||
|
||||
const BITMAP_OPAQUE rotate_ccw_x_xpm[1] = {{ png, sizeof( png ), "rotate_ccw_x_xpm" }};
|
||||
|
||||
//EOF
|
|
@ -0,0 +1,51 @@
|
|||
|
||||
/* Do not modify this file, it was automatically generated by the
|
||||
* PNG2cpp CMake script, using a *.png file as input.
|
||||
*/
|
||||
|
||||
#include <bitmaps_png/bitmaps_list.h>
|
||||
|
||||
static const unsigned char png[] = {
|
||||
0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a, 0x0a, 0x00, 0x00, 0x00, 0x0d, 0x49, 0x48, 0x44, 0x52,
|
||||
0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x18, 0x08, 0x06, 0x00, 0x00, 0x00, 0xe0, 0x77, 0x3d,
|
||||
0xf8, 0x00, 0x00, 0x02, 0x1e, 0x49, 0x44, 0x41, 0x54, 0x48, 0xc7, 0x63, 0x60, 0x20, 0x01, 0x84,
|
||||
0x84, 0x84, 0x1c, 0x06, 0x61, 0x06, 0x5a, 0x01, 0xa0, 0xe1, 0xff, 0x41, 0x98, 0x6e, 0x16, 0x84,
|
||||
0x86, 0x86, 0xea, 0x02, 0xf9, 0x7f, 0x83, 0x81, 0x00, 0xc4, 0x07, 0x52, 0x49, 0x40, 0xfe, 0xaf,
|
||||
0xf0, 0xf0, 0x70, 0x65, 0xaa, 0xf9, 0x00, 0xc8, 0x5f, 0x0b, 0xc4, 0xe7, 0x1d, 0x1c, 0x1c, 0x58,
|
||||
0x80, 0x16, 0xdc, 0x04, 0xe2, 0x99, 0x54, 0x0d, 0xa2, 0xc0, 0xc0, 0x40, 0x1d, 0x90, 0x2f, 0x80,
|
||||
0x78, 0x01, 0x10, 0xff, 0x88, 0x88, 0x88, 0x90, 0xa5, 0x7a, 0x1c, 0x00, 0xc5, 0x96, 0x81, 0xc4,
|
||||
0x81, 0xae, 0x9f, 0x40, 0x93, 0x48, 0x0e, 0x0a, 0x0a, 0x72, 0x04, 0x89, 0x03, 0xe3, 0xc4, 0x80,
|
||||
0x56, 0x16, 0x58, 0x43, 0x7d, 0xa0, 0x3d, 0x70, 0x16, 0xc4, 0xc6, 0xc6, 0x72, 0x03, 0x15, 0x68,
|
||||
0x00, 0xbd, 0xc9, 0x49, 0xf5, 0x7c, 0x00, 0x4c, 0xb7, 0x6a, 0x40, 0x8d, 0x2f, 0xa1, 0x06, 0x7c,
|
||||
0x07, 0xe2, 0x85, 0xd8, 0x52, 0x03, 0xd9, 0x16, 0x00, 0x35, 0x35, 0x01, 0xf1, 0x4f, 0xa0, 0x0f,
|
||||
0x22, 0x81, 0xf4, 0x44, 0x20, 0xfe, 0x02, 0xc2, 0x40, 0xdf, 0x54, 0x00, 0x31, 0x33, 0xc5, 0x16,
|
||||
0x00, 0x0d, 0x2e, 0x04, 0x6a, 0xfc, 0xe7, 0xef, 0xef, 0x2f, 0x0b, 0x64, 0x07, 0x80, 0x5c, 0x0f,
|
||||
0xe4, 0xaf, 0x86, 0xa6, 0x8c, 0x4d, 0xa7, 0x4e, 0x9d, 0xd2, 0xfe, 0xf6, 0xf8, 0x45, 0xee, 0x2a,
|
||||
0x7d, 0xd7, 0xff, 0xcb, 0x0c, 0xdd, 0xfe, 0xc3, 0x2c, 0x22, 0x80, 0x41, 0x0e, 0xf6, 0x82, 0x65,
|
||||
0x79, 0x45, 0xa0, 0xc0, 0x1f, 0xa0, 0xc0, 0x65, 0x20, 0x7d, 0x17, 0xc9, 0xc5, 0xe9, 0x40, 0xfc,
|
||||
0xbb, 0x20, 0x3f, 0xff, 0xd7, 0xbb, 0xb7, 0x6f, 0xff, 0xdf, 0x6a, 0x98, 0xf0, 0x7f, 0x85, 0xbe,
|
||||
0x0b, 0xe9, 0x16, 0xf8, 0xf9, 0xf9, 0xf1, 0x82, 0xb2, 0x39, 0x54, 0xe2, 0x6f, 0x42, 0x42, 0x02,
|
||||
0x07, 0x48, 0xfc, 0xff, 0xff, 0xff, 0x72, 0x27, 0x8e, 0x1d, 0xbb, 0x15, 0x15, 0x1e, 0xfe, 0xaf,
|
||||
0xa4, 0xa4, 0xe4, 0xff, 0xd7, 0x2f, 0x5f, 0xfe, 0x7f, 0x7f, 0xf6, 0xa2, 0x9a, 0xa4, 0xe0, 0x01,
|
||||
0x06, 0x87, 0x14, 0xa8, 0x2c, 0x41, 0xb6, 0x1d, 0x96, 0xdc, 0xde, 0xee, 0xde, 0x6f, 0xf1, 0xeb,
|
||||
0xed, 0x87, 0x5f, 0xe7, 0x8f, 0x1e, 0xff, 0x1f, 0x1e, 0x1a, 0xf6, 0xbf, 0xa1, 0xa1, 0xe1, 0xff,
|
||||
0xcf, 0x9f, 0x3f, 0x1f, 0x00, 0x2d, 0xe6, 0x26, 0xda, 0x82, 0xa8, 0xa8, 0x28, 0x41, 0xa0, 0xa1,
|
||||
0x1d, 0xd0, 0xd4, 0xf3, 0x1f, 0x1a, 0xee, 0x81, 0x87, 0x54, 0x6c, 0x45, 0xf7, 0xab, 0x39, 0x5d,
|
||||
0x3a, 0xe9, 0x11, 0xff, 0xff, 0xd7, 0xbb, 0x0f, 0xbf, 0x77, 0xed, 0xd8, 0x71, 0x0f, 0x14, 0x4f,
|
||||
0xe9, 0xe9, 0xe9, 0x93, 0xc8, 0xca, 0x44, 0x40, 0x43, 0xe5, 0x80, 0x2e, 0x5f, 0x04, 0x36, 0xc4,
|
||||
0x2f, 0xa8, 0x19, 0x64, 0xf8, 0x7e, 0x35, 0xc7, 0xff, 0x40, 0x7c, 0xfd, 0xd5, 0xf6, 0xfd, 0x36,
|
||||
0x40, 0x57, 0x2b, 0x00, 0xe5, 0xe7, 0x83, 0xe2, 0x84, 0xa2, 0x22, 0xa1, 0xdc, 0xc3, 0xdf, 0x7d,
|
||||
0x9b, 0xa6, 0xf3, 0x13, 0x98, 0xe1, 0xfb, 0xb5, 0x1d, 0x24, 0x90, 0x1c, 0x21, 0x04, 0xb4, 0xe0,
|
||||
0x15, 0x10, 0x6f, 0x20, 0xcb, 0x70, 0x58, 0xb0, 0x60, 0x33, 0x1c, 0x29, 0x65, 0x81, 0x82, 0xf3,
|
||||
0x17, 0x28, 0xe7, 0x93, 0x64, 0xf8, 0x1e, 0x0d, 0x67, 0xe1, 0xfd, 0xaa, 0x8e, 0x97, 0xc1, 0x86,
|
||||
0x03, 0xe9, 0x9d, 0xca, 0x6e, 0x62, 0x48, 0x2e, 0x97, 0x00, 0x1a, 0xba, 0x18, 0x9a, 0x5f, 0xfa,
|
||||
0x40, 0xf1, 0x04, 0x2c, 0x7f, 0x24, 0x49, 0xb2, 0xe0, 0x80, 0xaa, 0x53, 0x2e, 0x36, 0xc3, 0x61,
|
||||
0xf1, 0x03, 0x34, 0xf4, 0x1c, 0x28, 0x7e, 0xa0, 0x09, 0x81, 0xf4, 0x20, 0xda, 0xad, 0xe4, 0xc2,
|
||||
0x0f, 0xb1, 0xc4, 0x41, 0x04, 0x97, 0x9a, 0xc8, 0xc8, 0x48, 0x71, 0x68, 0x12, 0x66, 0x64, 0x18,
|
||||
0x2c, 0x00, 0x00, 0x4c, 0x88, 0x73, 0xe1, 0x59, 0xec, 0x49, 0x03, 0x00, 0x00, 0x00, 0x00, 0x49,
|
||||
0x45, 0x4e, 0x44, 0xae, 0x42, 0x60, 0x82,
|
||||
};
|
||||
|
||||
const BITMAP_OPAQUE rotate_ccw_y_xpm[1] = {{ png, sizeof( png ), "rotate_ccw_y_xpm" }};
|
||||
|
||||
//EOF
|
|
@ -0,0 +1,44 @@
|
|||
|
||||
/* Do not modify this file, it was automatically generated by the
|
||||
* PNG2cpp CMake script, using a *.png file as input.
|
||||
*/
|
||||
|
||||
#include <bitmaps_png/bitmaps_list.h>
|
||||
|
||||
static const unsigned char png[] = {
|
||||
0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a, 0x0a, 0x00, 0x00, 0x00, 0x0d, 0x49, 0x48, 0x44, 0x52,
|
||||
0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x18, 0x08, 0x06, 0x00, 0x00, 0x00, 0xe0, 0x77, 0x3d,
|
||||
0xf8, 0x00, 0x00, 0x01, 0xaf, 0x49, 0x44, 0x41, 0x54, 0x48, 0xc7, 0x63, 0x60, 0x20, 0x01, 0xec,
|
||||
0x57, 0x73, 0x3c, 0x0c, 0xc2, 0x0c, 0xb4, 0x02, 0x40, 0xc3, 0xff, 0x83, 0xf0, 0xd0, 0xb6, 0x60,
|
||||
0x9f, 0xba, 0xe3, 0xff, 0xd0, 0xd0, 0xd0, 0xc0, 0x90, 0x90, 0x90, 0x02, 0x20, 0xee, 0x03, 0xe2,
|
||||
0x95, 0x40, 0x7c, 0x14, 0x88, 0x9f, 0x00, 0xc5, 0x6d, 0x88, 0x32, 0x28, 0x36, 0x36, 0x96, 0x1b,
|
||||
0xa8, 0x21, 0x2e, 0x38, 0x38, 0x38, 0x12, 0x9b, 0x0f, 0x80, 0xe2, 0xf1, 0x40, 0xf9, 0xbf, 0x40,
|
||||
0xfc, 0x1f, 0x09, 0xef, 0x27, 0xca, 0x70, 0xa0, 0x2b, 0xec, 0x81, 0x8a, 0x9f, 0x81, 0x34, 0x01,
|
||||
0xd9, 0x9b, 0x70, 0x05, 0x11, 0x50, 0x2e, 0x19, 0xa8, 0xe6, 0x1f, 0x92, 0x05, 0xe7, 0x80, 0x62,
|
||||
0x5a, 0x84, 0x0c, 0x67, 0x06, 0x2a, 0x7c, 0x09, 0xc4, 0x17, 0x81, 0xd8, 0x96, 0x50, 0x1c, 0x00,
|
||||
0xd5, 0xe7, 0x43, 0x0d, 0xbf, 0x01, 0x75, 0xd4, 0x53, 0xa0, 0x18, 0x1b, 0x3e, 0x0b, 0xd8, 0x80,
|
||||
0x8a, 0xbe, 0x02, 0xe9, 0x1d, 0x91, 0x91, 0x91, 0x22, 0xc4, 0x44, 0x32, 0x50, 0x6d, 0x75, 0x50,
|
||||
0x50, 0x90, 0x23, 0x50, 0x5f, 0x0f, 0xc8, 0xb2, 0x88, 0x88, 0x08, 0x29, 0x42, 0xbe, 0x48, 0x00,
|
||||
0x2a, 0xfc, 0x09, 0xb2, 0x08, 0x88, 0xd7, 0x01, 0xc3, 0x3b, 0x0f, 0x28, 0x66, 0x09, 0xa4, 0x95,
|
||||
0x7e, 0xfc, 0xf8, 0xf1, 0xff, 0xd7, 0xaf, 0x5f, 0xff, 0x41, 0x96, 0x03, 0xf9, 0xaa, 0x40, 0x71,
|
||||
0x3f, 0xa0, 0x9a, 0x56, 0x20, 0xbe, 0x02, 0xf5, 0xc9, 0x42, 0x62, 0xe3, 0x41, 0x1d, 0xa8, 0x78,
|
||||
0x0a, 0x10, 0xdf, 0x42, 0x8b, 0x48, 0x6c, 0x18, 0xe4, 0x98, 0x43, 0xd0, 0x04, 0xc1, 0x48, 0x72,
|
||||
0xd2, 0x04, 0x5a, 0x26, 0x0d, 0xc4, 0x1e, 0xa0, 0x54, 0xb5, 0x69, 0xd3, 0xa6, 0xff, 0xeb, 0xd7,
|
||||
0xaf, 0x07, 0x45, 0x7e, 0x26, 0x90, 0x1f, 0x0d, 0x0c, 0x1a, 0x0b, 0x4f, 0x4f, 0x4f, 0xf6, 0xa1,
|
||||
0x91, 0xd1, 0x02, 0x03, 0x03, 0xc5, 0x60, 0x16, 0x10, 0x11, 0x6c, 0xe0, 0xa0, 0x03, 0x06, 0x9b,
|
||||
0x17, 0xd1, 0x86, 0x03, 0x83, 0xe5, 0xf2, 0x32, 0x43, 0xb7, 0xff, 0x20, 0x4c, 0x55, 0x0b, 0x80,
|
||||
0x06, 0x8b, 0x02, 0x15, 0x5f, 0x82, 0x6a, 0xba, 0x0e, 0xe4, 0x4b, 0x50, 0x2d, 0x58, 0x06, 0xc4,
|
||||
0x70, 0x5f, 0x5f, 0x5f, 0x2e, 0x2c, 0xc1, 0xb1, 0x9f, 0x6a, 0x2e, 0x6f, 0x68, 0x68, 0x60, 0x02,
|
||||
0xf2, 0x8d, 0x41, 0x18, 0x94, 0xf6, 0xa1, 0xe5, 0x51, 0x0a, 0xd5, 0x83, 0x05, 0x64, 0x11, 0x28,
|
||||
0x83, 0x01, 0xf1, 0x1e, 0xa2, 0x33, 0x18, 0x29, 0x61, 0x0e, 0x74, 0x7d, 0x21, 0x50, 0xcd, 0x47,
|
||||
0xa0, 0x1a, 0x39, 0x62, 0x93, 0xa2, 0x30, 0x28, 0x29, 0x42, 0x8b, 0xe9, 0xcb, 0xa0, 0xa4, 0x89,
|
||||
0xc7, 0x21, 0x8a, 0x40, 0x75, 0x9f, 0x81, 0x74, 0x1a, 0xd1, 0x41, 0x03, 0xd4, 0x90, 0x4b, 0x8c,
|
||||
0xe1, 0xd0, 0x38, 0x38, 0x08, 0xf4, 0xc1, 0x35, 0x20, 0x36, 0x81, 0xc6, 0x87, 0x16, 0x31, 0xc1,
|
||||
0xc3, 0x0f, 0xb2, 0x04, 0x5b, 0x31, 0x8d, 0x0c, 0x80, 0xe5, 0x8f, 0x3c, 0x96, 0x54, 0x74, 0x85,
|
||||
0x61, 0xa0, 0x00, 0x00, 0x07, 0x48, 0x5e, 0x0c, 0x8b, 0x33, 0xd5, 0xc0, 0x00, 0x00, 0x00, 0x00,
|
||||
0x49, 0x45, 0x4e, 0x44, 0xae, 0x42, 0x60, 0x82,
|
||||
};
|
||||
|
||||
const BITMAP_OPAQUE rotate_ccw_z_xpm[1] = {{ png, sizeof( png ), "rotate_ccw_z_xpm" }};
|
||||
|
||||
//EOF
|
|
@ -0,0 +1,47 @@
|
|||
|
||||
/* Do not modify this file, it was automatically generated by the
|
||||
* PNG2cpp CMake script, using a *.png file as input.
|
||||
*/
|
||||
|
||||
#include <bitmaps_png/bitmaps_list.h>
|
||||
|
||||
static const unsigned char png[] = {
|
||||
0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a, 0x0a, 0x00, 0x00, 0x00, 0x0d, 0x49, 0x48, 0x44, 0x52,
|
||||
0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x18, 0x08, 0x06, 0x00, 0x00, 0x00, 0xe0, 0x77, 0x3d,
|
||||
0xf8, 0x00, 0x00, 0x01, 0xe1, 0x49, 0x44, 0x41, 0x54, 0x48, 0xc7, 0x63, 0x60, 0x20, 0x01, 0x84,
|
||||
0x84, 0x84, 0x1c, 0x06, 0x61, 0x06, 0x5a, 0x01, 0xa0, 0xe1, 0xff, 0x41, 0x98, 0x2c, 0xcd, 0x41,
|
||||
0x41, 0x41, 0x16, 0x40, 0xcd, 0x6f, 0x43, 0x43, 0x43, 0x3d, 0x40, 0xfc, 0xe0, 0xe0, 0xe0, 0x24,
|
||||
0x20, 0xff, 0x69, 0x44, 0x44, 0x84, 0x2c, 0x55, 0x2c, 0x80, 0x1a, 0x30, 0x17, 0x88, 0x6f, 0x07,
|
||||
0x06, 0x06, 0x8a, 0x01, 0xe9, 0xe7, 0x40, 0x5c, 0x49, 0x35, 0x1f, 0x80, 0x40, 0x54, 0x54, 0x94,
|
||||
0x20, 0xd0, 0x80, 0x67, 0x40, 0xd7, 0xdf, 0x07, 0xd2, 0x17, 0xd3, 0xd2, 0xd2, 0x58, 0x89, 0xb5,
|
||||
0x00, 0xe8, 0x73, 0x4e, 0x62, 0x7d, 0xb1, 0x1c, 0x6a, 0x50, 0x25, 0xb1, 0x71, 0x00, 0x14, 0xeb,
|
||||
0x07, 0xe2, 0xdf, 0x40, 0x7c, 0x15, 0x18, 0xd4, 0xf2, 0x20, 0xb1, 0xf0, 0xf0, 0x70, 0x4d, 0x6c,
|
||||
0x86, 0x3b, 0x40, 0x15, 0x82, 0x82, 0xea, 0x23, 0xd0, 0x55, 0x72, 0x84, 0x2c, 0x00, 0xf2, 0x83,
|
||||
0xa0, 0xe2, 0x20, 0x3d, 0xef, 0x80, 0xbe, 0xdf, 0x07, 0xc4, 0x8b, 0x80, 0xec, 0x87, 0x28, 0x86,
|
||||
0x7b, 0x7a, 0x7a, 0xb2, 0x03, 0x05, 0xaf, 0x03, 0xf1, 0x14, 0xa0, 0xc1, 0xcc, 0x40, 0x7c, 0x16,
|
||||
0xc8, 0xde, 0x03, 0x94, 0x62, 0xc4, 0x67, 0x01, 0x50, 0x1d, 0xc8, 0xc0, 0x9b, 0x40, 0x17, 0xeb,
|
||||
0x00, 0xd9, 0xa7, 0x60, 0x6a, 0x80, 0xf8, 0x04, 0x7a, 0x18, 0x86, 0x00, 0xf1, 0xd6, 0x80, 0x80,
|
||||
0x00, 0x01, 0x68, 0xaa, 0x32, 0x05, 0xf2, 0x77, 0x03, 0x15, 0x5a, 0xe1, 0xb2, 0x00, 0x28, 0xcf,
|
||||
0x06, 0xe4, 0x7f, 0x07, 0xe2, 0x0e, 0x68, 0x30, 0xc1, 0x0c, 0xff, 0x0f, 0x94, 0x5b, 0x43, 0x71,
|
||||
0x3e, 0x00, 0xba, 0xdc, 0x1c, 0xc4, 0x07, 0xd2, 0x01, 0x50, 0x7e, 0x23, 0x92, 0x25, 0x7d, 0x14,
|
||||
0x5b, 0x00, 0x74, 0x65, 0x2c, 0x88, 0x0f, 0x0c, 0x1e, 0x65, 0x24, 0x35, 0xe5, 0x50, 0x1f, 0x14,
|
||||
0x51, 0xc3, 0x07, 0xd9, 0x20, 0x3e, 0x30, 0xdf, 0x08, 0xa3, 0xa9, 0x2b, 0x01, 0xe2, 0x50, 0x92,
|
||||
0x0c, 0x87, 0x66, 0x3e, 0xb0, 0x05, 0xfb, 0xd5, 0x1c, 0xc1, 0x78, 0xfd, 0xfa, 0xf5, 0x60, 0xfe,
|
||||
0xef, 0xdf, 0xbf, 0xe1, 0x62, 0x30, 0xbc, 0x57, 0xdd, 0xe9, 0xe7, 0x3e, 0x35, 0x47, 0x2f, 0xa2,
|
||||
0x0d, 0x07, 0x7a, 0xf9, 0x32, 0xc8, 0xb0, 0xc8, 0xa0, 0x60, 0x0c, 0x0b, 0x7e, 0xfe, 0xfc, 0x89,
|
||||
0x61, 0xc1, 0x01, 0x35, 0x47, 0xe2, 0x2c, 0x00, 0x1a, 0x2c, 0x0a, 0x34, 0xe4, 0x12, 0xd4, 0xf5,
|
||||
0xd7, 0x81, 0x7c, 0x09, 0xa4, 0xa0, 0x48, 0x04, 0x89, 0xc3, 0x32, 0x17, 0xc9, 0x00, 0x9f, 0xe1,
|
||||
0xd0, 0x38, 0xf0, 0x82, 0x5a, 0x60, 0x4a, 0x75, 0xc3, 0xa1, 0xc5, 0x81, 0x32, 0x34, 0xc5, 0xa4,
|
||||
0x51, 0xdd, 0x70, 0xa4, 0x60, 0x7a, 0x08, 0x2a, 0xbf, 0x90, 0x7c, 0x35, 0x07, 0x88, 0x7d, 0xa9,
|
||||
0x62, 0x38, 0xcc, 0x40, 0xa0, 0xba, 0x0f, 0x7e, 0x7e, 0x7e, 0xbc, 0x40, 0xb6, 0x09, 0x34, 0xe3,
|
||||
0xa5, 0x52, 0xc5, 0x70, 0xa8, 0x05, 0x86, 0x40, 0xb5, 0x7f, 0x80, 0x78, 0x25, 0x50, 0xfd, 0x71,
|
||||
0x20, 0xfd, 0x1a, 0x48, 0xf3, 0x63, 0x4b, 0x8a, 0xc2, 0xb0, 0xa4, 0x08, 0xa2, 0x41, 0x49, 0x93,
|
||||
0x84, 0x20, 0x2d, 0x02, 0xea, 0xfb, 0x0b, 0xc4, 0x5f, 0x71, 0x06, 0x0f, 0x50, 0x32, 0x97, 0x1c,
|
||||
0xc3, 0x91, 0x1d, 0x18, 0x1b, 0x1b, 0xcb, 0x8d, 0xcf, 0x15, 0xfc, 0x20, 0x4b, 0x22, 0x23, 0x23,
|
||||
0x45, 0x18, 0x86, 0x12, 0x00, 0x00, 0x95, 0xfd, 0x5d, 0x97, 0xd9, 0x81, 0x26, 0x5b, 0x00, 0x00,
|
||||
0x00, 0x00, 0x49, 0x45, 0x4e, 0x44, 0xae, 0x42, 0x60, 0x82,
|
||||
};
|
||||
|
||||
const BITMAP_OPAQUE rotate_cw_x_xpm[1] = {{ png, sizeof( png ), "rotate_cw_x_xpm" }};
|
||||
|
||||
//EOF
|
|
@ -0,0 +1,49 @@
|
|||
|
||||
/* Do not modify this file, it was automatically generated by the
|
||||
* PNG2cpp CMake script, using a *.png file as input.
|
||||
*/
|
||||
|
||||
#include <bitmaps_png/bitmaps_list.h>
|
||||
|
||||
static const unsigned char png[] = {
|
||||
0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a, 0x0a, 0x00, 0x00, 0x00, 0x0d, 0x49, 0x48, 0x44, 0x52,
|
||||
0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x18, 0x08, 0x06, 0x00, 0x00, 0x00, 0xe0, 0x77, 0x3d,
|
||||
0xf8, 0x00, 0x00, 0x01, 0xf8, 0x49, 0x44, 0x41, 0x54, 0x48, 0xc7, 0x63, 0x60, 0x20, 0x01, 0x84,
|
||||
0x84, 0x84, 0x1c, 0x06, 0x61, 0x06, 0x5a, 0x01, 0xa0, 0xe1, 0xff, 0x41, 0x98, 0x6e, 0x16, 0x84,
|
||||
0x86, 0x86, 0xea, 0x02, 0xf9, 0x7f, 0x83, 0x81, 0x00, 0xc4, 0x07, 0x52, 0x49, 0x40, 0xfe, 0xaf,
|
||||
0xf0, 0xf0, 0x70, 0x65, 0xaa, 0xf9, 0x00, 0xc8, 0x5f, 0x0b, 0xc4, 0xe7, 0x1d, 0x1c, 0x1c, 0x58,
|
||||
0x80, 0x16, 0xdc, 0x04, 0xe2, 0x99, 0x54, 0x0d, 0xa2, 0xc0, 0xc0, 0x40, 0x1d, 0x90, 0x2f, 0x80,
|
||||
0x78, 0x01, 0x10, 0xff, 0x88, 0x88, 0x88, 0x90, 0xa5, 0x7a, 0x1c, 0x00, 0xc5, 0x96, 0x81, 0xc4,
|
||||
0x81, 0xae, 0x9f, 0x40, 0x93, 0x48, 0x0e, 0x0a, 0x0a, 0x72, 0x04, 0x89, 0x03, 0xe3, 0xc4, 0x80,
|
||||
0x56, 0x16, 0x58, 0x43, 0x7d, 0xa0, 0x3d, 0x34, 0x2d, 0x20, 0x0a, 0x00, 0x5d, 0x21, 0x0f, 0xd4,
|
||||
0xdc, 0x0d, 0xc4, 0x3d, 0x40, 0xec, 0xd9, 0xd0, 0xd0, 0xc0, 0x44, 0x55, 0x0b, 0x40, 0x69, 0x19,
|
||||
0x88, 0x3f, 0x01, 0xf1, 0x67, 0xa8, 0x41, 0xe7, 0x80, 0xd8, 0x8a, 0x9a, 0x16, 0xfc, 0x02, 0xe2,
|
||||
0xd6, 0xb4, 0xb4, 0x34, 0x56, 0x20, 0x1d, 0x01, 0xc4, 0x0f, 0x80, 0xf8, 0x1f, 0x30, 0x5c, 0x27,
|
||||
0xbf, 0x7c, 0xf9, 0x52, 0xf9, 0xdb, 0xe3, 0x17, 0xb9, 0x30, 0x0b, 0x88, 0xc4, 0x3f, 0x81, 0x7a,
|
||||
0xbd, 0x90, 0x2d, 0x38, 0x09, 0x4c, 0x66, 0x67, 0x61, 0x7c, 0x5f, 0x5f, 0x5f, 0x2e, 0xa0, 0x82,
|
||||
0x5e, 0x90, 0xe2, 0xba, 0xda, 0xba, 0xef, 0x5f, 0x3e, 0x7f, 0xfe, 0xbf, 0x6a, 0xea, 0x8c, 0xff,
|
||||
0x19, 0xde, 0x01, 0x64, 0x5b, 0x90, 0x08, 0x4d, 0xcb, 0x8a, 0x30, 0xb1, 0xff, 0xff, 0xff, 0xcb,
|
||||
0x6d, 0xdb, 0xb2, 0xe5, 0x7e, 0x44, 0x58, 0xd8, 0xbf, 0xa2, 0xa2, 0xa2, 0xff, 0x20, 0x4b, 0xbe,
|
||||
0x3f, 0x7b, 0x51, 0x4d, 0x6e, 0x22, 0x61, 0x04, 0xda, 0x68, 0x88, 0x2c, 0xf0, 0x76, 0xf7, 0x7e,
|
||||
0x8b, 0x5f, 0x6f, 0x3f, 0xfc, 0x3a, 0x7f, 0xf4, 0xf8, 0x7f, 0x90, 0x25, 0x35, 0x35, 0x35, 0xff,
|
||||
0x7f, 0xfc, 0xf8, 0xf1, 0x00, 0x68, 0x31, 0x37, 0xc5, 0x25, 0xe7, 0x21, 0x15, 0x5b, 0xd1, 0xfd,
|
||||
0x6a, 0x4e, 0x97, 0x4e, 0x7a, 0xc4, 0xff, 0xff, 0xf5, 0xee, 0xc3, 0xef, 0xbd, 0xbb, 0x77, 0xdf,
|
||||
0x05, 0xc5, 0x49, 0x7c, 0x7c, 0xfc, 0x46, 0xaa, 0x19, 0xbe, 0x5f, 0xcd, 0xf1, 0x3f, 0x10, 0x5f,
|
||||
0x7f, 0xb5, 0x7d, 0xbf, 0x0d, 0xd0, 0xd5, 0x0a, 0xc0, 0xe0, 0xab, 0x80, 0x86, 0x6f, 0x10, 0xd5,
|
||||
0x0c, 0xdf, 0xaf, 0xed, 0x20, 0x01, 0x93, 0x03, 0x15, 0xc9, 0x40, 0xc3, 0xcf, 0x00, 0xf1, 0xb3,
|
||||
0xd8, 0xd8, 0x58, 0x6e, 0x8a, 0x0c, 0x5f, 0xab, 0xeb, 0x72, 0x37, 0xd9, 0x3f, 0xa4, 0x04, 0xe8,
|
||||
0xea, 0x34, 0xa0, 0x81, 0x59, 0x40, 0x5c, 0x0e, 0xc2, 0xc0, 0x78, 0x8a, 0x84, 0x26, 0x86, 0x64,
|
||||
0x92, 0x0c, 0xdf, 0xa3, 0xe1, 0x2c, 0xbc, 0x5f, 0xd5, 0xf1, 0x32, 0xd8, 0xe5, 0x40, 0x7a, 0x95,
|
||||
0xbe, 0x8f, 0x34, 0xd0, 0xa0, 0x43, 0x68, 0x49, 0xef, 0x2f, 0xb0, 0xbc, 0x97, 0x02, 0x5a, 0xf2,
|
||||
0x08, 0x54, 0xfe, 0x93, 0x64, 0xc1, 0x01, 0x55, 0xa7, 0x5c, 0x98, 0xe1, 0x3b, 0x95, 0xdd, 0xc4,
|
||||
0xa0, 0x55, 0xa2, 0x04, 0xd0, 0xa0, 0x27, 0xc8, 0x16, 0x00, 0xf1, 0x51, 0x20, 0xfe, 0x06, 0xb4,
|
||||
0xa4, 0x8b, 0x24, 0x0b, 0x76, 0x2b, 0xb9, 0xf0, 0x43, 0x2c, 0x71, 0x10, 0x41, 0x16, 0x07, 0x5a,
|
||||
0x62, 0x09, 0xca, 0x34, 0x50, 0x0b, 0xb6, 0x01, 0xf9, 0xfb, 0x80, 0xf4, 0x3c, 0x60, 0x4d, 0x26,
|
||||
0x4c, 0xb5, 0xca, 0x1e, 0x68, 0x68, 0x26, 0x2c, 0x78, 0x48, 0xd5, 0x0b, 0x00, 0xb9, 0x0b, 0x6c,
|
||||
0xf5, 0x1a, 0x48, 0x5c, 0x4b, 0x00, 0x00, 0x00, 0x00, 0x49, 0x45, 0x4e, 0x44, 0xae, 0x42, 0x60,
|
||||
0x82,
|
||||
};
|
||||
|
||||
const BITMAP_OPAQUE rotate_cw_y_xpm[1] = {{ png, sizeof( png ), "rotate_cw_y_xpm" }};
|
||||
|
||||
//EOF
|
|
@ -0,0 +1,44 @@
|
|||
|
||||
/* Do not modify this file, it was automatically generated by the
|
||||
* PNG2cpp CMake script, using a *.png file as input.
|
||||
*/
|
||||
|
||||
#include <bitmaps_png/bitmaps_list.h>
|
||||
|
||||
static const unsigned char png[] = {
|
||||
0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a, 0x0a, 0x00, 0x00, 0x00, 0x0d, 0x49, 0x48, 0x44, 0x52,
|
||||
0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x18, 0x08, 0x06, 0x00, 0x00, 0x00, 0xe0, 0x77, 0x3d,
|
||||
0xf8, 0x00, 0x00, 0x01, 0xa8, 0x49, 0x44, 0x41, 0x54, 0x48, 0xc7, 0x63, 0x60, 0x20, 0x01, 0xec,
|
||||
0x57, 0x73, 0x3c, 0x0c, 0xc2, 0x0c, 0xb4, 0x02, 0x40, 0xc3, 0xff, 0x83, 0xf0, 0xe0, 0xb6, 0x20,
|
||||
0x34, 0x34, 0x54, 0x2b, 0x24, 0x24, 0xe4, 0x31, 0x10, 0x9f, 0x00, 0xb2, 0xd7, 0x04, 0x07, 0x07,
|
||||
0x4f, 0x00, 0xd2, 0x45, 0x40, 0x3a, 0x6c, 0xaf, 0xba, 0x13, 0x75, 0x7c, 0x00, 0x34, 0x7c, 0x25,
|
||||
0x10, 0xff, 0x47, 0xc6, 0x40, 0x4b, 0x2a, 0xb0, 0xf9, 0x00, 0x68, 0xb1, 0x2f, 0x50, 0x2e, 0x0d,
|
||||
0x88, 0xf9, 0x89, 0x32, 0x3c, 0x22, 0x22, 0x42, 0x01, 0x68, 0xe0, 0x7e, 0x34, 0xc3, 0xeb, 0x70,
|
||||
0x05, 0x11, 0xd0, 0x82, 0x39, 0x50, 0x75, 0x6f, 0x40, 0x96, 0x11, 0xb4, 0x00, 0xa8, 0xe8, 0x1a,
|
||||
0x50, 0xf1, 0x5b, 0x20, 0x3e, 0x07, 0xd5, 0xd8, 0x47, 0x28, 0x0e, 0x80, 0x0e, 0x30, 0x06, 0xe2,
|
||||
0xe3, 0x40, 0xb5, 0x5f, 0x81, 0x34, 0x0f, 0x4e, 0xc3, 0x7d, 0x7d, 0x7d, 0xb9, 0x80, 0x8a, 0x7e,
|
||||
0x03, 0xf1, 0x3c, 0xa0, 0x45, 0x7a, 0x40, 0xba, 0x9f, 0x98, 0x48, 0x06, 0x05, 0x0f, 0x50, 0xed,
|
||||
0x2a, 0x20, 0xfe, 0x13, 0x18, 0x18, 0x28, 0x4c, 0xc8, 0x07, 0xbd, 0x50, 0x97, 0xdf, 0x06, 0xb2,
|
||||
0xbb, 0x80, 0x74, 0x50, 0x78, 0x78, 0xb8, 0x1a, 0xd0, 0x10, 0xd1, 0x5f, 0xbf, 0x7e, 0xfd, 0xff,
|
||||
0xf9, 0xf3, 0xe7, 0xff, 0xa0, 0xa0, 0x20, 0x79, 0x20, 0xb6, 0x00, 0x8a, 0x65, 0x42, 0xe3, 0xeb,
|
||||
0x23, 0xc8, 0x70, 0x20, 0x2e, 0x20, 0x36, 0x92, 0xfd, 0x81, 0x78, 0x0f, 0x10, 0x7f, 0x43, 0x8f,
|
||||
0x6c, 0x74, 0x0c, 0x74, 0xc4, 0x7d, 0x20, 0x3d, 0x0b, 0xe4, 0x63, 0x92, 0x53, 0x53, 0x5a, 0x5a,
|
||||
0x1a, 0x2b, 0x50, 0xa3, 0x09, 0xd0, 0xa5, 0x51, 0x40, 0x3a, 0x63, 0xfd, 0xfa, 0xf5, 0xff, 0x37,
|
||||
0x6e, 0xdc, 0x08, 0x32, 0x34, 0x1e, 0x88, 0xbd, 0x80, 0xe2, 0x8a, 0x43, 0x27, 0x27, 0x03, 0x23,
|
||||
0x4f, 0x0c, 0x66, 0x01, 0xa1, 0x60, 0x83, 0xe2, 0x9f, 0x20, 0x5f, 0x12, 0x6d, 0x38, 0x30, 0x38,
|
||||
0x2e, 0x2f, 0x33, 0x74, 0xfb, 0x0f, 0xc2, 0x54, 0xb5, 0x00, 0x94, 0x7a, 0x80, 0x8a, 0x2f, 0x41,
|
||||
0x35, 0x5d, 0x07, 0xf2, 0x25, 0xa8, 0x16, 0x2c, 0x03, 0x66, 0x38, 0x90, 0xff, 0x0c, 0x2d, 0x38,
|
||||
0x1e, 0x52, 0xd5, 0xe5, 0xa0, 0x34, 0x0f, 0x2a, 0x1e, 0x80, 0x72, 0x6e, 0xd0, 0xbc, 0xd2, 0x4a,
|
||||
0x93, 0x60, 0x01, 0x5a, 0xb4, 0x14, 0x54, 0x76, 0x25, 0x24, 0x24, 0x70, 0x50, 0xdd, 0x70, 0xa0,
|
||||
0xbc, 0x0f, 0xa8, 0xdc, 0x02, 0x16, 0x19, 0xa6, 0xc4, 0x26, 0x45, 0x61, 0x50, 0x52, 0x84, 0x16,
|
||||
0xcf, 0x97, 0x41, 0x49, 0x13, 0x97, 0xda, 0x80, 0x80, 0x00, 0x01, 0xa0, 0xba, 0x27, 0x40, 0xd7,
|
||||
0xb7, 0x93, 0x52, 0xc9, 0xe4, 0x12, 0x63, 0x38, 0x54, 0xed, 0x42, 0x20, 0x7e, 0x0d, 0x74, 0xbd,
|
||||
0x35, 0x28, 0x2e, 0x80, 0x16, 0x19, 0x12, 0x13, 0x3c, 0xa0, 0x22, 0x37, 0x37, 0x32, 0x32, 0x52,
|
||||
0x84, 0x08, 0xc7, 0xfc, 0x41, 0x4b, 0x45, 0xdf, 0x19, 0x06, 0x0a, 0x00, 0x00, 0xbb, 0x49, 0x57,
|
||||
0x8f, 0x03, 0x26, 0x93, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x49, 0x45, 0x4e, 0x44, 0xae, 0x42, 0x60,
|
||||
0x82,
|
||||
};
|
||||
|
||||
const BITMAP_OPAQUE rotate_cw_z_xpm[1] = {{ png, sizeof( png ), "rotate_cw_z_xpm" }};
|
||||
|
||||
//EOF
|
|
@ -1,52 +0,0 @@
|
|||
|
||||
/* Do not modify this file, it was automatically generated by the
|
||||
* PNG2cpp CMake script, using a *.png file as input.
|
||||
*/
|
||||
|
||||
#include <bitmaps_png/bitmaps_list.h>
|
||||
|
||||
static const unsigned char png[] = {
|
||||
0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a, 0x0a, 0x00, 0x00, 0x00, 0x0d, 0x49, 0x48, 0x44, 0x52,
|
||||
0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x18, 0x08, 0x06, 0x00, 0x00, 0x00, 0xe0, 0x77, 0x3d,
|
||||
0xf8, 0x00, 0x00, 0x02, 0x28, 0x49, 0x44, 0x41, 0x54, 0x48, 0xc7, 0x63, 0x60, 0x20, 0x00, 0x42,
|
||||
0x42, 0x42, 0xda, 0x80, 0xf8, 0x5e, 0x60, 0x60, 0xa0, 0x30, 0x03, 0x2d, 0x00, 0xd0, 0xf0, 0xbd,
|
||||
0x40, 0xfc, 0x3f, 0x38, 0x38, 0xd8, 0x70, 0xf0, 0x5a, 0xe0, 0xe0, 0xe0, 0xc0, 0x12, 0x1a, 0x1a,
|
||||
0x1a, 0x02, 0x0c, 0x06, 0x7d, 0x10, 0x1f, 0xc8, 0x96, 0x06, 0x1a, 0x0a, 0xa4, 0x42, 0x25, 0xa8,
|
||||
0xe6, 0x03, 0xa0, 0x21, 0x3d, 0x40, 0xfc, 0x1c, 0x68, 0x28, 0x3f, 0x10, 0x6f, 0x05, 0xb2, 0x4f,
|
||||
0xa7, 0xa5, 0xa5, 0xb1, 0x12, 0x63, 0x01, 0xd4, 0x81, 0x09, 0x40, 0x35, 0xbe, 0x38, 0x2d, 0x00,
|
||||
0x2a, 0x60, 0x03, 0xe2, 0xb3, 0x40, 0xc3, 0x4e, 0x02, 0xf1, 0xa7, 0xf0, 0xf0, 0x70, 0x65, 0x62,
|
||||
0x83, 0x08, 0x28, 0x3f, 0x17, 0xa8, 0x77, 0x1f, 0x90, 0xbe, 0x0b, 0xc4, 0x53, 0x80, 0x6c, 0x57,
|
||||
0x5c, 0x96, 0x84, 0x43, 0x0d, 0x9b, 0x49, 0x6c, 0x1c, 0x00, 0xc5, 0xb5, 0x81, 0xf2, 0x4f, 0x81,
|
||||
0x7a, 0x15, 0x81, 0xf8, 0x3b, 0x48, 0x2d, 0x10, 0x57, 0x62, 0x33, 0x9c, 0x1f, 0x94, 0x1c, 0x81,
|
||||
0x78, 0x1d, 0x10, 0xff, 0x04, 0xf2, 0xcd, 0x88, 0xb1, 0x00, 0x28, 0x57, 0x0b, 0x94, 0xeb, 0x82,
|
||||
0x5a, 0xd6, 0x0b, 0xb5, 0x20, 0x0b, 0x9b, 0x4b, 0x96, 0x02, 0x25, 0x6e, 0x25, 0x24, 0x24, 0x70,
|
||||
0x00, 0xd9, 0x73, 0x40, 0xde, 0x8d, 0x8e, 0x8e, 0xe6, 0x23, 0xc2, 0x82, 0x9d, 0x40, 0xc7, 0x78,
|
||||
0x83, 0xd8, 0x91, 0x91, 0x91, 0xe2, 0x40, 0xfe, 0x57, 0x20, 0x8e, 0x46, 0x51, 0x04, 0x8a, 0x4c,
|
||||
0xa0, 0x22, 0xe3, 0x88, 0x88, 0x08, 0x29, 0xa8, 0x6f, 0x78, 0x40, 0x7c, 0x20, 0x16, 0x22, 0xc2,
|
||||
0x82, 0xb7, 0x40, 0x75, 0xa2, 0x48, 0x0e, 0x05, 0xf9, 0xc2, 0x87, 0x2a, 0xf9, 0x00, 0x9a, 0xca,
|
||||
0x7e, 0x02, 0x99, 0x8c, 0x30, 0x31, 0x90, 0x2f, 0x80, 0x6a, 0x4d, 0xa8, 0x62, 0x01, 0x34, 0x48,
|
||||
0x5e, 0x52, 0x92, 0x3d, 0x18, 0xfb, 0xac, 0x3d, 0xbf, 0xec, 0x57, 0x73, 0xfc, 0x8f, 0x0d, 0x6f,
|
||||
0xd2, 0x71, 0xf9, 0x9f, 0xe8, 0x17, 0xf8, 0x1f, 0x97, 0x3c, 0x10, 0x9f, 0xc1, 0x6b, 0x3a, 0x30,
|
||||
0x6c, 0xab, 0x5b, 0xed, 0xbc, 0xff, 0x6f, 0xd3, 0x72, 0xfe, 0xbf, 0x4f, 0xcd, 0xe9, 0x03, 0x50,
|
||||
0xc3, 0x3b, 0x64, 0xbc, 0x43, 0xcb, 0xf9, 0x7d, 0x54, 0x40, 0xd0, 0x3f, 0x74, 0x71, 0x18, 0x3e,
|
||||
0xa0, 0xe6, 0xb8, 0x16, 0x5f, 0xd0, 0xf8, 0x03, 0xf1, 0x5f, 0x20, 0xfe, 0x1e, 0x14, 0x14, 0x64,
|
||||
0x81, 0x4d, 0x4d, 0x43, 0x43, 0x03, 0x13, 0x50, 0xfe, 0x37, 0xd0, 0x21, 0xcc, 0xc8, 0xb9, 0x1a,
|
||||
0x18, 0x9c, 0xaa, 0x78, 0x5d, 0x0e, 0x54, 0xa0, 0x01, 0xd4, 0xf8, 0x01, 0x14, 0xf6, 0x40, 0xcd,
|
||||
0xc9, 0x04, 0xd4, 0x3e, 0x02, 0x62, 0x25, 0x24, 0x87, 0xf9, 0x00, 0xf1, 0x66, 0x7c, 0xc1, 0x02,
|
||||
0x4a, 0x9a, 0xb7, 0xa1, 0x19, 0xa6, 0x87, 0x50, 0x24, 0x01, 0x0d, 0x5f, 0x01, 0xd4, 0x13, 0x8b,
|
||||
0x64, 0x41, 0x33, 0x50, 0xac, 0x11, 0x97, 0xe1, 0xcc, 0x40, 0x05, 0xdb, 0xa0, 0x86, 0xef, 0x02,
|
||||
0x79, 0x97, 0x08, 0x0b, 0xb2, 0x81, 0x6a, 0x17, 0x20, 0x59, 0x70, 0x09, 0x68, 0x8e, 0x0d, 0xae,
|
||||
0x70, 0x9f, 0x08, 0x4d, 0x92, 0x37, 0x03, 0x02, 0x02, 0x04, 0x88, 0x49, 0x66, 0xa0, 0x4c, 0x06,
|
||||
0xd4, 0xf3, 0x06, 0x14, 0x4c, 0xa0, 0xd2, 0x14, 0x88, 0xaf, 0x21, 0xe7, 0x0b, 0x64, 0xc3, 0xe3,
|
||||
0xa0, 0x2e, 0xff, 0x08, 0x2a, 0xc0, 0x48, 0x49, 0xcb, 0x40, 0xf5, 0xa9, 0xa0, 0xfc, 0x00, 0xc4,
|
||||
0xaf, 0x80, 0x6c, 0x73, 0x6c, 0xae, 0xb0, 0x04, 0x4a, 0xfe, 0x00, 0xa5, 0x1a, 0x58, 0xb9, 0x42,
|
||||
0x2a, 0x00, 0x16, 0x33, 0xb2, 0xc0, 0x0a, 0x4b, 0x0c, 0x43, 0x02, 0x98, 0x04, 0x25, 0x81, 0x06,
|
||||
0x3f, 0x81, 0xba, 0xbe, 0x98, 0xea, 0x75, 0x2e, 0xd0, 0xc5, 0x47, 0xa0, 0xe1, 0xbe, 0x88, 0x56,
|
||||
0x95, 0xfa, 0x21, 0xa0, 0x25, 0xbb, 0x41, 0xc5, 0x34, 0x2d, 0xcc, 0x07, 0x00, 0xc6, 0x1e, 0x4a,
|
||||
0xdf, 0x96, 0x9d, 0x4e, 0x9f, 0x00, 0x00, 0x00, 0x00, 0x49, 0x45, 0x4e, 0x44, 0xae, 0x42, 0x60,
|
||||
0x82,
|
||||
};
|
||||
|
||||
const BITMAP_OPAQUE rotate_neg_x_xpm[1] = {{ png, sizeof( png ), "rotate_neg_x_xpm" }};
|
||||
|
||||
//EOF
|
|
@ -1,54 +0,0 @@
|
|||
|
||||
/* Do not modify this file, it was automatically generated by the
|
||||
* PNG2cpp CMake script, using a *.png file as input.
|
||||
*/
|
||||
|
||||
#include <bitmaps_png/bitmaps_list.h>
|
||||
|
||||
static const unsigned char png[] = {
|
||||
0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a, 0x0a, 0x00, 0x00, 0x00, 0x0d, 0x49, 0x48, 0x44, 0x52,
|
||||
0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x18, 0x08, 0x06, 0x00, 0x00, 0x00, 0xe0, 0x77, 0x3d,
|
||||
0xf8, 0x00, 0x00, 0x02, 0x51, 0x49, 0x44, 0x41, 0x54, 0x48, 0xc7, 0x63, 0x60, 0x20, 0x01, 0x84,
|
||||
0x84, 0x84, 0x9c, 0x0f, 0x0d, 0x0d, 0xbd, 0x0c, 0x64, 0x32, 0x32, 0x50, 0x1b, 0x00, 0x0d, 0x66,
|
||||
0x03, 0x5a, 0xf0, 0x1f, 0x84, 0x81, 0x6c, 0x9e, 0x51, 0x0b, 0x46, 0x2d, 0x18, 0xb5, 0x80, 0x0c,
|
||||
0x0b, 0x82, 0x83, 0x83, 0xbd, 0x80, 0x9a, 0x8f, 0x02, 0x35, 0x6f, 0x05, 0xd2, 0x41, 0xe8, 0xb9,
|
||||
0x95, 0x1a, 0x16, 0x3c, 0x08, 0x0a, 0x0a, 0xaa, 0x01, 0x1a, 0x10, 0x0a, 0xc4, 0xe7, 0x80, 0x86,
|
||||
0x6c, 0x02, 0x62, 0x21, 0x64, 0x0b, 0x32, 0xbc, 0x03, 0xfe, 0x67, 0x7a, 0x07, 0x82, 0x2c, 0xb1,
|
||||
0x05, 0xf2, 0x8d, 0x89, 0xc0, 0x12, 0x30, 0xc3, 0x0b, 0x81, 0x9a, 0xfe, 0x00, 0xf1, 0x3d, 0x10,
|
||||
0x3f, 0x2d, 0x2d, 0x8d, 0x15, 0xc8, 0xee, 0x01, 0x8a, 0xdf, 0x07, 0x62, 0x0d, 0x90, 0xd8, 0x2e,
|
||||
0x75, 0x87, 0x98, 0xbd, 0xea, 0x4e, 0xff, 0x77, 0x6b, 0x38, 0xfe, 0x0f, 0x0d, 0x86, 0xf8, 0x84,
|
||||
0x08, 0xfc, 0x14, 0xe6, 0xba, 0x40, 0xa0, 0x41, 0xff, 0x40, 0x96, 0x00, 0xd9, 0x9c, 0x48, 0x85,
|
||||
0x5b, 0x1c, 0x10, 0x3f, 0x5c, 0x64, 0xec, 0x51, 0xb9, 0x4f, 0xcd, 0xf1, 0xef, 0x7e, 0x35, 0xc7,
|
||||
0xff, 0xd3, 0xcd, 0x3d, 0x7e, 0x01, 0xc5, 0xee, 0x12, 0x83, 0x81, 0x66, 0xce, 0x47, 0x0e, 0xe3,
|
||||
0x6a, 0x90, 0xad, 0x40, 0x41, 0x43, 0xe4, 0xa0, 0xab, 0x75, 0xf2, 0x5d, 0x95, 0xec, 0x1b, 0xf8,
|
||||
0x7f, 0xbb, 0x96, 0xf3, 0xff, 0x7d, 0xaa, 0x8e, 0xd3, 0x1a, 0x18, 0x1a, 0x98, 0x40, 0xe2, 0xb1,
|
||||
0xb1, 0xb1, 0xdc, 0xa0, 0xe0, 0x04, 0x02, 0x15, 0x24, 0x07, 0xf9, 0x03, 0x83, 0xd9, 0x14, 0x57,
|
||||
0x34, 0x30, 0x02, 0x15, 0x2c, 0x01, 0x6a, 0x88, 0x85, 0x09, 0xec, 0x57, 0x77, 0x28, 0x07, 0xb9,
|
||||
0xba, 0xd5, 0xce, 0xfb, 0x7f, 0xa6, 0x57, 0xc0, 0x4d, 0x74, 0xf5, 0x40, 0xc7, 0xdc, 0x04, 0xea,
|
||||
0x59, 0x0e, 0xe2, 0x84, 0x87, 0x87, 0x6b, 0x42, 0x13, 0x40, 0x14, 0xce, 0x88, 0x4e, 0x48, 0x48,
|
||||
0xe0, 0x00, 0x05, 0xd7, 0x7f, 0xa0, 0xe6, 0xfd, 0xaa, 0x0e, 0xfd, 0x20, 0xc3, 0x81, 0xf8, 0xdf,
|
||||
0x6e, 0x0d, 0xa7, 0x0a, 0xa0, 0xf8, 0x29, 0xa0, 0x81, 0x49, 0x68, 0x29, 0xab, 0x08, 0x68, 0xe8,
|
||||
0x57, 0x3f, 0x3f, 0x3f, 0x5e, 0xa0, 0x5c, 0x0b, 0x90, 0xfd, 0x06, 0x64, 0x06, 0xde, 0xd4, 0xb4,
|
||||
0x8a, 0x21, 0x94, 0x79, 0xbf, 0x9a, 0xd3, 0x7c, 0xa8, 0xe1, 0x7f, 0x0e, 0xa8, 0x39, 0xa5, 0x82,
|
||||
0xc4, 0x03, 0x03, 0x03, 0x75, 0x80, 0x06, 0xbc, 0x00, 0x05, 0x0d, 0x4c, 0x6d, 0x40, 0x40, 0x80,
|
||||
0x00, 0xc8, 0x02, 0x68, 0x5c, 0xdd, 0x06, 0x25, 0x0c, 0xbc, 0x86, 0x6f, 0x53, 0xf1, 0x64, 0x3f,
|
||||
0xa0, 0xe6, 0xb8, 0x16, 0x64, 0x38, 0x90, 0xfe, 0xb9, 0x4f, 0xdd, 0x31, 0x0c, 0x2d, 0x29, 0xaf,
|
||||
0x00, 0xb9, 0x1a, 0x4d, 0x6c, 0x3e, 0x34, 0x52, 0xff, 0x01, 0x83, 0x49, 0x0d, 0xa7, 0xe1, 0x3b,
|
||||
0xf5, 0xdc, 0xb8, 0xf7, 0xab, 0x39, 0xec, 0x02, 0x1b, 0xae, 0xee, 0xf8, 0x75, 0xab, 0xae, 0x8b,
|
||||
0x3f, 0x50, 0x93, 0x15, 0xb2, 0x1a, 0x60, 0x04, 0x1a, 0x81, 0x0c, 0x43, 0x0b, 0x26, 0x33, 0x68,
|
||||
0x92, 0xdc, 0x8b, 0xd3, 0xf0, 0xc3, 0xba, 0x36, 0x82, 0xc0, 0x08, 0x3d, 0x06, 0x0d, 0x96, 0x0f,
|
||||
0x40, 0x8b, 0x6c, 0x80, 0x41, 0x22, 0x06, 0xca, 0x17, 0xa0, 0xb0, 0x6d, 0x68, 0x80, 0xa4, 0x1c,
|
||||
0x68, 0x4a, 0x79, 0x09, 0xb4, 0x48, 0x12, 0xc6, 0x8f, 0x8a, 0x8a, 0x12, 0x04, 0x8a, 0xfd, 0x04,
|
||||
0x5a, 0x14, 0x8e, 0xd5, 0xf0, 0xfd, 0xda, 0x0e, 0x12, 0xc0, 0xe0, 0xb8, 0x08, 0x0d, 0x96, 0xb7,
|
||||
0x7b, 0xd5, 0x9c, 0xcc, 0x90, 0x5c, 0x27, 0x0a, 0xc4, 0xfb, 0x80, 0x06, 0x9c, 0x00, 0x62, 0x67,
|
||||
0x50, 0x11, 0x01, 0x8a, 0x07, 0x20, 0x2d, 0x0d, 0x95, 0xf7, 0x00, 0xf2, 0x0f, 0x01, 0xf1, 0x45,
|
||||
0x50, 0x4e, 0xc7, 0x6e, 0x81, 0x9a, 0xe3, 0x05, 0xa8, 0xcb, 0x1f, 0x01, 0xc3, 0x5c, 0x1d, 0x5b,
|
||||
0xf2, 0x05, 0xfa, 0x22, 0x06, 0x6a, 0xc9, 0x77, 0x20, 0x9e, 0x8e, 0x14, 0xfe, 0xa9, 0xa0, 0x88,
|
||||
0x05, 0xfa, 0x48, 0x1e, 0x67, 0xf0, 0x00, 0x83, 0x66, 0x13, 0x30, 0x48, 0x4e, 0xed, 0xd5, 0x74,
|
||||
0x92, 0x67, 0xa0, 0x01, 0x00, 0x00, 0x9a, 0xe5, 0x68, 0x76, 0xd3, 0x03, 0x95, 0x8f, 0x00, 0x00,
|
||||
0x00, 0x00, 0x49, 0x45, 0x4e, 0x44, 0xae, 0x42, 0x60, 0x82,
|
||||
};
|
||||
|
||||
const BITMAP_OPAQUE rotate_neg_y_xpm[1] = {{ png, sizeof( png ), "rotate_neg_y_xpm" }};
|
||||
|
||||
//EOF
|
|
@ -1,50 +0,0 @@
|
|||
|
||||
/* Do not modify this file, it was automatically generated by the
|
||||
* PNG2cpp CMake script, using a *.png file as input.
|
||||
*/
|
||||
|
||||
#include <bitmaps_png/bitmaps_list.h>
|
||||
|
||||
static const unsigned char png[] = {
|
||||
0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a, 0x0a, 0x00, 0x00, 0x00, 0x0d, 0x49, 0x48, 0x44, 0x52,
|
||||
0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x18, 0x08, 0x06, 0x00, 0x00, 0x00, 0xe0, 0x77, 0x3d,
|
||||
0xf8, 0x00, 0x00, 0x02, 0x09, 0x49, 0x44, 0x41, 0x54, 0x48, 0xc7, 0x63, 0x60, 0x20, 0x01, 0xec,
|
||||
0x57, 0x77, 0x38, 0x76, 0x40, 0xcd, 0xf1, 0x24, 0x03, 0xad, 0xc0, 0x7e, 0x35, 0xc7, 0x2f, 0x40,
|
||||
0x0b, 0x7e, 0x8e, 0x70, 0x0b, 0x3c, 0x3d, 0x3d, 0xd9, 0x43, 0x42, 0x42, 0x56, 0x07, 0x07, 0x07,
|
||||
0x4f, 0x01, 0xd2, 0x55, 0x40, 0x3a, 0x1e, 0x48, 0x7b, 0x86, 0x86, 0x86, 0xf2, 0x23, 0x5b, 0x00,
|
||||
0xe4, 0xbb, 0x02, 0xc5, 0x9b, 0x81, 0xf2, 0x5e, 0x09, 0x09, 0x09, 0x1c, 0x44, 0x5b, 0x10, 0x14,
|
||||
0x14, 0x64, 0x0d, 0xd4, 0xf8, 0x0b, 0x88, 0xff, 0x83, 0x30, 0xd0, 0xa0, 0x23, 0x40, 0x43, 0x7c,
|
||||
0x81, 0x52, 0x8c, 0x68, 0x16, 0xa8, 0x00, 0xe5, 0x1b, 0x80, 0x78, 0x2f, 0x10, 0xbf, 0x06, 0xaa,
|
||||
0x69, 0x74, 0x70, 0x70, 0x60, 0x21, 0xc6, 0xf5, 0xaf, 0x80, 0xf8, 0x34, 0x50, 0xc3, 0x22, 0xa0,
|
||||
0x21, 0xba, 0xc4, 0x04, 0x11, 0x50, 0x9d, 0x1c, 0x50, 0xcf, 0x46, 0xa0, 0x9e, 0xa5, 0x78, 0x2d,
|
||||
0xf0, 0xf5, 0xf5, 0xe5, 0x02, 0x2a, 0x7c, 0x13, 0x11, 0x11, 0x61, 0x4b, 0x6a, 0x1c, 0x00, 0x7d,
|
||||
0x6e, 0x01, 0xd4, 0x7b, 0x8b, 0x60, 0x10, 0x81, 0xc2, 0x1b, 0x88, 0x9f, 0x01, 0x5d, 0xb5, 0x09,
|
||||
0x88, 0xd3, 0x80, 0xae, 0xd2, 0xc0, 0x65, 0x01, 0x28, 0x5e, 0x40, 0x71, 0x01, 0x54, 0x33, 0x01,
|
||||
0xe4, 0x73, 0x20, 0x3b, 0x90, 0xa8, 0x78, 0x00, 0xf9, 0x04, 0xa8, 0x29, 0x06, 0xa8, 0x69, 0x01,
|
||||
0x10, 0xdf, 0x05, 0xe2, 0x6f, 0x40, 0xfe, 0xa3, 0x2c, 0xef, 0xc0, 0xbf, 0xd9, 0x5e, 0x01, 0xff,
|
||||
0x80, 0xfc, 0x2b, 0x20, 0x3e, 0x90, 0xfe, 0x04, 0xc4, 0x07, 0x40, 0x71, 0x01, 0x34, 0x5c, 0x9a,
|
||||
0xec, 0x94, 0x05, 0x4a, 0x25, 0xc0, 0x60, 0x93, 0x5d, 0x61, 0xe0, 0xfa, 0x6d, 0xb9, 0x81, 0xcb,
|
||||
0x2f, 0xa0, 0x61, 0x5a, 0x20, 0x3e, 0x90, 0x66, 0xa6, 0x76, 0x3e, 0xf8, 0xb6, 0x5f, 0xcd, 0xe1,
|
||||
0x17, 0xd0, 0xf5, 0x4a, 0xc4, 0x60, 0x3f, 0x3f, 0x3f, 0x5e, 0x52, 0x92, 0xaf, 0xe3, 0x2e, 0x0d,
|
||||
0xa7, 0xff, 0x7b, 0xd4, 0x1d, 0xff, 0xc3, 0x92, 0x30, 0x11, 0xf8, 0x36, 0x51, 0x86, 0x03, 0x83,
|
||||
0xc2, 0x0f, 0xa8, 0xf8, 0x7b, 0xbf, 0xb5, 0xd7, 0xff, 0x49, 0x16, 0x1e, 0x5f, 0x80, 0xec, 0x33,
|
||||
0xc4, 0x60, 0xa0, 0x2f, 0x26, 0x13, 0x63, 0x78, 0x14, 0x52, 0xc6, 0xeb, 0xa0, 0x6a, 0x98, 0x03,
|
||||
0x0d, 0xcc, 0x02, 0xe2, 0xbf, 0x40, 0xfc, 0x0f, 0xe8, 0x9a, 0x42, 0x6a, 0x1b, 0x5e, 0x0e, 0x75,
|
||||
0xf5, 0x1f, 0xa0, 0xe1, 0x49, 0x48, 0xe2, 0x35, 0x20, 0x9f, 0x20, 0x63, 0xa0, 0x2f, 0x39, 0x49,
|
||||
0x31, 0x9b, 0x11, 0xa8, 0xa9, 0x1b, 0x6a, 0xf8, 0x0f, 0xa0, 0xe1, 0xc1, 0x68, 0x16, 0x83, 0x2d,
|
||||
0x00, 0x0a, 0xf7, 0x82, 0xe4, 0x81, 0xf8, 0x52, 0x5a, 0x5a, 0x1a, 0x2b, 0xb1, 0x91, 0xc9, 0x0c,
|
||||
0xd4, 0x38, 0x07, 0x6a, 0xf8, 0x17, 0x50, 0x2e, 0xc5, 0xa5, 0x16, 0xa8, 0x6e, 0x1a, 0xa8, 0x90,
|
||||
0x0b, 0x0f, 0x0f, 0x57, 0x26, 0xd6, 0x70, 0x36, 0x50, 0x31, 0x0d, 0x35, 0xfc, 0x1d, 0x90, 0x6f,
|
||||
0x89, 0xc7, 0xf0, 0x42, 0x50, 0xaa, 0xc2, 0xa7, 0x06, 0x05, 0xc4, 0xc6, 0xc6, 0x72, 0x03, 0x15,
|
||||
0xef, 0x80, 0x1a, 0xfe, 0x1c, 0x68, 0x80, 0x1e, 0x1e, 0x87, 0x78, 0x00, 0xd5, 0xfc, 0x06, 0xe2,
|
||||
0x68, 0xa2, 0x0c, 0x0f, 0x08, 0x08, 0x10, 0x00, 0x2a, 0x3e, 0x0a, 0x35, 0xfc, 0x1e, 0xa8, 0x9c,
|
||||
0x27, 0x10, 0xf9, 0xef, 0xa1, 0xc9, 0xf6, 0x2e, 0x0c, 0x03, 0x1d, 0x64, 0x88, 0x2f, 0x68, 0x8e,
|
||||
0x43, 0x0d, 0xbf, 0x04, 0xcc, 0xad, 0x92, 0x44, 0x04, 0xa5, 0x22, 0x7a, 0x91, 0x80, 0xb7, 0x46,
|
||||
0x03, 0x1a, 0xbc, 0x13, 0x84, 0xa3, 0xa2, 0xa2, 0x04, 0x69, 0x51, 0x8f, 0x03, 0x00, 0x20, 0xfc,
|
||||
0x45, 0xe8, 0x44, 0x5a, 0xd9, 0x77, 0x00, 0x00, 0x00, 0x00, 0x49, 0x45, 0x4e, 0x44, 0xae, 0x42,
|
||||
0x60, 0x82,
|
||||
};
|
||||
|
||||
const BITMAP_OPAQUE rotate_neg_z_xpm[1] = {{ png, sizeof( png ), "rotate_neg_z_xpm" }};
|
||||
|
||||
//EOF
|
|
@ -1,51 +0,0 @@
|
|||
|
||||
/* Do not modify this file, it was automatically generated by the
|
||||
* PNG2cpp CMake script, using a *.png file as input.
|
||||
*/
|
||||
|
||||
#include <bitmaps_png/bitmaps_list.h>
|
||||
|
||||
static const unsigned char png[] = {
|
||||
0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a, 0x0a, 0x00, 0x00, 0x00, 0x0d, 0x49, 0x48, 0x44, 0x52,
|
||||
0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x18, 0x08, 0x06, 0x00, 0x00, 0x00, 0xe0, 0x77, 0x3d,
|
||||
0xf8, 0x00, 0x00, 0x02, 0x18, 0x49, 0x44, 0x41, 0x54, 0x48, 0xc7, 0x63, 0x60, 0x20, 0x00, 0x42,
|
||||
0x42, 0x42, 0xda, 0x80, 0xf8, 0x5e, 0x60, 0x60, 0xa0, 0x30, 0x03, 0x2d, 0x00, 0xd0, 0xf0, 0xbd,
|
||||
0x40, 0xfc, 0x3f, 0x38, 0x38, 0xd8, 0x70, 0xf0, 0x5a, 0xe0, 0xe0, 0xe0, 0xc0, 0x12, 0x1a, 0x1a,
|
||||
0x1a, 0x02, 0x0c, 0x06, 0x7d, 0x10, 0x1f, 0xc8, 0x96, 0x06, 0x1a, 0x0a, 0xa4, 0x42, 0x25, 0xa8,
|
||||
0xe6, 0x03, 0xa0, 0x21, 0x3d, 0x40, 0xfc, 0x1c, 0x68, 0x28, 0x3f, 0x10, 0x6f, 0x05, 0xb2, 0x4f,
|
||||
0xa7, 0xa5, 0xa5, 0xb1, 0x12, 0x63, 0x01, 0xd0, 0x61, 0x62, 0x40, 0x3d, 0x39, 0x40, 0x6c, 0x8f,
|
||||
0xd3, 0x02, 0xa0, 0x24, 0x1b, 0x10, 0x9f, 0x05, 0x1a, 0x76, 0x12, 0x88, 0x3f, 0x85, 0x87, 0x87,
|
||||
0x2b, 0x13, 0x13, 0x44, 0xa0, 0xc8, 0x07, 0xca, 0xdf, 0x05, 0xe2, 0xb9, 0x40, 0x35, 0x77, 0x80,
|
||||
0x74, 0x0a, 0x3e, 0x4b, 0xc2, 0xa1, 0x86, 0xcd, 0x24, 0x36, 0x0e, 0x80, 0xe2, 0x13, 0x80, 0xf2,
|
||||
0x13, 0x41, 0x6c, 0xa0, 0xa3, 0xd4, 0x80, 0xec, 0x37, 0x01, 0x01, 0x01, 0x02, 0xd8, 0x0c, 0xe7,
|
||||
0x07, 0x25, 0x47, 0x20, 0x5e, 0x07, 0xc4, 0x3f, 0x81, 0x7c, 0x33, 0x42, 0x16, 0x34, 0x34, 0x34,
|
||||
0x30, 0x01, 0xe5, 0x5e, 0x01, 0xd5, 0xca, 0x21, 0x59, 0x38, 0x0d, 0xc8, 0x77, 0xc2, 0xe6, 0x92,
|
||||
0xa5, 0x40, 0xc5, 0xb7, 0x12, 0x12, 0x12, 0x38, 0x80, 0xec, 0x39, 0x20, 0x6f, 0x47, 0x47, 0x47,
|
||||
0xf3, 0xe1, 0xb3, 0x00, 0x24, 0x06, 0x94, 0xbb, 0x4a, 0x30, 0x82, 0x41, 0x91, 0x09, 0xb4, 0xd5,
|
||||
0x38, 0x22, 0x22, 0x42, 0x0a, 0xea, 0x1b, 0x1e, 0x10, 0x1f, 0x88, 0x85, 0xf0, 0x59, 0x00, 0x8a,
|
||||
0x58, 0x90, 0x8b, 0x69, 0x96, 0x0f, 0x80, 0xe2, 0xad, 0x40, 0x5c, 0x45, 0x33, 0x0b, 0x40, 0x89,
|
||||
0x01, 0xe8, 0x8b, 0x34, 0x4a, 0xcc, 0x67, 0xec, 0xb3, 0xf6, 0xfc, 0xb2, 0x5f, 0xcd, 0xf1, 0x3f,
|
||||
0x36, 0x5c, 0xe5, 0xe2, 0xfb, 0x7f, 0xa6, 0x99, 0xc7, 0x7f, 0x5c, 0xf2, 0x40, 0x7c, 0x06, 0xaf,
|
||||
0xe9, 0x40, 0xd7, 0x55, 0xb7, 0xda, 0x79, 0xff, 0xdf, 0xa6, 0xe5, 0xfc, 0x7f, 0x9f, 0x9a, 0xd3,
|
||||
0x07, 0xa0, 0x86, 0x77, 0xc8, 0xb8, 0xce, 0xd1, 0xe7, 0xc7, 0x44, 0x2b, 0xaf, 0xaf, 0xe8, 0xe2,
|
||||
0x30, 0x7c, 0x40, 0xcd, 0x71, 0x2d, 0xbe, 0xa0, 0xf1, 0x07, 0xe2, 0xbf, 0x40, 0xfc, 0x3d, 0x28,
|
||||
0x28, 0xc8, 0x02, 0x87, 0x9a, 0x06, 0x20, 0xae, 0xc7, 0xe2, 0x30, 0x33, 0xbc, 0x2e, 0x07, 0x86,
|
||||
0xad, 0x06, 0x50, 0xe3, 0x07, 0x50, 0xd8, 0x03, 0x15, 0x27, 0xe3, 0x51, 0x97, 0x04, 0x54, 0xb3,
|
||||
0x10, 0xcd, 0x70, 0x1b, 0xa0, 0x78, 0x17, 0xbe, 0x60, 0x01, 0x25, 0xcd, 0xdb, 0x20, 0xc3, 0x41,
|
||||
0xe5, 0x13, 0x81, 0x20, 0x54, 0x01, 0x1a, 0xf6, 0x08, 0xb9, 0xd0, 0x04, 0xea, 0xb9, 0x08, 0x4a,
|
||||
0x5d, 0xb8, 0x34, 0x30, 0x03, 0x25, 0xb7, 0x41, 0x0d, 0xdf, 0x05, 0xd2, 0x40, 0x28, 0x15, 0x80,
|
||||
0x2c, 0x00, 0x16, 0x11, 0x9a, 0xd0, 0x20, 0x2b, 0x87, 0xea, 0x6d, 0xc0, 0x15, 0xee, 0x13, 0xa1,
|
||||
0x49, 0xf2, 0x26, 0xd6, 0xf2, 0x04, 0xbb, 0x9e, 0x26, 0x20, 0x9e, 0x07, 0x8c, 0x27, 0x19, 0x20,
|
||||
0xfd, 0x0d, 0x6a, 0x41, 0x25, 0x36, 0x85, 0x71, 0x50, 0xc9, 0x8f, 0x40, 0x0b, 0xb4, 0x89, 0x4d,
|
||||
0xc7, 0x7e, 0x7e, 0x7e, 0xbc, 0x20, 0x07, 0x01, 0xf5, 0x2d, 0x00, 0xe2, 0x17, 0x40, 0xbc, 0x18,
|
||||
0x18, 0x12, 0x81, 0xe8, 0x41, 0x63, 0x09, 0x94, 0xf8, 0x01, 0x4a, 0x35, 0x40, 0xb6, 0x37, 0xa9,
|
||||
0x99, 0x05, 0x54, 0x64, 0x83, 0x8a, 0x0d, 0xa0, 0x7e, 0x5b, 0x0c, 0x49, 0xa0, 0xd7, 0x24, 0x81,
|
||||
0x12, 0x4f, 0xa0, 0xae, 0x2f, 0xa6, 0x7a, 0x9d, 0x0b, 0xb4, 0xf9, 0x08, 0x34, 0xdc, 0x17, 0xd1,
|
||||
0xaa, 0x52, 0x3f, 0x04, 0xb4, 0x64, 0x37, 0xa8, 0x98, 0xa6, 0x85, 0xf9, 0x00, 0xc9, 0x92, 0x45,
|
||||
0x63, 0xef, 0x9c, 0xf5, 0x47, 0x00, 0x00, 0x00, 0x00, 0x49, 0x45, 0x4e, 0x44, 0xae, 0x42, 0x60,
|
||||
0x82,
|
||||
};
|
||||
|
||||
const BITMAP_OPAQUE rotate_pos_x_xpm[1] = {{ png, sizeof( png ), "rotate_pos_x_xpm" }};
|
||||
|
||||
//EOF
|
|
@ -1,54 +0,0 @@
|
|||
|
||||
/* Do not modify this file, it was automatically generated by the
|
||||
* PNG2cpp CMake script, using a *.png file as input.
|
||||
*/
|
||||
|
||||
#include <bitmaps_png/bitmaps_list.h>
|
||||
|
||||
static const unsigned char png[] = {
|
||||
0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a, 0x0a, 0x00, 0x00, 0x00, 0x0d, 0x49, 0x48, 0x44, 0x52,
|
||||
0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x18, 0x08, 0x06, 0x00, 0x00, 0x00, 0xe0, 0x77, 0x3d,
|
||||
0xf8, 0x00, 0x00, 0x02, 0x4e, 0x49, 0x44, 0x41, 0x54, 0x48, 0xc7, 0x63, 0x60, 0x20, 0x01, 0x84,
|
||||
0x84, 0x84, 0x9c, 0x0f, 0x0d, 0x0d, 0xbd, 0x0c, 0x64, 0x32, 0x32, 0x50, 0x1b, 0x00, 0x0d, 0x66,
|
||||
0x03, 0x5a, 0xf0, 0x1f, 0x84, 0x81, 0x6c, 0x9e, 0x51, 0x0b, 0x46, 0x2d, 0x18, 0xb5, 0x80, 0x0c,
|
||||
0x0b, 0x80, 0x9a, 0xbc, 0x81, 0x9a, 0x8f, 0x02, 0xe9, 0xad, 0x40, 0x3a, 0x08, 0x3d, 0xb7, 0x52,
|
||||
0x6c, 0x01, 0x50, 0xe3, 0xbd, 0xe0, 0xe0, 0xe0, 0x00, 0x20, 0x0d, 0xd4, 0x1f, 0x7a, 0x16, 0x48,
|
||||
0x6f, 0x04, 0xd2, 0x42, 0xc8, 0x16, 0x64, 0x78, 0x07, 0xfc, 0xcf, 0xf4, 0x0e, 0x04, 0x59, 0x62,
|
||||
0x0b, 0xe4, 0x1b, 0x13, 0x81, 0x25, 0x90, 0x2d, 0x78, 0x12, 0x11, 0x11, 0x21, 0x05, 0x62, 0xa7,
|
||||
0xa5, 0xa5, 0xb1, 0x02, 0xf9, 0x3d, 0x40, 0x0b, 0xef, 0x03, 0xb1, 0x06, 0x48, 0x6c, 0x97, 0xba,
|
||||
0x43, 0xcc, 0x5e, 0x75, 0xa7, 0xff, 0xbb, 0x35, 0x1c, 0xff, 0x87, 0x06, 0x43, 0x7c, 0x42, 0x04,
|
||||
0x7e, 0x8a, 0x6c, 0xc1, 0x46, 0xa0, 0x61, 0x91, 0x68, 0xbe, 0x8a, 0x03, 0xe2, 0x87, 0x8b, 0x8c,
|
||||
0x3d, 0x2a, 0xf7, 0xa9, 0x39, 0xfe, 0xdd, 0xaf, 0xe6, 0xf8, 0x7f, 0xba, 0xb9, 0xc7, 0x2f, 0xa0,
|
||||
0xd8, 0x5d, 0x62, 0x30, 0xd0, 0xbc, 0xf9, 0x70, 0xc3, 0x40, 0x86, 0x03, 0xbd, 0xb4, 0x0f, 0x3d,
|
||||
0xe8, 0x6a, 0x9d, 0x7c, 0x57, 0x25, 0xfb, 0x06, 0xfe, 0xdf, 0xae, 0xe5, 0xfc, 0x7f, 0x9f, 0xaa,
|
||||
0xe3, 0xb4, 0x06, 0x86, 0x06, 0x26, 0x90, 0x78, 0x6c, 0x6c, 0x2c, 0x37, 0x34, 0x38, 0x55, 0x90,
|
||||
0x1c, 0xe4, 0x1f, 0x14, 0x14, 0x64, 0x8a, 0x2b, 0x92, 0x99, 0x81, 0x96, 0xdc, 0x04, 0x85, 0x2f,
|
||||
0x4c, 0x6c, 0xbf, 0xba, 0x43, 0x39, 0xc8, 0xd5, 0xad, 0x76, 0xde, 0xff, 0x33, 0xbd, 0x02, 0x6e,
|
||||
0xa2, 0x69, 0x61, 0x84, 0xaa, 0x5f, 0x0e, 0xe2, 0x84, 0x87, 0x87, 0x6b, 0x42, 0x13, 0x40, 0x14,
|
||||
0xce, 0x88, 0x06, 0x6a, 0x30, 0x04, 0x2a, 0x90, 0xfb, 0x0f, 0xd4, 0xbc, 0x5f, 0xd5, 0xa1, 0x1f,
|
||||
0x64, 0x38, 0x10, 0xff, 0xdb, 0xad, 0xe1, 0x54, 0x01, 0xaa, 0x0b, 0x80, 0xf2, 0x49, 0x68, 0x8e,
|
||||
0x2a, 0x02, 0x8a, 0x7f, 0xf5, 0xf3, 0xf3, 0xe3, 0x05, 0xca, 0xb5, 0x00, 0xd9, 0x6f, 0x12, 0x12,
|
||||
0x12, 0x38, 0xf0, 0xa6, 0xa6, 0x55, 0x0c, 0xa1, 0xcc, 0xfb, 0xd5, 0x9c, 0xe6, 0x43, 0x0d, 0xff,
|
||||
0x73, 0x40, 0xcd, 0x29, 0x15, 0x24, 0x1e, 0x18, 0x18, 0xa8, 0x03, 0x34, 0xe0, 0x25, 0x28, 0x68,
|
||||
0x60, 0x6a, 0x03, 0x02, 0x02, 0x04, 0x40, 0x16, 0x40, 0xe3, 0xea, 0x36, 0x28, 0x61, 0xe0, 0x35,
|
||||
0x7c, 0x9b, 0x8a, 0x27, 0xfb, 0x01, 0x35, 0xc7, 0xb5, 0x20, 0xc3, 0x81, 0xf4, 0xcf, 0x7d, 0xea,
|
||||
0x8e, 0x61, 0x68, 0x3e, 0x5c, 0x01, 0x72, 0x35, 0x9a, 0xd8, 0x7c, 0x68, 0xa4, 0xfe, 0x03, 0x06,
|
||||
0x93, 0x1a, 0x4e, 0xc3, 0x77, 0xea, 0xb9, 0x71, 0xef, 0x57, 0x73, 0xd8, 0x05, 0x36, 0x5c, 0xdd,
|
||||
0xf1, 0xeb, 0x3a, 0x1d, 0x17, 0x60, 0x7c, 0x05, 0xc9, 0x20, 0xab, 0x01, 0xf2, 0x8d, 0x40, 0x86,
|
||||
0xa1, 0x05, 0x93, 0x19, 0x34, 0x49, 0xee, 0xc5, 0x69, 0xf8, 0x61, 0x5d, 0x1b, 0x41, 0x60, 0x84,
|
||||
0x1e, 0x83, 0x06, 0xcb, 0x07, 0xa0, 0x45, 0x36, 0x50, 0xd7, 0x4d, 0x00, 0x1a, 0x70, 0x04, 0x88,
|
||||
0xf3, 0x23, 0x23, 0x23, 0x45, 0xa0, 0x29, 0xe5, 0x25, 0xd0, 0x22, 0x49, 0x98, 0xde, 0xa8, 0xa8,
|
||||
0x28, 0x41, 0xa0, 0xd8, 0x4f, 0xa0, 0x9a, 0x70, 0xac, 0x86, 0xef, 0xd7, 0x76, 0x90, 0x00, 0x06,
|
||||
0xc7, 0x45, 0x68, 0xb0, 0xbc, 0xdd, 0xab, 0xe6, 0x64, 0x86, 0x9c, 0xb2, 0x80, 0x9a, 0xb7, 0x40,
|
||||
0x5d, 0xf8, 0x13, 0x88, 0xa7, 0x00, 0xf1, 0x0b, 0xa0, 0xb8, 0x34, 0x54, 0xde, 0x03, 0xc8, 0x3f,
|
||||
0x04, 0xc4, 0x17, 0x41, 0x39, 0x1d, 0xbb, 0x05, 0x6a, 0x8e, 0x17, 0xa0, 0x2e, 0x7f, 0x04, 0x0c,
|
||||
0x73, 0x75, 0x2c, 0xc9, 0x97, 0x07, 0x88, 0xaf, 0x81, 0x2c, 0x01, 0xfa, 0x08, 0x64, 0xc9, 0x74,
|
||||
0xa4, 0xf0, 0x4f, 0x05, 0x45, 0x2c, 0xd0, 0x47, 0xf2, 0x38, 0x83, 0x07, 0x18, 0x34, 0x9b, 0x80,
|
||||
0x41, 0x72, 0x6a, 0xaf, 0xa6, 0x13, 0x4e, 0x45, 0xc0, 0x22, 0x44, 0x16, 0x68, 0x49, 0x05, 0x39,
|
||||
0xa5, 0x30, 0x00, 0x22, 0x6b, 0x67, 0xa0, 0x84, 0x02, 0xf4, 0x74, 0x00, 0x00, 0x00, 0x00, 0x49,
|
||||
0x45, 0x4e, 0x44, 0xae, 0x42, 0x60, 0x82,
|
||||
};
|
||||
|
||||
const BITMAP_OPAQUE rotate_pos_y_xpm[1] = {{ png, sizeof( png ), "rotate_pos_y_xpm" }};
|
||||
|
||||
//EOF
|
|
@ -1,48 +0,0 @@
|
|||
|
||||
/* Do not modify this file, it was automatically generated by the
|
||||
* PNG2cpp CMake script, using a *.png file as input.
|
||||
*/
|
||||
|
||||
#include <bitmaps_png/bitmaps_list.h>
|
||||
|
||||
static const unsigned char png[] = {
|
||||
0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a, 0x0a, 0x00, 0x00, 0x00, 0x0d, 0x49, 0x48, 0x44, 0x52,
|
||||
0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x18, 0x08, 0x06, 0x00, 0x00, 0x00, 0xe0, 0x77, 0x3d,
|
||||
0xf8, 0x00, 0x00, 0x01, 0xf6, 0x49, 0x44, 0x41, 0x54, 0x48, 0xc7, 0x63, 0x60, 0x20, 0x01, 0x1c,
|
||||
0x50, 0x73, 0x3c, 0x0a, 0xc4, 0x27, 0x19, 0x68, 0x05, 0xf6, 0xab, 0x39, 0x7e, 0x06, 0x5a, 0xf0,
|
||||
0x73, 0xd4, 0x02, 0x30, 0x88, 0x88, 0x88, 0x90, 0x0d, 0x0a, 0x0a, 0x92, 0xc7, 0x66, 0x41, 0x70,
|
||||
0x70, 0xb0, 0x61, 0x48, 0x48, 0x48, 0x39, 0x14, 0x37, 0x00, 0x71, 0x47, 0x68, 0x68, 0x68, 0x2c,
|
||||
0x51, 0x06, 0x47, 0x45, 0x45, 0x09, 0x02, 0x35, 0xac, 0x04, 0xe2, 0x37, 0x40, 0x83, 0xe2, 0x71,
|
||||
0xf9, 0x00, 0x28, 0xe7, 0x02, 0x34, 0xf4, 0x32, 0x50, 0xdd, 0x7f, 0x28, 0xde, 0xe5, 0xe9, 0xe9,
|
||||
0xc9, 0x4e, 0xd0, 0x02, 0xa0, 0xc6, 0x15, 0x40, 0x3c, 0x19, 0xa8, 0x99, 0x93, 0x50, 0x10, 0x39,
|
||||
0x38, 0x38, 0xb0, 0x00, 0xd5, 0xa5, 0x01, 0x0d, 0x7f, 0x09, 0xa4, 0x8f, 0x01, 0xe9, 0xc5, 0x04,
|
||||
0x2d, 0x00, 0x2a, 0xda, 0x09, 0x54, 0x9c, 0x4f, 0x4a, 0x1c, 0x00, 0xd5, 0xf3, 0x00, 0x83, 0xd3,
|
||||
0x0e, 0xe8, 0xb0, 0x9b, 0x04, 0x2d, 0x00, 0x2a, 0x56, 0x81, 0x7a, 0xfd, 0x30, 0x10, 0xe7, 0x06,
|
||||
0x06, 0x06, 0xea, 0x00, 0x85, 0x19, 0xb1, 0x59, 0x00, 0x54, 0xc7, 0x0f, 0x0a, 0x2a, 0x20, 0x9e,
|
||||
0x00, 0x54, 0xfb, 0x0a, 0xc8, 0x0f, 0x24, 0x2a, 0x1e, 0x80, 0x0a, 0x99, 0x81, 0x9a, 0x02, 0x80,
|
||||
0x78, 0x26, 0xc8, 0x55, 0x40, 0xcd, 0xdf, 0x81, 0xf4, 0xa3, 0x2c, 0xef, 0xc0, 0xbf, 0xd9, 0x5e,
|
||||
0x01, 0xff, 0x80, 0xfc, 0x2b, 0x20, 0x3e, 0x90, 0xfe, 0x08, 0xc4, 0xfb, 0x81, 0xb8, 0x1e, 0xe8,
|
||||
0x03, 0x19, 0xb2, 0x53, 0x54, 0x42, 0x42, 0x02, 0x07, 0x28, 0x55, 0xad, 0x30, 0x70, 0xfd, 0xba,
|
||||
0xdc, 0xc0, 0xe5, 0x17, 0xd0, 0x01, 0x5a, 0x20, 0x3e, 0xc8, 0x21, 0x54, 0xcd, 0x07, 0xfb, 0xd4,
|
||||
0x9d, 0xbe, 0xee, 0x57, 0x73, 0xf8, 0x05, 0x74, 0xbd, 0x12, 0x31, 0xd8, 0xcf, 0xcf, 0x8f, 0x97,
|
||||
0x68, 0xc3, 0x81, 0x41, 0xe0, 0xb8, 0x53, 0xc3, 0xe9, 0xff, 0x1e, 0x75, 0xc7, 0xff, 0x48, 0x49,
|
||||
0x93, 0x10, 0xbe, 0x4d, 0x6c, 0x9c, 0xf8, 0x81, 0xe2, 0xa1, 0xdf, 0xda, 0xeb, 0xff, 0x24, 0x0b,
|
||||
0x8f, 0x2f, 0x40, 0xf6, 0x19, 0x62, 0x30, 0x28, 0xb9, 0x13, 0x63, 0x78, 0x14, 0x50, 0xf1, 0x2f,
|
||||
0xa8, 0x8b, 0x3a, 0xa8, 0x1a, 0xe6, 0x40, 0x03, 0xb3, 0x80, 0xf8, 0x2f, 0x10, 0xff, 0x03, 0xba,
|
||||
0xa6, 0x90, 0xda, 0x86, 0x97, 0x43, 0x5d, 0xfd, 0x07, 0x68, 0x78, 0x12, 0x92, 0x78, 0x0d, 0xc8,
|
||||
0x27, 0xc8, 0x18, 0x5b, 0xae, 0xc7, 0x07, 0x18, 0x81, 0x9a, 0xba, 0xa1, 0x86, 0xff, 0x00, 0x1a,
|
||||
0x1e, 0x8c, 0x66, 0x31, 0xcc, 0x82, 0x1e, 0x90, 0x3c, 0x10, 0x5f, 0x4a, 0x4b, 0x4b, 0x63, 0x25,
|
||||
0x25, 0x83, 0xcd, 0x81, 0x1a, 0xfe, 0x05, 0xc8, 0x77, 0xc5, 0xe3, 0xc3, 0xa9, 0x40, 0xfc, 0x3a,
|
||||
0x3c, 0x3c, 0x5c, 0x99, 0x58, 0xc3, 0xd9, 0x80, 0x1a, 0x56, 0x43, 0x0d, 0x7f, 0x07, 0xe4, 0x5b,
|
||||
0xe2, 0x31, 0xbc, 0x00, 0x94, 0xaa, 0xf0, 0xa9, 0x41, 0x01, 0xb1, 0xb1, 0xb1, 0xdc, 0x40, 0xc5,
|
||||
0x3b, 0xa0, 0x86, 0x3f, 0x07, 0xfa, 0x42, 0x0f, 0x8f, 0x43, 0x3c, 0x80, 0x6a, 0x7e, 0x03, 0x71,
|
||||
0x34, 0x51, 0x86, 0x07, 0x04, 0x04, 0x08, 0x00, 0x15, 0x1f, 0x85, 0x1a, 0x7e, 0x0f, 0x54, 0xd8,
|
||||
0x11, 0x88, 0xfc, 0x77, 0xd0, 0x64, 0x7b, 0x17, 0x86, 0x41, 0x15, 0x10, 0xbe, 0xa0, 0x39, 0x0e,
|
||||
0x35, 0xfc, 0x12, 0x30, 0xb7, 0x4a, 0x12, 0x11, 0x94, 0x8a, 0xe8, 0x45, 0x02, 0xa8, 0xac, 0xc2,
|
||||
0x5b, 0xfe, 0x83, 0x30, 0xa8, 0x26, 0xa3, 0x45, 0x3d, 0x0e, 0x00, 0xca, 0xd4, 0x3e, 0xde, 0x51,
|
||||
0xc6, 0x34, 0x84, 0x00, 0x00, 0x00, 0x00, 0x49, 0x45, 0x4e, 0x44, 0xae, 0x42, 0x60, 0x82,
|
||||
};
|
||||
|
||||
const BITMAP_OPAQUE rotate_pos_z_xpm[1] = {{ png, sizeof( png ), "rotate_pos_z_xpm" }};
|
||||
|
||||
//EOF
|
|
@ -413,12 +413,12 @@ EXTERN_BITMAP( router_len_tuner_dist_decr_xpm )
|
|||
EXTERN_BITMAP( router_len_tuner_dist_incr_xpm )
|
||||
EXTERN_BITMAP( rotate_cw_xpm )
|
||||
EXTERN_BITMAP( rotate_ccw_xpm )
|
||||
EXTERN_BITMAP( rotate_neg_x_xpm )
|
||||
EXTERN_BITMAP( rotate_pos_x_xpm )
|
||||
EXTERN_BITMAP( rotate_neg_y_xpm )
|
||||
EXTERN_BITMAP( rotate_pos_y_xpm )
|
||||
EXTERN_BITMAP( rotate_neg_z_xpm )
|
||||
EXTERN_BITMAP( rotate_pos_z_xpm )
|
||||
EXTERN_BITMAP( rotate_cw_x_xpm )
|
||||
EXTERN_BITMAP( rotate_ccw_x_xpm )
|
||||
EXTERN_BITMAP( rotate_cw_y_xpm )
|
||||
EXTERN_BITMAP( rotate_ccw_y_xpm )
|
||||
EXTERN_BITMAP( rotate_cw_z_xpm )
|
||||
EXTERN_BITMAP( rotate_ccw_z_xpm )
|
||||
EXTERN_BITMAP( save_as_xpm )
|
||||
EXTERN_BITMAP( save_fp_to_board_xpm )
|
||||
EXTERN_BITMAP( save_symbol_to_schematic_xpm )
|
||||
|
|
|
@ -0,0 +1,133 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
id="Слой_1"
|
||||
data-name="Слой 1"
|
||||
viewBox="0 0 24 24"
|
||||
version="1.1"
|
||||
sodipodi:docname="rotate_pos_x.svg"
|
||||
inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07)">
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="2523"
|
||||
inkscape:window-height="1793"
|
||||
id="namedview30"
|
||||
showgrid="true"
|
||||
inkscape:zoom="39.543586"
|
||||
inkscape:cx="11.044335"
|
||||
inkscape:cy="13.022587"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="37"
|
||||
inkscape:window-maximized="0"
|
||||
inkscape:document-rotation="0"
|
||||
inkscape:current-layer="Слой_1">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid_kicad"
|
||||
spacingx="0.5"
|
||||
spacingy="0.5"
|
||||
color="#9999ff"
|
||||
opacity="0.13"
|
||||
empspacing="2" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata43">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<cc:license
|
||||
rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" />
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title>rotate_pos_z</dc:title>
|
||||
</cc:Work>
|
||||
<cc:License
|
||||
rdf:about="http://creativecommons.org/licenses/by-sa/4.0/">
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Reproduction" />
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Distribution" />
|
||||
<cc:requires
|
||||
rdf:resource="http://creativecommons.org/ns#Notice" />
|
||||
<cc:requires
|
||||
rdf:resource="http://creativecommons.org/ns#Attribution" />
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
|
||||
<cc:requires
|
||||
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
|
||||
</cc:License>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs26991">
|
||||
<style
|
||||
id="style26989">.cls-1{fill:#545454;}.cls-2{fill:#bf2641;}.cls-3{fill:none;stroke:#545454;stroke-linecap:round;stroke-linejoin:round;}</style>
|
||||
</defs>
|
||||
<title
|
||||
id="title26993">rotate_pos_z</title>
|
||||
<path
|
||||
style="fill:none;stroke:#bf2641;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 12,13 H 22.5"
|
||||
id="path3721"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<path
|
||||
style="fill:none;stroke:#545454;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 12,13 3.514718,21.485282"
|
||||
id="path3723" />
|
||||
<path
|
||||
style="fill:none;stroke:#545454;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 12,13 V 1"
|
||||
id="path3719"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<g
|
||||
id="g3781"
|
||||
transform="matrix(0,-1,-1,0,26,25)">
|
||||
<path
|
||||
style="fill:none;stroke:#ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 11,8.5 h 2"
|
||||
id="path3715" />
|
||||
<path
|
||||
style="fill:none;stroke:#ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 11,10.5 h 2"
|
||||
id="path3717" />
|
||||
<g
|
||||
id="g3727"
|
||||
transform="matrix(-1,0,0,1,24.086397,0)">
|
||||
<path
|
||||
id="polygon27005"
|
||||
style="fill:#545454;stroke-width:1"
|
||||
d="M 19.5,3 12.89,3.7399329 17,8 Z"
|
||||
sodipodi:nodetypes="cccc" />
|
||||
<path
|
||||
class="cls-3"
|
||||
d="M 7.1223,5.1991 C 5.6145,5.6437 4.66,6.3073 4.6482,7.063 4.625,8.479 7.917,9.6816 12.0012,9.7489 16.0854,9.8162 19.415,8.7231 19.4382,7.307 19.4492,6.6315 18.7058,6.0046 17.4817,5.5262"
|
||||
id="path27003"
|
||||
style="stroke-width:1.5;stroke-miterlimit:4;stroke-dasharray:none" />
|
||||
</g>
|
||||
</g>
|
||||
<text
|
||||
xml:space="preserve"
|
||||
style="font-style:normal;font-variant:normal;font-weight:600;font-stretch:normal;font-size:9.33333px;line-height:1.25;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans Semi-Bold';letter-spacing:0px;word-spacing:0px;fill:#545454;fill-opacity:1;"
|
||||
x="2.3215709"
|
||||
y="8.7211294"
|
||||
id="text3785"><tspan
|
||||
sodipodi:role="line"
|
||||
id="tspan3783"
|
||||
x="2.3215709"
|
||||
y="8.7211294"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9.33333px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans Bold';fill:#545454;fill-opacity:1;">X</tspan></text>
|
||||
</svg>
|
After Width: | Height: | Size: 5.0 KiB |
|
@ -0,0 +1,130 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
id="Слой_1"
|
||||
data-name="Слой 1"
|
||||
viewBox="0 0 24 24"
|
||||
version="1.1"
|
||||
sodipodi:docname="rotate_neg_y.svg"
|
||||
inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07)">
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="2523"
|
||||
inkscape:window-height="1793"
|
||||
id="namedview30"
|
||||
showgrid="true"
|
||||
inkscape:zoom="27.961538"
|
||||
inkscape:cx="8.2370892"
|
||||
inkscape:cy="19.821405"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="37"
|
||||
inkscape:window-maximized="0"
|
||||
inkscape:document-rotation="0"
|
||||
inkscape:current-layer="Слой_1">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid_kicad"
|
||||
spacingx="0.5"
|
||||
spacingy="0.5"
|
||||
color="#9999ff"
|
||||
opacity="0.13"
|
||||
empspacing="2" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata43">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<cc:license
|
||||
rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" />
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title>rotate_pos_z</dc:title>
|
||||
</cc:Work>
|
||||
<cc:License
|
||||
rdf:about="http://creativecommons.org/licenses/by-sa/4.0/">
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Reproduction" />
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Distribution" />
|
||||
<cc:requires
|
||||
rdf:resource="http://creativecommons.org/ns#Notice" />
|
||||
<cc:requires
|
||||
rdf:resource="http://creativecommons.org/ns#Attribution" />
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
|
||||
<cc:requires
|
||||
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
|
||||
</cc:License>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs26991">
|
||||
<style
|
||||
id="style26989">.cls-1{fill:#545454;}.cls-2{fill:#bf2641;}.cls-3{fill:none;stroke:#545454;stroke-linecap:round;stroke-linejoin:round;}</style>
|
||||
</defs>
|
||||
<title
|
||||
id="title26993">rotate_pos_z</title>
|
||||
<path
|
||||
style="fill:none;stroke:#545454;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 12,13 H 22.5"
|
||||
id="path3721"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<path
|
||||
style="fill:none;stroke:#545454;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 12,13 V 1"
|
||||
id="path3719"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<path
|
||||
id="polygon27005"
|
||||
style="fill:#545454;stroke-width:1"
|
||||
d="m 4.6825815,12.29109 0.99606,6.576265 L 0.50000006,16 Z"
|
||||
sodipodi:nodetypes="cccc"
|
||||
inkscape:transform-center-x="-1.0283138"
|
||||
inkscape:transform-center-y="3.1660071" />
|
||||
<path
|
||||
style="fill:none;stroke:#bf2641;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 12,13 3.514718,21.485282"
|
||||
id="path3723" />
|
||||
<path
|
||||
style="fill:none;stroke:#ffffff;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 10.5,17 7.9999998,14.5"
|
||||
id="path3715"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<path
|
||||
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 12.5,16 -3,-3"
|
||||
id="path3717"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<path
|
||||
class="cls-3"
|
||||
d="M 2.9122018,13.943474 C 2.1604059,12.562919 1.9547089,11.418749 2.4807257,10.876045 c 0.984858,-1.017668 4.1630199,0.45976 7.0985606,3.300124 2.9355537,2.840377 4.5170037,5.967703 3.5320737,6.985442 -0.469872,0.485429 -1.43882,0.403051 -2.642675,-0.124243"
|
||||
id="path27003"
|
||||
style="stroke-width:1.5;stroke-miterlimit:4;stroke-dasharray:none" />
|
||||
<text
|
||||
xml:space="preserve"
|
||||
style="font-style:normal;font-variant:normal;font-weight:600;font-stretch:normal;font-size:9.56849px;line-height:1.25;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans Semi-Bold';letter-spacing:0px;word-spacing:0px;fill:#545454;fill-opacity:1;stroke-width:1"
|
||||
x="15.948255"
|
||||
y="8.7775164"
|
||||
id="text3785"
|
||||
transform="scale(0.9754233,1.0251959)"><tspan
|
||||
sodipodi:role="line"
|
||||
id="tspan3783"
|
||||
x="15.948255"
|
||||
y="8.7775164"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9.56849px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans Bold';fill:#545454;fill-opacity:1;stroke-width:1">Y</tspan></text>
|
||||
</svg>
|
After Width: | Height: | Size: 5.2 KiB |
|
@ -0,0 +1,129 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
id="Слой_1"
|
||||
data-name="Слой 1"
|
||||
viewBox="0 0 24 24"
|
||||
version="1.1"
|
||||
sodipodi:docname="rotate_pos_z.svg"
|
||||
inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07)">
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="2523"
|
||||
inkscape:window-height="1793"
|
||||
id="namedview30"
|
||||
showgrid="true"
|
||||
inkscape:zoom="39.543586"
|
||||
inkscape:cx="4.578519"
|
||||
inkscape:cy="15.670556"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="37"
|
||||
inkscape:window-maximized="0"
|
||||
inkscape:document-rotation="0"
|
||||
inkscape:current-layer="Слой_1">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid_kicad"
|
||||
spacingx="0.5"
|
||||
spacingy="0.5"
|
||||
color="#9999ff"
|
||||
opacity="0.13"
|
||||
empspacing="2" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata43">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<cc:license
|
||||
rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" />
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title>add_arc</dc:title>
|
||||
</cc:Work>
|
||||
<cc:License
|
||||
rdf:about="http://creativecommons.org/licenses/by-sa/4.0/">
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Reproduction" />
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Distribution" />
|
||||
<cc:requires
|
||||
rdf:resource="http://creativecommons.org/ns#Notice" />
|
||||
<cc:requires
|
||||
rdf:resource="http://creativecommons.org/ns#Attribution" />
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
|
||||
<cc:requires
|
||||
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
|
||||
</cc:License>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs26991">
|
||||
<style
|
||||
id="style26989">.cls-1{fill:#545454;}.cls-2{fill:#bf2641;}.cls-3{fill:none;stroke:#545454;stroke-linecap:round;stroke-linejoin:round;}</style>
|
||||
</defs>
|
||||
<title
|
||||
id="title26993">rotate_pos_z</title>
|
||||
<path
|
||||
style="fill:none;stroke:#545454;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 12,13 H 22.5"
|
||||
id="path3721"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<path
|
||||
style="fill:none;stroke:#545454;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 12,13 3.514718,21.485282"
|
||||
id="path3723" />
|
||||
<path
|
||||
style="fill:none;stroke:#bf2641;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 12,13 V 1"
|
||||
id="path3719"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<path
|
||||
style="fill:none;stroke:#ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 11,8.5 h 2"
|
||||
id="path3715" />
|
||||
<path
|
||||
style="fill:none;stroke:#ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 11,10.5 h 2"
|
||||
id="path3717" />
|
||||
<g
|
||||
id="g3727">
|
||||
<path
|
||||
id="polygon27005"
|
||||
style="fill:#545454;stroke-width:1"
|
||||
d="M 19.5,3 12.89,3.7399329 17,8 Z"
|
||||
sodipodi:nodetypes="cccc" />
|
||||
<path
|
||||
class="cls-3"
|
||||
d="M 7.1223,5.1991 C 5.6145,5.6437 4.66,6.3073 4.6482,7.063 4.625,8.479 7.917,9.6816 12.0012,9.7489 16.0854,9.8162 19.415,8.7231 19.4382,7.307 19.4492,6.6315 18.7058,6.0046 17.4817,5.5262"
|
||||
id="path27003"
|
||||
style="stroke-width:1.5;stroke-miterlimit:4;stroke-dasharray:none" />
|
||||
</g>
|
||||
<text
|
||||
xml:space="preserve"
|
||||
style="font-style:normal;font-variant:normal;font-weight:600;font-stretch:normal;font-size:9.56849px;line-height:1.25;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans Semi-Bold';letter-spacing:0px;word-spacing:0px;fill:#545454;fill-opacity:1;stroke-width:1"
|
||||
x="12.97253"
|
||||
y="22.434151"
|
||||
id="text3785"
|
||||
transform="scale(0.97542333,1.0251959)"><tspan
|
||||
sodipodi:role="line"
|
||||
id="tspan3783"
|
||||
x="12.97253"
|
||||
y="22.434151"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9.56849px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans Bold';fill:#545454;fill-opacity:1;stroke-width:1">Z</tspan></text>
|
||||
</svg>
|
After Width: | Height: | Size: 4.9 KiB |
|
@ -0,0 +1,133 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
id="Слой_1"
|
||||
data-name="Слой 1"
|
||||
viewBox="0 0 24 24"
|
||||
version="1.1"
|
||||
sodipodi:docname="rotate_neg_x.svg"
|
||||
inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07)">
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="2523"
|
||||
inkscape:window-height="1793"
|
||||
id="namedview30"
|
||||
showgrid="true"
|
||||
inkscape:zoom="39.543586"
|
||||
inkscape:cx="11.044335"
|
||||
inkscape:cy="13.022587"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="37"
|
||||
inkscape:window-maximized="0"
|
||||
inkscape:document-rotation="0"
|
||||
inkscape:current-layer="Слой_1">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid_kicad"
|
||||
spacingx="0.5"
|
||||
spacingy="0.5"
|
||||
color="#9999ff"
|
||||
opacity="0.13"
|
||||
empspacing="2" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata43">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<cc:license
|
||||
rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" />
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title>rotate_pos_z</dc:title>
|
||||
</cc:Work>
|
||||
<cc:License
|
||||
rdf:about="http://creativecommons.org/licenses/by-sa/4.0/">
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Reproduction" />
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Distribution" />
|
||||
<cc:requires
|
||||
rdf:resource="http://creativecommons.org/ns#Notice" />
|
||||
<cc:requires
|
||||
rdf:resource="http://creativecommons.org/ns#Attribution" />
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
|
||||
<cc:requires
|
||||
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
|
||||
</cc:License>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs26991">
|
||||
<style
|
||||
id="style26989">.cls-1{fill:#545454;}.cls-2{fill:#bf2641;}.cls-3{fill:none;stroke:#545454;stroke-linecap:round;stroke-linejoin:round;}</style>
|
||||
</defs>
|
||||
<title
|
||||
id="title26993">rotate_pos_z</title>
|
||||
<path
|
||||
style="fill:none;stroke:#bf2641;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 12,13 H 22.5"
|
||||
id="path3721"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<path
|
||||
style="fill:none;stroke:#545454;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 12,13 3.514718,21.485282"
|
||||
id="path3723" />
|
||||
<path
|
||||
style="fill:none;stroke:#545454;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 12,13 V 1"
|
||||
id="path3719"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<g
|
||||
id="g3781"
|
||||
transform="rotate(90,12.5,13.5)">
|
||||
<path
|
||||
style="fill:none;stroke:#ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 11,8.5 h 2"
|
||||
id="path3715" />
|
||||
<path
|
||||
style="fill:none;stroke:#ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 11,10.5 h 2"
|
||||
id="path3717" />
|
||||
<g
|
||||
id="g3727"
|
||||
transform="matrix(-1,0,0,1,24.086397,0)">
|
||||
<path
|
||||
id="polygon27005"
|
||||
style="fill:#545454;stroke-width:1"
|
||||
d="M 19.5,3 12.89,3.7399329 17,8 Z"
|
||||
sodipodi:nodetypes="cccc" />
|
||||
<path
|
||||
class="cls-3"
|
||||
d="M 7.1223,5.1991 C 5.6145,5.6437 4.66,6.3073 4.6482,7.063 4.625,8.479 7.917,9.6816 12.0012,9.7489 16.0854,9.8162 19.415,8.7231 19.4382,7.307 19.4492,6.6315 18.7058,6.0046 17.4817,5.5262"
|
||||
id="path27003"
|
||||
style="stroke-width:1.5;stroke-miterlimit:4;stroke-dasharray:none" />
|
||||
</g>
|
||||
</g>
|
||||
<text
|
||||
xml:space="preserve"
|
||||
style="font-style:normal;font-variant:normal;font-weight:600;font-stretch:normal;font-size:9.33333px;line-height:1.25;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans Semi-Bold';letter-spacing:0px;word-spacing:0px;fill:#545454;fill-opacity:1;"
|
||||
x="2.3215709"
|
||||
y="8.7211294"
|
||||
id="text3785"><tspan
|
||||
sodipodi:role="line"
|
||||
id="tspan3783"
|
||||
x="2.3215709"
|
||||
y="8.7211294"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9.33333px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans Bold';fill:#545454;fill-opacity:1;">X</tspan></text>
|
||||
</svg>
|
After Width: | Height: | Size: 5.0 KiB |
|
@ -0,0 +1,136 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
id="Слой_1"
|
||||
data-name="Слой 1"
|
||||
viewBox="0 0 24 24"
|
||||
version="1.1"
|
||||
sodipodi:docname="rotate_pos_y.svg"
|
||||
inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07)">
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="2634"
|
||||
inkscape:window-height="1793"
|
||||
id="namedview30"
|
||||
showgrid="true"
|
||||
inkscape:zoom="27.961538"
|
||||
inkscape:cx="8.2370892"
|
||||
inkscape:cy="19.821405"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="37"
|
||||
inkscape:window-maximized="0"
|
||||
inkscape:document-rotation="0"
|
||||
inkscape:current-layer="Слой_1">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid_kicad"
|
||||
spacingx="0.5"
|
||||
spacingy="0.5"
|
||||
color="#9999ff"
|
||||
opacity="0.13"
|
||||
empspacing="2" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata43">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<cc:license
|
||||
rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" />
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title>rotate_pos_z</dc:title>
|
||||
</cc:Work>
|
||||
<cc:License
|
||||
rdf:about="http://creativecommons.org/licenses/by-sa/4.0/">
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Reproduction" />
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Distribution" />
|
||||
<cc:requires
|
||||
rdf:resource="http://creativecommons.org/ns#Notice" />
|
||||
<cc:requires
|
||||
rdf:resource="http://creativecommons.org/ns#Attribution" />
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
|
||||
<cc:requires
|
||||
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
|
||||
</cc:License>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs26991">
|
||||
<style
|
||||
id="style26989">.cls-1{fill:#545454;}.cls-2{fill:#bf2641;}.cls-3{fill:none;stroke:#545454;stroke-linecap:round;stroke-linejoin:round;}</style>
|
||||
</defs>
|
||||
<title
|
||||
id="title26993">rotate_pos_z</title>
|
||||
<path
|
||||
style="fill:none;stroke:#545454;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 12,13 H 22.5"
|
||||
id="path3721"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<path
|
||||
style="fill:none;stroke:#bf2641;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 12,13 3.514718,21.485282"
|
||||
id="path3723" />
|
||||
<path
|
||||
style="fill:none;stroke:#545454;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 12,13 V 1"
|
||||
id="path3719"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<g
|
||||
id="g3781"
|
||||
transform="rotate(-135,12.135906,12.656531)">
|
||||
<path
|
||||
style="fill:none;stroke:#ffffff;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 10.22137,8.4284744 h 3.535534"
|
||||
id="path3715"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<path
|
||||
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 9.5142631,10.549795 4.2426409,0"
|
||||
id="path3717"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<g
|
||||
id="g3727"
|
||||
transform="matrix(-1,0,0,1,24.086397,0)">
|
||||
<path
|
||||
id="polygon27005"
|
||||
style="fill:#545454;stroke-width:1"
|
||||
d="M 19.5,3 12.89,3.7399329 17,8 Z"
|
||||
sodipodi:nodetypes="cccc" />
|
||||
<path
|
||||
class="cls-3"
|
||||
d="M 7.1223,5.1991 C 5.6145,5.6437 4.66,6.3073 4.6482,7.063 4.625,8.479 7.917,9.6816 12.0012,9.7489 16.0854,9.8162 19.415,8.7231 19.4382,7.307 19.4492,6.6315 18.7058,6.0046 17.4817,5.5262"
|
||||
id="path27003"
|
||||
style="stroke-width:1.5;stroke-miterlimit:4;stroke-dasharray:none" />
|
||||
</g>
|
||||
</g>
|
||||
<text
|
||||
xml:space="preserve"
|
||||
style="font-style:normal;font-variant:normal;font-weight:600;font-stretch:normal;font-size:9.56849px;line-height:1.25;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans Semi-Bold';letter-spacing:0px;word-spacing:0px;fill:#545454;fill-opacity:1;stroke-width:1"
|
||||
x="15.948255"
|
||||
y="8.7775164"
|
||||
id="text3785"
|
||||
transform="scale(0.9754233,1.0251959)"><tspan
|
||||
sodipodi:role="line"
|
||||
id="tspan3783"
|
||||
x="15.948255"
|
||||
y="8.7775164"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9.56849px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans Bold';fill:#545454;fill-opacity:1;stroke-width:1">Y</tspan></text>
|
||||
</svg>
|
After Width: | Height: | Size: 5.2 KiB |
|
@ -0,0 +1,130 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
id="Слой_1"
|
||||
data-name="Слой 1"
|
||||
viewBox="0 0 24 24"
|
||||
version="1.1"
|
||||
sodipodi:docname="rotate_neg_z.svg"
|
||||
inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07)">
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="2523"
|
||||
inkscape:window-height="1793"
|
||||
id="namedview30"
|
||||
showgrid="true"
|
||||
inkscape:zoom="39.543586"
|
||||
inkscape:cx="4.578519"
|
||||
inkscape:cy="15.670556"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="37"
|
||||
inkscape:window-maximized="0"
|
||||
inkscape:document-rotation="0"
|
||||
inkscape:current-layer="Слой_1">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid_kicad"
|
||||
spacingx="0.5"
|
||||
spacingy="0.5"
|
||||
color="#9999ff"
|
||||
opacity="0.13"
|
||||
empspacing="2" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata43">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<cc:license
|
||||
rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" />
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title>rotate_pos_z</dc:title>
|
||||
</cc:Work>
|
||||
<cc:License
|
||||
rdf:about="http://creativecommons.org/licenses/by-sa/4.0/">
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Reproduction" />
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Distribution" />
|
||||
<cc:requires
|
||||
rdf:resource="http://creativecommons.org/ns#Notice" />
|
||||
<cc:requires
|
||||
rdf:resource="http://creativecommons.org/ns#Attribution" />
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
|
||||
<cc:requires
|
||||
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
|
||||
</cc:License>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs26991">
|
||||
<style
|
||||
id="style26989">.cls-1{fill:#545454;}.cls-2{fill:#bf2641;}.cls-3{fill:none;stroke:#545454;stroke-linecap:round;stroke-linejoin:round;}</style>
|
||||
</defs>
|
||||
<title
|
||||
id="title26993">rotate_pos_z</title>
|
||||
<path
|
||||
style="fill:none;stroke:#545454;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 12,13 H 22.5"
|
||||
id="path3721"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<path
|
||||
style="fill:none;stroke:#545454;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 12,13 3.514718,21.485282"
|
||||
id="path3723" />
|
||||
<path
|
||||
style="fill:none;stroke:#bf2641;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 12,13 V 1"
|
||||
id="path3719"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<path
|
||||
style="fill:none;stroke:#ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 11,8.5 h 2"
|
||||
id="path3715" />
|
||||
<path
|
||||
style="fill:none;stroke:#ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 11,10.5 h 2"
|
||||
id="path3717" />
|
||||
<g
|
||||
id="g3727"
|
||||
transform="matrix(-1,0,0,1,24.086397,0)">
|
||||
<path
|
||||
id="polygon27005"
|
||||
style="fill:#545454;stroke-width:1"
|
||||
d="M 19.5,3 12.89,3.7399329 17,8 Z"
|
||||
sodipodi:nodetypes="cccc" />
|
||||
<path
|
||||
class="cls-3"
|
||||
d="M 7.1223,5.1991 C 5.6145,5.6437 4.66,6.3073 4.6482,7.063 4.625,8.479 7.917,9.6816 12.0012,9.7489 16.0854,9.8162 19.415,8.7231 19.4382,7.307 19.4492,6.6315 18.7058,6.0046 17.4817,5.5262"
|
||||
id="path27003"
|
||||
style="stroke-width:1.5;stroke-miterlimit:4;stroke-dasharray:none" />
|
||||
</g>
|
||||
<text
|
||||
xml:space="preserve"
|
||||
style="font-style:normal;font-variant:normal;font-weight:600;font-stretch:normal;font-size:9.56849px;line-height:1.25;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans Semi-Bold';letter-spacing:0px;word-spacing:0px;fill:#545454;fill-opacity:1;stroke-width:1"
|
||||
x="13.110791"
|
||||
y="22.435358"
|
||||
id="text3785"
|
||||
transform="scale(0.97542333,1.0251959)"><tspan
|
||||
sodipodi:role="line"
|
||||
id="tspan3783"
|
||||
x="13.110791"
|
||||
y="22.435358"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:9.56849px;font-family:'Noto Sans';-inkscape-font-specification:'Noto Sans Bold';fill:#545454;fill-opacity:1;stroke-width:1">Z</tspan></text>
|
||||
</svg>
|
After Width: | Height: | Size: 4.9 KiB |
|
@ -1,40 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" id="Слой_1" data-name="Слой 1" viewBox="0 0 24 24" version="1.1" sodipodi:docname="rotate_neg_x.svg" inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07)">
|
||||
<sodipodi:namedview pagecolor="#ffffff" bordercolor="#666666" borderopacity="1" objecttolerance="10" gridtolerance="10" guidetolerance="10" inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:window-width="1609" inkscape:window-height="1286" id="namedview30" showgrid="true" inkscape:zoom="27.961538" inkscape:cx="3.3259971" inkscape:cy="13" inkscape:window-x="0" inkscape:window-y="37" inkscape:window-maximized="0" inkscape:document-rotation="0" inkscape:current-layer="Слой_1">
|
||||
<inkscape:grid type="xygrid" id="grid_kicad" spacingx="0.5" spacingy="0.5" color="#9999ff" opacity="0.13" empspacing="2" />
|
||||
</sodipodi:namedview>
|
||||
<metadata id="metadata43">
|
||||
<rdf:RDF>
|
||||
<cc:Work rdf:about="">
|
||||
<cc:license rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" />
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title>add_arc</dc:title>
|
||||
</cc:Work>
|
||||
<cc:License rdf:about="http://creativecommons.org/licenses/by-sa/4.0/">
|
||||
<cc:permits rdf:resource="http://creativecommons.org/ns#Reproduction" />
|
||||
<cc:permits rdf:resource="http://creativecommons.org/ns#Distribution" />
|
||||
<cc:requires rdf:resource="http://creativecommons.org/ns#Notice" />
|
||||
<cc:requires rdf:resource="http://creativecommons.org/ns#Attribution" />
|
||||
<cc:permits rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
|
||||
<cc:requires rdf:resource="http://creativecommons.org/ns#ShareAlike" />
|
||||
</cc:License>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs id="defs26881">
|
||||
<style id="style26879">.cls-1{fill:#545454;}.cls-2{fill:#bf2641;}.cls-3{fill:none;stroke:#545454;stroke-linecap:round;stroke-linejoin:round;}</style>
|
||||
</defs>
|
||||
<title id="title26883">rotate_neg_x</title>
|
||||
<path class="cls-1" d="M 4.6115,5.59 5.7694,3.6934 H 7.3847 L 5.4164,6.4283 7.4427,9.2248 H 5.8447 L 4.6347,7.2827 3.4246,9.2248 H 1.8157 L 3.842,6.4283 1.8728,3.6934 h 1.598 z" id="path26885" />
|
||||
<path class="cls-1" d="M 0.9663,24 A 0.9624,0.9624 0 0 1 0.3093,22.331 C 0.7785,21.8482 5.5552,15.956 8.47,12.3377 a 0.9722,0.9722 0 0 1 1.3593,-0.1483 0.9621,0.9621 0 0 1 0.1488,1.3544 C 7.0235,17.21 2.0062,23.4138 1.5988,23.7658 A 0.9679,0.9679 0 0 1 0.9663,24 Z" id="path26887" />
|
||||
<path class="cls-1" d="M 9.2241,13.9036 A 0.9649,0.9649 0 0 1 8.2576,12.9407 V 0.9629 a 0.9665,0.9665 0 0 1 1.9329,0 v 11.9778 a 0.9649,0.9649 0 0 1 -0.9664,0.9629 z" id="path26889" />
|
||||
<path class="cls-2" d="M 23.0336,13.9036 H 9.2241 a 0.9629,0.9629 0 1 1 0,-1.9258 h 13.81 a 0.9629,0.9629 0 1 1 0,1.9258 z" id="path26891" />
|
||||
<path class="cls-3" d="m 21.2649,15.2356 c -0.3877,2.6447 -1.2959,4.5 -2.3543,4.5 -1.4111,0 -2.5551,-3.2992 -2.5551,-7.3688 0,-4.0696 1.1445,-7.3682 2.5551,-7.3682 0.7,0 1.178,0.7681 1.4974,1.6653" id="path26893" />
|
||||
<polygon class="cls-1" points="22.21,12.027 22.543,6.425 19.698,7.009 " id="polygon26895" transform="translate(-1,-1)" />
|
||||
</svg>
|
Before Width: | Height: | Size: 3.6 KiB |
|
@ -1,40 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" id="Слой_1" data-name="Слой 1" viewBox="0 0 24 24" version="1.1" sodipodi:docname="rotate_neg_y.svg" inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07)">
|
||||
<sodipodi:namedview pagecolor="#ffffff" bordercolor="#666666" borderopacity="1" objecttolerance="10" gridtolerance="10" guidetolerance="10" inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:window-width="1609" inkscape:window-height="1286" id="namedview30" showgrid="true" inkscape:zoom="27.961538" inkscape:cx="3.3259971" inkscape:cy="13" inkscape:window-x="0" inkscape:window-y="37" inkscape:window-maximized="0" inkscape:document-rotation="0" inkscape:current-layer="Слой_1">
|
||||
<inkscape:grid type="xygrid" id="grid_kicad" spacingx="0.5" spacingy="0.5" color="#9999ff" opacity="0.13" empspacing="2" />
|
||||
</sodipodi:namedview>
|
||||
<metadata id="metadata43">
|
||||
<rdf:RDF>
|
||||
<cc:Work rdf:about="">
|
||||
<cc:license rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" />
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title>add_arc</dc:title>
|
||||
</cc:Work>
|
||||
<cc:License rdf:about="http://creativecommons.org/licenses/by-sa/4.0/">
|
||||
<cc:permits rdf:resource="http://creativecommons.org/ns#Reproduction" />
|
||||
<cc:permits rdf:resource="http://creativecommons.org/ns#Distribution" />
|
||||
<cc:requires rdf:resource="http://creativecommons.org/ns#Notice" />
|
||||
<cc:requires rdf:resource="http://creativecommons.org/ns#Attribution" />
|
||||
<cc:permits rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
|
||||
<cc:requires rdf:resource="http://creativecommons.org/ns#ShareAlike" />
|
||||
</cc:License>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs id="defs26903">
|
||||
<style id="style26901">.cls-1{fill:#545454;}.cls-2{fill:#bf2641;}.cls-3{fill:none;stroke:#545454;stroke-linecap:round;stroke-linejoin:round;}</style>
|
||||
</defs>
|
||||
<title id="title26905">rotate_neg_y</title>
|
||||
<path class="cls-1" d="M 22.991,13.8577 H 12.0118 a 1.0429,1.0429 0 0 1 0,-2.0858 H 22.991 a 1.0429,1.0429 0 0 1 0,2.0858 z" id="path26907" />
|
||||
<path class="cls-1" d="M 12.0118,13.8577 A 1.0393,1.0393 0 0 1 10.9766,12.8148 V 1.0195 a 1.0352,1.0352 0 1 1 2.07,0 v 11.7953 a 1.0393,1.0393 0 0 1 -1.0348,1.0429 z" id="path26909" />
|
||||
<path class="cls-1" d="m 17.5622,18.0471 0.1419,0.5679 h 0.035 l 1.3968,-3.9768 h 1.567 l -2.64,6.5543 a 2.8942,2.8942 0 0 1 -0.7129,1.0155 1.862,1.862 0 0 1 -1.3026,0.4211 2.4405,2.4405 0 0 1 -0.38,-0.0323 C 15.5322,22.5762 15.401,22.5517 15.2756,22.5233 l 0.1594,-0.989 c 0.0506,0.0039 0.1235,0.0088 0.2178,0.0156 0.0943,0.0068 0.1652,0.0108 0.2119,0.0108 a 0.8342,0.8342 0 0 0 0.6221,-0.237 2.004,2.004 0 0 0 0.38,-0.5464 l 0.2352,-0.5161 -2.3154,-5.623 h 1.5611 z" id="path26911" />
|
||||
<path class="cls-2" d="m 1.0617,23.9766 a 1.03,1.03 0 0 1 -0.7825,-0.36 1.0507,1.0507 0 0 1 0.103,-1.4719 c 0.313,-0.2732 6.7042,-6.2693 10.9239,-10.2333 a 1.029,1.029 0 0 1 1.4629,0.0519 1.0476,1.0476 0 0 1 -0.0515,1.4738 C 11.6366,14.4522 2.1407,23.3714 1.7363,23.7229 a 1.0225,1.0225 0 0 1 -0.6746,0.2537 z" id="path26913" />
|
||||
<path class="cls-3" d="m 7.2813,20.1308 c 2.0627,1.9369 4.0815,2.866 4.9628,2.1352 1.1285,-0.9355 -0.0339,-4.2364 -2.5959,-7.3727 -2.562,-3.1363 -5.554,-4.9206 -6.6821,-3.9851 -0.46,0.3815 -0.5393,1.1564 -0.2979,2.1531" id="path26915" />
|
||||
<polygon class="cls-1" points="5.629,18.04 4.682,12.508 2.043,13.723 " id="polygon26917" transform="translate(-1,-1)" />
|
||||
</svg>
|
Before Width: | Height: | Size: 3.9 KiB |
|
@ -1,40 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" id="Слой_1" data-name="Слой 1" viewBox="0 0 24 24" version="1.1" sodipodi:docname="rotate_neg_z.svg" inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07)">
|
||||
<sodipodi:namedview pagecolor="#ffffff" bordercolor="#666666" borderopacity="1" objecttolerance="10" gridtolerance="10" guidetolerance="10" inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:window-width="1609" inkscape:window-height="1286" id="namedview30" showgrid="true" inkscape:zoom="27.961538" inkscape:cx="3.3259971" inkscape:cy="13" inkscape:window-x="0" inkscape:window-y="37" inkscape:window-maximized="0" inkscape:document-rotation="0" inkscape:current-layer="Слой_1">
|
||||
<inkscape:grid type="xygrid" id="grid_kicad" spacingx="0.5" spacingy="0.5" color="#9999ff" opacity="0.13" empspacing="2" />
|
||||
</sodipodi:namedview>
|
||||
<metadata id="metadata43">
|
||||
<rdf:RDF>
|
||||
<cc:Work rdf:about="">
|
||||
<cc:license rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" />
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title>add_arc</dc:title>
|
||||
</cc:Work>
|
||||
<cc:License rdf:about="http://creativecommons.org/licenses/by-sa/4.0/">
|
||||
<cc:permits rdf:resource="http://creativecommons.org/ns#Reproduction" />
|
||||
<cc:permits rdf:resource="http://creativecommons.org/ns#Distribution" />
|
||||
<cc:requires rdf:resource="http://creativecommons.org/ns#Notice" />
|
||||
<cc:requires rdf:resource="http://creativecommons.org/ns#Attribution" />
|
||||
<cc:permits rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
|
||||
<cc:requires rdf:resource="http://creativecommons.org/ns#ShareAlike" />
|
||||
</cc:License>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs id="defs26925">
|
||||
<style id="style26923">.cls-1{fill:#545454;}.cls-2{fill:#bf2641;}.cls-3{fill:none;stroke:#545454;stroke-linecap:round;stroke-linejoin:round;}</style>
|
||||
</defs>
|
||||
<title id="title26927">rotate_neg_z</title>
|
||||
<path class="cls-1" d="m 13.8017,21.1384 h 3.4194 v 1.0254 h -5.2 v -0.84 l 3.23,-3.8256 h -3.1645 v -1.0259 h 4.98 v 0.8059 z" id="path26929" />
|
||||
<path class="cls-1" d="M 23.0335,13.8 H 12.0112 a 0.97,0.97 0 0 1 0,-1.94 h 11.0223 a 0.97,0.97 0 0 1 0,1.94 z" id="path26931" />
|
||||
<path class="cls-1" d="M 0.9672,23.97 A 0.97,0.97 0 0 1 0.3328,22.2671 c 0.3077,-0.2686 6.7581,-6.2989 11.02,-10.2875 A 0.9682,0.9682 0 0 1 12.67,13.398 C 11.5793,14.4188 2.0017,23.3832 1.5979,23.7338 A 0.9612,0.9612 0 0 1 0.9672,23.97 Z" id="path26933" />
|
||||
<path class="cls-2" d="M 12.0112,13.8 A 0.9683,0.9683 0 0 1 11.0448,12.83 V 0.94 a 0.9665,0.9665 0 1 1 1.9329,0 v 11.89 a 0.9683,0.9683 0 0 1 -0.9665,0.97 z" id="path26935" />
|
||||
<path class="cls-3" d="m 14.96,4.87 c 2.648,0.4331 4.4954,1.375 4.4778,2.4369 C 19.4149,8.723 16.085,9.8162 12.0008,9.7488 7.9166,9.6814 4.3643,8.4792 4.3643,7.063 c 0,-0.7927 0.8,-1.3031 1.7309,-1.6288" id="path26937" />
|
||||
<polygon class="cls-1" points="11.488,5.815 5.903,5.268 6.378,8.134 " id="polygon26939" transform="translate(-1,-1)" />
|
||||
</svg>
|
Before Width: | Height: | Size: 3.5 KiB |
|
@ -1,40 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" id="Слой_1" data-name="Слой 1" viewBox="0 0 24 24" version="1.1" sodipodi:docname="rotate_pos_x.svg" inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07)">
|
||||
<sodipodi:namedview pagecolor="#ffffff" bordercolor="#666666" borderopacity="1" objecttolerance="10" gridtolerance="10" guidetolerance="10" inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:window-width="1609" inkscape:window-height="1286" id="namedview30" showgrid="true" inkscape:zoom="27.961538" inkscape:cx="3.3259971" inkscape:cy="13" inkscape:window-x="0" inkscape:window-y="37" inkscape:window-maximized="0" inkscape:document-rotation="0" inkscape:current-layer="Слой_1">
|
||||
<inkscape:grid type="xygrid" id="grid_kicad" spacingx="0.5" spacingy="0.5" color="#9999ff" opacity="0.13" empspacing="2" />
|
||||
</sodipodi:namedview>
|
||||
<metadata id="metadata43">
|
||||
<rdf:RDF>
|
||||
<cc:Work rdf:about="">
|
||||
<cc:license rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" />
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title>add_arc</dc:title>
|
||||
</cc:Work>
|
||||
<cc:License rdf:about="http://creativecommons.org/licenses/by-sa/4.0/">
|
||||
<cc:permits rdf:resource="http://creativecommons.org/ns#Reproduction" />
|
||||
<cc:permits rdf:resource="http://creativecommons.org/ns#Distribution" />
|
||||
<cc:requires rdf:resource="http://creativecommons.org/ns#Notice" />
|
||||
<cc:requires rdf:resource="http://creativecommons.org/ns#Attribution" />
|
||||
<cc:permits rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
|
||||
<cc:requires rdf:resource="http://creativecommons.org/ns#ShareAlike" />
|
||||
</cc:License>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs id="defs26947">
|
||||
<style id="style26945">.cls-1{fill:#545454;}.cls-2{fill:#bf2641;}.cls-3{fill:none;stroke:#545454;stroke-linecap:round;stroke-linejoin:round;}</style>
|
||||
</defs>
|
||||
<title id="title26949">rotate_pos_x</title>
|
||||
<path class="cls-1" d="M 4.6115,5.59 5.7694,3.6934 H 7.3847 L 5.4164,6.4283 7.4427,9.2248 H 5.8447 L 4.6347,7.2827 3.4246,9.2248 H 1.8157 L 3.842,6.4283 1.8728,3.6934 h 1.598 z" id="path26951" />
|
||||
<path class="cls-1" d="M 0.9663,24 A 0.9624,0.9624 0 0 1 0.3093,22.331 C 0.7785,21.8482 5.5552,15.956 8.47,12.3377 a 0.9722,0.9722 0 0 1 1.3593,-0.1483 0.9621,0.9621 0 0 1 0.1488,1.3544 C 7.0235,17.21 2.0062,23.4138 1.5988,23.7658 A 0.9679,0.9679 0 0 1 0.9663,24 Z" id="path26953" />
|
||||
<path class="cls-1" d="M 9.2241,13.9036 A 0.9649,0.9649 0 0 1 8.2576,12.9407 V 0.9629 a 0.9665,0.9665 0 0 1 1.9329,0 v 11.9778 a 0.9649,0.9649 0 0 1 -0.9664,0.9629 z" id="path26955" />
|
||||
<path class="cls-2" d="M 23.0336,13.9036 H 9.2241 a 0.9629,0.9629 0 1 1 0,-1.9258 h 13.81 a 0.9629,0.9629 0 1 1 0,1.9258 z" id="path26957" />
|
||||
<path class="cls-3" d="m 20.8762,7.433 c -0.53,-1.4948 -1.2961,-2.4344 -2.1487,-2.4344 -1.5979,0 -2.8933,3.299 -2.8933,7.3687 0,4.0697 1.2958,7.6347 2.8933,7.6347 0.6382,0 1.2286,-0.6021 1.7068,-1.5645" id="path26959" />
|
||||
<polygon class="cls-1" points="22.583,15.154 19.658,19.943 22.446,20.764 " id="polygon26961" transform="translate(-1,-1)" />
|
||||
</svg>
|
Before Width: | Height: | Size: 3.6 KiB |
|
@ -1,40 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" id="Слой_1" data-name="Слой 1" viewBox="0 0 24 24" version="1.1" sodipodi:docname="rotate_pos_y.svg" inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07)">
|
||||
<sodipodi:namedview pagecolor="#ffffff" bordercolor="#666666" borderopacity="1" objecttolerance="10" gridtolerance="10" guidetolerance="10" inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:window-width="1609" inkscape:window-height="1286" id="namedview30" showgrid="true" inkscape:zoom="27.961538" inkscape:cx="3.3259971" inkscape:cy="13" inkscape:window-x="0" inkscape:window-y="37" inkscape:window-maximized="0" inkscape:document-rotation="0" inkscape:current-layer="Слой_1">
|
||||
<inkscape:grid type="xygrid" id="grid_kicad" spacingx="0.5" spacingy="0.5" color="#9999ff" opacity="0.13" empspacing="2" />
|
||||
</sodipodi:namedview>
|
||||
<metadata id="metadata43">
|
||||
<rdf:RDF>
|
||||
<cc:Work rdf:about="">
|
||||
<cc:license rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" />
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title>add_arc</dc:title>
|
||||
</cc:Work>
|
||||
<cc:License rdf:about="http://creativecommons.org/licenses/by-sa/4.0/">
|
||||
<cc:permits rdf:resource="http://creativecommons.org/ns#Reproduction" />
|
||||
<cc:permits rdf:resource="http://creativecommons.org/ns#Distribution" />
|
||||
<cc:requires rdf:resource="http://creativecommons.org/ns#Notice" />
|
||||
<cc:requires rdf:resource="http://creativecommons.org/ns#Attribution" />
|
||||
<cc:permits rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
|
||||
<cc:requires rdf:resource="http://creativecommons.org/ns#ShareAlike" />
|
||||
</cc:License>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs id="defs26969">
|
||||
<style id="style26967">.cls-1{fill:#545454;}.cls-2{fill:#bf2641;}.cls-3{fill:none;stroke:#545454;stroke-linecap:round;stroke-linejoin:round;}</style>
|
||||
</defs>
|
||||
<title id="title26971">rotate_pos_y</title>
|
||||
<path class="cls-1" d="M 22.991,13.8577 H 12.0118 a 1.0429,1.0429 0 0 1 0,-2.0858 H 22.991 a 1.0429,1.0429 0 0 1 0,2.0858 z" id="path26973" />
|
||||
<path class="cls-1" d="M 12.0118,13.8577 A 1.0393,1.0393 0 0 1 10.9766,12.8148 V 1.0195 a 1.0352,1.0352 0 1 1 2.07,0 v 11.7953 a 1.0393,1.0393 0 0 1 -1.0348,1.0429 z" id="path26975" />
|
||||
<path class="cls-1" d="m 17.5622,18.0471 0.1419,0.5679 h 0.035 l 1.3968,-3.9768 h 1.567 l -2.64,6.5543 a 2.8942,2.8942 0 0 1 -0.7129,1.0155 1.862,1.862 0 0 1 -1.3026,0.4211 2.4405,2.4405 0 0 1 -0.38,-0.0323 C 15.5322,22.5762 15.401,22.5517 15.2756,22.5233 l 0.1594,-0.989 c 0.0506,0.0039 0.1235,0.0088 0.2178,0.0156 0.0943,0.0068 0.1652,0.0108 0.2119,0.0108 a 0.8342,0.8342 0 0 0 0.6221,-0.237 2.004,2.004 0 0 0 0.38,-0.5464 l 0.2352,-0.5161 -2.3154,-5.623 h 1.5611 z" id="path26977" />
|
||||
<path class="cls-2" d="m 1.0617,23.9766 a 1.03,1.03 0 0 1 -0.7825,-0.36 1.0507,1.0507 0 0 1 0.103,-1.4719 c 0.313,-0.2732 6.7042,-6.2693 10.9239,-10.2333 a 1.029,1.029 0 0 1 1.4629,0.0519 1.0476,1.0476 0 0 1 -0.0515,1.4738 C 11.6366,14.4522 2.1407,23.3714 1.7363,23.7229 a 1.0225,1.0225 0 0 1 -0.6746,0.2537 z" id="path26979" />
|
||||
<path class="cls-3" d="M 3.917,15.9373 C 2.562,13.6419 2.12,11.61 2.9661,10.9082 c 1.1281,-0.9355 4.12,0.8487 6.6821,3.9851 2.5621,3.1364 3.7244,6.4372 2.5959,7.3727 -0.4345,0.36 -1.1457,0.3171 -2.0024,-0.0516" id="path26981" />
|
||||
<polygon class="cls-1" points="7.665,20.597 11.301,24.871 12.951,22.48 " id="polygon26983" transform="translate(-1,-1)" />
|
||||
</svg>
|
Before Width: | Height: | Size: 3.9 KiB |
|
@ -1,40 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" id="Слой_1" data-name="Слой 1" viewBox="0 0 24 24" version="1.1" sodipodi:docname="rotate_pos_z.svg" inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07)">
|
||||
<sodipodi:namedview pagecolor="#ffffff" bordercolor="#666666" borderopacity="1" objecttolerance="10" gridtolerance="10" guidetolerance="10" inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:window-width="1609" inkscape:window-height="1286" id="namedview30" showgrid="true" inkscape:zoom="27.961538" inkscape:cx="3.3259971" inkscape:cy="13" inkscape:window-x="0" inkscape:window-y="37" inkscape:window-maximized="0" inkscape:document-rotation="0" inkscape:current-layer="Слой_1">
|
||||
<inkscape:grid type="xygrid" id="grid_kicad" spacingx="0.5" spacingy="0.5" color="#9999ff" opacity="0.13" empspacing="2" />
|
||||
</sodipodi:namedview>
|
||||
<metadata id="metadata43">
|
||||
<rdf:RDF>
|
||||
<cc:Work rdf:about="">
|
||||
<cc:license rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" />
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title>add_arc</dc:title>
|
||||
</cc:Work>
|
||||
<cc:License rdf:about="http://creativecommons.org/licenses/by-sa/4.0/">
|
||||
<cc:permits rdf:resource="http://creativecommons.org/ns#Reproduction" />
|
||||
<cc:permits rdf:resource="http://creativecommons.org/ns#Distribution" />
|
||||
<cc:requires rdf:resource="http://creativecommons.org/ns#Notice" />
|
||||
<cc:requires rdf:resource="http://creativecommons.org/ns#Attribution" />
|
||||
<cc:permits rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
|
||||
<cc:requires rdf:resource="http://creativecommons.org/ns#ShareAlike" />
|
||||
</cc:License>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs id="defs26991">
|
||||
<style id="style26989">.cls-1{fill:#545454;}.cls-2{fill:#bf2641;}.cls-3{fill:none;stroke:#545454;stroke-linecap:round;stroke-linejoin:round;}</style>
|
||||
</defs>
|
||||
<title id="title26993">rotate_pos_z</title>
|
||||
<path class="cls-1" d="m 13.8023,21.1384 h 3.4194 v 1.0254 h -5.2 v -0.84 l 3.23,-3.8256 h -3.1645 v -1.0259 h 4.98 v 0.8059 z" id="path26995" />
|
||||
<path class="cls-1" d="M 23.0341,13.8 H 12.0118 a 0.97,0.97 0 0 1 0,-1.94 h 11.0223 a 0.97,0.97 0 0 1 0,1.94 z" id="path26997" />
|
||||
<path class="cls-1" d="M 0.9678,23.97 A 0.97,0.97 0 0 1 0.3334,22.2671 c 0.3077,-0.2686 6.7581,-6.2989 11.02,-10.2875 a 0.9682,0.9682 0 0 1 1.3177,1.4188 C 11.58,14.4188 2.0023,23.3832 1.5985,23.7338 A 0.961,0.961 0 0 1 0.9678,23.97 Z" id="path26999" />
|
||||
<path class="cls-2" d="M 12.0118,13.8 A 0.9683,0.9683 0 0 1 11.0454,12.83 V 0.94 a 0.9665,0.9665 0 1 1 1.9329,0 v 11.89 a 0.9683,0.9683 0 0 1 -0.9665,0.97 z" id="path27001" />
|
||||
<path class="cls-3" d="M 7.1223,5.1991 C 5.6145,5.6437 4.66,6.3073 4.6482,7.063 4.625,8.479 7.917,9.6816 12.0012,9.7489 16.0854,9.8162 19.415,8.7231 19.4382,7.307 19.4492,6.6315 18.7058,6.0046 17.4817,5.5262" id="path27003" />
|
||||
<polygon class="cls-1" points="14.146,5.586 19.075,8.268 19.756,5.443 " id="polygon27005" transform="translate(-1,-1)" />
|
||||
</svg>
|
Before Width: | Height: | Size: 3.5 KiB |