返回介绍

多段线

发布于 2023-08-09 23:10:33 字数 1857 浏览 0 评论 0 收藏 0

多段线在MxDrawCAD控件下为一个实体类:

class ARXDLL McDbPolyline : public McDbCurve

通过调用多段线实体类的构造函数:

// -------------------------------------------------------------------------
// Summary:
//  构造函数
// -------------------------------------------------------------------------
McDbPolyline(PolylineType type = kLwPolyline);
 
McDbPolyline(unsigned int num_verts);

初始化多段线实体,可使用默认的构造函数,如下:

	//使用PL话矩形
	auto DrawRect = []() ->McDbPolyline*
	{

		McDbPolyline * pEnt = new McDbPolyline;
		//添加一些端点
		pEnt->addVertexAt(McGePoint2d(10, 0));
		pEnt->addVertexAt(McGePoint2d(10, 10));
		pEnt->addVertexAt(McGePoint2d(0, 10));
		pEnt->addVertexAt(McGePoint2d(0, 0));

		//设置闭合
		pEnt->setClosed(true);

		return pEnt;
	};

	//使用PL画箭头
	auto DrawTriangle = []()->McDbPolyline*
	{
		McDbPolyline * pEnt = new McDbPolyline;
		//添加一些端点
		pEnt->addVertexAt(McGePoint2d(0, 0));
		pEnt->addVertexAt(McGePoint2d(10, 0));
		pEnt->addVertexAt(McGePoint2d(20, 0));
		pEnt->setWidthsAt(1, 5, 0);

		return pEnt;
	};

	McGeMatrix3d mMatrix;

	mMatrix.setTranslation(McGeVector3d(0, 0, 0));
	SetEnt<McDbPolyline>(256, _T("ByLayer"), DrawRect(), nullptr, [&](McDbPolyline * pFuncEnt) {
		pFuncEnt->transformBy(mMatrix);
	});//颜色随层,线型随层

	mMatrix.setTranslation(McGeVector3d(11, 0, 0));
	SetEnt<McDbPolyline>(0, _T("ByBlock"), DrawRect(), nullptr, [&](McDbPolyline * pFuncEnt) {
		pFuncEnt->transformBy(mMatrix);
	});//颜色随块,线型随块

	mMatrix.setTranslation(McGeVector3d(0, 14, 0));
	SetEnt<McDbPolyline>(2, _T("Continuous"), DrawTriangle(), nullptr, [&](McDbPolyline * pFuncEnt) {
		pFuncEnt->transformBy(mMatrix);
	});//黄色,BORDER线型

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文