Java 計算兩點兩線的交點、計算兩圓的交點

一次洼、需求

1. 已知B點关贵、C點、c線長和b線長卖毁,求A點坐標揖曾;
1. 通過B、C兩點作為圓心亥啦,繪制半徑為c炭剪、b的圓;
2. 求出A1翔脱、A2的坐標奴拦;
3. 選取自己想要的那個點;

計算兩點兩線交點
圓心交點

2. 三維向量計算直線上的一點届吁;

向量計算三維坐標的偏移

二错妖、代碼

  1. 計算圖片中A點坐標
private NEZ calculateAPoint(NEZ nezG, NEZ nezD, float gkL1, float dkL2) {
    // 判斷距離
    double dist = Geometry.getDistance(nezG.N, nezG.E, nezD.N, nezD.E);
    if ((dist > (gkL1 + dkL2)) || (dkL2 > (dist + gkL1)) || (gkL1 > (dist + dkL2))) { // 相等滿足
        return null;
    }
    // 求出K點的坐標
    List<Float> resultXYList = calculatePointsOfTwoCircles(nezG, nezD, gkL1, dkL2);
    if (resultXYList.size() <= 0) {
        return null;
    }
    // 判斷在直線右側的點
    NEZ nezK;
    if (resultXYList.size() == 2) {
        nezK = new NEZ(resultXYList.get(1), resultXYList.get(0), 0);
    } else if (resultXYList.size() == 4) {
        NEZ nez1 = new NEZ(resultXYList.get(1), resultXYList.get(0), 0);
        NEZ nez2 = new NEZ(resultXYList.get(3), resultXYList.get(2), 0);
        if (!isLeft(nezG, nezD, nez1)) {
            nezK = nez1;
        } else {
            nezK = nez2;
        }
    } else {
        return null;
    }
    // 高程內(nèi)插:按距離加權平均
    nezK.Z = (nezD.Z * gkL1 + nezD.Z * dkL2) / (gkL1 + dkL2);
    return nezK;
}

/**
 * 判斷點是否在線的左側
 * @param a 開始點
 * @param b 結束點
 * @param c 計算點
 * @return 是否在左側
 * @WXS 2023-2-10
 */
private boolean isLeft(NEZ a, NEZ b, NEZ c) {
    return ((b.E - a.E) * (c.N - a.N) - (b.N - a.N) * (c.E - a.E)) > 0;
}

/**
 * 計算兩個圓的交點坐標
 *
 * @param nezA 第一個點
 * @param nezB 第二個點
 * @param r1   第一個點圓半徑
 * @param r2   第二個點圓半徑
 * @return 點xy數(shù)組
 * @WXS 2023-2-10
 */
private List<Float> calculatePointsOfTwoCircles(NEZ nezA, NEZ nezB, float r1, float r2) {
    List<Float> resultList = new ArrayList<>();
    float x1 = (float) nezA.E;
    float y1 = (float) nezA.N;
    float x2 = (float) nezB.E;
    float y2 = (float) nezB.N;
    float dx = x2 - x1;
    float dy = y2 - y1;
    // 兩個圓相離或包含
    double dis2 = Math.pow(dx, 2) + Math.pow(dy, 2);
    if (dis2 > Math.pow((r1 + r2), 2) || dis2 < Math.pow((r1 - r2), 2)) {
        return resultList;// 失敗
    }
    // 計算兩個圓心的連線與x軸的角度t
    double t = Math.atan2(dy, dx);
    // 計算兩個圓心的連線與圓心與交點之間的夾角a
    double a = Math.acos((r1 * r1 - r2 * r2 + dis2) / (2 * r1 * Math.sqrt(dis2)));
    // 計算交點
    double x3 = x1 + r1 * Math.cos(t + a);
    double y3 = y1 + r1 * Math.sin(t + a);
    double x4 = x1 + r1 * Math.cos(t - a);
    double y4 = y1 + r1 * Math.sin(t - a);
    if (sgn(a) == 0) {
        resultList.add((float) x3);
        resultList.add((float) y3);
    } else {
        resultList.add((float) x3);
        resultList.add((float) y3);
        resultList.add((float) x4);
        resultList.add((float) y4);
    }
    return resultList;
}

private int sgn(double dk) {
    if (dk == 0) {
        return 0;
    } else if (dk > 0) {
        return 1;
    } else {
        return -1;
    }
}

