T2-CPP/CommonAPI/Common/source/DXAPI/Point3F.cpp

8 lines
117 B
C++
Raw Normal View History

#include <DXAPI/Point3F.h>
namespace DX
{
Point3F::Point3F(float &X, float &Y, float &Z) : x(X), y(Y), z(Z)
{
}
}