高级会员
注册日期: 06-11
帖子: 14579
精华: 1
现金: 224494 标准币
资产: 234494 标准币
|
【转帖】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
|