mirror of
https://github.com/Ragora/T2-CPP.git
synced 2026-01-20 02:24:46 +00:00
8 lines
117 B
C++
8 lines
117 B
C++
#include <DXAPI/Point3F.h>
|
|
|
|
namespace DX
|
|
{
|
|
Point3F::Point3F(float &X, float &Y, float &Z) : x(X), y(Y), z(Z)
|
|
{
|
|
}
|
|
} |