mirror of
https://github.com/ApfelTeeSaft/vb01.git
synced 2026-08-26 19:33:45 +00:00
9 lines
243 B
C++
Executable File
9 lines
243 B
C++
Executable File
#include "quaternion.h"
|
|
|
|
namespace vb01{
|
|
const Quaternion Quaternion::QUAT_W(1, 0, 0, 0);
|
|
const Quaternion Quaternion::QUAT_I(0, 1, 0, 0);
|
|
const Quaternion Quaternion::QUAT_J(0, 0, 1, 0);
|
|
const Quaternion Quaternion::QUAT_K(0, 0, 0, 1);
|
|
}
|