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
314aa18e
Commit
314aa18e
authored
Feb 16, 2011
by
Marco Mattila
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix 3d drawing of board edges defined in modules.
parent
e557b388
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
85 additions
and
30 deletions
+85
-30
3d_draw.cpp
3d-viewer/3d_draw.cpp
+85
-30
No files found.
3d-viewer/3d_draw.cpp
View file @
314aa18e
...
@@ -728,13 +728,10 @@ void EDGE_MODULE::Draw3D( Pcb3D_GLCanvas* glcanvas )
...
@@ -728,13 +728,10 @@ void EDGE_MODULE::Draw3D( Pcb3D_GLCanvas* glcanvas )
int
color
=
g_ColorsSettings
.
GetLayerColor
(
m_Layer
);
int
color
=
g_ColorsSettings
.
GetLayerColor
(
m_Layer
);
SetGLColor
(
color
);
SetGLColor
(
color
);
glNormal3f
(
0.0
,
0.0
,
(
m_Layer
==
LAYER_N_BACK
)
?
-
1.0
:
1.0
);
dx
=
m_End
.
x
;
dx
=
m_End
.
x
;
dy
=
m_End
.
y
;
dy
=
m_End
.
y
;
zpos
=
g_Parm_3D_Visu
.
m_LayerZcoord
[
m_Layer
];
w
=
m_Width
*
g_Parm_3D_Visu
.
m_BoardScale
;
w
=
m_Width
*
g_Parm_3D_Visu
.
m_BoardScale
;
x
=
m_Start
.
x
*
g_Parm_3D_Visu
.
m_BoardScale
;
x
=
m_Start
.
x
*
g_Parm_3D_Visu
.
m_BoardScale
;
y
=
m_Start
.
y
*
g_Parm_3D_Visu
.
m_BoardScale
;
y
=
m_Start
.
y
*
g_Parm_3D_Visu
.
m_BoardScale
;
...
@@ -742,6 +739,13 @@ void EDGE_MODULE::Draw3D( Pcb3D_GLCanvas* glcanvas )
...
@@ -742,6 +739,13 @@ void EDGE_MODULE::Draw3D( Pcb3D_GLCanvas* glcanvas )
fy
=
dy
*
g_Parm_3D_Visu
.
m_BoardScale
;
fy
=
dy
*
g_Parm_3D_Visu
.
m_BoardScale
;
if
(
m_Layer
==
EDGE_N
)
{
for
(
int
layer
=
0
;
layer
<
g_Parm_3D_Visu
.
m_Layers
;
layer
++
)
{
glNormal3f
(
0.0
,
0.0
,
(
layer
==
LAYER_N_BACK
)
?
-
1.0
:
1.0
);
zpos
=
g_Parm_3D_Visu
.
m_LayerZcoord
[
layer
];
switch
(
m_Shape
)
switch
(
m_Shape
)
{
{
case
S_SEGMENT
:
case
S_SEGMENT
:
...
@@ -762,8 +766,10 @@ void EDGE_MODULE::Draw3D( Pcb3D_GLCanvas* glcanvas )
...
@@ -762,8 +766,10 @@ void EDGE_MODULE::Draw3D( Pcb3D_GLCanvas* glcanvas )
// which are relative to module position and module orientation = 0
// which are relative to module position and module orientation = 0
std
::
vector
<
wxPoint
>
points
=
m_PolyPoints
;
std
::
vector
<
wxPoint
>
points
=
m_PolyPoints
;
MODULE
*
module
=
(
MODULE
*
)
m_Parent
;
MODULE
*
module
=
(
MODULE
*
)
m_Parent
;
if
(
module
==
NULL
)
if
(
module
==
NULL
)
break
;
break
;
for
(
unsigned
ii
=
0
;
ii
<
points
.
size
();
ii
++
)
for
(
unsigned
ii
=
0
;
ii
<
points
.
size
();
ii
++
)
{
{
wxPoint
&
pt
=
points
[
ii
];
wxPoint
&
pt
=
points
[
ii
];
...
@@ -781,6 +787,55 @@ void EDGE_MODULE::Draw3D( Pcb3D_GLCanvas* glcanvas )
...
@@ -781,6 +787,55 @@ void EDGE_MODULE::Draw3D( Pcb3D_GLCanvas* glcanvas )
D
(
printf
(
"%s"
,
CONV_TO_UTF8
(
s
)
);
)
D
(
printf
(
"%s"
,
CONV_TO_UTF8
(
s
)
);
)
break
;
break
;
}
}
}
}
else
{
glNormal3f
(
0.0
,
0.0
,
(
m_Layer
==
LAYER_N_BACK
)
?
-
1.0
:
1.0
);
zpos
=
g_Parm_3D_Visu
.
m_LayerZcoord
[
m_Layer
];
switch
(
m_Shape
)
{
case
S_SEGMENT
:
Draw3D_FilledSegment
(
x
,
-
y
,
fx
,
-
fy
,
w
,
zpos
);
break
;
case
S_CIRCLE
:
Draw3D_CircleSegment
(
x
,
-
y
,
fx
,
-
fy
,
w
,
zpos
);
break
;
case
S_ARC
:
Draw3D_ArcSegment
(
x
,
-
y
,
fx
,
-
fy
,
(
double
)
m_Angle
,
w
,
zpos
);
break
;
case
S_POLYGON
:
{
// We must compute true coordinates from m_PolyPoints
// which are relative to module position and module orientation = 0
std
::
vector
<
wxPoint
>
points
=
m_PolyPoints
;
MODULE
*
module
=
(
MODULE
*
)
m_Parent
;
if
(
module
==
NULL
)
break
;
for
(
unsigned
ii
=
0
;
ii
<
points
.
size
();
ii
++
)
{
wxPoint
&
pt
=
points
[
ii
];
RotatePoint
(
&
pt
.
x
,
&
pt
.
y
,
module
->
m_Orient
);
pt
+=
module
->
m_Pos
;
}
glcanvas
->
Draw3D_Polygon
(
points
,
zpos
);
}
break
;
default
:
s
.
Printf
(
wxT
(
"Error: Shape nr %d not implemented!
\n
"
),
m_Shape
);
D
(
printf
(
"%s"
,
CONV_TO_UTF8
(
s
)
);
)
break
;
}
}
}
}
...
...
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