32 lines
1.2 KiB
Plaintext
32 lines
1.2 KiB
Plaintext
// Filename: baseIntegrator.I
|
|
// Created by: charles (11Aug00)
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
//
|
|
// 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 : get_precomputed_linear_matrices
|
|
// Access : protected
|
|
////////////////////////////////////////////////////////////////////
|
|
INLINE const pvector< LMatrix4f > &BaseIntegrator::
|
|
get_precomputed_linear_matrices() const {
|
|
return _precomputed_linear_matrices;
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function : get_precomputed_angular_matrices
|
|
// Access : protected
|
|
////////////////////////////////////////////////////////////////////
|
|
INLINE const pvector< LMatrix4f > &BaseIntegrator::
|
|
get_precomputed_angular_matrices() const {
|
|
return _precomputed_angular_matrices;
|
|
}
|