高级会员
注册日期: 06-11
帖子: 14579
精华: 1
现金: 224494 标准币
资产: 234494 标准币
|
【转帖】odgeboundblock2d3dgetminmaxpoints90
odgeboundblock2d/3d::getminmaxpoints()
odgeboundblock2d/3d::getminmaxpoints()
what do these methods return - min/max points of extents of the bbox (that is its extents in wcs) or min/max points of the bbox in its cs?
in acad they return "two opposite vertices of the minimal coordinate box containing the block", that is the 1st variant, but in dwgdirect there is a note for 3d: "the returned values are meaningful if and only if this object is a coordinate-aligned box"..
diamantex
# 12th december 2007, 09:07 am
registered user join date: sep 2003
location: russia
posts: 1,828
minpoint()/maxpoint() are returnned in wcs
the note for 3d is not quite correct. the points returned will always be in some sense min and max (at least, they are in the opposite corners), but, when the box is not axis aligned, they are min and max only if transfromed to bbox ocs.
vladimir
vkalinin
# 12th december 2007, 09:40 am
registered user join date: oct 2003
location: nizhny novgorod, russia
posts: 9
i checked the following simple case in 3d: see bbox.png attached, let the red square represent an odgeboundblock3d object. it's not axis-aligned and is set using something like set((1,1,0), (2,1,0), (-1,2,0), (0,0,1)). and getminmaxpoints() returns coords of blue points, that is (0,1,0) and (3,4,1). this does not fit the sentence "they are min and max only if transfromed to bbox ocs" or i misunderstand something?
attached images (12.3 kb, 5 views)
diamantex
# 12th december 2007, 10:03 am
registered user join date: sep 2003
location: russia
posts: 1,828
you are right, i didn't look at the class long enough. actually it returns corners of the smallest bounding axis-aligned box as min/max points.
vladimir
vkalinin
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 09:24 pmfff">.
- - -
copyright ?2000 - 2009, jelsoft enterprises ltd.
copyright 1998-2008 open design alliance inc.
minpoint()/maxpoint() are returnned in wcs
the note for 3d is not quite correct. the points returned will always be in some sense min and max (at least, they are in the opposite corners), but, when the box is not axis aligned, they are min and max only if transfromed to bbox ocs.
vladimir
i checked the following simple case in 3d: see bbox.png attached, let the red square represent an odgeboundblock3d object. it's not axis-aligned and is set using something like set((1,1,0), (2,1,0), (-1,2,0), (0,0,1)). and getminmaxpoints() returns coords of blue points, that is (0,1,0) and (3,4,1). this does not fit the sentence "they are min and max only if transfromed to bbox ocs" or i misunderstand something?
attached images (12.3 kb, 5 views)
you are right, i didn't look at the class long enough. actually it returns corners of the smallest bounding axis-aligned box as min/max points.
vladimir
|