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

几何尺寸与公差论坛------致力于产品几何量公差标准GD&T (GDT:ASME)|New GPS(ISO)研究/CAD设计/CAM加工/CMM测量 (http://www.dimcax.com/hust/index.php)
-   DirectDWG (http://www.dimcax.com/hust/forumdisplay.php?f=89)
-   -   【转帖】query regarding finding the drawing extends (http://www.dimcax.com/hust/showthread.php?t=18269)

yang686526 2009-05-07 12:03 PM

【转帖】query regarding finding the drawing extends
 
query regarding finding the drawing extends

query regarding finding the drawing extends
hi all,
how to findout the width and height of a dwg drawing ..? (drawing extents)..
tia
thanks & regards,
rajesh parameswaran

rajuinnet
# 4th november 2004, 04:40 am

registered user join date: jul 2004
location: india
posts: 82

quote:
originally posted by rajuinnet
hi all,
how to findout the width and height of a dwg drawing ..? (drawing extents)..
tia
hi all,
actually i have got the dwg height and width. but my requirement is to get the bounding rectangle of the entire entities. is there any function for that or will i have to traverse all the entity, check it and find out the boundary..?
i have used the following way to get the extents of drawings...
is that the right way to get the extents of the drawing..?
odgepoint3d min, max;
oddbextents ext;
cstring str;
oddbblocktablerecordptr pmainblock = theapp.m_pdb->getmodelspaceid().safeopenobject(oddb::kforwrite) ;
ext.addblockext(oddbblocktablerecordptr( database()->getactivelayoutbtrid().safeopenobject()));
if (ext.isvalidextents())
{
min = ext.minpoint();
max = ext.maxpoint();
str.format("%lf : %lf : %lf : %lf", min.x, min.y, max.x, max.y);
messagebox (str);
}
tia
-----
thanks & regards,
rajesh parameswaran

rajuinnet
# 4th november 2004, 08:54 am

moderator join date: mar 2002
posts: 2,994
you are on the right way but using getactivelayoutbtrid() you'll get extents of the active layout (model or one of paper spaces - active)
if you need model layout use getmodelspaceid()
sergey slezkin

sslezkin

none
? | ?
thread tools



display modes
linear mode


search this thread

rate this thread
excellent
good
average
bad
terrible

posting rules
you may post new threads
you may post replies
you may post attachments
you may edit your posts
is on
are on
code is off
html code is off
forum jump
user control panel private messages subscriptions who's online search forums forums home general topics news questions and remarks business issues industry commentary general software issues documentation issues future directions dwg libraries dwgdirect.net dwgdirect, c++ version dwgdirectx, activex version adtdirect/c3ddirect opendwg toolkit/viewkit dgn libraries dgndirect, c++ version (2.x+) dgndirect libraries (legacy 0.99xx)
all times are gmt -7. the time now is 12:44 amfff">.
- - -
copyright ?2000 - 2009, jelsoft enterprises ltd.
copyright 1998-2008 open design alliance inc.

quote:
originally posted by rajuinnet
hi all,
how to findout the width and height of a dwg drawing ..? (drawing extents)..
tia
hi all,
actually i have got the dwg height and width. but my requirement is to get the bounding rectangle of the entire entities. is there any function for that or will i have to traverse all the entity, check it and find out the boundary..?
i have used the following way to get the extents of drawings...
is that the right way to get the extents of the drawing..?
odgepoint3d min, max;
oddbextents ext;
cstring str;
oddbblocktablerecordptr pmainblock = theapp.m_pdb->getmodelspaceid().safeopenobject(oddb::kforwrite) ;
ext.addblockext(oddbblocktablerecordptr( database()->getactivelayoutbtrid().safeopenobject()));
if (ext.isvalidextents())
{
min = ext.minpoint();
max = ext.maxpoint();
str.format("%lf : %lf : %lf : %lf", min.x, min.y, max.x, max.y);
messagebox (str);
}
tia
-----
thanks & regards,
rajesh parameswaran
you are on the right way but using getactivelayoutbtrid() you'll get extents of the active layout (model or one of paper spaces - active)
if you need model layout use getmodelspaceid()
sergey slezkin


所有的时间均为北京时间。 现在的时间是 02:00 AM.