18 lines
380 B
C++
18 lines
380 B
C++
// BoundingBox.cpp : Implementation of CBoundingBox
|
|
|
|
#include "stdafx.h"
|
|
#include "BoundingBox.h"
|
|
|
|
|
|
// CBoundingBox
|
|
|
|
STDMETHODIMP CBoundingBox::get_min(IDWGPoint** pVal)
|
|
{
|
|
return m_minPoint->QueryInterface(IID_IDWGPoint, (void**)pVal);
|
|
}
|
|
|
|
STDMETHODIMP CBoundingBox::get_max(IDWGPoint** pVal)
|
|
{
|
|
return m_maxPoint->QueryInterface(IID_IDWGPoint, (void**)pVal);
|
|
};
|