115 lines
3.5 KiB
Plaintext
115 lines
3.5 KiB
Plaintext
// Filename: nurbsVertex.I
|
|
// Created by: drose (04Dec02)
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
//
|
|
// 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: NurbsVertex::Constructor
|
|
// Access: Public
|
|
// Description:
|
|
////////////////////////////////////////////////////////////////////
|
|
INLINE NurbsVertex::
|
|
NurbsVertex() {
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: NurbsVertex::Copy Constructor
|
|
// Access: Public
|
|
// Description:
|
|
////////////////////////////////////////////////////////////////////
|
|
INLINE NurbsVertex::
|
|
NurbsVertex(const NurbsVertex ©) :
|
|
_vertex(copy._vertex),
|
|
_space(copy._space),
|
|
_space_path(copy._space_path)
|
|
{
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: NurbsVertex::Copy Assignment Operator
|
|
// Access: Public
|
|
// Description:
|
|
////////////////////////////////////////////////////////////////////
|
|
INLINE void NurbsVertex::
|
|
operator = (const NurbsVertex ©) {
|
|
_vertex = copy._vertex;
|
|
_space = copy._space;
|
|
_space_path = copy._space_path;
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: NurbsVertex::Destructor
|
|
// Access: Public
|
|
// Description:
|
|
////////////////////////////////////////////////////////////////////
|
|
INLINE NurbsVertex::
|
|
~NurbsVertex() {
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: NurbsVertex::set_vertex
|
|
// Access: Public
|
|
// Description:
|
|
////////////////////////////////////////////////////////////////////
|
|
INLINE void NurbsVertex::
|
|
set_vertex(const LVecBase4 &vertex) {
|
|
_vertex = vertex;
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: NurbsVertex::get_vertex
|
|
// Access: Public
|
|
// Description:
|
|
////////////////////////////////////////////////////////////////////
|
|
INLINE const LVecBase4 &NurbsVertex::
|
|
get_vertex() const {
|
|
return _vertex;
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: NurbsVertex::set_space
|
|
// Access: Public
|
|
// Description: Sets the space of this vertex as a fixed NodePath.
|
|
////////////////////////////////////////////////////////////////////
|
|
INLINE void NurbsVertex::
|
|
set_space(const NodePath &space) {
|
|
_space = space;
|
|
_space_path = string();
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: NurbsVertex::set_space
|
|
// Access: Public
|
|
// Description: Sets the space of this vertex as a relative path from
|
|
// the rel_to node.
|
|
////////////////////////////////////////////////////////////////////
|
|
INLINE void NurbsVertex::
|
|
set_space(const string &space) {
|
|
_space = NodePath();
|
|
_space_path = space;
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: NurbsVertex::get_space
|
|
// Access: Public
|
|
// Description:
|
|
////////////////////////////////////////////////////////////////////
|
|
INLINE NodePath NurbsVertex::
|
|
get_space(const NodePath &rel_to) const {
|
|
if (_space_path.empty()) {
|
|
return _space;
|
|
} else {
|
|
return rel_to.find(_space_path);
|
|
}
|
|
}
|