求内切圆的圆心和半径(已知三个点的坐标)

本文介绍了一种计算三角形内切圆圆心坐标及半径的方法,通过求解角平分线交点来确定内切圆的位置和大小。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >


转自:http://blog.youkuaiyun.com/baidu_31872269/article/details/54923589

/******
m0 n0 m1 n1 m2 n2 为三角形的三个点的坐标值 m为横坐标 n为纵坐标
px 内切圆的圆心的横坐标
py 内切圆的圆心的纵坐标
pr 内切圆的半径

***/

int NeiQieYuan(int m0, int n0, int m1, int n1, int m2, int n2, float *px, float *py, float *pr)
{
    int dax = 0;
    int day = 0;

    int dbx = 0;
    int dby = 0;

    float absA = 0.0f;
    float absB = 0.0f;
    float temp = 0;

    dax = m0 - m1;
    day = n0 - n1;

    dbx = m2 - m1;
    dby = n2 - n1;

    temp = dax * dax + day * day * 1.0f;
    absA = sqrtf(temp);
    temp = dbx * dbx + dby * dby * 1.0f;
    absB = sqrtf(temp);

    // (absB * day - absA * dby)(y - n1) = (absA * dbx - absB * dax)(x - m1)

    // 第一个角平分线方程
    // a(y - n1) = b(x - m1)


    // 方程1 
    float a = 0.0f;
    float b = 0.0f;

    a = (absB * day - absA * dby);
    b = (absA * dbx - absB * dax);



    dax = m0 - m2;
    day = n0 - n2;

    dbx = m1 - m2;
    dby = n1 - n2;

    temp = dax * dax + day * day * 1.0f;
    absA = sqrtf(temp);
    temp = dbx * dbx + dby * dby * 1.0f;
    absB = sqrtf(temp);

    float c = 0.0f;
    float d = 0.0f;

    c = (absB * day - absA * dby);
    d = (absA * dbx - absB * dax);
    // 第二个角平分线方程
    // c(y - n2) = d(x - m2)
    float PointX = 0.0f;
    float PointY = 0.0f;


    if(a != 0)
    {
        PointX = (c * b * m1 + n2 * a * c - n1 * a * c - a * d * m2) / (c * b - a * d);
        PointY = b * (PointX - m1) / a + n1;

    }else
    {
        PointX = m1;
        PointY = d * (m1 - m2) / c + n2;
    }

    // dax * (y - n2) = day * (x - m2)

    // 点到直线的方程 (-day)(y - PointY) = (dax)(x - PointX)

    // 计算点到直线的距离

    float intersectionX = 0.0f;
    float intersectionY = 0.0f;

    if(dax != 0)
    {
        intersectionX = (day * day * m2 - day * dax * n2 + day * dax * PointY + dax * dax * PointX) / (dax * dax + day * day);
        intersectionY = day * (intersectionX - m2) / dax + n2;

    }else
    {
        intersectionX = m2;
        intersectionY = dax * (intersectionX - PointX) / (-day) + PointY;
    }

    *px = PointX;
    *py = PointY;

    float temp1 = (intersectionX - PointX) * (intersectionX - PointX) + (intersectionY - PointY) * (intersectionY - PointY);
    *pr = sqrtf((intersectionX - PointX) * (intersectionX - PointX) + (intersectionY - PointY) * (intersectionY - PointY));

    return 0;

}
   
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
  • 84
  • 85
  • 86
  • 87
  • 88
  • 89
  • 90
  • 91
  • 92
  • 93
  • 94
  • 95
  • 96
  • 97
  • 98
  • 99
  • 100
  • 101
  • 102
  • 103
  • 104
  • 105
  • 106
  • 107
  • 108
  • 109
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
  • 84
  • 85
  • 86
  • 87
  • 88
  • 89
  • 90
  • 91
  • 92
  • 93
  • 94
  • 95
  • 96
  • 97
  • 98
  • 99
  • 100
  • 101
  • 102
  • 103
  • 104
  • 105
  • 106
  • 107
  • 108
  • 109

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值