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
71a1ad6f
Commit
71a1ad6f
authored
Apr 16, 2013
by
Maciej Suminski
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed drawing polygons using Cairo-based GAL.
parent
4eadf2ef
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
0 deletions
+5
-0
cairo_gal.cpp
common/gal/cairo/cairo_gal.cpp
+5
-0
No files found.
common/gal/cairo/cairo_gal.cpp
View file @
71a1ad6f
...
@@ -305,6 +305,7 @@ void CAIRO_GAL::DrawCircle( VECTOR2D aCenterPoint, double aRadius )
...
@@ -305,6 +305,7 @@ void CAIRO_GAL::DrawCircle( VECTOR2D aCenterPoint, double aRadius )
// A circle is drawn using an arc
// A circle is drawn using an arc
cairo_new_sub_path
(
cairoImage
);
cairo_new_sub_path
(
cairoImage
);
cairo_arc
(
cairoImage
,
aCenterPoint
.
x
,
aCenterPoint
.
y
,
aRadius
,
0.0
,
2
*
M_PI
);
cairo_arc
(
cairoImage
,
aCenterPoint
.
x
,
aCenterPoint
.
y
,
aRadius
,
0.0
,
2
*
M_PI
);
isElementAdded
=
true
;
isElementAdded
=
true
;
}
}
...
@@ -314,6 +315,7 @@ void CAIRO_GAL::DrawArc( VECTOR2D aCenterPoint, double aRadius, double aStartAng
...
@@ -314,6 +315,7 @@ void CAIRO_GAL::DrawArc( VECTOR2D aCenterPoint, double aRadius, double aStartAng
{
{
cairo_new_sub_path
(
cairoImage
);
cairo_new_sub_path
(
cairoImage
);
cairo_arc
(
cairoImage
,
aCenterPoint
.
x
,
aCenterPoint
.
y
,
aRadius
,
aStartAngle
,
aEndAngle
);
cairo_arc
(
cairoImage
,
aCenterPoint
.
x
,
aCenterPoint
.
y
,
aRadius
,
aStartAngle
,
aEndAngle
);
isElementAdded
=
true
;
isElementAdded
=
true
;
}
}
...
@@ -358,6 +360,9 @@ void CAIRO_GAL::DrawPolygon( const std::deque<VECTOR2D>& aPointList )
...
@@ -358,6 +360,9 @@ void CAIRO_GAL::DrawPolygon( const std::deque<VECTOR2D>& aPointList )
}
}
}
}
cairo_set_source_rgba
(
cairoImage
,
fillColor
.
r
,
fillColor
.
g
,
fillColor
.
b
,
fillColor
.
a
);
cairo_fill_preserve
(
cairoImage
);
isElementAdded
=
true
;
isElementAdded
=
true
;
}
}
...
...
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