45 lines
1.6 KiB
Plaintext
45 lines
1.6 KiB
Plaintext
// Filename: unionBoundingVolume.I
|
|
// Created by: drose (08Feb12)
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
//
|
|
// PANDA 3D SOFTWARE
|
|
// Copyright (c) Carnegie Mellon University. All rights reserved.
|
|
//
|
|
// All use of this software is subject to the terms of the revised BSD
|
|
// license. You should have received a copy of this license along
|
|
// with this source code in a file named "LICENSE."
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: UnionBoundingVolume::Constructor
|
|
// Access: Published
|
|
// Description: Constructs an empty union.
|
|
////////////////////////////////////////////////////////////////////
|
|
INLINE_MATHUTIL UnionBoundingVolume::
|
|
UnionBoundingVolume() {
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: UnionBoundingVolume::get_num_components
|
|
// Access: Published
|
|
// Description: Returns the number of components in the union.
|
|
////////////////////////////////////////////////////////////////////
|
|
INLINE_MATHUTIL int UnionBoundingVolume::
|
|
get_num_components() const {
|
|
return (int)_components.size();
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: UnionBoundingVolume::get_component
|
|
// Access: Published
|
|
// Description: Returns the nth component in the union.
|
|
////////////////////////////////////////////////////////////////////
|
|
INLINE_MATHUTIL const GeometricBoundingVolume *UnionBoundingVolume::
|
|
get_component(int n) const {
|
|
nassertr(n >= 0 && n < (int)_components.size(), NULL);
|
|
return _components[n];
|
|
}
|