84 lines
2.2 KiB
Text
84 lines
2.2 KiB
Text
/**
|
|
* 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."
|
|
*
|
|
* @file nodePathCollection.I
|
|
* @author drose
|
|
* @date 2002-03-06
|
|
*/
|
|
|
|
/**
|
|
* Appends the other list onto the end of this one.
|
|
*/
|
|
INLINE void NodePathCollection::
|
|
operator += (const NodePathCollection &other) {
|
|
add_paths_from(other);
|
|
}
|
|
|
|
/**
|
|
* Returns a NodePathCollection representing the concatenation of the two
|
|
* lists.
|
|
*/
|
|
INLINE NodePathCollection NodePathCollection::
|
|
operator + (const NodePathCollection &other) const {
|
|
NodePathCollection a(*this);
|
|
a += other;
|
|
return a;
|
|
}
|
|
|
|
/**
|
|
* Adds a new NodePath to the collection. This method duplicates the
|
|
* add_path() method; it is provided to satisfy Python's naming convention.
|
|
*/
|
|
void NodePathCollection::
|
|
append(const NodePath &node_path) {
|
|
add_path(node_path);
|
|
}
|
|
|
|
/**
|
|
* Appends the other list onto the end of this one. This method duplicates
|
|
* the += operator; it is provided to satisfy Python's naming convention.
|
|
*/
|
|
INLINE void NodePathCollection::
|
|
extend(const NodePathCollection &other) {
|
|
operator += (other);
|
|
}
|
|
|
|
/**
|
|
* Lists all the nodes at and below each node in the collection
|
|
* hierarchically.
|
|
*/
|
|
INLINE void NodePathCollection::
|
|
ls() const {
|
|
ls(nout);
|
|
}
|
|
|
|
/**
|
|
* Colors all NodePaths in the collection
|
|
*/
|
|
INLINE void NodePathCollection::
|
|
set_color(PN_stdfloat r, PN_stdfloat g, PN_stdfloat b, PN_stdfloat a, int priority) {
|
|
set_color(LColor(r, g, b, a), priority);
|
|
}
|
|
|
|
/**
|
|
* Applies color scales to all NodePaths in the collection. The existing
|
|
* color scale is replaced.
|
|
*/
|
|
INLINE void NodePathCollection::
|
|
set_color_scale(PN_stdfloat r, PN_stdfloat g, PN_stdfloat b, PN_stdfloat a, int priority) {
|
|
set_color_scale(LVecBase4(r, g, b, a), priority);
|
|
}
|
|
|
|
/**
|
|
* Applies color scales to all NodePaths in the collection. The existing
|
|
* color scale, if any, is multiplied by the specified color scale.
|
|
*/
|
|
INLINE void NodePathCollection::
|
|
compose_color_scale(PN_stdfloat r, PN_stdfloat g, PN_stdfloat b, PN_stdfloat a, int priority) {
|
|
compose_color_scale(LVecBase4(r, g, b, a), priority);
|
|
}
|