mirror of
https://git.rip/DMCA_FUCKER/re3.git
synced 2024-11-10 18:09:16 +00:00
17 lines
283 B
C++
17 lines
283 B
C++
|
#include "common.h"
|
||
|
#include "ColPoint.h"
|
||
|
|
||
|
CColPoint&
|
||
|
CColPoint::operator=(const CColPoint &other)
|
||
|
{
|
||
|
point = other.point;
|
||
|
normal = other.normal;
|
||
|
surfaceA = other.surfaceA;
|
||
|
pieceA = other.pieceA;
|
||
|
surfaceB = other.surfaceB;
|
||
|
pieceB = other.pieceB;
|
||
|
|
||
|
// no depth?
|
||
|
return *this;
|
||
|
}
|