#include "GMath.h" int main() { GLine l(GPoint3(0.0f, 0.0f, 0.0f), GVector3(1.0, 0.0f, 0.0f)); GPoint3 p = l(2.0f); cout << p << endl; return 0; }