mirror of
https://github.com/panda3d/panda3d.git
synced 2025-10-03 02:15:43 -04:00
*** empty log message ***
This commit is contained in:
parent
fcbecf7877
commit
70dea3303f
@ -7,7 +7,7 @@
|
|||||||
// Function : set_vector
|
// Function : set_vector
|
||||||
// Access : public
|
// Access : public
|
||||||
////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////
|
||||||
void AngularVectorForce::
|
INLINE void AngularVectorForce::
|
||||||
set_vector(const LVector3f &v) {
|
set_vector(const LVector3f &v) {
|
||||||
_fvec = v;
|
_fvec = v;
|
||||||
}
|
}
|
||||||
@ -16,7 +16,16 @@ set_vector(const LVector3f &v) {
|
|||||||
// Function : set_vector
|
// Function : set_vector
|
||||||
// Access : public
|
// Access : public
|
||||||
////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////
|
||||||
void AngularVectorForce::
|
INLINE void AngularVectorForce::
|
||||||
set_vector(float x, float y, float z) {
|
set_vector(float x, float y, float z) {
|
||||||
_fvec.set(x, y, z);
|
_fvec.set(x, y, z);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
////////////////////////////////////////////////////////////////////
|
||||||
|
// Function : get_vector
|
||||||
|
// Access : public
|
||||||
|
////////////////////////////////////////////////////////////////////
|
||||||
|
INLINE LVector3f AngularVectorForce::
|
||||||
|
get_vector(void) const {
|
||||||
|
return _fvec;
|
||||||
|
}
|
||||||
|
@ -28,6 +28,7 @@ PUBLISHED:
|
|||||||
|
|
||||||
INLINE void set_vector(const LVector3f& v);
|
INLINE void set_vector(const LVector3f& v);
|
||||||
INLINE void set_vector(float x, float y, float z);
|
INLINE void set_vector(float x, float y, float z);
|
||||||
|
INLINE LVector3f get_vector(void) const;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
static TypeHandle get_class_type(void) {
|
static TypeHandle get_class_type(void) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user