OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:Vec3d
(Results
1 - 3
of
3
) sorted by null
/external/libxcam/xcore/
image_projector.cpp
105
t_mat = Mat3d (
Vec3d
(1, 0, 0),
106
Vec3d
(0, 0, -1),
107
Vec3d
(0, 1, 0));
109
t_mat = Mat3d (
Vec3d
(1, 0, 0),
110
Vec3d
(0, -1, 0),
111
Vec3d
(0, 0, -1));
113
t_mat = Mat3d (
Vec3d
(1, 0, 0),
114
Vec3d
(0, 0, 1),
115
Vec3d
(0, -1, 0));
117
t_mat = Mat3d (
Vec3d
(0, 0, -1)
[
all
...]
image_projector.h
117
const std::vector<
Vec3d
> &translation);
vec_mat.h
947
typedef VectorN<double, 3>
Vec3d
;
964
Vec3d
v;
970
Quaternion (const
Vec3d
& vec, T _w) : v(vec), w(_w) {};
1065
static Quaternion<T> create_quaternion (
Vec3d
axis, T angle_rad) {
1072
static Quaternion<T> create_quaternion (
Vec3d
euler) {
1073
return create_quaternion(
Vec3d
(1, 0, 0), euler[0]) *
1074
create_quaternion(
Vec3d
(0, 1, 0), euler[1]) *
1075
create_quaternion(
Vec3d
(0, 0, 1), euler[2]);
[
all
...]
Completed in 113 milliseconds