Lines Matching defs:aB
24 Vector2<int16_t> aB = a[1];
27 int32_t den = static_cast<int32_t>(aA.x_ - aB.x_) * (bA.y_ - bB.y_) -
28 static_cast<int32_t>(aA.y_ - aB.y_) * (bA.x_ - bB.x_);
32 int32_t xNum = (static_cast<int32_t>(aA.x_) * aB.y_ - static_cast<int32_t>(aA.y_) * aB.x_) * (bA.x_ - bB.x_) -
33 (aA.x_ - aB.x_) * (static_cast<int32_t>(bA.x_) * bB.y_ - static_cast<int32_t>(bA.y_) * bB.x_);
34 int32_t yNum = (static_cast<int32_t>(aA.x_) * aB.y_ - static_cast<int32_t>(aA.y_) * aB.x_) * (bA.y_ - bB.y_) -
35 (aA.y_ - aB.y_) * (static_cast<int32_t>(bA.x_) * bB.y_ - static_cast<int32_t>(bA.y_) * bB.x_);
45 Vector2<int16_t> aB = a[1];
49 int32_t iPos = static_cast<int32_t>(aB.x_ - aA.x_) * (bA.y_ - aA.y_) -
50 static_cast<int32_t>(aB.y_ - aA.y_) * (bA.x_ - aA.x_);
51 int32_t kPos = static_cast<int32_t>(aB.x_ - aA.x_) * (bB.y_ - aA.y_) -
52 static_cast<int32_t>(aB.y_ - aA.y_) * (bB.x_ - aA.x_);