mirror of
https://github.com/panda3d/panda3d.git
synced 2025-10-05 03:15:07 -04:00
use higher-level class for copy constructor
This commit is contained in:
parent
d66635bc86
commit
a2355fa37c
@ -37,7 +37,7 @@ FLOATNAME(Plane)(void) {
|
|||||||
// Description:
|
// Description:
|
||||||
////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////
|
||||||
INLINE_MATHUTIL FLOATNAME(Plane)::
|
INLINE_MATHUTIL FLOATNAME(Plane)::
|
||||||
FLOATNAME(Plane)(const FLOATNAME(Plane) ©) :
|
FLOATNAME(Plane)(const FLOATNAME(LVecBase4) ©) :
|
||||||
FLOATNAME(LVecBase4)(copy)
|
FLOATNAME(LVecBase4)(copy)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
@ -24,7 +24,7 @@
|
|||||||
class EXPCL_PANDA FLOATNAME(Plane) : public FLOATNAME(LVecBase4) {
|
class EXPCL_PANDA FLOATNAME(Plane) : public FLOATNAME(LVecBase4) {
|
||||||
PUBLISHED:
|
PUBLISHED:
|
||||||
INLINE_MATHUTIL FLOATNAME(Plane)(void);
|
INLINE_MATHUTIL FLOATNAME(Plane)(void);
|
||||||
INLINE_MATHUTIL FLOATNAME(Plane)(const FLOATNAME(Plane) ©);
|
INLINE_MATHUTIL FLOATNAME(Plane)(const FLOATNAME(LVecBase4) ©);
|
||||||
INLINE_MATHUTIL FLOATNAME(Plane)(const FLOATNAME(LPoint3) &a,
|
INLINE_MATHUTIL FLOATNAME(Plane)(const FLOATNAME(LPoint3) &a,
|
||||||
const FLOATNAME(LPoint3) &b,
|
const FLOATNAME(LPoint3) &b,
|
||||||
const FLOATNAME(LPoint3) &c);
|
const FLOATNAME(LPoint3) &c);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user