A
Arda Coskun
I couldn't find an equvalent function for FillPie() or drawing a triangle in
Compact Framework, what could I use instead of them?
Compact Framework, what could I use instead of them?
Paul G. Tobey said:Draw triangle should be pretty obvious (draw three lines). Filling a pie
slice is a more difficult problem. Have you taken a look on Google for
drawing examples? It seems to me that Chris Tacke has posted some code that
might do this before.
http://groups.google.com/groups?hl=...soft.public.dotnet.framework.compactframework
Paul T.
triangleArda Coskun said:I couldn't find an equvalent function for FillPie() or drawing a
Chris Tacke said:I've got a DrawArc implementation. A triangle should be cake - simply use
the three points and call FillPolygon. A pie slice is a combination of the
arc for one edge and the centerpotn as an outlier but is filled the same
way.
http://tinyurl.com/48qll
--
Chris Tacke, eMVP
Co-Founder and Advisory Board Member
www.OpenNETCF.org
---
---
Principal Partner
OpenNETCF Consulting
www.OpenNETCF.com
http://groups.google.com/groups?hl=...soft.public.dotnet.framework.compactframeworkPaul G. Tobey said:Draw triangle should be pretty obvious (draw three lines). Filling a pie
slice is a more difficult problem. Have you taken a look on Google for
drawing examples? It seems to me that Chris Tacke has posted some code that
might do this before.