Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
K
kicad-source-mirror
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Commits
Open sidebar
Elphel
kicad-source-mirror
Commits
8e437b23
Commit
8e437b23
authored
Feb 04, 2009
by
vesa_solonen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
New zoom factors
parent
b833a46b
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
5 deletions
+11
-5
CHANGELOG.txt
CHANGELOG.txt
+6
-0
class_screen.cpp
eeschema/class_screen.cpp
+2
-2
classpcb.cpp
pcbnew/classpcb.cpp
+3
-3
No files found.
CHANGELOG.txt
View file @
8e437b23
...
...
@@ -5,6 +5,12 @@ Started 2007-June-11
Please add newer entries at the top, list the date and your name with
email address.
2009-Feb-4 UPDATE Vesa Solonen <vesa.solonen@hut.fi>
================================================================================
++pcbnew:
++eeschema:
Zoom factors in 3th root series of 2. So two intermediates between half/double scale.
2009-Feb-04 UPDATE Wayne Stambaugh <stambaughw@verizon.net>
================================================================================
++All
...
...
eeschema/class_screen.cpp
View file @
8e437b23
...
...
@@ -79,8 +79,8 @@ void SCH_ITEM::Place( WinEDA_SchematicFrame* frame, wxDC* DC )
/* Class SCH_SCREEN: classe de gestion d'un affichage pour schematique */
/***********************************************************************/
/* Default EESchema zoom values. */
static
int
SchematicZoomList
[]
=
{
10
,
1
5
,
20
,
40
,
80
,
160
,
320
,
640
,
1280
};
/* Default EESchema zoom values.
3th root of 2 series up to 32
*/
static
int
SchematicZoomList
[]
=
{
10
,
1
3
,
16
,
20
,
25
,
32
,
40
,
50
,
63
,
80
,
101
,
127
,
160
,
202
,
254
,
320
,
640
,
1280
};
#define SCHEMATIC_ZOOM_LIST_CNT ( sizeof( SchematicZoomList ) / \
sizeof( int ) )
...
...
pcbnew/classpcb.cpp
View file @
8e437b23
...
...
@@ -12,9 +12,9 @@
#include "id.h"
/* Default PCB zoom coefficients. */
static
const
int
PcbZoomList
[]
=
{
5
,
10
,
15
,
20
,
40
,
80
,
160
,
320
,
640
,
1280
,
2560
,
5120
,
10240
,
20480
};
/* Default PCB zoom coefficients.
3th root of 2 series up to 256
*/
static
const
int
PcbZoomList
[]
=
{
5
,
6
,
8
,
10
,
13
,
16
,
20
,
25
,
32
,
40
,
50
,
63
,
80
,
101
,
127
,
160
,
202
,
254
,
320
,
403
,
508
,
640
,
806
,
1016
,
1280
,
1613
,
2032
,
2560
,
5120
,
10240
,
20480
};
#define PCB_ZOOM_LIST_CNT ( sizeof( PcbZoomList ) / sizeof( int ) )
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment