Searched defs:Vector2d (Results 1 - 4 of 4) sorted by path

/external/ceres-solver/internal/ceres/
H A Ddogleg_strategy.h79 typedef Eigen::Matrix<double, 2, 1, Eigen::DontAlign> Vector2d; typedef in class:ceres::internal::DoglegStrategy
92 bool FindMinimumOnTrustRegionBoundary(Vector2d* minimum) const;
94 Vector2d ComputeSubspaceStepFromRoot(double lambda) const;
95 double EvaluateSubspaceModel(const Vector2d& x) const;
158 Vector2d subspace_g_;
/external/chromium_org/third_party/WebKit/public/platform/
H A DWebSize.h90 WebSize(const gfx::Vector2d& v)
103 WebSize& operator=(const gfx::Vector2d& v)
115 operator gfx::Vector2d() const
117 return gfx::Vector2d(width, height);
/external/chromium_org/ui/gfx/geometry/
H A Dvector2d.h22 class GFX_EXPORT Vector2d { class in namespace:gfx
24 Vector2d() : x_(0), y_(0) {} function in class:gfx::Vector2d
25 Vector2d(int x, int y) : x_(x), y_(y) {} function in class:gfx::Vector2d
37 void Add(const Vector2d& other);
39 void Subtract(const Vector2d& other);
41 void operator+=(const Vector2d& other) { Add(other); }
42 void operator-=(const Vector2d& other) { Subtract(other); }
44 void SetToMin(const Vector2d& other) {
49 void SetToMax(const Vector2d& other) {
70 inline bool operator==(const Vector2d
[all...]
/external/eigen/unsupported/test/
H A Dopenglsupport.cpp183 Vector2d vd2; vd2.setRandom(); Vector3d vd23; vd23 << vd2, 0;
202 Vector2d vd2; vd2.setRandom(); Vector3d vd23; vd23 << vd2, 1;
321 typedef Vector2d Vector2d; typedef
325 VERIFY_UNIFORM(dv,v2d, Vector2d);

Completed in 833 milliseconds