本文整理汇总了C++中CLine::SetEndPoint方法的典型用法代码示例。如果您正苦于以下问题:C++ CLine::SetEndPoint方法的具体用法?C++ CLine::SetEndPoint怎么用?C++ CLine::SetEndPoint使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类CLine
的用法示例。
在下文中一共展示了CLine::SetEndPoint方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: LoadElem
CElem* CXMLVecLS::LoadElem(CXmlNode &node)
{
CString str;
int nType = GetType(node.GetName());
CPointF pt;
CRectF rc;
CElem *elem = NULL;
switch (nType)
{
case CElem::Line:
{
CLine *pElem = new CLine();
TEST_FREE_RETURNNULL(!LoadNonFillVecElem(pElem,node),pElem);
pt.x = node.GetFloatAttrib(_T("StartPointX"));
pt.y = node.GetFloatAttrib(_T("StartPointY"));
pElem->SetStartPoint(pt);
pt.x = node.GetFloatAttrib(_T("EndPointX"));
pt.y = node.GetFloatAttrib(_T("EndPointY"));
pElem->SetEndPoint(pt);
elem = pElem;
}
break;
case CElem::Bezier:
{
CBezier *pElem = new CBezier();
TEST_FREE_RETURNNULL(!LoadNonFillVecElem(pElem,node),pElem);
CXmlNode n;
CPointF pt;
CFPoints pts;
for (int i=0,cnt=node.ChildCount; i<cnt; ++i)
{
n = node.Child[i];
if (n.GetName() == _T("Point"))
{
pt.x = n.GetFloatAttrib(_T("X"));
pt.y = n.GetFloatAttrib(_T("Y"));
pts.Add(pt);
}
}
pElem->SetPoints(pts);
elem = pElem;
}
break;
case CElem::FreeLine:
{
CFreeLine *pElem = new CFreeLine();
TEST_FREE_RETURNNULL(!LoadNonFillVecElem(pElem,node),pElem);
CXmlNode n;
CPointF pt;
CFPoints pts;
for (int i=0,cnt=node.ChildCount; i<cnt; ++i)
{
n = node.Child[i];
if (n.GetName() == _T("Point"))
{
pt.x = n.GetFloatAttrib(_T("X"));
pt.y = n.GetFloatAttrib(_T("Y"));
pts.Add(pt);
}
}
pElem->SetPoints(pts);
elem = pElem;
}
break;
case CElem::Arc:
{
CArc *pElem = new CArc();
TEST_FREE_RETURNNULL(!LoadNonFillVecElem(pElem,node),pElem);
rc.left = node.GetFloatAttrib(_T("RectLeft"));
rc.top = node.GetFloatAttrib(_T("RectTop"));
rc.right = node.GetFloatAttrib(_T("RectRight"));
rc.bottom = node.GetFloatAttrib(_T("RectBottom"));
pElem->SetBoundsRect(rc);
pElem->SetStartAngel(node.GetFloatAttrib(_T("StartAngel")));
pElem->SetEndAngel(node.GetFloatAttrib(_T("EndAngel")));
elem = pElem;
}
break;
case CElem::Chord:
{
CChord *pElem = new CChord();
TEST_FREE_RETURNNULL(!LoadFilledVecElem(pElem,node),pElem);
rc.left = node.GetFloatAttrib(_T("RectLeft"));
rc.top = node.GetFloatAttrib(_T("RectTop"));
rc.right = node.GetFloatAttrib(_T("RectRight"));
//.........这里部分代码省略.........