89 lines
3.2 KiB
C++
89 lines
3.2 KiB
C++
// Filename: finiteBoundingVolume.cxx
|
|
// Created by: drose (02Oct99)
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
//
|
|
// PANDA 3D SOFTWARE
|
|
// Copyright (c) 2001 - 2004, Disney Enterprises, Inc. All rights reserved
|
|
//
|
|
// All use of this software is subject to the terms of the Panda 3d
|
|
// Software license. You should have received a copy of this license
|
|
// along with this source code; you will also find a current copy of
|
|
// the license at http://etc.cmu.edu/panda3d/docs/license/ .
|
|
//
|
|
// To contact the maintainers of this program write to
|
|
// panda3d-general@lists.sourceforge.net .
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
|
|
#include "finiteBoundingVolume.h"
|
|
#include "boundingBox.h"
|
|
|
|
TypeHandle FiniteBoundingVolume::_type_handle;
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: FiniteBoundingVolume::get_volume
|
|
// Access: Public, Virtual
|
|
// Description:
|
|
////////////////////////////////////////////////////////////////////
|
|
float FiniteBoundingVolume::
|
|
get_volume() const {
|
|
nassertr(!is_infinite(), 0.0f);
|
|
if (is_empty()) {
|
|
return 0.0f;
|
|
}
|
|
|
|
mathutil_cat.warning()
|
|
<< get_type() << "::get_volume() called\n";
|
|
|
|
// We don't know how to compute the volume of this shape correctly;
|
|
// just calculate the volume of its containing box.
|
|
BoundingBox box(get_min(), get_max());
|
|
box.local_object();
|
|
return box.get_volume();
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: FiniteBoundingVolume::as_finite_bounding_volume
|
|
// Access: Public, Virtual
|
|
// Description: Virtual downcast method. Returns this object as a
|
|
// pointer of the indicated type, if it is in fact that
|
|
// type. Returns NULL if it is not that type.
|
|
////////////////////////////////////////////////////////////////////
|
|
const FiniteBoundingVolume *FiniteBoundingVolume::
|
|
as_finite_bounding_volume() const {
|
|
return this;
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: FiniteBoundingVolume::around_lines
|
|
// Access: Protected, Virtual
|
|
// Description: Double-dispatch support: called by around_other()
|
|
// when the type of the first element in the list is
|
|
// known to be a nonempty line.
|
|
////////////////////////////////////////////////////////////////////
|
|
bool FiniteBoundingVolume::
|
|
around_lines(const BoundingVolume **, const BoundingVolume **) {
|
|
_flags = F_infinite;
|
|
|
|
// Since it's a FiniteBoundingVolume, we can't do any better than
|
|
// making it infinite. So we return true.
|
|
return true;
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: FiniteBoundingVolume::around_planes
|
|
// Access: Protected, Virtual
|
|
// Description: Double-dispatch support: called by around_other()
|
|
// when the type of the first element in the list is
|
|
// known to be a nonempty plane.
|
|
////////////////////////////////////////////////////////////////////
|
|
bool FiniteBoundingVolume::
|
|
around_planes(const BoundingVolume **, const BoundingVolume **) {
|
|
_flags = F_infinite;
|
|
|
|
// Since it's a FiniteBoundingVolume, we can't do any better than
|
|
// making it infinite. So we return true.
|
|
return true;
|
|
}
|