- 积分
- 765
- 明经币
- 个
- 注册时间
- 2003-10-24
- 在线时间
- 小时
- 威望
-
- 金钱
- 个
- 贡献
-
- 激情
-
|
发表于 2003-10-24 17:13:00
|
显示全部楼层
可以做一个自定义实体的TEXT,自动遮挡后面背景
Adesk::Boolean myWipeOutText::worldDraw(AcGiWorldDraw* mode)
{
assertReadEnabled();
// Check to see whether the TILEMODE sysvar, or the regeneration context has changed
// since the last time we regenerated.
if((int)database()->tilemode()!=gLastTilemode || gpLastContext !=mode->context())
{
gLastTilemode=database()->tilemode();
detectBackgroundColor(gLastTilemode);
gpLastContext=mode->context();
}
AcDbEntity *pEnt=NULL;
Acad::ErrorStatus es=acdbOpenObject(pEnt,m_EntityBlocked,AcDb::kForRead);
// Get the extents boundary of the entity were blocking...
AcDbExtents ext;
es=pEnt->getGeomExtents(ext);
es=pEnt->close();
AcGePoint3d arr[4];
arr[0]=ext.minPoint();
arr[2]=ext.maxPoint();
arr[1].x=arr[2].x;
arr[1].y=arr[0].y;
arr[1].z=arr[0].z;
arr[3].x=arr[0].x;
arr[3].y=arr[2].y;
arr[3].z=arr[0].z;
// Determine whether to use the host's background or white for plotting.
if(!mode->context()->isPlotGeneration())
mode->subEntityTraits().setTrueColor(gBackColor);
else
mode->subEntityTraits().setTrueColor(gWhiteColor);
mode->subEntityTraits().setFillType( kAcGiFillAlways );
// Draw the wipeout.
mode->geometry().polygon(4,arr);
return AcDbEntity::worldDraw(mode);
} |
|