24 references to WhereIsVectorAboutVector
PresentationCore (24)
MS\Internal\Ink\EllipticalNodeOperations.cs (3)
363(WhereIsVectorAboutVector(endNode.Position - hitSegment.Begin, hitSegment.Vector) != HitResult.Right)) 549if (isInside && (WhereIsVectorAboutVector( 774if ((WhereIsVectorAboutVector(-segBegin, segVector) == HitResult.Left)
MS\Internal\Ink\StrokeNodeOperations.cs (11)
223HitResult goingTo = WhereIsVectorAboutVector(connection, _vertices[(i + 1) % count] - _vertices[i]); 230HitResult comingFrom = WhereIsVectorAboutVector(_vertices[i] - _vertices[j], connection); 249HitResult comingFrom = WhereIsVectorAboutVector(_vertices[i] - _vertices[j], connection); 603: (WhereIsVectorAboutVector( 711(!testNextEdge && (HitResult.Left != WhereIsVectorAboutVector(nextNode, nextVertex)))) 728hit = WhereIsVectorAboutVector(hitPoint, nextNode); 742if (HitResult.Left == WhereIsVectorAboutVector( 993if (isInside && WhereIsVectorAboutVector( 1059: (WhereIsVectorAboutVector(-hitBegin, hitSegment.Vector) == HitResult.Right); 1160: (WhereIsVectorAboutVector(-hitBegin, hitSegment.Vector) == HitResult.Right); 1270: (WhereIsVectorAboutVector(
MS\Internal\Ink\StrokeNodeOperations2.cs (10)
319else if ((WhereIsVectorAboutVector(hitBegin - orgBegin, AB) == HitResult.Left) 320|| (WhereIsVectorAboutVector(hitEnd - orgBegin, AB) == HitResult.Left)) 363HitResult vResult = WhereIsVectorAboutVector(-segBegin, segVector); 422if (HitResult.Right == WhereIsVectorAboutVector(arcEnd, arcBegin)) 425if ((HitResult.Left != WhereIsVectorAboutVector(hitVector, arcBegin)) && 426(HitResult.Right != WhereIsVectorAboutVector(hitVector, arcEnd))) 431else if ((HitResult.Left != WhereIsVectorAboutVector(hitVector, arcBegin)) || 432(HitResult.Right != WhereIsVectorAboutVector(hitVector, arcEnd))) 437if ((WhereIsVectorAboutVector(hitVector - arcBegin, TurnLeft(arcBegin)) != HitResult.Left) || 438(WhereIsVectorAboutVector(hitVector - arcEnd, TurnRight(arcEnd)) != HitResult.Right))