/**
 * 四舍五入
 *
 * @param d
 * @param prec 保存小數(shù)位數(shù)
 * @WXS 2023-2-10
 */
private double roundPrec(double d, int prec) {
    return new BigDecimal(d).setScale(prec, BigDecimal.ROUND_HALF_UP).doubleValue();
}
  1. 三維向量計算直線上的一點绿鸣;
// ->GK 直線的向量
Vector3 directionVector3 = new Vector3(nezK.E - nezG.E, nezK.N - nezG.N, nezK.Z - nezG.Z);
// 向量單位化
directionVector3.normalize();
// 向量乘移動長度
Vector3 changeVector3 = Vector3.opMultiply(directionVector3, mcs.getNewGK());
Vector3 centerV3 = new Vector3(E, Z, N);
Vector3 centerResultV3 = Vector3.opAddition(changeVector3, centerV3);

Vector3 的代碼

package com.zhd.opengl.base;

import java.util.List;

public class Vector3 implements Cloneable {
    private double x;
    private double y;
    private double z;

    public Vector3() {
    }

    public Vector3(double value) {
        this.x = value;
        this.y = value;
        this.z = value;
    }

    public Vector3(double x, double y, double z) {
        this.x = x;
        this.y = y;
        this.z = z;
    }

    public Vector3(List<Double> array) {
        if (array.size() != 3) {
            throw new IllegalArgumentException("The dimension of the array must be three.");
        } else {
            this.x = (Double) array.get(0);
            this.y = (Double) array.get(1);
            this.z = (Double) array.get(2);
        }
    }

    public static Vector3 getZero() {
        return new Vector3(0.0D, 0.0D, 0.0D);
    }

    public static Vector3 getUnitX() {
        return new Vector3(1.0D, 0.0D, 0.0D);
    }

    public static Vector3 getUnitY() {
        return new Vector3(0.0D, 1.0D, 0.0D);
    }

    public static Vector3 getUnitZ() {
        return new Vector3(0.0D, 0.0D, 1.0D);
    }

    public static Vector3 getNaN() {
        return new Vector3(0.0D / 0.0, 0.0D / 0.0, 0.0D / 0.0);
    }

    public static boolean isNaN(Vector3 u) {
        return Double.isNaN(u.getX()) || Double.isNaN(u.getY()) || Double.isNaN(u.getZ());
    }

    public static double dotProduct(Vector3 u, Vector3 v) {
        return u.getX() * v.getX() + u.getY() * v.getY() + u.getZ() * v.getZ();
    }

    public static Vector3 crossProduct(Vector3 u, Vector3 v) {
        double a = u.getY() * v.getZ() - u.getZ() * v.getY();
        double b = u.getZ() * v.getX() - u.getX() * v.getZ();
        double c = u.getX() * v.getY() - u.getY() * v.getX();
        return new Vector3(a, b, c);
    }

    public static double distance(Vector3 u, Vector3 v) {
        return Math.sqrt((u.getX() - v.getX()) * (u.getX() - v.getX()) + (u.getY() - v.getY()) * (u.getY() - v.getY()) + (u.getZ() - v.getZ()) * (u.getZ() - v.getZ()));
    }

    public static double squareDistance(Vector3 u, Vector3 v) {
        return (u.getX() - v.getX()) * (u.getX() - v.getX()) + (u.getY() - v.getY()) * (u.getY() - v.getY()) + (u.getZ() - v.getZ()) * (u.getZ() - v.getZ());
    }

    public static double angleBetween(Vector3 u, Vector3 v) {
        double cos = dotProduct(u, v) / (u.modulus() * v.modulus());
        if (cos >= 1.0D) {
            return 0.0D;
        } else {
            return cos <= -1.0D ? Math.PI : Math.acos(cos);
        }
    }

    public static Vector3 midPoint(Vector3 u, Vector3 v) {
        return new Vector3((v.getX() + u.getX()) * 0.5D, (v.getY() + u.getY()) * 0.5D, (v.getZ() + u.getZ()) * 0.5D);
    }

    public static boolean arePerpendicular(Vector3 u, Vector3 v) {
        return arePerpendicular(u, v, 1.0E-12D);
    }

