HomeSort by relevance Sort by last modified time
    Searched refs:m_origin (Results 1 - 4 of 4) sorted by null

  /external/eigen/Eigen/src/Eigen2Support/Geometry/
ParametrizedLine.h 43 inline explicit ParametrizedLine(int _dim) : m_origin(_dim), m_direction(_dim) {}
49 : m_origin(origin), m_direction(direction) {}
62 const VectorType& origin() const { return m_origin; }
63 VectorType& origin() { return m_origin; }
104 m_origin = other.origin().template cast<Scalar>();
113 { return m_origin.isApprox(other.m_origin, prec) && m_direction.isApprox(other.m_direction, prec); }
117 VectorType m_origin, m_direction; member in class:Eigen::ParametrizedLine
  /external/opencv3/modules/imgcodecs/src/
grfmt_bmp.hpp 78 int m_origin; member in class:cv::BmpDecoder
grfmt_bmp.cpp 171 m_origin = m_height > 0 ? IPL_ORIGIN_BL : IPL_ORIGIN_TL;
198 if( m_origin == IPL_ORIGIN_BL )
  /external/eigen/Eigen/src/Geometry/
ParametrizedLine.h 48 : m_origin(other.origin()), m_direction(other.direction())
53 inline explicit ParametrizedLine(Index _dim) : m_origin(_dim), m_direction(_dim) {}
59 : m_origin(origin), m_direction(direction) {}
73 const VectorType& origin() const { return m_origin; }
74 VectorType& origin() { return m_origin; }
124 m_origin = other.origin().template cast<Scalar>();
133 { return m_origin.isApprox(other.m_origin, prec) && m_direction.isApprox(other.m_direction, prec); }
137 VectorType m_origin, m_direction; member in class:Eigen::ParametrizedLine

Completed in 163 milliseconds