几何尺寸与公差论坛------致力于产品几何量公差标准GD&T (GDT:ASME)|New GPS(ISO)研究/CAD设计/CAM加工/CMM测量  


返回   几何尺寸与公差论坛------致力于产品几何量公差标准GD&T (GDT:ASME)|New GPS(ISO)研究/CAD设计/CAM加工/CMM测量 » 仿射空间:CAX软件开发(三)二次开发与程序设计 » CAD二次开发 » AutoCAD二次开发 » DirectDWG
用户名
密码
注册 帮助 会员 日历 银行 搜索 今日新帖 标记论坛为已读


回复
 
主题工具 搜索本主题 显示模式
旧 2009-05-04, 05:20 PM   #1
yang686526
高级会员
 
注册日期: 06-11
帖子: 14579
精华: 1
现金: 224494 标准币
资产: 234494 标准币
yang686526 向着好的方向发展
默认 【转帖】can i draw opengl list directly in exgsopenglvectorizedevice

can i draw opengl list directly in exgsopenglvectorizedevice
can i draw opengl list directly in exgsopenglvectorizedevice (odamfcapp) ?
hi, i'm david.lee.
i want to draw a grid line. so i generate a display list for grid line.
but it's line is unnatural. oddbentity's line is breaked.
i attached the picture, test.jpg.
void exgsopenglvectorizedevice::update(odgsdcrect* pupdatedrect)
{
if (!m_hglrc)
createcontext();
//
odgsdcrect rect;
rect.m_max.x = rect.m_max.y = 0;
rect.m_min.x = rect.m_min.y = 0;
odgsopenglvectorizedevice::update(&rect);
//
glmatrixmode(gl_modelview);
glpushmatrix();
{
::glcolor4ub(255, 0, 0, 0)
glcalllist(m_glgrid); --> grid line's display list
}
glpopmatrix();
odgsopenglvectorizedevice::update(pupdatedrect);
if (m_bdoublebufferenabled && !usergicontext()->regenabort())
{
::swapbuffers(m_hdc);
::glfinish();
}
}
please let me know how to solve this problem.
have a nice day! thank you!
attached images
hi,
i tried to add grid drawable to gs in odamfcapp. and it works fine for me. winopengl.gs creates display list internally for this drawable (if gs model is on).
sample grid drawable implementation:
code:
class griddrawable : public odgidrawableimpl<odgidrawable>
{
protected:
griddrawable() { }
public:
oduint32 setattributes(odgidrawabletraits* ptraits) const
{
return kdrawableisanentity;
}
bool worlddraw(odgiworlddraw* pwd) const
{
pwd->subentitytraits().setcolor(7);
odgepoint3d pts[2];
for(int i=0; i<41; ++i)
{
for(int j=0; j<41; ++j)
{
pts[0].x =
pts[1].x = i * 25;
pts[0].y = 0.0;
pts[1].y = 1000;
pwd->geometry().polyline(2, pts, &odgevector3d::kzaxis);
pts[0].y =
pts[1].y = i * 25;
pts[0].x = 0.0;
pts[1].x = 1000;
pwd->geometry().polyline(2, pts, &odgevector3d::kzaxis);
}
}
return true;
}
void viewportdraw(odgiviewportdraw* ) const
{
}
};
adding grid drawables to model space views (blue code added into cdwgviewer::createdevice() ):
code:
m_pdevice = oddbgsmanager::setupactivelayoutviews(pdevice, this);
odgspaperlayouthelperptr ppshelper = odgspaperlayouthelper::cast(m_pdevice);
for(int i=0; i<m_pdevice->numviews(); ++i)
{
odgsview* pview = m_pdevice->viewat(i);
if(ppshelper.isnull() || ppshelper->overallview().get() != pview)
{
odsmartptr<griddrawable> pgrid =
odrxobjectimpl<griddrawable>::createobject();
oddbobjectptr pms = database()->getmodelspaceid().safeopenobject();
// place grid "under" ms geometry:
pview->erase(pms);
pview->add(pgrid, m_pdevice->gsmodel());
pview->add(pms, m_pdevice->gsmodel());
}
}
due to bug in gs, non-persistent drawables should be deleted from view prior to deleting this view (it will be fixed in next release).
so next lines should be added to cdwgviewer::destroydevice() to workaround this bug:
code:
for(int i=0; i<m_pdevice->numviews(); ++i)
{
m_pdevice->viewat(i)->eraseall();
}
note: entity overlapping could be controlled manipulating their order only in 2d-optimized mode. in other modes overlapping is determined by entity's position in z-buffer.
attached images (11.3 kb, 12 views)

last edited by dmitry a. novikov; 25th january 2007 at 03:37 amfff">.
thank you very much.
thank you very much.
yang686526离线中   回复时引用此帖
GDT自动化论坛(仅游客可见)
回复


主题工具 搜索本主题
搜索本主题:

高级搜索
显示模式

发帖规则
不可以发表新主题
不可以回复主题
不可以上传附件
不可以编辑您的帖子

vB 代码开启
[IMG]代码开启
HTML代码关闭

相似的主题
主题 主题发起者 论坛 回复 最后发表
【转帖】ambiguous call to overload functions in odstring.h yang686526 DirectDWG 0 2009-05-04 03:56 PM
【转帖】哪位高手指点一下下边lisp的怎么用 yang686526 数据库ObjectDBX 0 2009-04-28 12:13 PM
哪位高手指点一下下边lisp的怎么用 yang686526 ObjectARX(AutoLISP) 0 2009-04-26 06:19 PM
[求助]求一个刷子的程序 yang686526 ObjectARX(AutoLISP) 0 2009-04-26 02:02 PM
【转帖】OpenGL可视和转换 yogy OpenGL图形显示 0 2007-06-05 05:37 PM


所有的时间均为北京时间。 现在的时间是 12:56 PM.


于2004年创办,几何尺寸与公差论坛"致力于产品几何量公差标准GD&T | GPS研究/CAD设计/CAM加工/CMM测量"。免责声明:论坛严禁发布色情反动言论及有关违反国家法律法规内容!情节严重者提供其IP,并配合相关部门进行严厉查处,若內容有涉及侵权,请立即联系我们QQ:44671734。注:此论坛须管理员验证方可发帖。
沪ICP备06057009号-2
更多