    public static boolean arePerpendicular(Vector3 u, Vector3 v, double threshold) {
        return MathHelper.isZero(dotProduct(u, v), threshold);
    }

    public static boolean areParallel(Vector3 u, Vector3 v) {
        return areParallel(u, v, 1.0E-12D);
    }

    public static boolean areParallel(Vector3 u, Vector3 v, double threshold) {
        double a = u.getY() * v.getZ() - u.getZ() * v.getY();
        double b = u.getZ() * v.getX() - u.getX() * v.getZ();
        double c = u.getX() * v.getY() - u.getY() * v.getX();
        if (!MathHelper.isZero(a, threshold)) {
            return false;
        } else if (!MathHelper.isZero(b, threshold)) {
            return false;
        } else {
            return MathHelper.isZero(c, threshold);
        }
    }

    public static Vector3 round(Vector3 u, int numDigits) {
        if (numDigits >= 0 && numDigits <= 15) {
            return new Vector3((double) Math.round(u.getX() * Math.pow(10.0D, (double) numDigits)) / Math.pow(10.0D, (double) numDigits), (double) Math.round(u.getY() * Math.pow(10.0D, (double) numDigits)) / Math.pow(10.0D, (double) numDigits), (double) Math.round(u.getZ() * Math.pow(10.0D, (double) numDigits)) / Math.pow(10.0D, (double) numDigits));
        } else {
            throw new IllegalArgumentException("numDigits must be 0 < numDigits < 15");
        }
    }

    public static Vector3 opAddition(Vector3 u, Vector3 v) {
        return new Vector3(u.getX() + v.getX(), u.getY() + v.getY(), u.getZ() + v.getZ());
    }

    public static Vector3 opSubtraction(Vector3 u, Vector3 v) {
        return new Vector3(u.getX() - v.getX(), u.getY() - v.getY(), u.getZ() - v.getZ());
    }

    public static Vector3 OpUnaryNegation(Vector3 u) {
        return new Vector3(-u.getX(), -u.getY(), -u.getZ());
    }

    public static Vector3 opMultiply(Vector3 u, double a) {
        return new Vector3(u.getX() * a, u.getY() * a, u.getZ() * a);
    }

    public static Vector3 opMultiply(double a, Vector3 u) {
        return new Vector3(u.getX() * a, u.getY() * a, u.getZ() * a);
    }

    public static Vector3 opDivision(Vector3 u, double a) {
        double invEscalar = 1.0D / a;
        return new Vector3(u.getX() * invEscalar, u.getY() * invEscalar, u.getZ() * invEscalar);
    }

    public static Vector3 opDivision(double a, Vector3 u) {
        return new Vector3(a / u.getX(), a / u.getY(), a / u.getZ());
    }

    public double getX() {
        return this.x;
    }

    public void setX(double aXValue) {
        this.x = aXValue;
    }

    public double getY() {
        return this.y;
    }

    public void setY(double aYValue) {
        this.y = aYValue;
    }

    public double getZ() {
        return this.z;
    }

    public void setZ(double aZValue) {
        this.z = aZValue;
    }

    public double getItem(int index) {
        switch (index) {
            case 0:
                return this.x;
            case 1:
                return this.y;
            case 2:
                return this.z;
            default:
                throw new IllegalArgumentException("index");
        }
    }

    public void setItem(int index, double value) {
        switch (index) {
            case 0:
                this.x = value;
                break;
            case 1:
                this.y = value;
                break;
            case 2:
                this.z = value;
                break;
            default:
                throw new IllegalArgumentException("index");
        }

    }

    public void normalize() {
        double mod = this.modulus();
        if (MathHelper.isZero(mod, 1.0E-12D)) {
            throw new ArithmeticException("Cannot normalize a zero vector.");
        } else {
            double modInv = 1.0D / mod;
            this.x *= modInv;
            this.y *= modInv;
            this.z *= modInv;
        }
    }

    public double modulus() {
        return Math.sqrt(dotProduct(this, this));
    }

    public double[] toArray() {
        double[] u = new double[]{this.x, this.y, this.z};
        return u;
    }

    public boolean equals(Vector3 obj, double threshold) {
        return MathHelper.isEqual(obj.getX(), this.x, threshold) && MathHelper.isEqual(obj.getY(), this.y, threshold) && MathHelper.isEqual(obj.getZ(), this.z, threshold);
    }

