本文整理汇总了C++中GraphicsPath::AddCurve方法的典型用法代码示例。如果您正苦于以下问题:C++ GraphicsPath::AddCurve方法的具体用法?C++ GraphicsPath::AddCurve怎么用?C++ GraphicsPath::AddCurve使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类GraphicsPath
的用法示例。
在下文中一共展示了GraphicsPath::AddCurve方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: SetRegion
void CTransparentPen::SetRegion()
{
PointF* pPt = m_ptary.GetData();
Pen penDraw(m_crColor);
penDraw.SetStartCap(LineCapRound);
penDraw.SetEndCap(LineCapRound);
penDraw.SetLineJoin(LineJoinRound);
penDraw.SetWidth(m_nWidth * m_fScale);
GraphicsPath path;
path.AddCurve(pPt,m_nPtCount,0.8f);
path.Widen(&penDraw);
path.Outline();
m_Region.MakeEmpty();
m_Region.Union(&path);
}
示例2: SetRegion
void CFlatBrushPen::SetRegion()
{
ASSERT(m_bFinish);
PointF* pPt = m_ptary.GetData();
float fwidth = m_nWidth * m_fScale;
Pen penDraw(m_crColor, fwidth);
penDraw.ScaleTransform(1, 2.0f / fwidth, MatrixOrderAppend);
penDraw.RotateTransform(m_ftransAngle, MatrixOrderAppend);
GraphicsPath path;
path.AddCurve(pPt, m_nPtCount);
path.Widen(&penDraw);
path.Outline();
m_Region.MakeEmpty();
m_Region.Union(&path);
}
示例3: SetRegion
void CNormalPen::SetRegion()
{
ASSERT(m_bFinish);
PointF* pPt = m_ptary.GetData();
Pen penDraw(m_crColor);
penDraw.SetWidth(m_nWidth * m_fScale);
penDraw.SetEndCap(m_nEndCap);
penDraw.SetStartCap(m_nStartCap);
penDraw.SetDashStyle(m_nDashStyle);
penDraw.SetLineJoin(LineJoinRound);
GraphicsPath path;
path.AddCurve(pPt,m_nPtCount);
path.Widen(&penDraw);
path.Outline();
m_Region.MakeEmpty();
m_Region.Union(&path);
}
示例4: SetRegion
void CNormalPen::SetRegion()
{
PointF* pPt = m_ptary.GetData();
int nWidth = m_nWidth;
if(m_nWidth < 3)
{
nWidth = 3;
}
Pen penDraw(m_crColor,(float)nWidth);
penDraw.SetDashStyle(m_nDashStyle);
penDraw.SetStartCap(m_nStartCap);
penDraw.SetEndCap(m_nEndCap);
penDraw.SetLineJoin(LineJoinRound);
GraphicsPath path;
path.AddCurve(pPt,m_nPtCount);
path.Widen(&penDraw);
path.Outline();
m_Region.MakeEmpty();
m_Region.Union(&path);
}