C++判断点是否在三角形内部

1.问题

  判断点是否在三角形内部。

2.思路

  计算向量AB和AP的叉积、向量BC和BP的叉积、向量CA和CP的叉积,如果所有的叉积符号相同,则点在三角形内部。
在这里插入图片描述

3.代码实现和注释

#include <iostream>
#include <vector>

// 计算两个二维向量的叉积
double crossProduct(const std::vector<double>& v1, const std::vector<double>& v2) {
  return v1[0] * v2[1] - v1[1] * v2[0];
}

// 判断点P是否在三角形ABC内部
bool isPointInsideTriangle(
  double ax, double ay,
  double bx, double by,
  double cx, double cy,
  double px, double py) {
  // 将点和顶点表示为向量
  std::vector<double> AB = {bx - ax, by - ay};
  std::vector<double> AP = {px - ax, py - ay};

  std::vector<double> BC = {cx - bx, cy - by};
  std::vector<double> BP = {px - bx, py - by};

  std::vector<double> CA = {ax - cx, ay - cy};
  std::vector<double> CP = {px - cx, py - cy};

  // 计算叉积
  int count1 = 0, count2 = 0;
  if (crossProduct(AB, AP) > 0)
    count1++;
  else
    count2++;

  if (crossProduct(BC, BP) > 0)
    count1++;
  else
    count2++;

  if (crossProduct(CA, CP) > 0)
    count1++;
  else
    count2++;

  // 如果计数为3,点在三角形内部
  printf("count1 = %d, count2 = %d\n", count1, count2);
  return count1 == 3 || count2 == 3;
}

int main() {
  double ax, ay, bx, by, cx, cy, px, py;
  std::cout << "Enter triangle vertices (A(x, y), B(x, y), C(x, y)):\n";
  std::cin >> ax >> ay >> bx >> by >> cx >> cy;
  std::cout << "Enter point P(x, y):\n";
  std::cin >> px >> py;

  bool result = isPointInsideTriangle(ax, ay, bx, by, cx, cy, px, py);
  if (result)
    std::cout << "Point P is inside the triangle.\n";
  else
    std::cout << "Point P is outside the triangle or on its boundary.\n";

    return 0;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

ygdd

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值