Added Dim() method.
This commit is contained in:
parent
2c722372aa
commit
6a2b32f3e4
|
@ -24,6 +24,9 @@
|
||||||
History
|
History
|
||||||
|
|
||||||
$Log: not supported by cvs2svn $
|
$Log: not supported by cvs2svn $
|
||||||
|
Revision 1.6 2005/06/14 13:46:20 ponchio
|
||||||
|
Minibug: Box2f -> Box2 in the template.
|
||||||
|
|
||||||
Revision 1.5 2005/05/06 14:02:37 croccia
|
Revision 1.5 2005/05/06 14:02:37 croccia
|
||||||
replaced all the occurences of min.v[0] with min.X(), max.v[0] with max.X() etc.
|
replaced all the occurences of min.v[0] with min.X(), max.v[0] with max.X() etc.
|
||||||
|
|
||||||
|
@ -217,6 +220,9 @@ public:
|
||||||
/// Calcola la dimensione del bounding box sulla y.
|
/// Calcola la dimensione del bounding box sulla y.
|
||||||
inline BoxScalarType DimY() const { return max.Y()-min.Y(); }
|
inline BoxScalarType DimY() const { return max.Y()-min.Y(); }
|
||||||
|
|
||||||
|
/// Calcola la dimensione del bounding box.
|
||||||
|
inline Point2<BoxScalarType> Dim() const { return max-min; }
|
||||||
|
|
||||||
inline void Normalize( Point2<BoxScalarType> & p )
|
inline void Normalize( Point2<BoxScalarType> & p )
|
||||||
{
|
{
|
||||||
p -= min;
|
p -= min;
|
||||||
|
|
Loading…
Reference in New Issue