Home | History | Annotate | Download | only in core

Lines Matching defs:Side

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 (which
495 void setOrthog(const SkPoint& vec, Side side = kLeft_Side) {
498 if (kRight_Side == side) {
502 SkASSERT(kLeft_Side == side);