Home | History | Annotate | Download | only in core

Lines Matching refs:Side

442      * The side of a point relative to a line. If the line is from a to b then
445 enum Side {
453 * optionally returns the side of the line that the pt falls on (looking
458 Side* side = NULL) const;
462 * optionally returns the side of the line that the pt falls on (looking
467 Side* side = NULL) const {
468 return SkScalarSqrt(this->distanceToLineBetweenSqd(a, b, side));
487 * new vector will point in direction indicated by side (which
490 void setOrthog(const SkPoint& vec, Side side = kLeft_Side) {
493 if (kRight_Side == side) {
497 SkASSERT(kLeft_Side == side);