Files
tp/libs/SSystem/SComponent/c_m3d_g_cps.cpp
T

36 lines
1.1 KiB
C++
Raw Normal View History

2021-03-29 00:10:25 +02:00
//
2021-03-28 22:49:05 +02:00
// Generated By: dol2asm
// Translation Unit: c_m3d_g_cps
2021-03-29 00:10:25 +02:00
//
2021-01-07 02:04:53 +01:00
2021-04-08 16:01:29 +02:00
#include "SSystem/SComponent/c_m3d_g_cps.h"
2021-03-28 22:49:05 +02:00
#include "dol2asm.h"
#include "dolphin/types.h"
2021-01-07 02:04:53 +01:00
2021-03-29 00:10:25 +02:00
//
2021-03-28 22:49:05 +02:00
// Declarations:
2021-03-29 00:10:25 +02:00
//
2021-03-28 22:49:05 +02:00
2021-04-06 18:00:35 +02:00
/* 8026EF88-8026EFA4 2698C8 001C+00 0/0 5/5 20/20 .text __ct__8cM3dGCpsFv */
2021-04-08 16:01:29 +02:00
cM3dGCps::cM3dGCps(void) {}
2021-01-07 02:04:53 +01:00
2021-04-06 18:00:35 +02:00
/* 8026EFA4-8026F000 2698E4 005C+00 1/0 7/7 6/6 .text __dt__8cM3dGCpsFv */
2021-04-08 16:01:29 +02:00
cM3dGCps::~cM3dGCps(void) {}
2021-03-28 22:49:05 +02:00
2021-04-06 18:00:35 +02:00
/* 8026F000-8026F03C 269940 003C+00 1/1 2/2 10/10 .text Set__8cM3dGCpsFRC4cXyzRC4cXyzf */
2021-04-08 16:01:29 +02:00
void cM3dGCps::Set(const cXyz& pStart, const cXyz& pEnd, f32 pUnkF) {
this->SetStartEnd(pStart, pEnd);
2021-06-13 00:20:45 +02:00
mRadius = pUnkF;
2021-03-28 22:49:05 +02:00
}
2021-04-06 18:00:35 +02:00
/* 8026F03C-8026F080 26997C 0044+00 0/0 1/1 10/10 .text Set__8cM3dGCpsFRC9cM3dGCpsS */
2021-04-08 16:01:29 +02:00
void cM3dGCps::Set(const cM3dGCpsS& other) {
this->SetStartEnd(other.mStart, other.mEnd);
2021-06-13 00:20:45 +02:00
mRadius = other.mRadius;
2021-03-28 22:49:05 +02:00
}
2021-04-06 18:00:35 +02:00
/* 8026F080-8026F0A8 2699C0 0028+00 0/0 1/1 0/0 .text SetCps__8cM3dGCpsFRC8cM3dGCps */
2021-04-08 16:01:29 +02:00
void cM3dGCps::SetCps(const cM3dGCps& other) {
2021-06-13 00:20:45 +02:00
this->Set(other.GetStartP(), other.GetEndP(), other.mRadius);
2021-03-28 22:49:05 +02:00
}