Searched defs:Vector2 (Results 1 - 1 of 1) sorted by relevance

/gem5/ext/pybind11/tests/
H A Dtest_operator_overloading.cpp15 class Vector2 { class
17 Vector2(float x, float y) : x(x), y(y) { print_created(this, toString()); } function in class:Vector2
18 Vector2(const Vector2 &v) : x(v.x), y(v.y) { print_copy_created(this); } function in class:Vector2
19 Vector2(Vector2 &&v) : x(v.x), y(v.y) { print_move_created(this); v.x = v.y = 0; } function in class:Vector2
[all...]

Completed in 5 milliseconds