    public boolean equals(Object obj) {
        if (obj == null) {
            return false;
        } else if (this == obj) {
            return true;
        } else {
            return obj instanceof Vector3 ? this.equals((Vector3) obj, 1.0E-12D) : false;
        }
    }

    public int hashCode() {
        return Double.valueOf(this.getX()).hashCode() ^ Double.valueOf(this.getY()).hashCode() ^ Double.valueOf(this.getZ()).hashCode();
    }

    public String toString() {
        return String.format("%1$s  %2$s  %3$s", this.x, this.y, this.z);
    }

    public String toString(IFormatProvider provider) {
        return String.format("%1$s  %2$s  %3$s", String.valueOf(this.x), String.valueOf(this.y), String.valueOf(this.z));
    }

    public Object clone() {
        try {
            return super.clone();
        } catch (CloneNotSupportedException var2) {
            var2.printStackTrace();
            return null;
        }
    }
}

參考文章

最后編輯于
?著作權歸作者所有,轉載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市暂氯,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌痴施,老刑警劉巖擎厢,帶你破解...
    沈念sama閱讀 206,214評論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場離奇詭異辣吃,居然都是意外死亡动遭,警方通過查閱死者的電腦和手機,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,307評論 2 382
  • 文/潘曉璐 我一進店門齿尽,熙熙樓的掌柜王于貴愁眉苦臉地迎上來沽损,“玉大人,你說我怎么就攤上這事循头∶喙溃” “怎么了?”我有些...
    開封第一講書人閱讀 152,543評論 0 341
  • 文/不壞的土叔 我叫張陵卡骂,是天一觀的道長国裳。 經(jīng)常有香客問我,道長全跨,這世上最難降的妖魔是什么缝左? 我笑而不...
    開封第一講書人閱讀 55,221評論 1 279
  • 正文 為了忘掉前任,我火速辦了婚禮浓若,結果婚禮上渺杉,老公的妹妹穿的比我還像新娘。我一直安慰自己挪钓,他們只是感情好是越,可當我...
    茶點故事閱讀 64,224評論 5 371
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著碌上,像睡著了一般倚评。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上馏予,一...
    開封第一講書人閱讀 49,007評論 1 284
  • 那天天梧,我揣著相機與錄音,去河邊找鬼霞丧。 笑死呢岗,一個胖子當著我的面吹牛,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播敷燎,決...
    沈念sama閱讀 38,313評論 3 399
  • 文/蒼蘭香墨 我猛地睜開眼暂筝,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了硬贯?” 一聲冷哼從身側響起焕襟,我...
    開封第一講書人閱讀 36,956評論 0 259
  • 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎饭豹,沒想到半個月后鸵赖,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 43,441評論 1 300
  • 正文 獨居荒郊野嶺守林人離奇死亡拄衰,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 35,925評論 2 323
  • 正文 我和宋清朗相戀三年它褪,在試婚紗的時候發(fā)現(xiàn)自己被綠了。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片翘悉。...
    茶點故事閱讀 38,018評論 1 333
  • 序言:一個原本活蹦亂跳的男人離奇死亡茫打,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出妖混,到底是詐尸還是另有隱情老赤,我是刑警寧澤,帶...
    沈念sama閱讀 33,685評論 4 322
  • 正文 年R本政府宣布制市,位于F島的核電站抬旺,受9級特大地震影響,放射性物質發(fā)生泄漏祥楣。R本人自食惡果不足惜开财,卻給世界環(huán)境...
    茶點故事閱讀 39,234評論 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望误褪。 院中可真熱鬧责鳍,春花似錦、人聲如沸兽间。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,240評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽渡八。三九已至,卻和暖如春传货,著一層夾襖步出監(jiān)牢的瞬間屎鳍,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 31,464評論 1 261
  • 我被黑心中介騙來泰國打工问裕, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留逮壁,地道東北人。 一個月前我還...
    沈念sama閱讀 45,467評論 2 352
  • 正文 我出身青樓粮宛,卻偏偏與公主長得像窥淆,于是被迫代替她去往敵國和親卖宠。 傳聞我的和親對象是個殘疾皇子,可洞房花燭夜當晚...
    茶點故事閱讀 42,762評論 2 345

推薦閱讀更多精彩內(nèi)容