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

  /external/chromium_org/third_party/skia/include/core/
SkPoint.h 447 * The side of a point relative to a line. If the line is from a to b then
450 enum Side {
458 * optionally returns the side of the line that the pt falls on (looking
463 Side* side = NULL) const;
467 * optionally returns the side of the line that the pt falls on (looking
472 Side* side = NULL) const {
473 return SkScalarSqrt(this->distanceToLineBetweenSqd(a, b, side));
492 * new vector will point in direction indicated by side (whic
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/math/
Plane.java 43 * point is on the non-normal side of the plane.
55 public static enum Side {
169 * a provided point. If the point is on the negative side of the plane the
182 * <code>whichSide</code> returns the side at which a point lies on the
188 * @return the side at which the point lies.
190 public Side whichSide(Vector3f point) {
193 return Side.Negative;
195 return Side.Positive;
197 return Side.None;
  /external/skia/include/core/
SkPoint.h 447 * The side of a point relative to a line. If the line is from a to b then
450 enum Side {
458 * optionally returns the side of the line that the pt falls on (looking
463 Side* side = NULL) const;
467 * optionally returns the side of the line that the pt falls on (looking
472 Side* side = NULL) const {
473 return SkScalarSqrt(this->distanceToLineBetweenSqd(a, b, side));
492 * new vector will point in direction indicated by side (whic
    [all...]
  /external/eigen/Eigen/src/Core/
GeneralProduct.h 21 * \param LhsNested the type used to store the left-hand side
22 * \param RhsNested the type used to store the right-hand side
136 * \param Lhs the type of the left-hand side
137 * \param Rhs the type of the right-hand side
299 template<int Side, int StorageOrder, bool BlasCompatible>
320 enum { Side = Lhs::IsVectorAtCompileTime ? OnTheLeft : OnTheRight };
321 typedef typename internal::conditional<int(Side)==OnTheRight,_LhsNested,_RhsNested>::type MatrixType;
326 internal::gemv_selector<Side,(int(MatrixType::Flags)&RowMajorBit) ? RowMajor : ColMajor,

Completed in 90 milliseconds