Skip to content
Snippets Groups Projects
Commit b8201bb2 authored by laurence's avatar laurence
Browse files

ENH: triad: Add static identity triad representing orthonormal system

parent 8b12dcfd
Branches
Tags
No related merge requests found
......@@ -66,6 +66,13 @@ const triad triad::min
vector(-VGREAT, -VGREAT, -VGREAT)
);
const triad triad::I
(
vector(1, 0, 0),
vector(0, 1, 0),
vector(0, 0, 1)
);
const triad triad::unset
(
vector(VGREAT, VGREAT, VGREAT),
......
......@@ -100,6 +100,7 @@ public:
static const triad one;
static const triad max;
static const triad min;
static const triad I;
static const triad unset;
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment